Version Description
- Added: Booking cancellation notification
- Added: New feature to disable admin notification
- Fixed: Not showing the event when it is on current day and it is not started yet
- Fixed: Issue in booking module regarding dates
- Fixed: Issue regarding showing day title when only 1 day is added
- Fixed: Some PHP notices
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.3.0 |
Comparing to | |
See all releases |
Code changes from version 4.2.5 to 4.3.0
- app/features/mec.php +1 -0
- app/features/mec/notifications.php +123 -44
- app/features/update.php +32 -0
- app/libraries/factory.php +15 -0
- app/libraries/notifications.php +88 -1
- app/libraries/render.php +2 -2
- app/modules/countdown/details.php +0 -1
- app/skins/monthly_view/calendar.php +4 -2
- app/skins/single.php +92 -11
- app/skins/single/default.php +1 -1
- app/skins/single/modern.php +12 -8
- assets/js/frontend.js +19 -2
- changelog.txt +9 -1
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +337 -264
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +306 -249
- languages/modern-events-calendar-lite-es_ES.mo +0 -0
- languages/modern-events-calendar-lite-es_ES.po +334 -263
- languages/modern-events-calendar-lite-fr_FR.mo +0 -0
- languages/modern-events-calendar-lite-fr_FR.po +336 -264
- languages/modern-events-calendar-lite-hu_HU.mo +0 -0
- languages/modern-events-calendar-lite-hu_HU.po +314 -255
- languages/modern-events-calendar-lite-it_IT.mo +0 -0
- languages/modern-events-calendar-lite-it_IT.po +334 -263
- languages/modern-events-calendar-lite-nb_NO.mo +0 -0
- languages/modern-events-calendar-lite-nb_NO.po +335 -264
- languages/modern-events-calendar-lite-nl_NL.mo +0 -0
- languages/modern-events-calendar-lite-nl_NL.po +333 -264
- languages/modern-events-calendar-lite-pl_PL.mo +0 -0
- languages/modern-events-calendar-lite-pl_PL.po +334 -263
- languages/modern-events-calendar-lite-pt_BR.mo +0 -0
- languages/modern-events-calendar-lite-pt_BR.po +335 -264
- languages/modern-events-calendar-lite-ru_RU.mo +0 -0
- languages/modern-events-calendar-lite-ru_RU.po +330 -263
- languages/modern-events-calendar-lite-sv_SE.mo +0 -0
- languages/modern-events-calendar-lite-sv_SE.po +334 -263
- languages/modern-events-calendar-lite-tr_TR.mo +0 -0
- languages/modern-events-calendar-lite-tr_TR.po +330 -263
- languages/modern-events-calendar-lite.pot +306 -249
- modern-events-calendar-lite.php +2 -2
- readme.txt +9 -1
app/features/mec.php
CHANGED
@@ -91,6 +91,7 @@ class MEC_feature_mec extends MEC_base
|
|
91 |
$this->factory->action('mec_booking_completed', array($this->notifications, 'booking_notification'), 11);
|
92 |
$this->factory->action('mec_booking_completed', array($this->notifications, 'admin_notification'), 12);
|
93 |
$this->factory->action('mec_booking_confirmed', array($this->notifications, 'booking_confirmation'), 10);
|
|
|
94 |
$this->factory->action('mec_fes_added', array($this->notifications, 'new_event'), 50, 3);
|
95 |
|
96 |
$this->page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : 'MEC-settings';
|
91 |
$this->factory->action('mec_booking_completed', array($this->notifications, 'booking_notification'), 11);
|
92 |
$this->factory->action('mec_booking_completed', array($this->notifications, 'admin_notification'), 12);
|
93 |
$this->factory->action('mec_booking_confirmed', array($this->notifications, 'booking_confirmation'), 10);
|
94 |
+
$this->factory->action('mec_booking_canceled', array($this->notifications, 'booking_cancellation'), 12);
|
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';
|
app/features/mec/notifications.php
CHANGED
@@ -68,6 +68,12 @@ $notifications = $this->main->get_notifications();
|
|
68 |
</a>
|
69 |
</li>
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
<li id="" class="pr-be-group-menu-li">
|
72 |
<a data-id= "admin_notification" class="wns-be-group-tab-link-a WnTabLinks">
|
73 |
<span class="pr-be-group-menu-title"><?php _e('Admin Notification', 'modern-events-calendar-lite'); ?></span>
|
@@ -309,57 +315,130 @@ $notifications = $this->main->get_notifications();
|
|
309 |
|
310 |
</div>
|
311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
|
313 |
<div id="admin_notification" class="mec-options-fields">
|
314 |
|
315 |
<h4 class="mec-form-subtitle"><?php _e('Admin Notification', 'modern-events-calendar-lite'); ?></h4>
|
316 |
-
<p class="description"><?php _e('It sends to admin to notify him/her that a new booking received.', 'modern-events-calendar-lite'); ?></p>
|
317 |
-
<div class="mec-form-row">
|
318 |
-
<label for="mec_notifications_admin_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
|
319 |
-
<input type="text" name="mec[notifications][admin_notification][subject]" id="mec_notifications_admin_notification_subject" value="<?php echo (isset($notifications['admin_notification']['subject']) ? stripslashes($notifications['admin_notification']['subject']) : ''); ?>" />
|
320 |
-
</div>
|
321 |
-
<div class="mec-form-row">
|
322 |
-
<label for="mec_notifications_admin_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
|
323 |
-
<input type="text" name="mec[notifications][admin_notification][recipients]" id="mec_notifications_admin_notification_recipients" value="<?php echo (isset($notifications['admin_notification']['recipients']) ? $notifications['admin_notification']['recipients'] : ''); ?>" />
|
324 |
-
<span class="mec-tooltip">
|
325 |
-
<div class="box top">
|
326 |
-
<h5 class="title"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></h5>
|
327 |
-
<div class="content"><p><?php esc_attr_e('Insert comma separated emails for multiple recipients.', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/notifications/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
328 |
-
</div>
|
329 |
-
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
330 |
-
</span>
|
331 |
-
</div>
|
332 |
<div class="mec-form-row">
|
333 |
-
<
|
334 |
-
|
|
|
|
|
335 |
</div>
|
336 |
-
<div class="mec-
|
337 |
-
<
|
338 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
</div>
|
340 |
-
<p class="description"><?php _e('You can use following placeholders', 'modern-events-calendar-lite'); ?></p>
|
341 |
-
<ul>
|
342 |
-
<li><span>%%first_name%%</span>: <?php _e('First name of attendee', 'modern-events-calendar-lite'); ?></li>
|
343 |
-
<li><span>%%last_name%%</span>: <?php _e('Last name of attendee', 'modern-events-calendar-lite'); ?></li>
|
344 |
-
<li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
|
345 |
-
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
346 |
-
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
347 |
-
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
348 |
-
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
349 |
-
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
350 |
-
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
351 |
-
<li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
|
352 |
-
<li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
|
353 |
-
<li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
|
354 |
-
<li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
|
355 |
-
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
356 |
-
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
357 |
-
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
358 |
-
<li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
|
359 |
-
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
360 |
-
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
361 |
-
</ul>
|
362 |
-
|
363 |
</div>
|
364 |
|
365 |
|
68 |
</a>
|
69 |
</li>
|
70 |
|
71 |
+
<li id="" class="pr-be-group-menu-li">
|
72 |
+
<a data-id= "cancellation_notification" class="wns-be-group-tab-link-a WnTabLinks">
|
73 |
+
<span class="pr-be-group-menu-title"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></span>
|
74 |
+
</a>
|
75 |
+
</li>
|
76 |
+
|
77 |
<li id="" class="pr-be-group-menu-li">
|
78 |
<a data-id= "admin_notification" class="wns-be-group-tab-link-a WnTabLinks">
|
79 |
<span class="pr-be-group-menu-title"><?php _e('Admin Notification', 'modern-events-calendar-lite'); ?></span>
|
315 |
|
316 |
</div>
|
317 |
|
318 |
+
|
319 |
+
<div id="cancellation_notification" class="mec-options-fields">
|
320 |
+
<h4 class="mec-form-subtitle"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></h4>
|
321 |
+
<div class="mec-form-row">
|
322 |
+
<label>
|
323 |
+
<input type="hidden" name="mec[notifications][cancellation_notification][status]" value="0" />
|
324 |
+
<input onchange="jQuery('#mec_notification_cancellation_notification_container_toggle').toggle();" value="1" type="checkbox" name="mec[notifications][cancellation_notification][status]" <?php if((isset($notifications['cancellation_notification']['status']) and $notifications['cancellation_notification']['status'])) echo 'checked="checked"'; ?> /> <?php _e('Enable cancellation notification', 'modern-events-calendar-lite'); ?>
|
325 |
+
</label>
|
326 |
+
</div>
|
327 |
+
<div id="mec_notification_cancellation_notification_container_toggle" class="<?php if((isset($notifications['cancellation_notification']) and !$notifications['cancellation_notification']['status']) or !isset($notifications['cancellation_notification'])) echo 'mec-util-hidden'; ?>">
|
328 |
+
<p class="description"><?php _e('It sends to selected recipients after booking cancellation for notifying them.', 'modern-events-calendar-lite'); ?></p>
|
329 |
+
<div class="mec-form-row">
|
330 |
+
<label for="mec_notifications_cancellation_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
|
331 |
+
<input type="text" name="mec[notifications][cancellation_notification][subject]" id="mec_notifications_cancellation_notification_subject" value="<?php echo (isset($notifications['cancellation_notification']['subject']) ? stripslashes($notifications['cancellation_notification']['subject']) : 'Your booking is canceled.'); ?>" />
|
332 |
+
</div>
|
333 |
+
<div class="mec-form-row">
|
334 |
+
<label for="mec_notifications_cancellation_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
|
335 |
+
<input type="text" name="mec[notifications][cancellation_notification][recipients]" id="mec_notifications_cancellation_notification_recipients" value="<?php echo (isset($notifications['cancellation_notification']['recipients']) ? $notifications['cancellation_notification']['recipients'] : ''); ?>" />
|
336 |
+
<span class="mec-tooltip">
|
337 |
+
<div class="box top">
|
338 |
+
<h5 class="title"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></h5>
|
339 |
+
<div class="content"><p><?php esc_attr_e('Insert comma separated emails for multiple recipients.', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/notifications/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
340 |
+
</div>
|
341 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
342 |
+
</span>
|
343 |
+
</div>
|
344 |
+
<div class="mec-form-row">
|
345 |
+
<input type="checkbox" name="mec[notifications][cancellation_notification][send_to_admin]" value="1" id="mec_notifications_cancellation_notification_send_to_admin" <?php echo ((!isset($notifications['cancellation_notification']['send_to_admin']) or $notifications['cancellation_notification']['send_to_admin'] == 1) ? 'checked="checked"' : ''); ?> />
|
346 |
+
<label for="mec_notifications_cancellation_notification_send_to_admin"><?php _e('Send the email to admin', 'modern-events-calendar-lite'); ?></label>
|
347 |
+
</div>
|
348 |
+
<div class="mec-form-row">
|
349 |
+
<input type="checkbox" name="mec[notifications][cancellation_notification][send_to_organizer]" value="1" id="mec_notifications_cancellation_notification_send_to_organizer" <?php echo ((isset($notifications['cancellation_notification']['send_to_organizer']) and $notifications['cancellation_notification']['send_to_organizer'] == 1) ? 'checked="checked"' : ''); ?> />
|
350 |
+
<label for="mec_notifications_cancellation_notification_send_to_organizer"><?php _e('Send the email to event organizer', 'modern-events-calendar-lite'); ?></label>
|
351 |
+
</div>
|
352 |
+
<div class="mec-form-row">
|
353 |
+
<input type="checkbox" name="mec[notifications][cancellation_notification][send_to_user]" value="1" id="mec_notifications_cancellation_notification_send_to_user" <?php echo ((isset($notifications['cancellation_notification']['send_to_user']) and $notifications['cancellation_notification']['send_to_user'] == 1) ? 'checked="checked"' : ''); ?> />
|
354 |
+
<label for="mec_notifications_cancellation_notification_send_to_user"><?php _e('Send the email to booking user', 'modern-events-calendar-lite'); ?></label>
|
355 |
+
</div>
|
356 |
+
<div class="mec-form-row">
|
357 |
+
<label for="mec_notifications_cancellation_notification_content"><?php _e('Email Content', 'modern-events-calendar-lite'); ?></label>
|
358 |
+
<?php wp_editor((isset($notifications['cancellation_notification']) ? stripslashes($notifications['cancellation_notification']['content']) : ''), 'mec_notifications_cancellation_notification_content', array('textarea_name'=>'mec[notifications][cancellation_notification][content]')); ?>
|
359 |
+
</div>
|
360 |
+
<p class="description"><?php _e('You can use following placeholders', 'modern-events-calendar-lite'); ?></p>
|
361 |
+
<ul>
|
362 |
+
<li><span>%%first_name%%</span>: <?php _e('First name of attendee', 'modern-events-calendar-lite'); ?></li>
|
363 |
+
<li><span>%%last_name%%</span>: <?php _e('Last name of attendee', 'modern-events-calendar-lite'); ?></li>
|
364 |
+
<li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
|
365 |
+
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
366 |
+
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
367 |
+
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
368 |
+
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
369 |
+
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
370 |
+
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
371 |
+
<li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
|
372 |
+
<li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
|
373 |
+
<li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
|
374 |
+
<li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
|
375 |
+
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
376 |
+
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
377 |
+
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
378 |
+
<li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
|
379 |
+
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
380 |
+
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
381 |
+
</ul>
|
382 |
+
</div>
|
383 |
+
</div>
|
384 |
|
385 |
<div id="admin_notification" class="mec-options-fields">
|
386 |
|
387 |
<h4 class="mec-form-subtitle"><?php _e('Admin Notification', 'modern-events-calendar-lite'); ?></h4>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
388 |
<div class="mec-form-row">
|
389 |
+
<label>
|
390 |
+
<input type="hidden" name="mec[notifications][admin_notification][status]" value="0" />
|
391 |
+
<input onchange="jQuery('#mec_notification_admin_notification_container_toggle').toggle();" value="1" type="checkbox" name="mec[notifications][admin_notification][status]" <?php if(!isset($notifications['admin_notification']['status']) or (isset($notifications['admin_notification']['status']) and $notifications['admin_notification']['status'])) echo 'checked="checked"'; ?> /> <?php _e('Enable admin notification', 'modern-events-calendar-lite'); ?>
|
392 |
+
</label>
|
393 |
</div>
|
394 |
+
<div id="mec_notification_admin_notification_container_toggle" class="<?php if(isset($notifications['admin_notification']) and isset($notifications['admin_notification']['status']) and !$notifications['admin_notification']['status']) echo 'mec-util-hidden'; ?>">
|
395 |
+
<p class="description"><?php _e('It sends to admin to notify him/her that a new booking received.', 'modern-events-calendar-lite'); ?></p>
|
396 |
+
<div class="mec-form-row">
|
397 |
+
<label for="mec_notifications_admin_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
|
398 |
+
<input type="text" name="mec[notifications][admin_notification][subject]" id="mec_notifications_admin_notification_subject" value="<?php echo (isset($notifications['admin_notification']['subject']) ? stripslashes($notifications['admin_notification']['subject']) : ''); ?>" />
|
399 |
+
</div>
|
400 |
+
<div class="mec-form-row">
|
401 |
+
<label for="mec_notifications_admin_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
|
402 |
+
<input type="text" name="mec[notifications][admin_notification][recipients]" id="mec_notifications_admin_notification_recipients" value="<?php echo (isset($notifications['admin_notification']['recipients']) ? $notifications['admin_notification']['recipients'] : ''); ?>" />
|
403 |
+
<span class="mec-tooltip">
|
404 |
+
<div class="box top">
|
405 |
+
<h5 class="title"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></h5>
|
406 |
+
<div class="content"><p><?php esc_attr_e('Insert comma separated emails for multiple recipients.', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/notifications/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
407 |
+
</div>
|
408 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
409 |
+
</span>
|
410 |
+
</div>
|
411 |
+
<div class="mec-form-row">
|
412 |
+
<input type="checkbox" name="mec[notifications][admin_notification][send_to_organizer]" value="1" id="mec_notifications_admin_notification_send_to_organizer" <?php echo ((isset($notifications['admin_notification']['send_to_organizer']) and $notifications['admin_notification']['send_to_organizer'] == 1) ? 'checked="checked"' : ''); ?> />
|
413 |
+
<label for="mec_notifications_admin_notification_send_to_organizer"><?php _e('Send the email to event organizer', 'modern-events-calendar-lite'); ?></label>
|
414 |
+
</div>
|
415 |
+
<div class="mec-form-row">
|
416 |
+
<label for="mec_notifications_admin_notification_content"><?php _e('Email Content', 'modern-events-calendar-lite'); ?></label>
|
417 |
+
<?php wp_editor((isset($notifications['admin_notification']) ? stripslashes($notifications['admin_notification']['content']) : ''), 'mec_notifications_admin_notification_content', array('textarea_name'=>'mec[notifications][admin_notification][content]')); ?>
|
418 |
+
</div>
|
419 |
+
<p class="description"><?php _e('You can use following placeholders', 'modern-events-calendar-lite'); ?></p>
|
420 |
+
<ul>
|
421 |
+
<li><span>%%first_name%%</span>: <?php _e('First name of attendee', 'modern-events-calendar-lite'); ?></li>
|
422 |
+
<li><span>%%last_name%%</span>: <?php _e('Last name of attendee', 'modern-events-calendar-lite'); ?></li>
|
423 |
+
<li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
|
424 |
+
<li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
|
425 |
+
<li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
|
426 |
+
<li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
|
427 |
+
<li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
|
428 |
+
<li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
|
429 |
+
<li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
|
430 |
+
<li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
|
431 |
+
<li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
|
432 |
+
<li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
|
433 |
+
<li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
|
434 |
+
<li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
|
435 |
+
<li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
|
436 |
+
<li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
|
437 |
+
<li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
|
438 |
+
<li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
|
439 |
+
<li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
|
440 |
+
</ul>
|
441 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
442 |
</div>
|
443 |
|
444 |
|
app/features/update.php
CHANGED
@@ -57,6 +57,7 @@ class MEC_feature_update extends MEC_base
|
|
57 |
if(version_compare($version, '3.2.0', '<')) $this->version320();
|
58 |
if(version_compare($version, '3.5.0', '<')) $this->version350();
|
59 |
if(version_compare($version, '4.0.0', '<')) $this->version400();
|
|
|
60 |
|
61 |
// Update to latest version to prevent running the code twice
|
62 |
update_option('mec_version', $this->main->get_version());
|
@@ -228,4 +229,35 @@ class MEC_feature_update extends MEC_base
|
|
228 |
// Scheduler Cron job
|
229 |
if(!wp_next_scheduled('mec_scheduler')) wp_schedule_event(time(), 'hourly', 'mec_scheduler');
|
230 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
}
|
57 |
if(version_compare($version, '3.2.0', '<')) $this->version320();
|
58 |
if(version_compare($version, '3.5.0', '<')) $this->version350();
|
59 |
if(version_compare($version, '4.0.0', '<')) $this->version400();
|
60 |
+
if(version_compare($version, '4.3.0', '<')) $this->version430();
|
61 |
|
62 |
// Update to latest version to prevent running the code twice
|
63 |
update_option('mec_version', $this->main->get_version());
|
229 |
// Scheduler Cron job
|
230 |
if(!wp_next_scheduled('mec_scheduler')) wp_schedule_event(time(), 'hourly', 'mec_scheduler');
|
231 |
}
|
232 |
+
|
233 |
+
public function version430()
|
234 |
+
{
|
235 |
+
// Get current MEC options
|
236 |
+
$current = get_option('mec_options', array());
|
237 |
+
if(is_string($current) and trim($current) == '') $current = array();
|
238 |
+
|
239 |
+
// Merge new options with previous options
|
240 |
+
$current['notifications']['cancellation_notification'] = array
|
241 |
+
(
|
242 |
+
'status'=>'0',
|
243 |
+
'subject'=>'Your booking is canceled.',
|
244 |
+
'recipients'=>'',
|
245 |
+
'send_to_admin'=>'1',
|
246 |
+
'send_to_organizer'=>'0',
|
247 |
+
'send_to_user'=>'0',
|
248 |
+
'content'=>"Hi %%name%%,
|
249 |
+
|
250 |
+
For your information, your booking for %%event_title%% at %%book_date%% is canceled.
|
251 |
+
|
252 |
+
Regards,
|
253 |
+
%%blog_name%%"
|
254 |
+
);
|
255 |
+
|
256 |
+
// Update it only if options already exists.
|
257 |
+
if(get_option('mec_options') !== false)
|
258 |
+
{
|
259 |
+
// Save new options
|
260 |
+
update_option('mec_options', $current);
|
261 |
+
}
|
262 |
+
}
|
263 |
}
|
app/libraries/factory.php
CHANGED
@@ -723,6 +723,21 @@ class MEC_factory extends MEC_base
|
|
723 |
Regards,
|
724 |
%%blog_name%%"
|
725 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
726 |
'admin_notification'=>array
|
727 |
(
|
728 |
'subject'=>'A new booking is received.',
|
723 |
Regards,
|
724 |
%%blog_name%%"
|
725 |
),
|
726 |
+
'cancellation_notification'=>array
|
727 |
+
(
|
728 |
+
'status'=>'0',
|
729 |
+
'subject'=>'Your booking is canceled.',
|
730 |
+
'recipients'=>'',
|
731 |
+
'send_to_admin'=>'1',
|
732 |
+
'send_to_organizer'=>'0',
|
733 |
+
'send_to_user'=>'0',
|
734 |
+
'content'=>"Hi %%name%%,
|
735 |
+
|
736 |
+
For your information, your booking for %%event_title%% at %%book_date%% is canceled.
|
737 |
+
|
738 |
+
Regards,
|
739 |
+
%%blog_name%%"
|
740 |
+
),
|
741 |
'admin_notification'=>array
|
742 |
(
|
743 |
'subject'=>'A new booking is received.',
|
app/libraries/notifications.php
CHANGED
@@ -198,13 +198,100 @@ class MEC_notifications extends MEC_base
|
|
198 |
return true;
|
199 |
}
|
200 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
/**
|
202 |
* Send admin notification
|
203 |
* @author Webnus <info@webnus.biz>
|
204 |
* @param int $book_id
|
|
|
205 |
*/
|
206 |
public function admin_notification($book_id)
|
207 |
{
|
|
|
|
|
|
|
208 |
$to = get_bloginfo('admin_email');
|
209 |
$subject = isset($this->notif_settings['admin_notification']['subject']) ? $this->content(__($this->notif_settings['admin_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('A new booking is received.', 'modern-events-calendar-lite');
|
210 |
$headers = array();
|
@@ -526,7 +613,7 @@ class MEC_notifications extends MEC_base
|
|
526 |
$gmt_offset_seconds = $this->main->get_gmt_offset_seconds();
|
527 |
$event_title = get_the_title($event_id);
|
528 |
$event_info = get_post($event_id);
|
529 |
-
$event_content = trim($
|
530 |
|
531 |
$google_caneldar_link = '<a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="https://www.google.com/calendar/event?action=TEMPLATE&text= ' . $event_title . '&dates='. gmdate('Ymd\\THi00\\Z', ($start_time - $gmt_offset_seconds)) . '/' . gmdate('Ymd\\THi00\\Z', ($end_time - $gmt_offset_seconds)) . '&details=' . urlencode($event_content) . '&location=' . get_term_meta($location_id, 'address', true) . '" target="_blank">' . __('+ Add to Google Calendar', 'modern-events-calendar-lite') . '</a>';
|
532 |
$ical_export_link = '<a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="' . $this->main->ical_URL_email($event_id, $book_id, get_the_date('Y-m-d', $book_id)) . '">'. __('+ iCal export', 'modern-events-calendar-lite') . '</a>';
|
198 |
return true;
|
199 |
}
|
200 |
|
201 |
+
/**
|
202 |
+
* Send booking cancellation
|
203 |
+
* @author Webnus <info@webnus.biz>
|
204 |
+
* @param int $book_id
|
205 |
+
* @return void
|
206 |
+
*/
|
207 |
+
public function booking_cancellation($book_id)
|
208 |
+
{
|
209 |
+
$booker_id = get_post_field('post_author', $book_id);
|
210 |
+
$booker = get_userdata($booker_id);
|
211 |
+
|
212 |
+
// Cancelling Notification is disabled
|
213 |
+
if(!isset($this->notif_settings['cancellation_notification']['status']) or isset($this->notif_settings['cancellation_notification']['status']) and !$this->notif_settings['cancellation_notification']['status']) return;
|
214 |
+
|
215 |
+
$tos = array();
|
216 |
+
|
217 |
+
// Send the notification to admin
|
218 |
+
if(isset($this->notif_settings['cancellation_notification']['send_to_admin']) and $this->notif_settings['cancellation_notification']['send_to_admin'] == 1)
|
219 |
+
{
|
220 |
+
$tos[] = get_bloginfo('admin_email');
|
221 |
+
}
|
222 |
+
|
223 |
+
// Send the notification to event organizer
|
224 |
+
if(isset($this->notif_settings['cancellation_notification']['send_to_organizer']) and $this->notif_settings['cancellation_notification']['send_to_organizer'] == 1)
|
225 |
+
{
|
226 |
+
$organizer_email = $this->get_booking_organizer_email($book_id);
|
227 |
+
if($organizer_email !== false) $tos[] = trim($organizer_email);
|
228 |
+
}
|
229 |
+
|
230 |
+
// Send the notification to event user
|
231 |
+
if(isset($this->notif_settings['cancellation_notification']['send_to_user']) and $this->notif_settings['cancellation_notification']['send_to_user'] == 1)
|
232 |
+
{
|
233 |
+
if(isset($booker->user_email) and $booker->user_email) $tos[] = trim($booker->user_email);
|
234 |
+
}
|
235 |
+
|
236 |
+
// No Recipient
|
237 |
+
if(!count($tos)) return;
|
238 |
+
|
239 |
+
$headers = array();
|
240 |
+
|
241 |
+
$recipients_str = isset($this->notif_settings['cancellation_notification']['recipients']) ? $this->notif_settings['cancellation_notification']['recipients'] : '';
|
242 |
+
$recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
|
243 |
+
|
244 |
+
foreach($recipients as $recipient)
|
245 |
+
{
|
246 |
+
// Skip if it's not a valid email
|
247 |
+
if(trim($recipient) == '' or !filter_var($recipient, FILTER_VALIDATE_EMAIL)) continue;
|
248 |
+
|
249 |
+
$headers[] = 'BCC: '.$recipient;
|
250 |
+
}
|
251 |
+
|
252 |
+
$subject = isset($this->notif_settings['cancellation_notification']['subject']) ? $this->content(__($this->notif_settings['cancellation_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('booking canceled.', 'modern-events-calendar-lite');
|
253 |
+
$message = isset($this->notif_settings['cancellation_notification']['content']) ? $this->content($this->notif_settings['cancellation_notification']['content'], $book_id) : '';
|
254 |
+
|
255 |
+
// Book Data
|
256 |
+
$message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$this->main->get_book_post_type()), $this->main->URL('admin').'edit.php'), $message);
|
257 |
+
|
258 |
+
// Attendee Full Information
|
259 |
+
if(strpos($message, '%%attendee_full_info%%') !== false or strpos($message, '%%attendees_full_info%%') !== false)
|
260 |
+
{
|
261 |
+
$attendees_full_info = $this->get_full_attendees_info($book_id);
|
262 |
+
|
263 |
+
$message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
|
264 |
+
$message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
|
265 |
+
}
|
266 |
+
|
267 |
+
// Set Email Type to HTML
|
268 |
+
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
269 |
+
|
270 |
+
// Send the mail
|
271 |
+
$i = 1;
|
272 |
+
foreach($tos as $to)
|
273 |
+
{
|
274 |
+
if($i > 1) $headers = array();
|
275 |
+
|
276 |
+
wp_mail($to, html_entity_decode(stripslashes($subject), ENT_HTML5), wpautop(stripslashes($message)), $headers);
|
277 |
+
$i++;
|
278 |
+
}
|
279 |
+
|
280 |
+
// Remove the HTML Email filter
|
281 |
+
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
282 |
+
}
|
283 |
+
|
284 |
/**
|
285 |
* Send admin notification
|
286 |
* @author Webnus <info@webnus.biz>
|
287 |
* @param int $book_id
|
288 |
+
* @return void
|
289 |
*/
|
290 |
public function admin_notification($book_id)
|
291 |
{
|
292 |
+
// Admin Notification is disabled
|
293 |
+
if(isset($this->notif_settings['admin_notification']['status']) and !$this->notif_settings['admin_notification']['status']) return;
|
294 |
+
|
295 |
$to = get_bloginfo('admin_email');
|
296 |
$subject = isset($this->notif_settings['admin_notification']['subject']) ? $this->content(__($this->notif_settings['admin_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('A new booking is received.', 'modern-events-calendar-lite');
|
297 |
$headers = array();
|
613 |
$gmt_offset_seconds = $this->main->get_gmt_offset_seconds();
|
614 |
$event_title = get_the_title($event_id);
|
615 |
$event_info = get_post($event_id);
|
616 |
+
$event_content = trim($event_info->post_content) ? strip_shortcodes(strip_tags($event_info->post_content)) : $event_title;
|
617 |
|
618 |
$google_caneldar_link = '<a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="https://www.google.com/calendar/event?action=TEMPLATE&text= ' . $event_title . '&dates='. gmdate('Ymd\\THi00\\Z', ($start_time - $gmt_offset_seconds)) . '/' . gmdate('Ymd\\THi00\\Z', ($end_time - $gmt_offset_seconds)) . '&details=' . urlencode($event_content) . '&location=' . get_term_meta($location_id, 'address', true) . '" target="_blank">' . __('+ Add to Google Calendar', 'modern-events-calendar-lite') . '</a>';
|
619 |
$ical_export_link = '<a class="mec-events-gcal mec-events-button mec-color mec-bg-color-hover mec-border-color" href="' . $this->main->ical_URL_email($event_id, $book_id, get_the_date('Y-m-d', $book_id)) . '">'. __('+ iCal export', 'modern-events-calendar-lite') . '</a>';
|
app/libraries/render.php
CHANGED
@@ -600,11 +600,11 @@ class MEC_render extends MEC_base
|
|
600 |
{
|
601 |
$repeat_type = $event->meta['mec_repeat_type'];
|
602 |
$repeat_interval = 1;
|
603 |
-
|
604 |
if(in_array($repeat_type, array('daily', 'weekly')))
|
605 |
{
|
606 |
$repeat_interval = $event->meta['mec_repeat_interval'];
|
607 |
-
|
608 |
$date_interval = $this->main->date_diff($start_date['date'], $today);
|
609 |
$passed_days = $date_interval ? $date_interval->days : 0;
|
610 |
|
600 |
{
|
601 |
$repeat_type = $event->meta['mec_repeat_type'];
|
602 |
$repeat_interval = 1;
|
603 |
+
|
604 |
if(in_array($repeat_type, array('daily', 'weekly')))
|
605 |
{
|
606 |
$repeat_interval = $event->meta['mec_repeat_interval'];
|
607 |
+
|
608 |
$date_interval = $this->main->date_diff($start_date['date'], $today);
|
609 |
$passed_days = $date_interval ? $date_interval->days : 0;
|
610 |
|
app/modules/countdown/details.php
CHANGED
@@ -50,7 +50,6 @@ if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'S
|
|
50 |
if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Edge') == true)$gmt_offset = substr(trim($gmt_offset), 0 , 3);
|
51 |
if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') == true) $gmt_offset = substr(trim($gmt_offset), 2 , 3);
|
52 |
|
53 |
-
|
54 |
// Generating javascript code of countdown default module
|
55 |
$defaultjs = '<script type="text/javascript">
|
56 |
jQuery(document).ready(function()
|
50 |
if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Edge') == true)$gmt_offset = substr(trim($gmt_offset), 0 , 3);
|
51 |
if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') == true) $gmt_offset = substr(trim($gmt_offset), 2 , 3);
|
52 |
|
|
|
53 |
// Generating javascript code of countdown default module
|
54 |
$defaultjs = '<script type="text/javascript">
|
55 |
jQuery(document).ready(function()
|
app/skins/monthly_view/calendar.php
CHANGED
@@ -61,8 +61,10 @@ elseif($week_start == 5) // Friday
|
|
61 |
|
62 |
// Print events
|
63 |
if(isset($events[$today]) and count($events[$today]))
|
64 |
-
{
|
65 |
-
echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a
|
|
|
|
|
66 |
$events_str .= '<div class="mec-calendar-events-sec" data-mec-cell="'.$day_id.'" '.(trim($selected_day) != '' ? ' style="display: block;"' : '').'><h6 class="mec-table-side-title">'.sprintf(__('Events for %s', 'modern-events-calendar-lite'), date_i18n('F', $time)).'</h6><h3 class="mec-color mec-table-side-day"> '.$date_suffix .'</h3>';
|
67 |
|
68 |
foreach($events[$today] as $event)
|
61 |
|
62 |
// Print events
|
63 |
if(isset($events[$today]) and count($events[$today]))
|
64 |
+
{
|
65 |
+
echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a>';
|
66 |
+
do_action('monthly_customiztion', $event);
|
67 |
+
echo '</dt>';
|
68 |
$events_str .= '<div class="mec-calendar-events-sec" data-mec-cell="'.$day_id.'" '.(trim($selected_day) != '' ? ' style="display: block;"' : '').'><h6 class="mec-table-side-title">'.sprintf(__('Events for %s', 'modern-events-calendar-lite'), date_i18n('F', $time)).'</h6><h3 class="mec-color mec-table-side-day"> '.$date_suffix .'</h3>';
|
69 |
|
70 |
foreach($events[$today] as $event)
|
app/skins/single.php
CHANGED
@@ -75,20 +75,19 @@ class MEC_skin_single extends MEC_skins
|
|
75 |
* Breadcrumbs On Single
|
76 |
* @author Webnus <info@webnus.biz>
|
77 |
*/
|
78 |
-
public function MEC_breadcrumbs()
|
79 |
{
|
80 |
$breadcrumbs_icon = '<i class="mec-color mec-sl-arrow-right"></i>'; // breadcrumbs_icon between crumbs
|
81 |
$showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show
|
82 |
global $post;
|
83 |
$homeURL = esc_url(home_url('/'));
|
84 |
echo '<div class="mec-address"><a href="' . esc_url($homeURL) . '"> ' . __('Home', 'modern-events-calendar-lite') . ' </a> ' . $breadcrumbs_icon . ' ';
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
if ($showCurrent == 1) echo ' ' . $breadcrumbs_icon . ' ' . '<span class="mec-current">' . get_the_title() . '</span></div>';
|
92 |
}
|
93 |
|
94 |
/**
|
@@ -107,7 +106,7 @@ class MEC_skin_single extends MEC_skins
|
|
107 |
// Event Repeat Type
|
108 |
$repeat_type = $rendered->meta['mec_repeat_type'];
|
109 |
|
110 |
-
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) :
|
111 |
|
112 |
if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days'))) $occurrence = date('Y-m-d', strtotime($occurrence));
|
113 |
elseif(strtotime($occurrence)) $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
|
@@ -116,7 +115,35 @@ class MEC_skin_single extends MEC_skins
|
|
116 |
$data = new stdClass();
|
117 |
$data->ID = $this->id;
|
118 |
$data->data = $rendered;
|
119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
$data->date = isset($data->dates[0]) ? $data->dates[0] : array();
|
121 |
|
122 |
// Set some data from original event in multilingual websites
|
@@ -149,6 +176,60 @@ class MEC_skin_single extends MEC_skins
|
|
149 |
$events[] = $data;
|
150 |
return $events;
|
151 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
|
153 |
/**
|
154 |
* Load Single Event Page for AJAX requert
|
@@ -297,7 +378,7 @@ class MEC_skin_single extends MEC_skins
|
|
297 |
<div class="mec-event-schedule mec-frontbox">
|
298 |
<h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule', 'modern-events-calendar-lite'); ?></h3>
|
299 |
<?php foreach($event->data->hourly_schedules as $day): ?>
|
300 |
-
<?php if(count($event->data->hourly_schedules)
|
301 |
<h4 class="mec-schedule-part"><?php echo $day['title']; ?></h4>
|
302 |
<?php endif; ?>
|
303 |
<div class="mec-event-schedule-content">
|
75 |
* Breadcrumbs On Single
|
76 |
* @author Webnus <info@webnus.biz>
|
77 |
*/
|
78 |
+
public function MEC_breadcrumbs($page_id)
|
79 |
{
|
80 |
$breadcrumbs_icon = '<i class="mec-color mec-sl-arrow-right"></i>'; // breadcrumbs_icon between crumbs
|
81 |
$showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show
|
82 |
global $post;
|
83 |
$homeURL = esc_url(home_url('/'));
|
84 |
echo '<div class="mec-address"><a href="' . esc_url($homeURL) . '"> ' . __('Home', 'modern-events-calendar-lite') . ' </a> ' . $breadcrumbs_icon . ' ';
|
85 |
+
$get_mec_archive_title = new MEC_main;
|
86 |
+
$crumbs_title = $get_mec_archive_title->get_archive_title();
|
87 |
+
$MEC_CPT = get_post_type_object(get_post_type());
|
88 |
+
$slug = $MEC_CPT->rewrite;
|
89 |
+
echo '<a href="' . $homeURL . $slug['slug'] . '/">' . $crumbs_title . '</a>';
|
90 |
+
if ($showCurrent == 1) echo ' ' . $breadcrumbs_icon . ' ' . '<span class="mec-current">' . get_the_title($page_id) . '</span></div>';
|
|
|
91 |
}
|
92 |
|
93 |
/**
|
106 |
// Event Repeat Type
|
107 |
$repeat_type = $rendered->meta['mec_repeat_type'];
|
108 |
|
109 |
+
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : date('Y-m-d');
|
110 |
|
111 |
if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days'))) $occurrence = date('Y-m-d', strtotime($occurrence));
|
112 |
elseif(strtotime($occurrence)) $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
|
115 |
$data = new stdClass();
|
116 |
$data->ID = $this->id;
|
117 |
$data->data = $rendered;
|
118 |
+
|
119 |
+
// Get Event Dates
|
120 |
+
$dates = $this->render->dates($this->id, $rendered, $this->maximum_dates, $occurrence);
|
121 |
+
|
122 |
+
// Remove First Date if it is already started!
|
123 |
+
if(!isset($_GET['occurrence']) or (isset($_GET['occurrence']) and !trim($_GET['occurrence'])))
|
124 |
+
{
|
125 |
+
$start_date = (isset($dates[0]['start']) and isset($dates[0]['start']['date'])) ? $dates[0]['start']['date'] : current_time('Y-m-d');
|
126 |
+
|
127 |
+
$s_time = '';
|
128 |
+
$s_time .= sprintf("%02d", $dates[0]['start']['hour']).':';
|
129 |
+
$s_time .= sprintf("%02d", $dates[0]['start']['minutes']);
|
130 |
+
$s_time .= trim($dates[0]['start']['ampm']);
|
131 |
+
|
132 |
+
$start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
|
133 |
+
|
134 |
+
$d1 = new DateTime($start_time);
|
135 |
+
$d2 = new DateTime(current_time("D M j Y G:i:s"));
|
136 |
+
|
137 |
+
if($d1 < $d2)
|
138 |
+
{
|
139 |
+
unset($dates[0]);
|
140 |
+
|
141 |
+
// Get Event Dates
|
142 |
+
$dates = $this->render->dates($this->id, $rendered, $this->maximum_dates);
|
143 |
+
}
|
144 |
+
}
|
145 |
+
|
146 |
+
$data->dates = $dates;
|
147 |
$data->date = isset($data->dates[0]) ? $data->dates[0] : array();
|
148 |
|
149 |
// Set some data from original event in multilingual websites
|
176 |
$events[] = $data;
|
177 |
return $events;
|
178 |
}
|
179 |
+
|
180 |
+
public function get_event_mec($event_ID)
|
181 |
+
{
|
182 |
+
// Original Event ID for Multilingual Websites
|
183 |
+
$original_event_id = $this->main->get_original_event($event_ID);
|
184 |
+
|
185 |
+
$events = array();
|
186 |
+
$rendered = $this->render->data($event_ID, (isset($this->atts['content']) ? $this->atts['content'] : ''));
|
187 |
+
|
188 |
+
// Event Repeat Type
|
189 |
+
$repeat_type = $rendered->meta['mec_repeat_type'];
|
190 |
+
|
191 |
+
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : NULL;
|
192 |
+
|
193 |
+
if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days'))) $occurrence = date('Y-m-d', strtotime($occurrence));
|
194 |
+
elseif(strtotime($occurrence)) $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
|
195 |
+
else $occurrence = NULL;
|
196 |
+
|
197 |
+
$data = new stdClass();
|
198 |
+
$data->ID = $event_ID;
|
199 |
+
$data->data = $rendered;
|
200 |
+
$data->dates = $this->render->dates($event_ID, $rendered, $this->maximum_dates, $occurrence);
|
201 |
+
$data->date = isset($data->dates[0]) ? $data->dates[0] : array();
|
202 |
+
|
203 |
+
// Set some data from original event in multilingual websites
|
204 |
+
if($event_ID != $original_event_id)
|
205 |
+
{
|
206 |
+
$original_tickets = get_post_meta($original_event_id, 'mec_tickets', true);
|
207 |
+
|
208 |
+
$rendered_tickets = array();
|
209 |
+
foreach($original_tickets as $ticket_id=>$original_ticket)
|
210 |
+
{
|
211 |
+
if(!isset($data->data->tickets[$ticket_id])) continue;
|
212 |
+
$rendered_tickets[$ticket_id] = array(
|
213 |
+
'name' => $data->data->tickets[$ticket_id]['name'],
|
214 |
+
'description' => $data->data->tickets[$ticket_id]['description'],
|
215 |
+
'price' => $original_ticket['price'],
|
216 |
+
'price_label' => $original_ticket['price_label'],
|
217 |
+
'limit' => $original_ticket['limit'],
|
218 |
+
'unlimited' => $original_ticket['unlimited'],
|
219 |
+
);
|
220 |
+
}
|
221 |
+
|
222 |
+
if(count($rendered_tickets)) $data->data->tickets = $rendered_tickets;
|
223 |
+
else $data->data->tickets = $original_tickets;
|
224 |
+
|
225 |
+
$data->ID = $original_event_id;
|
226 |
+
$data->dates = $this->render->dates($original_event_id, $rendered, $this->maximum_dates, $occurrence);
|
227 |
+
$data->date = isset($data->dates[0]) ? $data->dates[0] : array();
|
228 |
+
}
|
229 |
+
|
230 |
+
$events[] = $data;
|
231 |
+
return $events;
|
232 |
+
}
|
233 |
|
234 |
/**
|
235 |
* Load Single Event Page for AJAX requert
|
378 |
<div class="mec-event-schedule mec-frontbox">
|
379 |
<h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule', 'modern-events-calendar-lite'); ?></h3>
|
380 |
<?php foreach($event->data->hourly_schedules as $day): ?>
|
381 |
+
<?php if(count($event->data->hourly_schedules) >= 1 and isset($day['title'])): ?>
|
382 |
<h4 class="mec-schedule-part"><?php echo $day['title']; ?></h4>
|
383 |
<?php endif; ?>
|
384 |
<div class="mec-event-schedule-content">
|
app/skins/single/default.php
CHANGED
@@ -10,7 +10,7 @@ $single = new MEC_skin_single();
|
|
10 |
$breadcrumbs_settings = $settings['breadcrumbs'];
|
11 |
if($breadcrumbs_settings == '1' ): ?>
|
12 |
<div class="mec-breadcrumbs">
|
13 |
-
<?php $single->MEC_breadcrumbs(); ?>
|
14 |
</div>
|
15 |
<?php endif ;?>
|
16 |
<!-- end breadcrumbs -->
|
10 |
$breadcrumbs_settings = $settings['breadcrumbs'];
|
11 |
if($breadcrumbs_settings == '1' ): ?>
|
12 |
<div class="mec-breadcrumbs">
|
13 |
+
<?php $single->MEC_breadcrumbs( get_the_ID() ); ?>
|
14 |
</div>
|
15 |
<?php endif ;?>
|
16 |
<!-- end breadcrumbs -->
|
app/skins/single/modern.php
CHANGED
@@ -7,10 +7,10 @@ defined('MECEXEC') or die();
|
|
7 |
<!-- start breadcrumbs -->
|
8 |
<?php
|
9 |
$breadcrumbs_settings = $settings['breadcrumbs'];
|
10 |
-
if($breadcrumbs_settings == '1'
|
11 |
$breadcrumbs = new MEC_skin_single; ?>
|
12 |
<div class="mec-breadcrumbs mec-breadcrumbs-modern">
|
13 |
-
<?php
|
14 |
</div>
|
15 |
<?php endif ;?>
|
16 |
<!-- end breadcrumbs -->
|
@@ -201,7 +201,7 @@ defined('MECEXEC') or die();
|
|
201 |
<?php
|
202 |
}
|
203 |
?>
|
204 |
-
<?php
|
205 |
<?php
|
206 |
// Event labels
|
207 |
if(isset($event->data->labels) && !empty($event->data->labels))
|
@@ -270,17 +270,19 @@ defined('MECEXEC') or die();
|
|
270 |
</div>
|
271 |
<?php
|
272 |
$speakers = '""';
|
273 |
-
if
|
274 |
{
|
275 |
$speakers= [];
|
276 |
-
foreach
|
|
|
277 |
$speakers[] = array(
|
278 |
"@type" => "Person",
|
279 |
"name" => $value['name'],
|
280 |
"image" => $value['thumbnail'],
|
281 |
"sameAs" => $value['facebook'],
|
282 |
);
|
283 |
-
}
|
|
|
284 |
$speakers = json_encode($speakers);
|
285 |
}
|
286 |
?>
|
@@ -288,8 +290,9 @@ if ( !empty($event->data->speakers))
|
|
288 |
{
|
289 |
"@context" : "http://schema.org",
|
290 |
"@type" : "Event",
|
291 |
-
"startDate" : "<?php echo !empty(
|
292 |
-
"endDate" : "<?php echo !empty(
|
|
|
293 |
"location" :
|
294 |
{
|
295 |
"@type" : "Place",
|
@@ -297,6 +300,7 @@ if ( !empty($event->data->speakers))
|
|
297 |
"image" : "<?php echo esc_url($location['thumbnail'] ); ?>",
|
298 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
299 |
},
|
|
|
300 |
"offers": {
|
301 |
"url": "<?php echo get_the_permalink(); ?>",
|
302 |
"price": "<?php echo $event->data->meta['mec_cost'] ?>",
|
7 |
<!-- start breadcrumbs -->
|
8 |
<?php
|
9 |
$breadcrumbs_settings = $settings['breadcrumbs'];
|
10 |
+
if($breadcrumbs_settings == '1'):
|
11 |
$breadcrumbs = new MEC_skin_single; ?>
|
12 |
<div class="mec-breadcrumbs mec-breadcrumbs-modern">
|
13 |
+
<?php $breadcrumbs->MEC_breadcrumbs(get_the_ID()); ?>
|
14 |
</div>
|
15 |
<?php endif ;?>
|
16 |
<!-- end breadcrumbs -->
|
201 |
<?php
|
202 |
}
|
203 |
?>
|
204 |
+
<?php do_action('print_extra_costs', $event); ?>
|
205 |
<?php
|
206 |
// Event labels
|
207 |
if(isset($event->data->labels) && !empty($event->data->labels))
|
270 |
</div>
|
271 |
<?php
|
272 |
$speakers = '""';
|
273 |
+
if(!empty($event->data->speakers))
|
274 |
{
|
275 |
$speakers= [];
|
276 |
+
foreach($event->data->speakers as $key => $value)
|
277 |
+
{
|
278 |
$speakers[] = array(
|
279 |
"@type" => "Person",
|
280 |
"name" => $value['name'],
|
281 |
"image" => $value['thumbnail'],
|
282 |
"sameAs" => $value['facebook'],
|
283 |
);
|
284 |
+
}
|
285 |
+
|
286 |
$speakers = json_encode($speakers);
|
287 |
}
|
288 |
?>
|
290 |
{
|
291 |
"@context" : "http://schema.org",
|
292 |
"@type" : "Event",
|
293 |
+
"startDate" : "<?php echo !empty($event->data->meta['mec_date']['start']['date']) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
|
294 |
+
"endDate" : "<?php echo !empty($event->data->meta['mec_date']['end']['date']) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
|
295 |
+
<?php if(isset($location) and is_array($location)): ?>
|
296 |
"location" :
|
297 |
{
|
298 |
"@type" : "Place",
|
300 |
"image" : "<?php echo esc_url($location['thumbnail'] ); ?>",
|
301 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
302 |
},
|
303 |
+
<?php endif; ?>
|
304 |
"offers": {
|
305 |
"url": "<?php echo get_the_permalink(); ?>",
|
306 |
"price": "<?php echo $event->data->meta['mec_cost'] ?>",
|
assets/js/frontend.js
CHANGED
@@ -2087,6 +2087,13 @@ var mecSingleEventDisplayer = {
|
|
2087 |
initMasonry();
|
2088 |
if ( typeof custom_dev != undefined && custom_dev == 'yes') {
|
2089 |
$(".mec-wrap").css("height", "2000");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2090 |
$(".mec-load-more-button").on("click", function () {
|
2091 |
$(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+26)").css("display", "block");
|
2092 |
$(".mec-wrap").css("height", "auto");
|
@@ -2094,12 +2101,22 @@ var mecSingleEventDisplayer = {
|
|
2094 |
$(".mec-load-more-button").hide();
|
2095 |
})
|
2096 |
$(".mec-events-masonry-cats a:first-child").on("click", function () {
|
2097 |
-
$(".mec-wrap").css("height", "
|
2098 |
-
$(".mec-
|
|
|
|
|
2099 |
})
|
2100 |
$(".mec-events-masonry-cats a:not(:first-child)").on("click", function () {
|
2101 |
$(".mec-load-more-button").hide();
|
2102 |
$(".mec-wrap").css("height", "auto");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2103 |
})
|
2104 |
}
|
2105 |
});
|
2087 |
initMasonry();
|
2088 |
if ( typeof custom_dev != undefined && custom_dev == 'yes') {
|
2089 |
$(".mec-wrap").css("height", "2000");
|
2090 |
+
if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 768) {
|
2091 |
+
$(".mec-wrap").css("height", "7470");
|
2092 |
+
}
|
2093 |
+
if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 480) {
|
2094 |
+
$(".mec-wrap").css("height", "6780");
|
2095 |
+
}
|
2096 |
+
$(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+26)").css("display", "none");
|
2097 |
$(".mec-load-more-button").on("click", function () {
|
2098 |
$(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+26)").css("display", "block");
|
2099 |
$(".mec-wrap").css("height", "auto");
|
2101 |
$(".mec-load-more-button").hide();
|
2102 |
})
|
2103 |
$(".mec-events-masonry-cats a:first-child").on("click", function () {
|
2104 |
+
$(".mec-wrap").css("height", "auto");
|
2105 |
+
$(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+26)").css("display", "block");
|
2106 |
+
$(".mec-load-more-button").hide();
|
2107 |
+
initMasonry();
|
2108 |
})
|
2109 |
$(".mec-events-masonry-cats a:not(:first-child)").on("click", function () {
|
2110 |
$(".mec-load-more-button").hide();
|
2111 |
$(".mec-wrap").css("height", "auto");
|
2112 |
+
$(".mec-wrap").css("min-height", "400");
|
2113 |
+
$(".mec-event-masonry.shuffle .mec-masonry-item-wrap").css("display", "block");
|
2114 |
+
var element = document.querySelector("#mec_skin_" + settings.id + " .mec-event-masonry");
|
2115 |
+
var selector = $(this).attr('data-group');
|
2116 |
+
var CustomShuffle = new Shuffle(element, {
|
2117 |
+
itemSelector: '.mec-masonry-item-wrap',
|
2118 |
+
});
|
2119 |
+
CustomShuffle.filter(selector != '*' ? selector : Shuffle.ALL_ITEMS);
|
2120 |
})
|
2121 |
}
|
2122 |
});
|
changelog.txt
CHANGED
@@ -1,4 +1,12 @@
|
|
1 |
-
v 4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Improved: Tooltip notifications in the admin panel
|
3 |
- Improved: Notifications tab in settings
|
4 |
- Added: Breadcrumb in the single event page
|
1 |
+
v 4.3.0 – 10 June 2019
|
2 |
+
- Added: Booking cancellation notification
|
3 |
+
- Added: New feature to disable admin notification
|
4 |
+
- Fixed: Not showing the event when it is on current day and it is not started yet
|
5 |
+
- Fixed: Issue in booking module regarding dates
|
6 |
+
- Fixed: Issue regarding showing day title when only 1 day is added
|
7 |
+
- Fixed: Some PHP notices
|
8 |
+
|
9 |
+
v 4.2.5 – 3 June 2019
|
10 |
- Improved: Tooltip notifications in the admin panel
|
11 |
- Improved: Notifications tab in settings
|
12 |
- Added: Breadcrumb in the single event page
|
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-06-
|
6 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
64 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
65 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -288,7 +288,7 @@ msgstr "Veranstaltungen"
|
|
288 |
msgid "Event"
|
289 |
msgstr "Veranstaltung"
|
290 |
|
291 |
-
#: app/features/events.php:136 app/features/mec.php:
|
292 |
msgid "Add Event"
|
293 |
msgstr "Veranstaltung hinzufügen"
|
294 |
|
@@ -336,7 +336,7 @@ msgid "Category"
|
|
336 |
msgstr "Kategorie"
|
337 |
|
338 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
339 |
-
#: app/features/mec.php:
|
340 |
#: app/libraries/main.php:4375
|
341 |
msgid "Categories"
|
342 |
msgstr "Kategorien"
|
@@ -436,7 +436,7 @@ msgstr "Gäste Daten"
|
|
436 |
#: app/features/events.php:410 app/features/events.php:1682
|
437 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
438 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +448,8 @@ msgstr "Name"
|
|
448 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
449 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
450 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
451 |
-
#: app/libraries/notifications.php:
|
452 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
453 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
454 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
455 |
#: app/skins/single/modern.php:48
|
@@ -574,13 +574,14 @@ msgstr ""
|
|
574 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
575 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
576 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
577 |
-
#: app/features/mec/notifications.php:
|
578 |
-
#: app/features/mec/notifications.php:
|
579 |
-
#: app/features/mec/notifications.php:
|
580 |
-
#: app/features/mec/notifications.php:
|
581 |
-
#: app/features/mec/notifications.php:
|
582 |
-
#: app/features/mec/notifications.php:
|
583 |
-
#: app/features/mec/notifications.php:
|
|
|
584 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
585 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
586 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -791,7 +792,7 @@ msgid "Day 1"
|
|
791 |
msgstr ""
|
792 |
|
793 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
794 |
-
#: app/skins/single.php:
|
795 |
msgid "Hourly Schedule"
|
796 |
msgstr "Stundenplan"
|
797 |
|
@@ -863,7 +864,7 @@ msgstr "Beschreibung"
|
|
863 |
|
864 |
#: app/features/events.php:913 app/features/events.php:933
|
865 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
866 |
-
#: app/features/mec.php:
|
867 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
868 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
869 |
msgid "Speakers"
|
@@ -1271,7 +1272,7 @@ msgstr "Veranstalter"
|
|
1271 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1272 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1273 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1274 |
-
#: app/skins/single.php:
|
1275 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1276 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1277 |
msgid "Location"
|
@@ -1449,14 +1450,14 @@ msgid "Remove Image"
|
|
1449 |
msgstr "Bild entfernen"
|
1450 |
|
1451 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1452 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1453 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1454 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1455 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1456 |
msgid "Labels"
|
1457 |
msgstr "Labels"
|
1458 |
|
1459 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1460 |
#: app/features/mec/meta_boxes/filter.php:138
|
1461 |
msgid "Tags"
|
1462 |
msgstr "Schlagworte"
|
@@ -1493,7 +1494,7 @@ msgstr "MEC - Import / Export"
|
|
1493 |
|
1494 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1495 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1496 |
-
#: app/features/mec/notifications.php:
|
1497 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1498 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1499 |
msgid "Import / Export"
|
@@ -1774,15 +1775,15 @@ msgstr "Umschalten"
|
|
1774 |
#: app/features/ix/export_g_calendar.php:72
|
1775 |
#: app/features/ix/export_g_calendar.php:147
|
1776 |
#: app/features/ix/export_g_calendar.php:164
|
1777 |
-
#: app/features/mec/notifications.php:
|
1778 |
-
#: app/features/mec/notifications.php:
|
1779 |
-
#: app/features/mec/notifications.php:
|
1780 |
-
#: app/features/mec/notifications.php:
|
1781 |
msgid "Add to Google Calendar"
|
1782 |
msgstr "Zum Google Kalender hinzufügen"
|
1783 |
|
1784 |
#: app/features/ix/export_g_calendar.php:90
|
1785 |
-
#: app/features/mec/notifications.php:
|
1786 |
msgid "Checking ..."
|
1787 |
msgstr "Überprüfung"
|
1788 |
|
@@ -2038,7 +2039,7 @@ msgstr "Automatischer Google Calender Import"
|
|
2038 |
|
2039 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2040 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2041 |
-
#: app/features/mec/notifications.php:
|
2042 |
msgid "Important Note"
|
2043 |
msgstr "Important Note"
|
2044 |
|
@@ -2190,7 +2191,7 @@ msgstr ""
|
|
2190 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2191 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2192 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2193 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2194 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2195 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2196 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2206,7 +2207,7 @@ msgstr "Ausgewähltes Bild"
|
|
2206 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2207 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2208 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2209 |
-
#: app/skins/monthly_view/calendar.php:
|
2210 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2211 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2212 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2234,7 +2235,7 @@ msgstr "Slug"
|
|
2234 |
msgid "Event %s"
|
2235 |
msgstr "Event %s"
|
2236 |
|
2237 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2238 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2239 |
#: app/libraries/main.php:4379
|
2240 |
msgid "Locations"
|
@@ -2364,123 +2365,123 @@ msgstr ""
|
|
2364 |
"Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
|
2365 |
"auswählen, wenn Sie möchten."
|
2366 |
|
2367 |
-
#: app/features/mec.php:
|
2368 |
msgid ""
|
2369 |
"Activation faild. Please check your purchase code or license type."
|
2370 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: app/features/mec.php:
|
2374 |
msgid "Troubleshooting"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: app/features/mec.php:
|
2378 |
msgid ""
|
2379 |
"Your options is not in JSON format. Please insert correct options in this "
|
2380 |
"field and try again."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: app/features/mec.php:
|
2384 |
#, fuzzy
|
2385 |
#| msgid "Your booking cannot verify!"
|
2386 |
msgid "Your options field can not be empty!"
|
2387 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
2388 |
|
2389 |
-
#: app/features/mec.php:
|
2390 |
#, fuzzy
|
2391 |
#| msgid "Your booking successfully verified."
|
2392 |
msgid "Your options imported successfuly."
|
2393 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
2394 |
|
2395 |
-
#: app/features/mec.php:
|
2396 |
#, fuzzy
|
2397 |
#| msgid "Support"
|
2398 |
msgid "MEC - Support"
|
2399 |
msgstr "Support"
|
2400 |
|
2401 |
-
#: app/features/mec.php:
|
2402 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2403 |
-
#: app/features/mec/notifications.php:
|
2404 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2405 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2406 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2407 |
msgid "Support"
|
2408 |
msgstr "Support"
|
2409 |
|
2410 |
-
#: app/features/mec.php:
|
2411 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2412 |
#: app/libraries/main.php:4381
|
2413 |
msgid "Organizers"
|
2414 |
msgstr "Veranstalter"
|
2415 |
|
2416 |
-
#: app/features/mec.php:
|
2417 |
#: app/features/mec/dashboard.php:194
|
2418 |
msgid "Shortcodes"
|
2419 |
msgstr "Shortcodes"
|
2420 |
|
2421 |
-
#: app/features/mec.php:
|
2422 |
msgid "MEC - Settings"
|
2423 |
msgstr "MEC - Einstellungen"
|
2424 |
|
2425 |
-
#: app/features/mec.php:
|
2426 |
#, fuzzy
|
2427 |
#| msgid "MEC - Settings"
|
2428 |
msgid "MEC - Addons"
|
2429 |
msgstr "MEC - Einstellungen"
|
2430 |
|
2431 |
-
#: app/features/mec.php:
|
2432 |
msgid "Addons"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: app/features/mec.php:
|
2436 |
msgid "Add Shortcode"
|
2437 |
msgstr "Shortcode hinzufügen"
|
2438 |
|
2439 |
-
#: app/features/mec.php:
|
2440 |
msgid "Add New Shortcode"
|
2441 |
msgstr "Neuen Shortcode hinzufügen"
|
2442 |
|
2443 |
-
#: app/features/mec.php:
|
2444 |
msgid "No shortcodes found!"
|
2445 |
msgstr "Keine Shortcodes gefunden!"
|
2446 |
|
2447 |
-
#: app/features/mec.php:
|
2448 |
msgid "All Shortcodes"
|
2449 |
msgstr "Alle Shortcodes"
|
2450 |
|
2451 |
-
#: app/features/mec.php:
|
2452 |
msgid "Edit shortcodes"
|
2453 |
msgstr "Shortcode ändern"
|
2454 |
|
2455 |
-
#: app/features/mec.php:
|
2456 |
msgid "No shortcodes found in Trash!"
|
2457 |
msgstr "Keine Shortcodes im Papierkorb gefunden!"
|
2458 |
|
2459 |
-
#: app/features/mec.php:
|
2460 |
msgid "Display Options"
|
2461 |
msgstr "Darstellungsoptionen"
|
2462 |
|
2463 |
-
#: app/features/mec.php:
|
2464 |
msgid "Filter Options"
|
2465 |
msgstr "Filteroptionen"
|
2466 |
|
2467 |
-
#: app/features/mec.php:
|
2468 |
msgid "Search Form"
|
2469 |
msgstr "Suche Formular"
|
2470 |
|
2471 |
-
#: app/features/mec.php:
|
2472 |
msgid "Display content's images as Popup"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: app/features/mec.php:
|
2476 |
msgid "Single Event Display Method"
|
2477 |
msgstr "Single Event Anzeigemethode"
|
2478 |
|
2479 |
-
#: app/features/mec.php:
|
2480 |
msgid "Separate Window"
|
2481 |
msgstr "Separates Fenster"
|
2482 |
|
2483 |
-
#: app/features/mec.php:
|
2484 |
msgid "Modal 1"
|
2485 |
msgstr "Modal 1"
|
2486 |
|
@@ -2641,10 +2642,10 @@ msgstr "Änderungsprotokoll"
|
|
2641 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2642 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2643 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2644 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2645 |
-
#: app/features/mec/notifications.php:
|
2646 |
-
#: app/features/mec/notifications.php:
|
2647 |
-
#: app/features/mec/notifications.php:
|
2648 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2649 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2650 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2659,7 +2660,7 @@ msgid "Save Changes"
|
|
2659 |
msgstr "Änderungen sichern"
|
2660 |
|
2661 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2662 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2663 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2664 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2665 |
#: app/features/mec/support.php:52
|
@@ -2667,7 +2668,7 @@ msgid "Styling Options"
|
|
2667 |
msgstr "Styling-Optionen"
|
2668 |
|
2669 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2670 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2671 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2672 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2673 |
#: app/features/mec/support.php:59
|
@@ -2676,21 +2677,21 @@ msgstr "Custom CSS"
|
|
2676 |
|
2677 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2678 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2679 |
-
#: app/features/mec/notifications.php:
|
2680 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2681 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2682 |
msgid "Messages"
|
2683 |
msgstr "Nachrichten"
|
2684 |
|
2685 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2686 |
-
#: app/features/mec/notifications.php:
|
2687 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2688 |
#: app/features/mec/styling.php:375
|
2689 |
msgid "Saved"
|
2690 |
msgstr "Gesichert"
|
2691 |
|
2692 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2693 |
-
#: app/features/mec/notifications.php:
|
2694 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2695 |
#: app/features/mec/styling.php:376
|
2696 |
msgid "Settings Saved!"
|
@@ -3536,319 +3537,385 @@ msgstr "Text eingeben"
|
|
3536 |
msgid "No Search Options"
|
3537 |
msgstr "Keine Suchoptionen"
|
3538 |
|
3539 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3540 |
msgid "Booking Notification"
|
3541 |
msgstr "Buchungsbenachrichtigung"
|
3542 |
|
3543 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3544 |
msgid "Booking Verification"
|
3545 |
msgstr "Verifizierung der Buchung"
|
3546 |
|
3547 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3548 |
#: app/features/mec/settings.php:1409
|
3549 |
msgid "Booking Confirmation"
|
3550 |
msgstr "Buchungsbestätigung"
|
3551 |
|
3552 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3553 |
msgid "Admin Notification"
|
3554 |
msgstr "Admin-Benachrichtiung"
|
3555 |
|
3556 |
-
#: app/features/mec/notifications.php:
|
3557 |
-
#: app/libraries/notifications.php:
|
3558 |
msgid "Booking Reminder"
|
3559 |
msgstr "Buchungs Erinnerung"
|
3560 |
|
3561 |
-
#: app/features/mec/notifications.php:
|
3562 |
#: app/features/mec/support-page.php:80
|
3563 |
msgid "New Event"
|
3564 |
msgstr "Neue Veranstaltung"
|
3565 |
|
3566 |
-
#: app/features/mec/notifications.php:
|
3567 |
msgid "Enable booking notification"
|
3568 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
3569 |
|
3570 |
-
#: app/features/mec/notifications.php:
|
3571 |
msgid "It sends to attendee after booking for notifying him/her."
|
3572 |
msgstr ""
|
3573 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
3574 |
"benachrichtigen."
|
3575 |
|
3576 |
-
#: app/features/mec/notifications.php:
|
3577 |
-
#: app/features/mec/notifications.php:
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
-
#: app/features/mec/notifications.php:
|
3580 |
-
#: app/features/mec/notifications.php:
|
3581 |
-
#: app/features/mec/notifications.php:
|
|
|
3582 |
msgid "Email Subject"
|
3583 |
msgstr "Email Betreff"
|
3584 |
|
3585 |
-
#: app/features/mec/notifications.php:
|
3586 |
-
#: app/features/mec/notifications.php:
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
-
#: app/features/mec/notifications.php:
|
3590 |
-
#: app/features/mec/notifications.php:
|
3591 |
-
#: app/features/mec/notifications.php:
|
3592 |
-
#: app/features/mec/notifications.php:
|
3593 |
-
#: app/features/mec/notifications.php:
|
3594 |
-
#: app/features/mec/notifications.php:
|
3595 |
-
#: app/features/mec/notifications.php:
|
3596 |
-
#: app/features/mec/notifications.php:
|
3597 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3598 |
msgid "Custom Recipients"
|
3599 |
msgstr "Individuelle Empfänger"
|
3600 |
|
3601 |
-
#: app/features/mec/notifications.php:
|
3602 |
-
#: app/features/mec/notifications.php:
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
-
#: app/features/mec/notifications.php:
|
3605 |
-
#: app/features/mec/notifications.php:
|
3606 |
-
#: app/features/mec/notifications.php:
|
3607 |
-
#: app/features/mec/notifications.php:
|
|
|
3608 |
msgid "Insert comma separated emails for multiple recipients."
|
3609 |
msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
|
3610 |
|
3611 |
-
#: app/features/mec/notifications.php:
|
3612 |
-
#: app/features/mec/notifications.php:
|
|
|
3613 |
msgid "Send the email to event organizer"
|
3614 |
msgstr "Sendet das Email zum Event Organisator"
|
3615 |
|
3616 |
-
#: app/features/mec/notifications.php:
|
3617 |
-
#: app/features/mec/notifications.php:
|
3618 |
-
#: app/features/mec/notifications.php:
|
3619 |
-
#: app/features/mec/notifications.php:
|
3620 |
-
#: app/features/mec/notifications.php:
|
3621 |
-
#: app/features/mec/notifications.php:
|
|
|
3622 |
msgid "Email Content"
|
3623 |
msgstr "Email Inhalt"
|
3624 |
|
3625 |
-
#: app/features/mec/notifications.php:
|
3626 |
-
#: app/features/mec/notifications.php:
|
3627 |
-
#: app/features/mec/notifications.php:
|
3628 |
-
#: app/features/mec/notifications.php:
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
-
#: app/features/mec/notifications.php:
|
|
|
3631 |
msgid "You can use following placeholders"
|
3632 |
msgstr "Sie können die folgenden Platzhalter wählen"
|
3633 |
|
3634 |
-
#: app/features/mec/notifications.php:
|
3635 |
-
#: app/features/mec/notifications.php:
|
3636 |
-
#: app/features/mec/notifications.php:
|
3637 |
-
#: app/features/mec/notifications.php:
|
3638 |
-
#: app/features/mec/notifications.php:
|
|
|
3639 |
msgid "First name of attendee"
|
3640 |
msgstr "Vorname des Teilnehmers"
|
3641 |
|
3642 |
-
#: app/features/mec/notifications.php:
|
3643 |
-
#: app/features/mec/notifications.php:
|
3644 |
-
#: app/features/mec/notifications.php:
|
3645 |
-
#: app/features/mec/notifications.php:
|
3646 |
-
#: app/features/mec/notifications.php:
|
|
|
3647 |
msgid "Last name of attendee"
|
3648 |
msgstr "Nachname des Teilnehmers"
|
3649 |
|
3650 |
-
#: app/features/mec/notifications.php:
|
3651 |
-
#: app/features/mec/notifications.php:
|
3652 |
-
#: app/features/mec/notifications.php:
|
3653 |
-
#: app/features/mec/notifications.php:
|
3654 |
-
#: app/features/mec/notifications.php:
|
|
|
3655 |
msgid "Email of attendee"
|
3656 |
msgstr "Email des Teilnehmers"
|
3657 |
|
3658 |
-
#: app/features/mec/notifications.php:
|
3659 |
-
#: app/features/mec/notifications.php:
|
3660 |
-
#: app/features/mec/notifications.php:
|
3661 |
-
#: app/features/mec/notifications.php:
|
3662 |
-
#: app/features/mec/notifications.php:
|
|
|
3663 |
msgid "Booked date of event"
|
3664 |
msgstr "Gebuchtes Datum der Veranstaltung"
|
3665 |
|
3666 |
-
#: app/features/mec/notifications.php:
|
3667 |
-
#: app/features/mec/notifications.php:
|
3668 |
-
#: app/features/mec/notifications.php:
|
3669 |
-
#: app/features/mec/notifications.php:
|
3670 |
-
#: app/features/mec/notifications.php:
|
|
|
3671 |
#, fuzzy
|
3672 |
#| msgid "Booked date of event"
|
3673 |
msgid "Booked time of event"
|
3674 |
msgstr "Gebuchtes Datum der Veranstaltung"
|
3675 |
|
3676 |
-
#: app/features/mec/notifications.php:
|
3677 |
-
#: app/features/mec/notifications.php:
|
3678 |
-
#: app/features/mec/notifications.php:
|
3679 |
-
#: app/features/mec/notifications.php:
|
3680 |
-
#: app/features/mec/notifications.php:
|
|
|
3681 |
msgid "Booking Price"
|
3682 |
msgstr "Buchungspreis"
|
3683 |
|
3684 |
-
#: app/features/mec/notifications.php:
|
3685 |
-
#: app/features/mec/notifications.php:
|
3686 |
-
#: app/features/mec/notifications.php:
|
3687 |
-
#: app/features/mec/notifications.php:
|
3688 |
-
#: app/features/mec/notifications.php:
|
3689 |
-
#: app/features/mec/notifications.php:
|
|
|
3690 |
msgid "Your website title"
|
3691 |
msgstr "Titel Ihrer Webseite"
|
3692 |
|
3693 |
-
#: app/features/mec/notifications.php:
|
3694 |
-
#: app/features/mec/notifications.php:
|
3695 |
-
#: app/features/mec/notifications.php:
|
3696 |
-
#: app/features/mec/notifications.php:
|
3697 |
-
#: app/features/mec/notifications.php:
|
3698 |
-
#: app/features/mec/notifications.php:
|
|
|
3699 |
msgid "Your website URL"
|
3700 |
msgstr "URL Ihrer Webseite"
|
3701 |
|
3702 |
-
#: app/features/mec/notifications.php:
|
3703 |
-
#: app/features/mec/notifications.php:
|
3704 |
-
#: app/features/mec/notifications.php:
|
3705 |
-
#: app/features/mec/notifications.php:
|
3706 |
-
#: app/features/mec/notifications.php:
|
3707 |
-
#: app/features/mec/notifications.php:
|
|
|
3708 |
msgid "Your website description"
|
3709 |
msgstr "Beschreibung Ihrer Webseite"
|
3710 |
|
3711 |
-
#: app/features/mec/notifications.php:
|
3712 |
-
#: app/features/mec/notifications.php:
|
3713 |
-
#: app/features/mec/notifications.php:
|
3714 |
-
#: app/features/mec/notifications.php:
|
3715 |
-
#: app/features/mec/notifications.php:
|
|
|
3716 |
msgid "Event title"
|
3717 |
msgstr "Titel der Veranstaltung"
|
3718 |
|
3719 |
-
#: app/features/mec/notifications.php:
|
3720 |
-
#: app/features/mec/notifications.php:
|
3721 |
-
#: app/features/mec/notifications.php:
|
3722 |
-
#: app/features/mec/notifications.php:
|
3723 |
-
#: app/features/mec/notifications.php:
|
|
|
3724 |
#, fuzzy
|
3725 |
#| msgid "Event Link"
|
3726 |
msgid "Event link"
|
3727 |
msgstr "Veranstaltungslink"
|
3728 |
|
3729 |
-
#: app/features/mec/notifications.php:
|
3730 |
-
#: app/features/mec/notifications.php:
|
3731 |
-
#: app/features/mec/notifications.php:
|
3732 |
-
#: app/features/mec/notifications.php:
|
3733 |
-
#: app/features/mec/notifications.php:
|
|
|
3734 |
msgid "Organizer name of booked event"
|
3735 |
msgstr "Name des Veranstalters des gebuchten Events"
|
3736 |
|
3737 |
-
#: app/features/mec/notifications.php:
|
3738 |
-
#: app/features/mec/notifications.php:
|
3739 |
-
#: app/features/mec/notifications.php:
|
3740 |
-
#: app/features/mec/notifications.php:
|
3741 |
-
#: app/features/mec/notifications.php:
|
|
|
3742 |
msgid "Organizer tel of booked event"
|
3743 |
msgstr "Tel des Veranstalters"
|
3744 |
|
3745 |
-
#: app/features/mec/notifications.php:
|
3746 |
-
#: app/features/mec/notifications.php:
|
3747 |
-
#: app/features/mec/notifications.php:
|
3748 |
-
#: app/features/mec/notifications.php:
|
3749 |
-
#: app/features/mec/notifications.php:
|
|
|
3750 |
msgid "Organizer email of booked event"
|
3751 |
msgstr "Email des Veranstalters des gebuchten events"
|
3752 |
|
3753 |
-
#: app/features/mec/notifications.php:
|
3754 |
-
#: app/features/mec/notifications.php:
|
3755 |
-
#: app/features/mec/notifications.php:
|
3756 |
-
#: app/features/mec/notifications.php:
|
3757 |
-
#: app/features/mec/notifications.php:
|
|
|
3758 |
msgid "Location name of booked event"
|
3759 |
msgstr "Veranstaltungsort"
|
3760 |
|
3761 |
-
#: app/features/mec/notifications.php:
|
3762 |
-
#: app/features/mec/notifications.php:
|
3763 |
-
#: app/features/mec/notifications.php:
|
3764 |
-
#: app/features/mec/notifications.php:
|
3765 |
-
#: app/features/mec/notifications.php:
|
|
|
3766 |
msgid "Location address of booked event"
|
3767 |
msgstr "Adresse der gebuchten Veranstaltung"
|
3768 |
|
3769 |
-
#: app/features/mec/notifications.php:
|
3770 |
-
#: app/features/mec/notifications.php:
|
|
|
3771 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3772 |
msgstr ""
|
3773 |
"Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
|
3774 |
"Name, email, etc."
|
3775 |
|
3776 |
-
#: app/features/mec/notifications.php:
|
3777 |
-
#: app/features/mec/notifications.php:
|
3778 |
-
#: app/features/mec/notifications.php:
|
3779 |
msgid "Invoice Link"
|
3780 |
msgstr "Rechnungslink"
|
3781 |
|
3782 |
-
#: app/features/mec/notifications.php:
|
3783 |
-
#: app/features/mec/notifications.php:
|
3784 |
-
#: app/features/mec/notifications.php:
|
3785 |
-
#: app/features/mec/notifications.php:
|
3786 |
-
#: app/features/mec/notifications.php:
|
|
|
3787 |
msgid "Total Attendees"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: app/features/mec/notifications.php:
|
3791 |
-
#: app/features/mec/notifications.php:
|
3792 |
-
#: app/features/mec/notifications.php:
|
3793 |
-
#: app/features/mec/notifications.php:
|
3794 |
#, fuzzy
|
3795 |
#| msgid "Ticket Name"
|
3796 |
msgid "Ticket name"
|
3797 |
msgstr "Ticket Name"
|
3798 |
|
3799 |
-
#: app/features/mec/notifications.php:
|
3800 |
-
#: app/features/mec/notifications.php:
|
3801 |
-
#: app/features/mec/notifications.php:
|
3802 |
-
#: app/features/mec/notifications.php:
|
3803 |
#, fuzzy
|
3804 |
#| msgid "Ticket Name"
|
3805 |
msgid "Ticket time"
|
3806 |
msgstr "Ticket Name"
|
3807 |
|
3808 |
-
#: app/features/mec/notifications.php:
|
3809 |
-
#: app/features/mec/notifications.php:
|
3810 |
-
#: app/features/mec/notifications.php:
|
3811 |
-
#: app/features/mec/notifications.php:
|
3812 |
#, fuzzy
|
3813 |
#| msgid "Download Invoice"
|
3814 |
msgid "Download ICS file"
|
3815 |
msgstr "Download Rechnung\n"
|
3816 |
|
3817 |
-
#: app/features/mec/notifications.php:
|
3818 |
msgid "It sends to attendee email for verifying their booking/email."
|
3819 |
msgstr ""
|
3820 |
"Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
|
3821 |
"verifizieren."
|
3822 |
|
3823 |
-
#: app/features/mec/notifications.php:
|
3824 |
msgid "Email/Booking verification link."
|
3825 |
msgstr "Bestätigungslink für Email/Buchung"
|
3826 |
|
3827 |
-
#: app/features/mec/notifications.php:
|
3828 |
msgid "It sends to attendee after confirming the booking by admin."
|
3829 |
msgstr ""
|
3830 |
"Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
|
3831 |
|
3832 |
-
#: app/features/mec/notifications.php:
|
3833 |
-
#: app/features/mec/notifications.php:
|
3834 |
msgid "Booking cancellation link."
|
3835 |
msgstr "Link zur Stornierung der Buchung"
|
3836 |
|
3837 |
-
#: app/features/mec/notifications.php:
|
3838 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3839 |
msgstr ""
|
3840 |
-
"
|
3841 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3842 |
|
3843 |
-
#: app/features/mec/notifications.php:
|
|
|
3844 |
msgid "Admin booking management link."
|
3845 |
msgstr "Admin-link zur Buchungsverwaltung"
|
3846 |
|
3847 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3848 |
msgid "Enable booking reminder notification"
|
3849 |
msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
|
3850 |
|
3851 |
-
#: app/features/mec/notifications.php:
|
3852 |
#, php-format
|
3853 |
msgid ""
|
3854 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3860,19 +3927,19 @@ msgstr ""
|
|
3860 |
"Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
|
3861 |
"gesendet werden."
|
3862 |
|
3863 |
-
#: app/features/mec/notifications.php:
|
3864 |
msgid "only once per day"
|
3865 |
msgstr "nur einmal pro Tag"
|
3866 |
|
3867 |
-
#: app/features/mec/notifications.php:
|
3868 |
msgid "Days"
|
3869 |
msgstr "Tage"
|
3870 |
|
3871 |
-
#: app/features/mec/notifications.php:
|
3872 |
msgid "Enable new event notification"
|
3873 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
3874 |
|
3875 |
-
#: app/features/mec/notifications.php:
|
3876 |
msgid ""
|
3877 |
"It sends after adding a new event from frontend event submission or from "
|
3878 |
"website backend."
|
@@ -3880,36 +3947,36 @@ msgstr ""
|
|
3880 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
3881 |
"Übermittlung oder dem Backend versandt."
|
3882 |
|
3883 |
-
#: app/features/mec/notifications.php:
|
3884 |
msgid "Title of event"
|
3885 |
msgstr "Titel der Veranstaltung"
|
3886 |
|
3887 |
-
#: app/features/mec/notifications.php:
|
3888 |
#, fuzzy
|
3889 |
#| msgid "Title of event"
|
3890 |
msgid "Link of event"
|
3891 |
msgstr "Titel der Veranstaltung"
|
3892 |
|
3893 |
-
#: app/features/mec/notifications.php:
|
3894 |
msgid "Status of event"
|
3895 |
msgstr "Status der Veranstaltung"
|
3896 |
|
3897 |
-
#: app/features/mec/notifications.php:
|
3898 |
#: app/features/mec/settings.php:1253
|
3899 |
msgid "Event Note"
|
3900 |
msgstr "Veranstaltungsnotiz"
|
3901 |
|
3902 |
-
#: app/features/mec/notifications.php:
|
3903 |
msgid "Admin events management link."
|
3904 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
3905 |
|
3906 |
-
#: app/features/mec/notifications.php:
|
3907 |
-
#: app/features/mec/notifications.php:
|
3908 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3909 |
msgid "Verified"
|
3910 |
msgstr "Verifiziert"
|
3911 |
|
3912 |
-
#: app/features/mec/notifications.php:
|
3913 |
msgid "Please Refresh Page"
|
3914 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3915 |
|
@@ -5404,7 +5471,7 @@ msgid "eg. https://webnus.net"
|
|
5404 |
msgstr "http://webnus.net"
|
5405 |
|
5406 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5407 |
-
#: app/skins/single.php:
|
5408 |
msgid "Other Organizers"
|
5409 |
msgstr "Andere Veranstalter"
|
5410 |
|
@@ -5554,7 +5621,7 @@ msgstr ""
|
|
5554 |
msgid "day"
|
5555 |
msgstr "Tag"
|
5556 |
|
5557 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5558 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5559 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5560 |
msgid "days"
|
@@ -5564,7 +5631,7 @@ msgstr "Tage"
|
|
5564 |
msgid "hour"
|
5565 |
msgstr "Stunde"
|
5566 |
|
5567 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5568 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5569 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5570 |
msgid "hours"
|
@@ -5574,7 +5641,7 @@ msgstr "Stunden"
|
|
5574 |
msgid "minute"
|
5575 |
msgstr "Minute"
|
5576 |
|
5577 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5578 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5579 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5580 |
msgid "minutes"
|
@@ -5584,7 +5651,7 @@ msgstr "Minuten"
|
|
5584 |
msgid "second"
|
5585 |
msgstr "Sekunde"
|
5586 |
|
5587 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5588 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5589 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5590 |
msgid "seconds"
|
@@ -6063,38 +6130,44 @@ msgstr "Ihre Buchung ist eingegangen"
|
|
6063 |
msgid "Your booking is confirmed."
|
6064 |
msgstr "Ihre Buchung wurde bestätigt."
|
6065 |
|
6066 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6067 |
msgid "A new booking is received."
|
6068 |
msgstr "Eine neue Buchung ist eingegangen."
|
6069 |
|
6070 |
-
#: app/libraries/notifications.php:
|
6071 |
msgid "A new event is added."
|
6072 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
6073 |
|
6074 |
-
#: app/libraries/notifications.php:
|
6075 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
6076 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
6077 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
6078 |
msgid "All of the day"
|
6079 |
msgstr "Den ganzen Tag"
|
6080 |
|
6081 |
-
#: app/libraries/notifications.php:
|
6082 |
msgid "to"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
-
#: app/libraries/notifications.php:
|
6086 |
msgid "+ Add to Google Calendar"
|
6087 |
msgstr "+ zum Google Calendar hinzufügen"
|
6088 |
|
6089 |
-
#: app/libraries/notifications.php:
|
6090 |
msgid "+ iCal export"
|
6091 |
msgstr "+ zu iCal exportieren"
|
6092 |
|
6093 |
-
#: app/libraries/notifications.php:
|
6094 |
msgid "Yes"
|
6095 |
msgstr "Ja"
|
6096 |
|
6097 |
-
#: app/libraries/notifications.php:
|
6098 |
msgid "No"
|
6099 |
msgstr "Nein"
|
6100 |
|
@@ -6312,15 +6385,15 @@ msgstr "Liste / Listenansicht"
|
|
6312 |
msgid "All"
|
6313 |
msgstr "Alle"
|
6314 |
|
6315 |
-
#: app/skins/monthly_view/calendar.php:
|
6316 |
-
#: app/skins/monthly_view/calendar.php:
|
6317 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6318 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6319 |
#, php-format
|
6320 |
msgid "Events for %s"
|
6321 |
msgstr "Veranstaltungen für %s"
|
6322 |
|
6323 |
-
#: app/skins/monthly_view/calendar.php:
|
6324 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6325 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6326 |
msgid "No Events"
|
@@ -6330,19 +6403,19 @@ msgstr "Keine Veranstaltungen"
|
|
6330 |
msgid "Home"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: app/skins/single.php:
|
6334 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6335 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6336 |
msgid "Phone"
|
6337 |
msgstr "Phone"
|
6338 |
|
6339 |
-
#: app/skins/single.php:
|
6340 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6341 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6342 |
msgid "Website"
|
6343 |
msgstr "Website"
|
6344 |
|
6345 |
-
#: app/skins/single.php:
|
6346 |
#, fuzzy
|
6347 |
#| msgid "No Search Options"
|
6348 |
msgid "Speakers:"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-06-10 15:04+0430\n"
|
6 |
+
"PO-Revision-Date: 2019-06-10 15:04+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:348
|
31 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
63 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
64 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
65 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
288 |
msgid "Event"
|
289 |
msgstr "Veranstaltung"
|
290 |
|
291 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
292 |
msgid "Add Event"
|
293 |
msgstr "Veranstaltung hinzufügen"
|
294 |
|
336 |
msgstr "Kategorie"
|
337 |
|
338 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
339 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
340 |
#: app/libraries/main.php:4375
|
341 |
msgid "Categories"
|
342 |
msgstr "Kategorien"
|
436 |
#: app/features/events.php:410 app/features/events.php:1682
|
437 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
438 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
439 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
450 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
451 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
452 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
453 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
454 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
455 |
#: app/skins/single/modern.php:48
|
574 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
575 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
576 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
577 |
+
#: app/features/mec/notifications.php:170
|
578 |
+
#: app/features/mec/notifications.php:228
|
579 |
+
#: app/features/mec/notifications.php:280
|
580 |
+
#: app/features/mec/notifications.php:339
|
581 |
+
#: app/features/mec/notifications.php:406
|
582 |
+
#: app/features/mec/notifications.php:469
|
583 |
+
#: app/features/mec/notifications.php:480
|
584 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
585 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
586 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
587 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
792 |
msgstr ""
|
793 |
|
794 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
795 |
+
#: app/skins/single.php:379
|
796 |
msgid "Hourly Schedule"
|
797 |
msgstr "Stundenplan"
|
798 |
|
864 |
|
865 |
#: app/features/events.php:913 app/features/events.php:933
|
866 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
867 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
868 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
869 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
870 |
msgid "Speakers"
|
1272 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1273 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1274 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1275 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1276 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1277 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1278 |
msgid "Location"
|
1450 |
msgstr "Bild entfernen"
|
1451 |
|
1452 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1453 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1454 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1455 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1456 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1457 |
msgid "Labels"
|
1458 |
msgstr "Labels"
|
1459 |
|
1460 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1461 |
#: app/features/mec/meta_boxes/filter.php:138
|
1462 |
msgid "Tags"
|
1463 |
msgstr "Schlagworte"
|
1494 |
|
1495 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1496 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1497 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1498 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1499 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1500 |
msgid "Import / Export"
|
1775 |
#: app/features/ix/export_g_calendar.php:72
|
1776 |
#: app/features/ix/export_g_calendar.php:147
|
1777 |
#: app/features/ix/export_g_calendar.php:164
|
1778 |
+
#: app/features/mec/notifications.php:207
|
1779 |
+
#: app/features/mec/notifications.php:260
|
1780 |
+
#: app/features/mec/notifications.php:313
|
1781 |
+
#: app/features/mec/notifications.php:513
|
1782 |
msgid "Add to Google Calendar"
|
1783 |
msgstr "Zum Google Kalender hinzufügen"
|
1784 |
|
1785 |
#: app/features/ix/export_g_calendar.php:90
|
1786 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1787 |
msgid "Checking ..."
|
1788 |
msgstr "Überprüfung"
|
1789 |
|
2039 |
|
2040 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2041 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2042 |
+
#: app/features/mec/notifications.php:457
|
2043 |
msgid "Important Note"
|
2044 |
msgstr "Important Note"
|
2045 |
|
2191 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2192 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2193 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2194 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2195 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2196 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2197 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2207 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2208 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2209 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2210 |
+
#: app/skins/monthly_view/calendar.php:86
|
2211 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2212 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2213 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2235 |
msgid "Event %s"
|
2236 |
msgstr "Event %s"
|
2237 |
|
2238 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2239 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2240 |
#: app/libraries/main.php:4379
|
2241 |
msgid "Locations"
|
2365 |
"Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
|
2366 |
"auswählen, wenn Sie möchten."
|
2367 |
|
2368 |
+
#: app/features/mec.php:153
|
2369 |
msgid ""
|
2370 |
"Activation faild. Please check your purchase code or license type."
|
2371 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: app/features/mec.php:153
|
2375 |
msgid "Troubleshooting"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: app/features/mec.php:193
|
2379 |
msgid ""
|
2380 |
"Your options is not in JSON format. Please insert correct options in this "
|
2381 |
"field and try again."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: app/features/mec.php:200
|
2385 |
#, fuzzy
|
2386 |
#| msgid "Your booking cannot verify!"
|
2387 |
msgid "Your options field can not be empty!"
|
2388 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
2389 |
|
2390 |
+
#: app/features/mec.php:206
|
2391 |
#, fuzzy
|
2392 |
#| msgid "Your booking successfully verified."
|
2393 |
msgid "Your options imported successfuly."
|
2394 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
2395 |
|
2396 |
+
#: app/features/mec.php:299
|
2397 |
#, fuzzy
|
2398 |
#| msgid "Support"
|
2399 |
msgid "MEC - Support"
|
2400 |
msgstr "Support"
|
2401 |
|
2402 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2403 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2404 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2405 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2406 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2407 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2408 |
msgid "Support"
|
2409 |
msgstr "Support"
|
2410 |
|
2411 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2412 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2413 |
#: app/libraries/main.php:4381
|
2414 |
msgid "Organizers"
|
2415 |
msgstr "Veranstalter"
|
2416 |
|
2417 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2418 |
#: app/features/mec/dashboard.php:194
|
2419 |
msgid "Shortcodes"
|
2420 |
msgstr "Shortcodes"
|
2421 |
|
2422 |
+
#: app/features/mec.php:329
|
2423 |
msgid "MEC - Settings"
|
2424 |
msgstr "MEC - Einstellungen"
|
2425 |
|
2426 |
+
#: app/features/mec.php:330
|
2427 |
#, fuzzy
|
2428 |
#| msgid "MEC - Settings"
|
2429 |
msgid "MEC - Addons"
|
2430 |
msgstr "MEC - Einstellungen"
|
2431 |
|
2432 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2433 |
msgid "Addons"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: app/features/mec.php:349
|
2437 |
msgid "Add Shortcode"
|
2438 |
msgstr "Shortcode hinzufügen"
|
2439 |
|
2440 |
+
#: app/features/mec.php:350
|
2441 |
msgid "Add New Shortcode"
|
2442 |
msgstr "Neuen Shortcode hinzufügen"
|
2443 |
|
2444 |
+
#: app/features/mec.php:351
|
2445 |
msgid "No shortcodes found!"
|
2446 |
msgstr "Keine Shortcodes gefunden!"
|
2447 |
|
2448 |
+
#: app/features/mec.php:352
|
2449 |
msgid "All Shortcodes"
|
2450 |
msgstr "Alle Shortcodes"
|
2451 |
|
2452 |
+
#: app/features/mec.php:353
|
2453 |
msgid "Edit shortcodes"
|
2454 |
msgstr "Shortcode ändern"
|
2455 |
|
2456 |
+
#: app/features/mec.php:354
|
2457 |
msgid "No shortcodes found in Trash!"
|
2458 |
msgstr "Keine Shortcodes im Papierkorb gefunden!"
|
2459 |
|
2460 |
+
#: app/features/mec.php:402
|
2461 |
msgid "Display Options"
|
2462 |
msgstr "Darstellungsoptionen"
|
2463 |
|
2464 |
+
#: app/features/mec.php:403
|
2465 |
msgid "Filter Options"
|
2466 |
msgstr "Filteroptionen"
|
2467 |
|
2468 |
+
#: app/features/mec.php:405
|
2469 |
msgid "Search Form"
|
2470 |
msgstr "Suche Formular"
|
2471 |
|
2472 |
+
#: app/features/mec.php:755
|
2473 |
msgid "Display content's images as Popup"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: app/features/mec.php:768
|
2477 |
msgid "Single Event Display Method"
|
2478 |
msgstr "Single Event Anzeigemethode"
|
2479 |
|
2480 |
+
#: app/features/mec.php:773
|
2481 |
msgid "Separate Window"
|
2482 |
msgstr "Separates Fenster"
|
2483 |
|
2484 |
+
#: app/features/mec.php:774
|
2485 |
msgid "Modal 1"
|
2486 |
msgstr "Modal 1"
|
2487 |
|
2642 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2643 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2644 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2645 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2646 |
+
#: app/features/mec/notifications.php:581
|
2647 |
+
#: app/features/mec/notifications.php:680
|
2648 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2649 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2650 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2651 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2660 |
msgstr "Änderungen sichern"
|
2661 |
|
2662 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2663 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2664 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2665 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2666 |
#: app/features/mec/support.php:52
|
2668 |
msgstr "Styling-Optionen"
|
2669 |
|
2670 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2671 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2672 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2673 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2674 |
#: app/features/mec/support.php:59
|
2677 |
|
2678 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2679 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2680 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2681 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2682 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2683 |
msgid "Messages"
|
2684 |
msgstr "Nachrichten"
|
2685 |
|
2686 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2687 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2688 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2689 |
#: app/features/mec/styling.php:375
|
2690 |
msgid "Saved"
|
2691 |
msgstr "Gesichert"
|
2692 |
|
2693 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2694 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2695 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2696 |
#: app/features/mec/styling.php:376
|
2697 |
msgid "Settings Saved!"
|
3537 |
msgid "No Search Options"
|
3538 |
msgstr "Keine Suchoptionen"
|
3539 |
|
3540 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3541 |
msgid "Booking Notification"
|
3542 |
msgstr "Buchungsbenachrichtigung"
|
3543 |
|
3544 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3545 |
msgid "Booking Verification"
|
3546 |
msgstr "Verifizierung der Buchung"
|
3547 |
|
3548 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3549 |
#: app/features/mec/settings.php:1409
|
3550 |
msgid "Booking Confirmation"
|
3551 |
msgstr "Buchungsbestätigung"
|
3552 |
|
3553 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3554 |
+
#, fuzzy
|
3555 |
+
#| msgid "Booking cancellation link."
|
3556 |
+
msgid "Booking Cancellation"
|
3557 |
+
msgstr "Link zur Stornierung der Buchung"
|
3558 |
+
|
3559 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3560 |
msgid "Admin Notification"
|
3561 |
msgstr "Admin-Benachrichtiung"
|
3562 |
|
3563 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3564 |
+
#: app/libraries/notifications.php:354
|
3565 |
msgid "Booking Reminder"
|
3566 |
msgstr "Buchungs Erinnerung"
|
3567 |
|
3568 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3569 |
#: app/features/mec/support-page.php:80
|
3570 |
msgid "New Event"
|
3571 |
msgstr "Neue Veranstaltung"
|
3572 |
|
3573 |
+
#: app/features/mec/notifications.php:155
|
3574 |
msgid "Enable booking notification"
|
3575 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
3576 |
|
3577 |
+
#: app/features/mec/notifications.php:159
|
3578 |
msgid "It sends to attendee after booking for notifying him/her."
|
3579 |
msgstr ""
|
3580 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
3581 |
"benachrichtigen."
|
3582 |
|
3583 |
+
#: app/features/mec/notifications.php:161
|
3584 |
+
#: app/features/mec/notifications.php:219
|
3585 |
+
#: app/features/mec/notifications.php:271
|
3586 |
+
#: app/features/mec/notifications.php:330
|
3587 |
+
#: app/features/mec/notifications.php:397
|
3588 |
+
#: app/features/mec/notifications.php:460
|
3589 |
+
#: app/features/mec/notifications.php:532
|
3590 |
msgid "Email Subject"
|
3591 |
msgstr "Email Betreff"
|
3592 |
|
3593 |
+
#: app/features/mec/notifications.php:165
|
3594 |
+
#: app/features/mec/notifications.php:169
|
3595 |
+
#: app/features/mec/notifications.php:223
|
3596 |
+
#: app/features/mec/notifications.php:227
|
3597 |
+
#: app/features/mec/notifications.php:275
|
3598 |
+
#: app/features/mec/notifications.php:279
|
3599 |
+
#: app/features/mec/notifications.php:334
|
3600 |
+
#: app/features/mec/notifications.php:338
|
3601 |
+
#: app/features/mec/notifications.php:401
|
3602 |
+
#: app/features/mec/notifications.php:405
|
3603 |
+
#: app/features/mec/notifications.php:464
|
3604 |
+
#: app/features/mec/notifications.php:468
|
3605 |
+
#: app/features/mec/notifications.php:479
|
3606 |
+
#: app/features/mec/notifications.php:536
|
3607 |
+
#: app/features/mec/notifications.php:540
|
3608 |
msgid "Custom Recipients"
|
3609 |
msgstr "Individuelle Empfänger"
|
3610 |
|
3611 |
+
#: app/features/mec/notifications.php:170
|
3612 |
+
#: app/features/mec/notifications.php:228
|
3613 |
+
#: app/features/mec/notifications.php:280
|
3614 |
+
#: app/features/mec/notifications.php:339
|
3615 |
+
#: app/features/mec/notifications.php:406
|
3616 |
+
#: app/features/mec/notifications.php:469
|
3617 |
+
#: app/features/mec/notifications.php:480
|
3618 |
+
#: app/features/mec/notifications.php:541
|
3619 |
msgid "Insert comma separated emails for multiple recipients."
|
3620 |
msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
|
3621 |
|
3622 |
+
#: app/features/mec/notifications.php:177
|
3623 |
+
#: app/features/mec/notifications.php:350
|
3624 |
+
#: app/features/mec/notifications.php:413
|
3625 |
msgid "Send the email to event organizer"
|
3626 |
msgstr "Sendet das Email zum Event Organisator"
|
3627 |
|
3628 |
+
#: app/features/mec/notifications.php:180
|
3629 |
+
#: app/features/mec/notifications.php:234
|
3630 |
+
#: app/features/mec/notifications.php:286
|
3631 |
+
#: app/features/mec/notifications.php:357
|
3632 |
+
#: app/features/mec/notifications.php:416
|
3633 |
+
#: app/features/mec/notifications.php:486
|
3634 |
+
#: app/features/mec/notifications.php:547
|
3635 |
msgid "Email Content"
|
3636 |
msgstr "Email Inhalt"
|
3637 |
|
3638 |
+
#: app/features/mec/notifications.php:183
|
3639 |
+
#: app/features/mec/notifications.php:237
|
3640 |
+
#: app/features/mec/notifications.php:289
|
3641 |
+
#: app/features/mec/notifications.php:360
|
3642 |
+
#: app/features/mec/notifications.php:419
|
3643 |
+
#: app/features/mec/notifications.php:489
|
3644 |
+
#: app/features/mec/notifications.php:550
|
3645 |
msgid "You can use following placeholders"
|
3646 |
msgstr "Sie können die folgenden Platzhalter wählen"
|
3647 |
|
3648 |
+
#: app/features/mec/notifications.php:185
|
3649 |
+
#: app/features/mec/notifications.php:239
|
3650 |
+
#: app/features/mec/notifications.php:291
|
3651 |
+
#: app/features/mec/notifications.php:362
|
3652 |
+
#: app/features/mec/notifications.php:421
|
3653 |
+
#: app/features/mec/notifications.php:491
|
3654 |
msgid "First name of attendee"
|
3655 |
msgstr "Vorname des Teilnehmers"
|
3656 |
|
3657 |
+
#: app/features/mec/notifications.php:186
|
3658 |
+
#: app/features/mec/notifications.php:240
|
3659 |
+
#: app/features/mec/notifications.php:292
|
3660 |
+
#: app/features/mec/notifications.php:363
|
3661 |
+
#: app/features/mec/notifications.php:422
|
3662 |
+
#: app/features/mec/notifications.php:492
|
3663 |
msgid "Last name of attendee"
|
3664 |
msgstr "Nachname des Teilnehmers"
|
3665 |
|
3666 |
+
#: app/features/mec/notifications.php:187
|
3667 |
+
#: app/features/mec/notifications.php:241
|
3668 |
+
#: app/features/mec/notifications.php:293
|
3669 |
+
#: app/features/mec/notifications.php:364
|
3670 |
+
#: app/features/mec/notifications.php:423
|
3671 |
+
#: app/features/mec/notifications.php:493
|
3672 |
msgid "Email of attendee"
|
3673 |
msgstr "Email des Teilnehmers"
|
3674 |
|
3675 |
+
#: app/features/mec/notifications.php:188
|
3676 |
+
#: app/features/mec/notifications.php:242
|
3677 |
+
#: app/features/mec/notifications.php:294
|
3678 |
+
#: app/features/mec/notifications.php:365
|
3679 |
+
#: app/features/mec/notifications.php:424
|
3680 |
+
#: app/features/mec/notifications.php:494
|
3681 |
msgid "Booked date of event"
|
3682 |
msgstr "Gebuchtes Datum der Veranstaltung"
|
3683 |
|
3684 |
+
#: app/features/mec/notifications.php:189
|
3685 |
+
#: app/features/mec/notifications.php:243
|
3686 |
+
#: app/features/mec/notifications.php:295
|
3687 |
+
#: app/features/mec/notifications.php:366
|
3688 |
+
#: app/features/mec/notifications.php:425
|
3689 |
+
#: app/features/mec/notifications.php:495
|
3690 |
#, fuzzy
|
3691 |
#| msgid "Booked date of event"
|
3692 |
msgid "Booked time of event"
|
3693 |
msgstr "Gebuchtes Datum der Veranstaltung"
|
3694 |
|
3695 |
+
#: app/features/mec/notifications.php:190
|
3696 |
+
#: app/features/mec/notifications.php:244
|
3697 |
+
#: app/features/mec/notifications.php:296
|
3698 |
+
#: app/features/mec/notifications.php:367
|
3699 |
+
#: app/features/mec/notifications.php:426
|
3700 |
+
#: app/features/mec/notifications.php:496
|
3701 |
msgid "Booking Price"
|
3702 |
msgstr "Buchungspreis"
|
3703 |
|
3704 |
+
#: app/features/mec/notifications.php:191
|
3705 |
+
#: app/features/mec/notifications.php:245
|
3706 |
+
#: app/features/mec/notifications.php:297
|
3707 |
+
#: app/features/mec/notifications.php:368
|
3708 |
+
#: app/features/mec/notifications.php:427
|
3709 |
+
#: app/features/mec/notifications.php:497
|
3710 |
+
#: app/features/mec/notifications.php:556
|
3711 |
msgid "Your website title"
|
3712 |
msgstr "Titel Ihrer Webseite"
|
3713 |
|
3714 |
+
#: app/features/mec/notifications.php:192
|
3715 |
+
#: app/features/mec/notifications.php:246
|
3716 |
+
#: app/features/mec/notifications.php:298
|
3717 |
+
#: app/features/mec/notifications.php:369
|
3718 |
+
#: app/features/mec/notifications.php:428
|
3719 |
+
#: app/features/mec/notifications.php:498
|
3720 |
+
#: app/features/mec/notifications.php:557
|
3721 |
msgid "Your website URL"
|
3722 |
msgstr "URL Ihrer Webseite"
|
3723 |
|
3724 |
+
#: app/features/mec/notifications.php:193
|
3725 |
+
#: app/features/mec/notifications.php:247
|
3726 |
+
#: app/features/mec/notifications.php:299
|
3727 |
+
#: app/features/mec/notifications.php:370
|
3728 |
+
#: app/features/mec/notifications.php:429
|
3729 |
+
#: app/features/mec/notifications.php:499
|
3730 |
+
#: app/features/mec/notifications.php:558
|
3731 |
msgid "Your website description"
|
3732 |
msgstr "Beschreibung Ihrer Webseite"
|
3733 |
|
3734 |
+
#: app/features/mec/notifications.php:194
|
3735 |
+
#: app/features/mec/notifications.php:248
|
3736 |
+
#: app/features/mec/notifications.php:300
|
3737 |
+
#: app/features/mec/notifications.php:371
|
3738 |
+
#: app/features/mec/notifications.php:430
|
3739 |
+
#: app/features/mec/notifications.php:500
|
3740 |
msgid "Event title"
|
3741 |
msgstr "Titel der Veranstaltung"
|
3742 |
|
3743 |
+
#: app/features/mec/notifications.php:195
|
3744 |
+
#: app/features/mec/notifications.php:249
|
3745 |
+
#: app/features/mec/notifications.php:301
|
3746 |
+
#: app/features/mec/notifications.php:372
|
3747 |
+
#: app/features/mec/notifications.php:431
|
3748 |
+
#: app/features/mec/notifications.php:501
|
3749 |
#, fuzzy
|
3750 |
#| msgid "Event Link"
|
3751 |
msgid "Event link"
|
3752 |
msgstr "Veranstaltungslink"
|
3753 |
|
3754 |
+
#: app/features/mec/notifications.php:196
|
3755 |
+
#: app/features/mec/notifications.php:250
|
3756 |
+
#: app/features/mec/notifications.php:302
|
3757 |
+
#: app/features/mec/notifications.php:373
|
3758 |
+
#: app/features/mec/notifications.php:432
|
3759 |
+
#: app/features/mec/notifications.php:502
|
3760 |
msgid "Organizer name of booked event"
|
3761 |
msgstr "Name des Veranstalters des gebuchten Events"
|
3762 |
|
3763 |
+
#: app/features/mec/notifications.php:197
|
3764 |
+
#: app/features/mec/notifications.php:251
|
3765 |
+
#: app/features/mec/notifications.php:303
|
3766 |
+
#: app/features/mec/notifications.php:374
|
3767 |
+
#: app/features/mec/notifications.php:433
|
3768 |
+
#: app/features/mec/notifications.php:503
|
3769 |
msgid "Organizer tel of booked event"
|
3770 |
msgstr "Tel des Veranstalters"
|
3771 |
|
3772 |
+
#: app/features/mec/notifications.php:198
|
3773 |
+
#: app/features/mec/notifications.php:252
|
3774 |
+
#: app/features/mec/notifications.php:304
|
3775 |
+
#: app/features/mec/notifications.php:375
|
3776 |
+
#: app/features/mec/notifications.php:434
|
3777 |
+
#: app/features/mec/notifications.php:504
|
3778 |
msgid "Organizer email of booked event"
|
3779 |
msgstr "Email des Veranstalters des gebuchten events"
|
3780 |
|
3781 |
+
#: app/features/mec/notifications.php:199
|
3782 |
+
#: app/features/mec/notifications.php:253
|
3783 |
+
#: app/features/mec/notifications.php:305
|
3784 |
+
#: app/features/mec/notifications.php:376
|
3785 |
+
#: app/features/mec/notifications.php:435
|
3786 |
+
#: app/features/mec/notifications.php:505
|
3787 |
msgid "Location name of booked event"
|
3788 |
msgstr "Veranstaltungsort"
|
3789 |
|
3790 |
+
#: app/features/mec/notifications.php:200
|
3791 |
+
#: app/features/mec/notifications.php:254
|
3792 |
+
#: app/features/mec/notifications.php:306
|
3793 |
+
#: app/features/mec/notifications.php:377
|
3794 |
+
#: app/features/mec/notifications.php:436
|
3795 |
+
#: app/features/mec/notifications.php:506
|
3796 |
msgid "Location address of booked event"
|
3797 |
msgstr "Adresse der gebuchten Veranstaltung"
|
3798 |
|
3799 |
+
#: app/features/mec/notifications.php:201
|
3800 |
+
#: app/features/mec/notifications.php:379
|
3801 |
+
#: app/features/mec/notifications.php:438
|
3802 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3803 |
msgstr ""
|
3804 |
"Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
|
3805 |
"Name, email, etc."
|
3806 |
|
3807 |
+
#: app/features/mec/notifications.php:202
|
3808 |
+
#: app/features/mec/notifications.php:308
|
3809 |
+
#: app/features/mec/notifications.php:508
|
3810 |
msgid "Invoice Link"
|
3811 |
msgstr "Rechnungslink"
|
3812 |
|
3813 |
+
#: app/features/mec/notifications.php:203
|
3814 |
+
#: app/features/mec/notifications.php:256
|
3815 |
+
#: app/features/mec/notifications.php:309
|
3816 |
+
#: app/features/mec/notifications.php:380
|
3817 |
+
#: app/features/mec/notifications.php:439
|
3818 |
+
#: app/features/mec/notifications.php:509
|
3819 |
msgid "Total Attendees"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: app/features/mec/notifications.php:204
|
3823 |
+
#: app/features/mec/notifications.php:257
|
3824 |
+
#: app/features/mec/notifications.php:310
|
3825 |
+
#: app/features/mec/notifications.php:510
|
3826 |
#, fuzzy
|
3827 |
#| msgid "Ticket Name"
|
3828 |
msgid "Ticket name"
|
3829 |
msgstr "Ticket Name"
|
3830 |
|
3831 |
+
#: app/features/mec/notifications.php:205
|
3832 |
+
#: app/features/mec/notifications.php:258
|
3833 |
+
#: app/features/mec/notifications.php:311
|
3834 |
+
#: app/features/mec/notifications.php:511
|
3835 |
#, fuzzy
|
3836 |
#| msgid "Ticket Name"
|
3837 |
msgid "Ticket time"
|
3838 |
msgstr "Ticket Name"
|
3839 |
|
3840 |
+
#: app/features/mec/notifications.php:206
|
3841 |
+
#: app/features/mec/notifications.php:259
|
3842 |
+
#: app/features/mec/notifications.php:312
|
3843 |
+
#: app/features/mec/notifications.php:512
|
3844 |
#, fuzzy
|
3845 |
#| msgid "Download Invoice"
|
3846 |
msgid "Download ICS file"
|
3847 |
msgstr "Download Rechnung\n"
|
3848 |
|
3849 |
+
#: app/features/mec/notifications.php:217
|
3850 |
msgid "It sends to attendee email for verifying their booking/email."
|
3851 |
msgstr ""
|
3852 |
"Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
|
3853 |
"verifizieren."
|
3854 |
|
3855 |
+
#: app/features/mec/notifications.php:255
|
3856 |
msgid "Email/Booking verification link."
|
3857 |
msgstr "Bestätigungslink für Email/Buchung"
|
3858 |
|
3859 |
+
#: app/features/mec/notifications.php:269
|
3860 |
msgid "It sends to attendee after confirming the booking by admin."
|
3861 |
msgstr ""
|
3862 |
"Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
|
3863 |
|
3864 |
+
#: app/features/mec/notifications.php:307
|
3865 |
+
#: app/features/mec/notifications.php:507
|
3866 |
msgid "Booking cancellation link."
|
3867 |
msgstr "Link zur Stornierung der Buchung"
|
3868 |
|
3869 |
+
#: app/features/mec/notifications.php:324
|
3870 |
+
#, fuzzy
|
3871 |
+
#| msgid "Enable new event notification"
|
3872 |
+
msgid "Enable cancellation notification"
|
3873 |
+
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
3874 |
+
|
3875 |
+
#: app/features/mec/notifications.php:328
|
3876 |
+
#, fuzzy
|
3877 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3878 |
+
msgid ""
|
3879 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3880 |
+
"them."
|
3881 |
msgstr ""
|
3882 |
+
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
3883 |
+
"benachrichtigen."
|
3884 |
+
|
3885 |
+
#: app/features/mec/notifications.php:346
|
3886 |
+
#, fuzzy
|
3887 |
+
#| msgid "Send the email to event organizer"
|
3888 |
+
msgid "Send the email to admin"
|
3889 |
+
msgstr "Sendet das Email zum Event Organisator"
|
3890 |
+
|
3891 |
+
#: app/features/mec/notifications.php:354
|
3892 |
+
#, fuzzy
|
3893 |
+
#| msgid "Send the email to event organizer"
|
3894 |
+
msgid "Send the email to booking user"
|
3895 |
+
msgstr "Sendet das Email zum Event Organisator"
|
3896 |
|
3897 |
+
#: app/features/mec/notifications.php:378
|
3898 |
+
#: app/features/mec/notifications.php:437
|
3899 |
msgid "Admin booking management link."
|
3900 |
msgstr "Admin-link zur Buchungsverwaltung"
|
3901 |
|
3902 |
+
#: app/features/mec/notifications.php:391
|
3903 |
+
#, fuzzy
|
3904 |
+
#| msgid "Enable booking notification"
|
3905 |
+
msgid "Enable admin notification"
|
3906 |
+
msgstr "Buchungsbenachrichtigung aktivieren"
|
3907 |
+
|
3908 |
+
#: app/features/mec/notifications.php:395
|
3909 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3910 |
+
msgstr ""
|
3911 |
+
"Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
|
3912 |
+
"Informieren, dass eine neue Buchung eingegangen ist."
|
3913 |
+
|
3914 |
+
#: app/features/mec/notifications.php:451
|
3915 |
msgid "Enable booking reminder notification"
|
3916 |
msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
|
3917 |
|
3918 |
+
#: app/features/mec/notifications.php:457
|
3919 |
#, php-format
|
3920 |
msgid ""
|
3921 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3927 |
"Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
|
3928 |
"gesendet werden."
|
3929 |
|
3930 |
+
#: app/features/mec/notifications.php:457
|
3931 |
msgid "only once per day"
|
3932 |
msgstr "nur einmal pro Tag"
|
3933 |
|
3934 |
+
#: app/features/mec/notifications.php:475
|
3935 |
msgid "Days"
|
3936 |
msgstr "Tage"
|
3937 |
|
3938 |
+
#: app/features/mec/notifications.php:526
|
3939 |
msgid "Enable new event notification"
|
3940 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
3941 |
|
3942 |
+
#: app/features/mec/notifications.php:530
|
3943 |
msgid ""
|
3944 |
"It sends after adding a new event from frontend event submission or from "
|
3945 |
"website backend."
|
3947 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
3948 |
"Übermittlung oder dem Backend versandt."
|
3949 |
|
3950 |
+
#: app/features/mec/notifications.php:552
|
3951 |
msgid "Title of event"
|
3952 |
msgstr "Titel der Veranstaltung"
|
3953 |
|
3954 |
+
#: app/features/mec/notifications.php:553
|
3955 |
#, fuzzy
|
3956 |
#| msgid "Title of event"
|
3957 |
msgid "Link of event"
|
3958 |
msgstr "Titel der Veranstaltung"
|
3959 |
|
3960 |
+
#: app/features/mec/notifications.php:554
|
3961 |
msgid "Status of event"
|
3962 |
msgstr "Status der Veranstaltung"
|
3963 |
|
3964 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3965 |
#: app/features/mec/settings.php:1253
|
3966 |
msgid "Event Note"
|
3967 |
msgstr "Veranstaltungsnotiz"
|
3968 |
|
3969 |
+
#: app/features/mec/notifications.php:559
|
3970 |
msgid "Admin events management link."
|
3971 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
3972 |
|
3973 |
+
#: app/features/mec/notifications.php:661
|
3974 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3975 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3976 |
msgid "Verified"
|
3977 |
msgstr "Verifiziert"
|
3978 |
|
3979 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3980 |
msgid "Please Refresh Page"
|
3981 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3982 |
|
5471 |
msgstr "http://webnus.net"
|
5472 |
|
5473 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5474 |
+
#: app/skins/single.php:295
|
5475 |
msgid "Other Organizers"
|
5476 |
msgstr "Andere Veranstalter"
|
5477 |
|
5621 |
msgid "day"
|
5622 |
msgstr "Tag"
|
5623 |
|
5624 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5625 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5626 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5627 |
msgid "days"
|
5631 |
msgid "hour"
|
5632 |
msgstr "Stunde"
|
5633 |
|
5634 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5635 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5636 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5637 |
msgid "hours"
|
5641 |
msgid "minute"
|
5642 |
msgstr "Minute"
|
5643 |
|
5644 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5645 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5646 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5647 |
msgid "minutes"
|
5651 |
msgid "second"
|
5652 |
msgstr "Sekunde"
|
5653 |
|
5654 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5655 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5656 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5657 |
msgid "seconds"
|
6130 |
msgid "Your booking is confirmed."
|
6131 |
msgstr "Ihre Buchung wurde bestätigt."
|
6132 |
|
6133 |
+
#: app/libraries/notifications.php:252
|
6134 |
+
#, fuzzy
|
6135 |
+
#| msgid "Your booking cannot be canceled."
|
6136 |
+
msgid "booking canceled."
|
6137 |
+
msgstr "Ihre Buchung kann nicht storniert werden."
|
6138 |
+
|
6139 |
+
#: app/libraries/notifications.php:296
|
6140 |
msgid "A new booking is received."
|
6141 |
msgstr "Eine neue Buchung ist eingegangen."
|
6142 |
|
6143 |
+
#: app/libraries/notifications.php:425
|
6144 |
msgid "A new event is added."
|
6145 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
6146 |
|
6147 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
6148 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
6149 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
6150 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
6151 |
msgid "All of the day"
|
6152 |
msgstr "Den ganzen Tag"
|
6153 |
|
6154 |
+
#: app/libraries/notifications.php:605
|
6155 |
msgid "to"
|
6156 |
msgstr ""
|
6157 |
|
6158 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
6159 |
msgid "+ Add to Google Calendar"
|
6160 |
msgstr "+ zum Google Calendar hinzufügen"
|
6161 |
|
6162 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
6163 |
msgid "+ iCal export"
|
6164 |
msgstr "+ zu iCal exportieren"
|
6165 |
|
6166 |
+
#: app/libraries/notifications.php:683
|
6167 |
msgid "Yes"
|
6168 |
msgstr "Ja"
|
6169 |
|
6170 |
+
#: app/libraries/notifications.php:683
|
6171 |
msgid "No"
|
6172 |
msgstr "Nein"
|
6173 |
|
6385 |
msgid "All"
|
6386 |
msgstr "Alle"
|
6387 |
|
6388 |
+
#: app/skins/monthly_view/calendar.php:68
|
6389 |
+
#: app/skins/monthly_view/calendar.php:154
|
6390 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6391 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6392 |
#, php-format
|
6393 |
msgid "Events for %s"
|
6394 |
msgstr "Veranstaltungen für %s"
|
6395 |
|
6396 |
+
#: app/skins/monthly_view/calendar.php:156
|
6397 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6398 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6399 |
msgid "No Events"
|
6403 |
msgid "Home"
|
6404 |
msgstr ""
|
6405 |
|
6406 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6407 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6408 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6409 |
msgid "Phone"
|
6410 |
msgstr "Phone"
|
6411 |
|
6412 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6413 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6414 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6415 |
msgid "Website"
|
6416 |
msgstr "Website"
|
6417 |
|
6418 |
+
#: app/skins/single.php:393
|
6419 |
#, fuzzy
|
6420 |
#| msgid "No Search Options"
|
6421 |
msgid "Speakers:"
|
languages/modern-events-calendar-lite-en_US.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-en_US.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
56 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
57 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -256,7 +256,7 @@ msgstr ""
|
|
256 |
msgid "Event"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: app/features/events.php:136 app/features/mec.php:
|
260 |
msgid "Add Event"
|
261 |
msgstr ""
|
262 |
|
@@ -304,7 +304,7 @@ msgid "Category"
|
|
304 |
msgstr ""
|
305 |
|
306 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
307 |
-
#: app/features/mec.php:
|
308 |
#: app/libraries/main.php:4375
|
309 |
msgid "Categories"
|
310 |
msgstr ""
|
@@ -403,7 +403,7 @@ msgstr ""
|
|
403 |
#: app/features/events.php:410 app/features/events.php:1682
|
404 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
405 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +415,8 @@ msgstr ""
|
|
415 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
416 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
417 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
418 |
-
#: app/libraries/notifications.php:
|
419 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
420 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
421 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
422 |
#: app/skins/single/modern.php:48
|
@@ -535,13 +535,14 @@ msgstr ""
|
|
535 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
536 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
537 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
538 |
-
#: app/features/mec/notifications.php:
|
539 |
-
#: app/features/mec/notifications.php:
|
540 |
-
#: app/features/mec/notifications.php:
|
541 |
-
#: app/features/mec/notifications.php:
|
542 |
-
#: app/features/mec/notifications.php:
|
543 |
-
#: app/features/mec/notifications.php:
|
544 |
-
#: app/features/mec/notifications.php:
|
|
|
545 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
546 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
547 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -746,7 +747,7 @@ msgid "Day 1"
|
|
746 |
msgstr ""
|
747 |
|
748 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
749 |
-
#: app/skins/single.php:
|
750 |
msgid "Hourly Schedule"
|
751 |
msgstr ""
|
752 |
|
@@ -818,7 +819,7 @@ msgstr ""
|
|
818 |
|
819 |
#: app/features/events.php:913 app/features/events.php:933
|
820 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
821 |
-
#: app/features/mec.php:
|
822 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
823 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
824 |
msgid "Speakers"
|
@@ -1198,7 +1199,7 @@ msgstr ""
|
|
1198 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1199 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1200 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1201 |
-
#: app/skins/single.php:
|
1202 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1203 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1204 |
msgid "Location"
|
@@ -1368,14 +1369,14 @@ msgid "Remove Image"
|
|
1368 |
msgstr ""
|
1369 |
|
1370 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1371 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1372 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1373 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1374 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1375 |
msgid "Labels"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1379 |
#: app/features/mec/meta_boxes/filter.php:138
|
1380 |
msgid "Tags"
|
1381 |
msgstr ""
|
@@ -1411,7 +1412,7 @@ msgstr ""
|
|
1411 |
|
1412 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1413 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1414 |
-
#: app/features/mec/notifications.php:
|
1415 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1416 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1417 |
msgid "Import / Export"
|
@@ -1670,15 +1671,15 @@ msgstr ""
|
|
1670 |
#: app/features/ix/export_g_calendar.php:72
|
1671 |
#: app/features/ix/export_g_calendar.php:147
|
1672 |
#: app/features/ix/export_g_calendar.php:164
|
1673 |
-
#: app/features/mec/notifications.php:
|
1674 |
-
#: app/features/mec/notifications.php:
|
1675 |
-
#: app/features/mec/notifications.php:
|
1676 |
-
#: app/features/mec/notifications.php:
|
1677 |
msgid "Add to Google Calendar"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
#: app/features/ix/export_g_calendar.php:90
|
1681 |
-
#: app/features/mec/notifications.php:
|
1682 |
msgid "Checking ..."
|
1683 |
msgstr ""
|
1684 |
|
@@ -1902,7 +1903,7 @@ msgstr ""
|
|
1902 |
|
1903 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1904 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1905 |
-
#: app/features/mec/notifications.php:
|
1906 |
msgid "Important Note"
|
1907 |
msgstr ""
|
1908 |
|
@@ -2028,7 +2029,7 @@ msgstr ""
|
|
2028 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2029 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2030 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2031 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2032 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2033 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2034 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2042,7 +2043,7 @@ msgstr ""
|
|
2042 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2043 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2044 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2045 |
-
#: app/skins/monthly_view/calendar.php:
|
2046 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2047 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2048 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2070,7 +2071,7 @@ msgstr ""
|
|
2070 |
msgid "Event %s"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2074 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2075 |
#: app/libraries/main.php:4379
|
2076 |
msgid "Locations"
|
@@ -2186,115 +2187,115 @@ msgid ""
|
|
2186 |
"You can select extra locations in addition to main location if you like."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: app/features/mec.php:
|
2190 |
msgid ""
|
2191 |
"Activation faild. Please check your purchase code or license type."
|
2192 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: app/features/mec.php:
|
2196 |
msgid "Troubleshooting"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: app/features/mec.php:
|
2200 |
msgid ""
|
2201 |
"Your options is not in JSON format. Please insert correct options in this "
|
2202 |
"field and try again."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: app/features/mec.php:
|
2206 |
msgid "Your options field can not be empty!"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: app/features/mec.php:
|
2210 |
msgid "Your options imported successfuly."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: app/features/mec.php:
|
2214 |
msgid "MEC - Support"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: app/features/mec.php:
|
2218 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2219 |
-
#: app/features/mec/notifications.php:
|
2220 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2221 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2222 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2223 |
msgid "Support"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: app/features/mec.php:
|
2227 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2228 |
#: app/libraries/main.php:4381
|
2229 |
msgid "Organizers"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: app/features/mec.php:
|
2233 |
#: app/features/mec/dashboard.php:194
|
2234 |
msgid "Shortcodes"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: app/features/mec.php:
|
2238 |
msgid "MEC - Settings"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: app/features/mec.php:
|
2242 |
msgid "MEC - Addons"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: app/features/mec.php:
|
2246 |
msgid "Addons"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: app/features/mec.php:
|
2250 |
msgid "Add Shortcode"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: app/features/mec.php:
|
2254 |
msgid "Add New Shortcode"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: app/features/mec.php:
|
2258 |
msgid "No shortcodes found!"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: app/features/mec.php:
|
2262 |
msgid "All Shortcodes"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: app/features/mec.php:
|
2266 |
msgid "Edit shortcodes"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: app/features/mec.php:
|
2270 |
msgid "No shortcodes found in Trash!"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: app/features/mec.php:
|
2274 |
msgid "Display Options"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: app/features/mec.php:
|
2278 |
msgid "Filter Options"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: app/features/mec.php:
|
2282 |
msgid "Search Form"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: app/features/mec.php:
|
2286 |
msgid "Display content's images as Popup"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: app/features/mec.php:
|
2290 |
msgid "Single Event Display Method"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: app/features/mec.php:
|
2294 |
msgid "Separate Window"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: app/features/mec.php:
|
2298 |
msgid "Modal 1"
|
2299 |
msgstr ""
|
2300 |
|
@@ -2445,10 +2446,10 @@ msgstr ""
|
|
2445 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2446 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2447 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2448 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2449 |
-
#: app/features/mec/notifications.php:
|
2450 |
-
#: app/features/mec/notifications.php:
|
2451 |
-
#: app/features/mec/notifications.php:
|
2452 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2453 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2454 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2463,7 +2464,7 @@ msgid "Save Changes"
|
|
2463 |
msgstr ""
|
2464 |
|
2465 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2466 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2467 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2468 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2469 |
#: app/features/mec/support.php:52
|
@@ -2471,7 +2472,7 @@ msgid "Styling Options"
|
|
2471 |
msgstr ""
|
2472 |
|
2473 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2474 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2475 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2476 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2477 |
#: app/features/mec/support.php:59
|
@@ -2480,21 +2481,21 @@ msgstr ""
|
|
2480 |
|
2481 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2482 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2483 |
-
#: app/features/mec/notifications.php:
|
2484 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2485 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2486 |
msgid "Messages"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2490 |
-
#: app/features/mec/notifications.php:
|
2491 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2492 |
#: app/features/mec/styling.php:375
|
2493 |
msgid "Saved"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2497 |
-
#: app/features/mec/notifications.php:
|
2498 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2499 |
#: app/features/mec/styling.php:376
|
2500 |
msgid "Settings Saved!"
|
@@ -3307,300 +3308,352 @@ msgstr ""
|
|
3307 |
msgid "No Search Options"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3311 |
msgid "Booking Notification"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3315 |
msgid "Booking Verification"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3319 |
#: app/features/mec/settings.php:1409
|
3320 |
msgid "Booking Confirmation"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
3324 |
msgid "Admin Notification"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: app/features/mec/notifications.php:
|
3328 |
-
#: app/libraries/notifications.php:
|
3329 |
msgid "Booking Reminder"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: app/features/mec/notifications.php:
|
3333 |
#: app/features/mec/support-page.php:80
|
3334 |
msgid "New Event"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: app/features/mec/notifications.php:
|
3338 |
msgid "Enable booking notification"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: app/features/mec/notifications.php:
|
3342 |
msgid "It sends to attendee after booking for notifying him/her."
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: app/features/mec/notifications.php:
|
3346 |
-
#: app/features/mec/notifications.php:
|
3347 |
-
#: app/features/mec/notifications.php:
|
3348 |
-
#: app/features/mec/notifications.php:
|
3349 |
-
#: app/features/mec/notifications.php:
|
3350 |
-
#: app/features/mec/notifications.php:
|
|
|
3351 |
msgid "Email Subject"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: app/features/mec/notifications.php:
|
3355 |
-
#: app/features/mec/notifications.php:
|
3356 |
-
#: app/features/mec/notifications.php:
|
3357 |
-
#: app/features/mec/notifications.php:
|
3358 |
-
#: app/features/mec/notifications.php:
|
3359 |
-
#: app/features/mec/notifications.php:
|
3360 |
-
#: app/features/mec/notifications.php:322
|
3361 |
-
#: app/features/mec/notifications.php:326
|
3362 |
-
#: app/features/mec/notifications.php:385
|
3363 |
-
#: app/features/mec/notifications.php:389
|
3364 |
-
#: app/features/mec/notifications.php:400
|
3365 |
-
#: app/features/mec/notifications.php:457
|
3366 |
-
#: app/features/mec/notifications.php:461
|
3367 |
-
msgid "Custom Recipients"
|
3368 |
-
msgstr ""
|
3369 |
-
|
3370 |
-
#: app/features/mec/notifications.php:164
|
3371 |
-
#: app/features/mec/notifications.php:222
|
3372 |
-
#: app/features/mec/notifications.php:274
|
3373 |
-
#: app/features/mec/notifications.php:327
|
3374 |
-
#: app/features/mec/notifications.php:390
|
3375 |
-
#: app/features/mec/notifications.php:401
|
3376 |
-
#: app/features/mec/notifications.php:462
|
3377 |
-
msgid "Insert comma separated emails for multiple recipients."
|
3378 |
-
msgstr ""
|
3379 |
-
|
3380 |
-
#: app/features/mec/notifications.php:171
|
3381 |
#: app/features/mec/notifications.php:334
|
3382 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: app/features/mec/notifications.php:
|
3386 |
#: app/features/mec/notifications.php:228
|
3387 |
#: app/features/mec/notifications.php:280
|
3388 |
-
#: app/features/mec/notifications.php:
|
3389 |
-
#: app/features/mec/notifications.php:
|
3390 |
-
#: app/features/mec/notifications.php:
|
3391 |
-
|
|
|
|
|
3392 |
msgstr ""
|
3393 |
|
3394 |
#: app/features/mec/notifications.php:177
|
3395 |
-
#: app/features/mec/notifications.php:
|
3396 |
-
#: app/features/mec/notifications.php:
|
3397 |
-
|
3398 |
-
#: app/features/mec/notifications.php:410
|
3399 |
-
#: app/features/mec/notifications.php:471
|
3400 |
-
msgid "You can use following placeholders"
|
3401 |
-
msgstr ""
|
3402 |
-
|
3403 |
-
#: app/features/mec/notifications.php:179
|
3404 |
-
#: app/features/mec/notifications.php:233
|
3405 |
-
#: app/features/mec/notifications.php:285
|
3406 |
-
#: app/features/mec/notifications.php:342
|
3407 |
-
#: app/features/mec/notifications.php:412
|
3408 |
-
msgid "First name of attendee"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
#: app/features/mec/notifications.php:180
|
3412 |
#: app/features/mec/notifications.php:234
|
3413 |
#: app/features/mec/notifications.php:286
|
3414 |
-
#: app/features/mec/notifications.php:
|
3415 |
-
#: app/features/mec/notifications.php:
|
3416 |
-
|
3417 |
-
|
3418 |
-
|
3419 |
-
#: app/features/mec/notifications.php:181
|
3420 |
-
#: app/features/mec/notifications.php:235
|
3421 |
-
#: app/features/mec/notifications.php:287
|
3422 |
-
#: app/features/mec/notifications.php:344
|
3423 |
-
#: app/features/mec/notifications.php:414
|
3424 |
-
msgid "Email of attendee"
|
3425 |
-
msgstr ""
|
3426 |
-
|
3427 |
-
#: app/features/mec/notifications.php:182
|
3428 |
-
#: app/features/mec/notifications.php:236
|
3429 |
-
#: app/features/mec/notifications.php:288
|
3430 |
-
#: app/features/mec/notifications.php:345
|
3431 |
-
#: app/features/mec/notifications.php:415
|
3432 |
-
msgid "Booked date of event"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
#: app/features/mec/notifications.php:183
|
3436 |
#: app/features/mec/notifications.php:237
|
3437 |
#: app/features/mec/notifications.php:289
|
3438 |
-
#: app/features/mec/notifications.php:
|
3439 |
-
#: app/features/mec/notifications.php:
|
3440 |
-
|
3441 |
-
|
3442 |
-
|
3443 |
-
#: app/features/mec/notifications.php:184
|
3444 |
-
#: app/features/mec/notifications.php:238
|
3445 |
-
#: app/features/mec/notifications.php:290
|
3446 |
-
#: app/features/mec/notifications.php:347
|
3447 |
-
#: app/features/mec/notifications.php:417
|
3448 |
-
msgid "Booking Price"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
#: app/features/mec/notifications.php:185
|
3452 |
#: app/features/mec/notifications.php:239
|
3453 |
#: app/features/mec/notifications.php:291
|
3454 |
-
#: app/features/mec/notifications.php:
|
3455 |
-
#: app/features/mec/notifications.php:
|
3456 |
-
#: app/features/mec/notifications.php:
|
3457 |
-
msgid "
|
3458 |
msgstr ""
|
3459 |
|
3460 |
#: app/features/mec/notifications.php:186
|
3461 |
#: app/features/mec/notifications.php:240
|
3462 |
#: app/features/mec/notifications.php:292
|
3463 |
-
#: app/features/mec/notifications.php:
|
3464 |
-
#: app/features/mec/notifications.php:
|
3465 |
-
#: app/features/mec/notifications.php:
|
3466 |
-
msgid "
|
3467 |
msgstr ""
|
3468 |
|
3469 |
#: app/features/mec/notifications.php:187
|
3470 |
#: app/features/mec/notifications.php:241
|
3471 |
#: app/features/mec/notifications.php:293
|
3472 |
-
#: app/features/mec/notifications.php:
|
3473 |
-
#: app/features/mec/notifications.php:
|
3474 |
-
#: app/features/mec/notifications.php:
|
3475 |
-
msgid "
|
3476 |
msgstr ""
|
3477 |
|
3478 |
#: app/features/mec/notifications.php:188
|
3479 |
#: app/features/mec/notifications.php:242
|
3480 |
#: app/features/mec/notifications.php:294
|
3481 |
-
#: app/features/mec/notifications.php:
|
3482 |
-
#: app/features/mec/notifications.php:
|
3483 |
-
|
|
|
3484 |
msgstr ""
|
3485 |
|
3486 |
#: app/features/mec/notifications.php:189
|
3487 |
#: app/features/mec/notifications.php:243
|
3488 |
#: app/features/mec/notifications.php:295
|
3489 |
-
#: app/features/mec/notifications.php:
|
3490 |
-
#: app/features/mec/notifications.php:
|
3491 |
-
|
|
|
3492 |
msgstr ""
|
3493 |
|
3494 |
#: app/features/mec/notifications.php:190
|
3495 |
#: app/features/mec/notifications.php:244
|
3496 |
#: app/features/mec/notifications.php:296
|
3497 |
-
#: app/features/mec/notifications.php:
|
3498 |
-
#: app/features/mec/notifications.php:
|
3499 |
-
|
|
|
3500 |
msgstr ""
|
3501 |
|
3502 |
#: app/features/mec/notifications.php:191
|
3503 |
#: app/features/mec/notifications.php:245
|
3504 |
#: app/features/mec/notifications.php:297
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
3507 |
-
|
|
|
|
|
3508 |
msgstr ""
|
3509 |
|
3510 |
#: app/features/mec/notifications.php:192
|
3511 |
#: app/features/mec/notifications.php:246
|
3512 |
#: app/features/mec/notifications.php:298
|
3513 |
-
#: app/features/mec/notifications.php:
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
-
|
|
|
|
|
3516 |
msgstr ""
|
3517 |
|
3518 |
#: app/features/mec/notifications.php:193
|
3519 |
#: app/features/mec/notifications.php:247
|
3520 |
#: app/features/mec/notifications.php:299
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
3523 |
-
|
|
|
|
|
3524 |
msgstr ""
|
3525 |
|
3526 |
#: app/features/mec/notifications.php:194
|
3527 |
#: app/features/mec/notifications.php:248
|
3528 |
#: app/features/mec/notifications.php:300
|
3529 |
-
#: app/features/mec/notifications.php:
|
3530 |
-
#: app/features/mec/notifications.php:
|
3531 |
-
|
|
|
3532 |
msgstr ""
|
3533 |
|
3534 |
#: app/features/mec/notifications.php:195
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
|
|
|
|
|
|
|
|
|
3537 |
msgstr ""
|
3538 |
|
3539 |
#: app/features/mec/notifications.php:196
|
|
|
3540 |
#: app/features/mec/notifications.php:302
|
3541 |
-
#: app/features/mec/notifications.php:
|
3542 |
-
|
|
|
|
|
3543 |
msgstr ""
|
3544 |
|
3545 |
#: app/features/mec/notifications.php:197
|
3546 |
-
#: app/features/mec/notifications.php:
|
3547 |
#: app/features/mec/notifications.php:303
|
3548 |
-
#: app/features/mec/notifications.php:
|
3549 |
-
#: app/features/mec/notifications.php:
|
3550 |
-
|
|
|
3551 |
msgstr ""
|
3552 |
|
3553 |
#: app/features/mec/notifications.php:198
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
#: app/features/mec/notifications.php:304
|
3556 |
-
#: app/features/mec/notifications.php:
|
3557 |
-
|
|
|
|
|
3558 |
msgstr ""
|
3559 |
|
3560 |
#: app/features/mec/notifications.php:199
|
3561 |
-
#: app/features/mec/notifications.php:
|
3562 |
#: app/features/mec/notifications.php:305
|
3563 |
-
#: app/features/mec/notifications.php:
|
3564 |
-
|
|
|
|
|
3565 |
msgstr ""
|
3566 |
|
3567 |
#: app/features/mec/notifications.php:200
|
3568 |
-
#: app/features/mec/notifications.php:
|
3569 |
#: app/features/mec/notifications.php:306
|
3570 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3571 |
msgid "Download ICS file"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: app/features/mec/notifications.php:
|
3575 |
msgid "It sends to attendee email for verifying their booking/email."
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
msgid "Email/Booking verification link."
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: app/features/mec/notifications.php:
|
3583 |
msgid "It sends to attendee after confirming the booking by admin."
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: app/features/mec/notifications.php:
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
msgid "Booking cancellation link."
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: app/features/mec/notifications.php:
|
3592 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3596 |
msgid "Admin booking management link."
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3600 |
msgid "Enable booking reminder notification"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
#, php-format
|
3605 |
msgid ""
|
3606 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3608,52 +3661,52 @@ msgid ""
|
|
3608 |
"send the reminders multiple times."
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
#: app/features/mec/notifications.php:
|
3612 |
msgid "only once per day"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
-
#: app/features/mec/notifications.php:
|
3616 |
msgid "Days"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: app/features/mec/notifications.php:
|
3620 |
msgid "Enable new event notification"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: app/features/mec/notifications.php:
|
3624 |
msgid ""
|
3625 |
"It sends after adding a new event from frontend event submission or from "
|
3626 |
"website backend."
|
3627 |
msgstr ""
|
3628 |
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
msgid "Title of event"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
-
#: app/features/mec/notifications.php:
|
3634 |
msgid "Link of event"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
-
#: app/features/mec/notifications.php:
|
3638 |
msgid "Status of event"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#: app/features/mec/notifications.php:
|
3642 |
#: app/features/mec/settings.php:1253
|
3643 |
msgid "Event Note"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
msgid "Admin events management link."
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: app/features/mec/notifications.php:
|
3651 |
-
#: app/features/mec/notifications.php:
|
3652 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3653 |
msgid "Verified"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: app/features/mec/notifications.php:
|
3657 |
msgid "Please Refresh Page"
|
3658 |
msgstr ""
|
3659 |
|
@@ -4955,7 +5008,7 @@ msgid "eg. https://webnus.net"
|
|
4955 |
msgstr ""
|
4956 |
|
4957 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
4958 |
-
#: app/skins/single.php:
|
4959 |
msgid "Other Organizers"
|
4960 |
msgstr ""
|
4961 |
|
@@ -5082,7 +5135,7 @@ msgstr ""
|
|
5082 |
msgid "day"
|
5083 |
msgstr ""
|
5084 |
|
5085 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5086 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5087 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5088 |
msgid "days"
|
@@ -5092,7 +5145,7 @@ msgstr ""
|
|
5092 |
msgid "hour"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5096 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5097 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5098 |
msgid "hours"
|
@@ -5102,7 +5155,7 @@ msgstr ""
|
|
5102 |
msgid "minute"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5106 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5107 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5108 |
msgid "minutes"
|
@@ -5112,7 +5165,7 @@ msgstr ""
|
|
5112 |
msgid "second"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5116 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5117 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5118 |
msgid "seconds"
|
@@ -5579,38 +5632,42 @@ msgstr ""
|
|
5579 |
msgid "Your booking is confirmed."
|
5580 |
msgstr ""
|
5581 |
|
5582 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
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 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5592 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5593 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5594 |
msgid "All of the day"
|
5595 |
msgstr ""
|
5596 |
|
5597 |
-
#: app/libraries/notifications.php:
|
5598 |
msgid "to"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#: app/libraries/notifications.php:
|
5602 |
msgid "+ Add to Google Calendar"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
-
#: app/libraries/notifications.php:
|
5606 |
msgid "+ iCal export"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: app/libraries/notifications.php:
|
5610 |
msgid "Yes"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: app/libraries/notifications.php:
|
5614 |
msgid "No"
|
5615 |
msgstr ""
|
5616 |
|
@@ -5821,15 +5878,15 @@ msgstr ""
|
|
5821 |
msgid "All"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
-
#: app/skins/monthly_view/calendar.php:
|
5825 |
-
#: app/skins/monthly_view/calendar.php:
|
5826 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5827 |
#: app/skins/monthly_view/calendar_clean.php:153
|
5828 |
#, php-format
|
5829 |
msgid "Events for %s"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
-
#: app/skins/monthly_view/calendar.php:
|
5833 |
#: app/skins/monthly_view/calendar_clean.php:155
|
5834 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5835 |
msgid "No Events"
|
@@ -5839,19 +5896,19 @@ msgstr ""
|
|
5839 |
msgid "Home"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
-
#: app/skins/single.php:
|
5843 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
5844 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
5845 |
msgid "Phone"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#: app/skins/single.php:
|
5849 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
5850 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
5851 |
msgid "Website"
|
5852 |
msgstr ""
|
5853 |
|
5854 |
-
#: app/skins/single.php:
|
5855 |
msgid "Speakers:"
|
5856 |
msgstr ""
|
5857 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:04+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:04+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:348
|
29 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
30 |
msgid "Shortcode"
|
31 |
msgstr ""
|
32 |
|
51 |
msgid "Event Color"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: app/features/contextual.php:55 app/features/mec.php:329
|
55 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
56 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
57 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
256 |
msgid "Event"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
260 |
msgid "Add Event"
|
261 |
msgstr ""
|
262 |
|
304 |
msgstr ""
|
305 |
|
306 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
307 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
308 |
#: app/libraries/main.php:4375
|
309 |
msgid "Categories"
|
310 |
msgstr ""
|
403 |
#: app/features/events.php:410 app/features/events.php:1682
|
404 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
405 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
406 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
417 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
418 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
419 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
420 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
421 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
422 |
#: app/skins/single/modern.php:48
|
535 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
536 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
537 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
538 |
+
#: app/features/mec/notifications.php:170
|
539 |
+
#: app/features/mec/notifications.php:228
|
540 |
+
#: app/features/mec/notifications.php:280
|
541 |
+
#: app/features/mec/notifications.php:339
|
542 |
+
#: app/features/mec/notifications.php:406
|
543 |
+
#: app/features/mec/notifications.php:469
|
544 |
+
#: app/features/mec/notifications.php:480
|
545 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
546 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
547 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
548 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
747 |
msgstr ""
|
748 |
|
749 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
750 |
+
#: app/skins/single.php:379
|
751 |
msgid "Hourly Schedule"
|
752 |
msgstr ""
|
753 |
|
819 |
|
820 |
#: app/features/events.php:913 app/features/events.php:933
|
821 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
822 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
823 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
824 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
825 |
msgid "Speakers"
|
1199 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1200 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1201 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1202 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1203 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1204 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1205 |
msgid "Location"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1372 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1373 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1374 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1375 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1376 |
msgid "Labels"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1380 |
#: app/features/mec/meta_boxes/filter.php:138
|
1381 |
msgid "Tags"
|
1382 |
msgstr ""
|
1412 |
|
1413 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1414 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1415 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1416 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1417 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1418 |
msgid "Import / Export"
|
1671 |
#: app/features/ix/export_g_calendar.php:72
|
1672 |
#: app/features/ix/export_g_calendar.php:147
|
1673 |
#: app/features/ix/export_g_calendar.php:164
|
1674 |
+
#: app/features/mec/notifications.php:207
|
1675 |
+
#: app/features/mec/notifications.php:260
|
1676 |
+
#: app/features/mec/notifications.php:313
|
1677 |
+
#: app/features/mec/notifications.php:513
|
1678 |
msgid "Add to Google Calendar"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
#: app/features/ix/export_g_calendar.php:90
|
1682 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1683 |
msgid "Checking ..."
|
1684 |
msgstr ""
|
1685 |
|
1903 |
|
1904 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1905 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1906 |
+
#: app/features/mec/notifications.php:457
|
1907 |
msgid "Important Note"
|
1908 |
msgstr ""
|
1909 |
|
2029 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2030 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2031 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2032 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2033 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2034 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2035 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2043 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2044 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2045 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2046 |
+
#: app/skins/monthly_view/calendar.php:86
|
2047 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2048 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2049 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2071 |
msgid "Event %s"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2075 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2076 |
#: app/libraries/main.php:4379
|
2077 |
msgid "Locations"
|
2187 |
"You can select extra locations in addition to main location if you like."
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: app/features/mec.php:153
|
2191 |
msgid ""
|
2192 |
"Activation faild. Please check your purchase code or license type."
|
2193 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: app/features/mec.php:153
|
2197 |
msgid "Troubleshooting"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: app/features/mec.php:193
|
2201 |
msgid ""
|
2202 |
"Your options is not in JSON format. Please insert correct options in this "
|
2203 |
"field and try again."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: app/features/mec.php:200
|
2207 |
msgid "Your options field can not be empty!"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: app/features/mec.php:206
|
2211 |
msgid "Your options imported successfuly."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: app/features/mec.php:299
|
2215 |
msgid "MEC - Support"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2219 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2220 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2221 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2222 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2223 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2224 |
msgid "Support"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2228 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2229 |
#: app/libraries/main.php:4381
|
2230 |
msgid "Organizers"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2234 |
#: app/features/mec/dashboard.php:194
|
2235 |
msgid "Shortcodes"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: app/features/mec.php:329
|
2239 |
msgid "MEC - Settings"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: app/features/mec.php:330
|
2243 |
msgid "MEC - Addons"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2247 |
msgid "Addons"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: app/features/mec.php:349
|
2251 |
msgid "Add Shortcode"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: app/features/mec.php:350
|
2255 |
msgid "Add New Shortcode"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: app/features/mec.php:351
|
2259 |
msgid "No shortcodes found!"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: app/features/mec.php:352
|
2263 |
msgid "All Shortcodes"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: app/features/mec.php:353
|
2267 |
msgid "Edit shortcodes"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: app/features/mec.php:354
|
2271 |
msgid "No shortcodes found in Trash!"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: app/features/mec.php:402
|
2275 |
msgid "Display Options"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: app/features/mec.php:403
|
2279 |
msgid "Filter Options"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: app/features/mec.php:405
|
2283 |
msgid "Search Form"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: app/features/mec.php:755
|
2287 |
msgid "Display content's images as Popup"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: app/features/mec.php:768
|
2291 |
msgid "Single Event Display Method"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: app/features/mec.php:773
|
2295 |
msgid "Separate Window"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: app/features/mec.php:774
|
2299 |
msgid "Modal 1"
|
2300 |
msgstr ""
|
2301 |
|
2446 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2447 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2448 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2449 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2450 |
+
#: app/features/mec/notifications.php:581
|
2451 |
+
#: app/features/mec/notifications.php:680
|
2452 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2453 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2454 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2455 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2464 |
msgstr ""
|
2465 |
|
2466 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2467 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2468 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2469 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2470 |
#: app/features/mec/support.php:52
|
2472 |
msgstr ""
|
2473 |
|
2474 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2475 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2476 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2477 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2478 |
#: app/features/mec/support.php:59
|
2481 |
|
2482 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2483 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2484 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2485 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2486 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2487 |
msgid "Messages"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2491 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2492 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2493 |
#: app/features/mec/styling.php:375
|
2494 |
msgid "Saved"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2498 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2499 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2500 |
#: app/features/mec/styling.php:376
|
2501 |
msgid "Settings Saved!"
|
3308 |
msgid "No Search Options"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3312 |
msgid "Booking Notification"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3316 |
msgid "Booking Verification"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3320 |
#: app/features/mec/settings.php:1409
|
3321 |
msgid "Booking Confirmation"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3325 |
+
msgid "Booking Cancellation"
|
3326 |
+
msgstr ""
|
3327 |
+
|
3328 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3329 |
msgid "Admin Notification"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3333 |
+
#: app/libraries/notifications.php:354
|
3334 |
msgid "Booking Reminder"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3338 |
#: app/features/mec/support-page.php:80
|
3339 |
msgid "New Event"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: app/features/mec/notifications.php:155
|
3343 |
msgid "Enable booking notification"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: app/features/mec/notifications.php:159
|
3347 |
msgid "It sends to attendee after booking for notifying him/her."
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: app/features/mec/notifications.php:161
|
3351 |
+
#: app/features/mec/notifications.php:219
|
3352 |
+
#: app/features/mec/notifications.php:271
|
3353 |
+
#: app/features/mec/notifications.php:330
|
3354 |
+
#: app/features/mec/notifications.php:397
|
3355 |
+
#: app/features/mec/notifications.php:460
|
3356 |
+
#: app/features/mec/notifications.php:532
|
3357 |
msgid "Email Subject"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: app/features/mec/notifications.php:165
|
3361 |
+
#: app/features/mec/notifications.php:169
|
3362 |
+
#: app/features/mec/notifications.php:223
|
3363 |
+
#: app/features/mec/notifications.php:227
|
3364 |
+
#: app/features/mec/notifications.php:275
|
3365 |
+
#: app/features/mec/notifications.php:279
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3366 |
#: app/features/mec/notifications.php:334
|
3367 |
+
#: app/features/mec/notifications.php:338
|
3368 |
+
#: app/features/mec/notifications.php:401
|
3369 |
+
#: app/features/mec/notifications.php:405
|
3370 |
+
#: app/features/mec/notifications.php:464
|
3371 |
+
#: app/features/mec/notifications.php:468
|
3372 |
+
#: app/features/mec/notifications.php:479
|
3373 |
+
#: app/features/mec/notifications.php:536
|
3374 |
+
#: app/features/mec/notifications.php:540
|
3375 |
+
msgid "Custom Recipients"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: app/features/mec/notifications.php:170
|
3379 |
#: app/features/mec/notifications.php:228
|
3380 |
#: app/features/mec/notifications.php:280
|
3381 |
+
#: app/features/mec/notifications.php:339
|
3382 |
+
#: app/features/mec/notifications.php:406
|
3383 |
+
#: app/features/mec/notifications.php:469
|
3384 |
+
#: app/features/mec/notifications.php:480
|
3385 |
+
#: app/features/mec/notifications.php:541
|
3386 |
+
msgid "Insert comma separated emails for multiple recipients."
|
3387 |
msgstr ""
|
3388 |
|
3389 |
#: app/features/mec/notifications.php:177
|
3390 |
+
#: app/features/mec/notifications.php:350
|
3391 |
+
#: app/features/mec/notifications.php:413
|
3392 |
+
msgid "Send the email to event organizer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3393 |
msgstr ""
|
3394 |
|
3395 |
#: app/features/mec/notifications.php:180
|
3396 |
#: app/features/mec/notifications.php:234
|
3397 |
#: app/features/mec/notifications.php:286
|
3398 |
+
#: app/features/mec/notifications.php:357
|
3399 |
+
#: app/features/mec/notifications.php:416
|
3400 |
+
#: app/features/mec/notifications.php:486
|
3401 |
+
#: app/features/mec/notifications.php:547
|
3402 |
+
msgid "Email Content"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3403 |
msgstr ""
|
3404 |
|
3405 |
#: app/features/mec/notifications.php:183
|
3406 |
#: app/features/mec/notifications.php:237
|
3407 |
#: app/features/mec/notifications.php:289
|
3408 |
+
#: app/features/mec/notifications.php:360
|
3409 |
+
#: app/features/mec/notifications.php:419
|
3410 |
+
#: app/features/mec/notifications.php:489
|
3411 |
+
#: app/features/mec/notifications.php:550
|
3412 |
+
msgid "You can use following placeholders"
|
|
|
|
|
|
|
|
|
|
|
|
|
3413 |
msgstr ""
|
3414 |
|
3415 |
#: app/features/mec/notifications.php:185
|
3416 |
#: app/features/mec/notifications.php:239
|
3417 |
#: app/features/mec/notifications.php:291
|
3418 |
+
#: app/features/mec/notifications.php:362
|
3419 |
+
#: app/features/mec/notifications.php:421
|
3420 |
+
#: app/features/mec/notifications.php:491
|
3421 |
+
msgid "First name of attendee"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
#: app/features/mec/notifications.php:186
|
3425 |
#: app/features/mec/notifications.php:240
|
3426 |
#: app/features/mec/notifications.php:292
|
3427 |
+
#: app/features/mec/notifications.php:363
|
3428 |
+
#: app/features/mec/notifications.php:422
|
3429 |
+
#: app/features/mec/notifications.php:492
|
3430 |
+
msgid "Last name of attendee"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
#: app/features/mec/notifications.php:187
|
3434 |
#: app/features/mec/notifications.php:241
|
3435 |
#: app/features/mec/notifications.php:293
|
3436 |
+
#: app/features/mec/notifications.php:364
|
3437 |
+
#: app/features/mec/notifications.php:423
|
3438 |
+
#: app/features/mec/notifications.php:493
|
3439 |
+
msgid "Email of attendee"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
#: app/features/mec/notifications.php:188
|
3443 |
#: app/features/mec/notifications.php:242
|
3444 |
#: app/features/mec/notifications.php:294
|
3445 |
+
#: app/features/mec/notifications.php:365
|
3446 |
+
#: app/features/mec/notifications.php:424
|
3447 |
+
#: app/features/mec/notifications.php:494
|
3448 |
+
msgid "Booked date of event"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
#: app/features/mec/notifications.php:189
|
3452 |
#: app/features/mec/notifications.php:243
|
3453 |
#: app/features/mec/notifications.php:295
|
3454 |
+
#: app/features/mec/notifications.php:366
|
3455 |
+
#: app/features/mec/notifications.php:425
|
3456 |
+
#: app/features/mec/notifications.php:495
|
3457 |
+
msgid "Booked time of event"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
#: app/features/mec/notifications.php:190
|
3461 |
#: app/features/mec/notifications.php:244
|
3462 |
#: app/features/mec/notifications.php:296
|
3463 |
+
#: app/features/mec/notifications.php:367
|
3464 |
+
#: app/features/mec/notifications.php:426
|
3465 |
+
#: app/features/mec/notifications.php:496
|
3466 |
+
msgid "Booking Price"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
#: app/features/mec/notifications.php:191
|
3470 |
#: app/features/mec/notifications.php:245
|
3471 |
#: app/features/mec/notifications.php:297
|
3472 |
+
#: app/features/mec/notifications.php:368
|
3473 |
+
#: app/features/mec/notifications.php:427
|
3474 |
+
#: app/features/mec/notifications.php:497
|
3475 |
+
#: app/features/mec/notifications.php:556
|
3476 |
+
msgid "Your website title"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
#: app/features/mec/notifications.php:192
|
3480 |
#: app/features/mec/notifications.php:246
|
3481 |
#: app/features/mec/notifications.php:298
|
3482 |
+
#: app/features/mec/notifications.php:369
|
3483 |
+
#: app/features/mec/notifications.php:428
|
3484 |
+
#: app/features/mec/notifications.php:498
|
3485 |
+
#: app/features/mec/notifications.php:557
|
3486 |
+
msgid "Your website URL"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
#: app/features/mec/notifications.php:193
|
3490 |
#: app/features/mec/notifications.php:247
|
3491 |
#: app/features/mec/notifications.php:299
|
3492 |
+
#: app/features/mec/notifications.php:370
|
3493 |
+
#: app/features/mec/notifications.php:429
|
3494 |
+
#: app/features/mec/notifications.php:499
|
3495 |
+
#: app/features/mec/notifications.php:558
|
3496 |
+
msgid "Your website description"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
#: app/features/mec/notifications.php:194
|
3500 |
#: app/features/mec/notifications.php:248
|
3501 |
#: app/features/mec/notifications.php:300
|
3502 |
+
#: app/features/mec/notifications.php:371
|
3503 |
+
#: app/features/mec/notifications.php:430
|
3504 |
+
#: app/features/mec/notifications.php:500
|
3505 |
+
msgid "Event title"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
#: app/features/mec/notifications.php:195
|
3509 |
+
#: app/features/mec/notifications.php:249
|
3510 |
+
#: app/features/mec/notifications.php:301
|
3511 |
+
#: app/features/mec/notifications.php:372
|
3512 |
+
#: app/features/mec/notifications.php:431
|
3513 |
+
#: app/features/mec/notifications.php:501
|
3514 |
+
msgid "Event link"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
#: app/features/mec/notifications.php:196
|
3518 |
+
#: app/features/mec/notifications.php:250
|
3519 |
#: app/features/mec/notifications.php:302
|
3520 |
+
#: app/features/mec/notifications.php:373
|
3521 |
+
#: app/features/mec/notifications.php:432
|
3522 |
+
#: app/features/mec/notifications.php:502
|
3523 |
+
msgid "Organizer name of booked event"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
#: app/features/mec/notifications.php:197
|
3527 |
+
#: app/features/mec/notifications.php:251
|
3528 |
#: app/features/mec/notifications.php:303
|
3529 |
+
#: app/features/mec/notifications.php:374
|
3530 |
+
#: app/features/mec/notifications.php:433
|
3531 |
+
#: app/features/mec/notifications.php:503
|
3532 |
+
msgid "Organizer tel of booked event"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
#: app/features/mec/notifications.php:198
|
3536 |
+
#: app/features/mec/notifications.php:252
|
3537 |
#: app/features/mec/notifications.php:304
|
3538 |
+
#: app/features/mec/notifications.php:375
|
3539 |
+
#: app/features/mec/notifications.php:434
|
3540 |
+
#: app/features/mec/notifications.php:504
|
3541 |
+
msgid "Organizer email of booked event"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
#: app/features/mec/notifications.php:199
|
3545 |
+
#: app/features/mec/notifications.php:253
|
3546 |
#: app/features/mec/notifications.php:305
|
3547 |
+
#: app/features/mec/notifications.php:376
|
3548 |
+
#: app/features/mec/notifications.php:435
|
3549 |
+
#: app/features/mec/notifications.php:505
|
3550 |
+
msgid "Location name of booked event"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
#: app/features/mec/notifications.php:200
|
3554 |
+
#: app/features/mec/notifications.php:254
|
3555 |
#: app/features/mec/notifications.php:306
|
3556 |
+
#: app/features/mec/notifications.php:377
|
3557 |
+
#: app/features/mec/notifications.php:436
|
3558 |
+
#: app/features/mec/notifications.php:506
|
3559 |
+
msgid "Location address of booked event"
|
3560 |
+
msgstr ""
|
3561 |
+
|
3562 |
+
#: app/features/mec/notifications.php:201
|
3563 |
+
#: app/features/mec/notifications.php:379
|
3564 |
+
#: app/features/mec/notifications.php:438
|
3565 |
+
msgid "Full Attendee info such as booking form data, name, email etc."
|
3566 |
+
msgstr ""
|
3567 |
+
|
3568 |
+
#: app/features/mec/notifications.php:202
|
3569 |
+
#: app/features/mec/notifications.php:308
|
3570 |
+
#: app/features/mec/notifications.php:508
|
3571 |
+
msgid "Invoice Link"
|
3572 |
+
msgstr ""
|
3573 |
+
|
3574 |
+
#: app/features/mec/notifications.php:203
|
3575 |
+
#: app/features/mec/notifications.php:256
|
3576 |
+
#: app/features/mec/notifications.php:309
|
3577 |
+
#: app/features/mec/notifications.php:380
|
3578 |
+
#: app/features/mec/notifications.php:439
|
3579 |
+
#: app/features/mec/notifications.php:509
|
3580 |
+
msgid "Total Attendees"
|
3581 |
+
msgstr ""
|
3582 |
+
|
3583 |
+
#: app/features/mec/notifications.php:204
|
3584 |
+
#: app/features/mec/notifications.php:257
|
3585 |
+
#: app/features/mec/notifications.php:310
|
3586 |
+
#: app/features/mec/notifications.php:510
|
3587 |
+
msgid "Ticket name"
|
3588 |
+
msgstr ""
|
3589 |
+
|
3590 |
+
#: app/features/mec/notifications.php:205
|
3591 |
+
#: app/features/mec/notifications.php:258
|
3592 |
+
#: app/features/mec/notifications.php:311
|
3593 |
+
#: app/features/mec/notifications.php:511
|
3594 |
+
msgid "Ticket time"
|
3595 |
+
msgstr ""
|
3596 |
+
|
3597 |
+
#: app/features/mec/notifications.php:206
|
3598 |
+
#: app/features/mec/notifications.php:259
|
3599 |
+
#: app/features/mec/notifications.php:312
|
3600 |
+
#: app/features/mec/notifications.php:512
|
3601 |
msgid "Download ICS file"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: app/features/mec/notifications.php:217
|
3605 |
msgid "It sends to attendee email for verifying their booking/email."
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: app/features/mec/notifications.php:255
|
3609 |
msgid "Email/Booking verification link."
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: app/features/mec/notifications.php:269
|
3613 |
msgid "It sends to attendee after confirming the booking by admin."
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: app/features/mec/notifications.php:307
|
3617 |
+
#: app/features/mec/notifications.php:507
|
3618 |
msgid "Booking cancellation link."
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: app/features/mec/notifications.php:324
|
3622 |
+
msgid "Enable cancellation notification"
|
3623 |
+
msgstr ""
|
3624 |
+
|
3625 |
+
#: app/features/mec/notifications.php:328
|
3626 |
+
msgid ""
|
3627 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3628 |
+
"them."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: app/features/mec/notifications.php:346
|
3632 |
+
msgid "Send the email to admin"
|
3633 |
+
msgstr ""
|
3634 |
+
|
3635 |
+
#: app/features/mec/notifications.php:354
|
3636 |
+
msgid "Send the email to booking user"
|
3637 |
+
msgstr ""
|
3638 |
+
|
3639 |
+
#: app/features/mec/notifications.php:378
|
3640 |
+
#: app/features/mec/notifications.php:437
|
3641 |
msgid "Admin booking management link."
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: app/features/mec/notifications.php:391
|
3645 |
+
msgid "Enable admin notification"
|
3646 |
+
msgstr ""
|
3647 |
+
|
3648 |
+
#: app/features/mec/notifications.php:395
|
3649 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3650 |
+
msgstr ""
|
3651 |
+
|
3652 |
+
#: app/features/mec/notifications.php:451
|
3653 |
msgid "Enable booking reminder notification"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: app/features/mec/notifications.php:457
|
3657 |
#, php-format
|
3658 |
msgid ""
|
3659 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3661 |
"send the reminders multiple times."
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: app/features/mec/notifications.php:457
|
3665 |
msgid "only once per day"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: app/features/mec/notifications.php:475
|
3669 |
msgid "Days"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: app/features/mec/notifications.php:526
|
3673 |
msgid "Enable new event notification"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: app/features/mec/notifications.php:530
|
3677 |
msgid ""
|
3678 |
"It sends after adding a new event from frontend event submission or from "
|
3679 |
"website backend."
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: app/features/mec/notifications.php:552
|
3683 |
msgid "Title of event"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: app/features/mec/notifications.php:553
|
3687 |
msgid "Link of event"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: app/features/mec/notifications.php:554
|
3691 |
msgid "Status of event"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3695 |
#: app/features/mec/settings.php:1253
|
3696 |
msgid "Event Note"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: app/features/mec/notifications.php:559
|
3700 |
msgid "Admin events management link."
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: app/features/mec/notifications.php:661
|
3704 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3705 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3706 |
msgid "Verified"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3710 |
msgid "Please Refresh Page"
|
3711 |
msgstr ""
|
3712 |
|
5008 |
msgstr ""
|
5009 |
|
5010 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5011 |
+
#: app/skins/single.php:295
|
5012 |
msgid "Other Organizers"
|
5013 |
msgstr ""
|
5014 |
|
5135 |
msgid "day"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5139 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5140 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5141 |
msgid "days"
|
5145 |
msgid "hour"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5149 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5150 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5151 |
msgid "hours"
|
5155 |
msgid "minute"
|
5156 |
msgstr ""
|
5157 |
|
5158 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5159 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5160 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5161 |
msgid "minutes"
|
5165 |
msgid "second"
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5169 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5170 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5171 |
msgid "seconds"
|
5632 |
msgid "Your booking is confirmed."
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: app/libraries/notifications.php:252
|
5636 |
+
msgid "booking canceled."
|
5637 |
+
msgstr ""
|
5638 |
+
|
5639 |
+
#: app/libraries/notifications.php:296
|
5640 |
msgid "A new booking is received."
|
5641 |
msgstr ""
|
5642 |
|
5643 |
+
#: app/libraries/notifications.php:425
|
5644 |
msgid "A new event is added."
|
5645 |
msgstr ""
|
5646 |
|
5647 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
5648 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5649 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5650 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5651 |
msgid "All of the day"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: app/libraries/notifications.php:605
|
5655 |
msgid "to"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
5659 |
msgid "+ Add to Google Calendar"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
5663 |
msgid "+ iCal export"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: app/libraries/notifications.php:683
|
5667 |
msgid "Yes"
|
5668 |
msgstr ""
|
5669 |
|
5670 |
+
#: app/libraries/notifications.php:683
|
5671 |
msgid "No"
|
5672 |
msgstr ""
|
5673 |
|
5878 |
msgid "All"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
+
#: app/skins/monthly_view/calendar.php:68
|
5882 |
+
#: app/skins/monthly_view/calendar.php:154
|
5883 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5884 |
#: app/skins/monthly_view/calendar_clean.php:153
|
5885 |
#, php-format
|
5886 |
msgid "Events for %s"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
+
#: app/skins/monthly_view/calendar.php:156
|
5890 |
#: app/skins/monthly_view/calendar_clean.php:155
|
5891 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5892 |
msgid "No Events"
|
5896 |
msgid "Home"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
5900 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
5901 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
5902 |
msgid "Phone"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
5906 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
5907 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
5908 |
msgid "Website"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: app/skins/single.php:393
|
5912 |
msgid "Speakers:"
|
5913 |
msgstr ""
|
5914 |
|
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-06-
|
8 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
56 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
57 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -281,7 +281,7 @@ msgstr "Eventos"
|
|
281 |
msgid "Event"
|
282 |
msgstr "Evento"
|
283 |
|
284 |
-
#: app/features/events.php:136 app/features/mec.php:
|
285 |
msgid "Add Event"
|
286 |
msgstr "Nuevo evento"
|
287 |
|
@@ -329,7 +329,7 @@ msgid "Category"
|
|
329 |
msgstr "Categoría"
|
330 |
|
331 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
332 |
-
#: app/features/mec.php:
|
333 |
#: app/libraries/main.php:4375
|
334 |
msgid "Categories"
|
335 |
msgstr "Categorías"
|
@@ -428,7 +428,7 @@ msgstr "Datos del invitado"
|
|
428 |
#: app/features/events.php:410 app/features/events.php:1682
|
429 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
430 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +440,8 @@ msgstr "Nombre"
|
|
440 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
441 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
442 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
443 |
-
#: app/libraries/notifications.php:
|
444 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
445 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
446 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
447 |
#: app/skins/single/modern.php:48
|
@@ -566,13 +566,14 @@ msgstr ""
|
|
566 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
567 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
568 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
569 |
-
#: app/features/mec/notifications.php:
|
570 |
-
#: app/features/mec/notifications.php:
|
571 |
-
#: app/features/mec/notifications.php:
|
572 |
-
#: app/features/mec/notifications.php:
|
573 |
-
#: app/features/mec/notifications.php:
|
574 |
-
#: app/features/mec/notifications.php:
|
575 |
-
#: app/features/mec/notifications.php:
|
|
|
576 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
577 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
578 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -781,7 +782,7 @@ msgid "Day 1"
|
|
781 |
msgstr ""
|
782 |
|
783 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
784 |
-
#: app/skins/single.php:
|
785 |
msgid "Hourly Schedule"
|
786 |
msgstr "Programación horaria"
|
787 |
|
@@ -853,7 +854,7 @@ msgstr "Descripción"
|
|
853 |
|
854 |
#: app/features/events.php:913 app/features/events.php:933
|
855 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
856 |
-
#: app/features/mec.php:
|
857 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
858 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
859 |
msgid "Speakers"
|
@@ -1253,7 +1254,7 @@ msgstr "organizadores"
|
|
1253 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1254 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1255 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1256 |
-
#: app/skins/single.php:
|
1257 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1258 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1259 |
msgid "Location"
|
@@ -1425,14 +1426,14 @@ msgid "Remove Image"
|
|
1425 |
msgstr "Eliminar imagen"
|
1426 |
|
1427 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1428 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1429 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1430 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1431 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1432 |
msgid "Labels"
|
1433 |
msgstr "Etiquetas"
|
1434 |
|
1435 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1436 |
#: app/features/mec/meta_boxes/filter.php:138
|
1437 |
msgid "Tags"
|
1438 |
msgstr "Tags"
|
@@ -1468,7 +1469,7 @@ msgstr "MEC - Importar / Exportar"
|
|
1468 |
|
1469 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1470 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1471 |
-
#: app/features/mec/notifications.php:
|
1472 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1473 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1474 |
msgid "Import / Export"
|
@@ -1740,15 +1741,15 @@ msgstr "Toggle"
|
|
1740 |
#: app/features/ix/export_g_calendar.php:72
|
1741 |
#: app/features/ix/export_g_calendar.php:147
|
1742 |
#: app/features/ix/export_g_calendar.php:164
|
1743 |
-
#: app/features/mec/notifications.php:
|
1744 |
-
#: app/features/mec/notifications.php:
|
1745 |
-
#: app/features/mec/notifications.php:
|
1746 |
-
#: app/features/mec/notifications.php:
|
1747 |
msgid "Add to Google Calendar"
|
1748 |
msgstr "Añadir a Google Calendar"
|
1749 |
|
1750 |
#: app/features/ix/export_g_calendar.php:90
|
1751 |
-
#: app/features/mec/notifications.php:
|
1752 |
msgid "Checking ..."
|
1753 |
msgstr "Verificando…"
|
1754 |
|
@@ -1989,7 +1990,7 @@ msgstr "Importación automática a Google"
|
|
1989 |
|
1990 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1991 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1992 |
-
#: app/features/mec/notifications.php:
|
1993 |
msgid "Important Note"
|
1994 |
msgstr "Nota importante"
|
1995 |
|
@@ -2121,7 +2122,7 @@ msgstr ""
|
|
2121 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2122 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2123 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2124 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2125 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2126 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2127 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2135,7 +2136,7 @@ msgstr ""
|
|
2135 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2136 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2137 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2138 |
-
#: app/skins/monthly_view/calendar.php:
|
2139 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2140 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2141 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2163,7 +2164,7 @@ msgstr "Slug"
|
|
2163 |
msgid "Event %s"
|
2164 |
msgstr "Evento %s"
|
2165 |
|
2166 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2167 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2168 |
#: app/libraries/main.php:4379
|
2169 |
msgid "Locations"
|
@@ -2288,119 +2289,119 @@ msgstr ""
|
|
2288 |
"Si quieres, puedes seleccionar organizadores adicionales además del "
|
2289 |
"organizador principal."
|
2290 |
|
2291 |
-
#: app/features/mec.php:
|
2292 |
msgid ""
|
2293 |
"Activation faild. Please check your purchase code or license type."
|
2294 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: app/features/mec.php:
|
2298 |
msgid "Troubleshooting"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: app/features/mec.php:
|
2302 |
msgid ""
|
2303 |
"Your options is not in JSON format. Please insert correct options in this "
|
2304 |
"field and try again."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: app/features/mec.php:
|
2308 |
msgid "Your options field can not be empty!"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: app/features/mec.php:
|
2312 |
msgid "Your options imported successfuly."
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: app/features/mec.php:
|
2316 |
#, fuzzy
|
2317 |
#| msgid "Support"
|
2318 |
msgid "MEC - Support"
|
2319 |
msgstr "Soporte"
|
2320 |
|
2321 |
-
#: app/features/mec.php:
|
2322 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2323 |
-
#: app/features/mec/notifications.php:
|
2324 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2325 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2326 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2327 |
msgid "Support"
|
2328 |
msgstr "Soporte"
|
2329 |
|
2330 |
-
#: app/features/mec.php:
|
2331 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2332 |
#: app/libraries/main.php:4381
|
2333 |
msgid "Organizers"
|
2334 |
msgstr "Organizadores"
|
2335 |
|
2336 |
-
#: app/features/mec.php:
|
2337 |
#: app/features/mec/dashboard.php:194
|
2338 |
msgid "Shortcodes"
|
2339 |
msgstr "Shortcodes"
|
2340 |
|
2341 |
-
#: app/features/mec.php:
|
2342 |
msgid "MEC - Settings"
|
2343 |
msgstr "Ajustes MEC"
|
2344 |
|
2345 |
-
#: app/features/mec.php:
|
2346 |
#, fuzzy
|
2347 |
#| msgid "MEC - Settings"
|
2348 |
msgid "MEC - Addons"
|
2349 |
msgstr "Ajustes MEC"
|
2350 |
|
2351 |
-
#: app/features/mec.php:
|
2352 |
msgid "Addons"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: app/features/mec.php:
|
2356 |
msgid "Add Shortcode"
|
2357 |
msgstr "Nuevo Shortcode"
|
2358 |
|
2359 |
-
#: app/features/mec.php:
|
2360 |
msgid "Add New Shortcode"
|
2361 |
msgstr "Añadir nuevo Shortcode"
|
2362 |
|
2363 |
-
#: app/features/mec.php:
|
2364 |
msgid "No shortcodes found!"
|
2365 |
msgstr "No hay shortcodes"
|
2366 |
|
2367 |
-
#: app/features/mec.php:
|
2368 |
msgid "All Shortcodes"
|
2369 |
msgstr "Todos los Shortcodes"
|
2370 |
|
2371 |
-
#: app/features/mec.php:
|
2372 |
msgid "Edit shortcodes"
|
2373 |
msgstr "Editar Shortcodes"
|
2374 |
|
2375 |
-
#: app/features/mec.php:
|
2376 |
msgid "No shortcodes found in Trash!"
|
2377 |
msgstr "No hay shortcodes en la papelera"
|
2378 |
|
2379 |
-
#: app/features/mec.php:
|
2380 |
msgid "Display Options"
|
2381 |
msgstr "Opciones de pantalla"
|
2382 |
|
2383 |
-
#: app/features/mec.php:
|
2384 |
msgid "Filter Options"
|
2385 |
msgstr "Opciones de filtros"
|
2386 |
|
2387 |
-
#: app/features/mec.php:
|
2388 |
msgid "Search Form"
|
2389 |
msgstr "Formulario de Búsqueda"
|
2390 |
|
2391 |
-
#: app/features/mec.php:
|
2392 |
msgid "Display content's images as Popup"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: app/features/mec.php:
|
2396 |
msgid "Single Event Display Method"
|
2397 |
msgstr "Método de vista para página del evento"
|
2398 |
|
2399 |
-
#: app/features/mec.php:
|
2400 |
msgid "Separate Window"
|
2401 |
msgstr "Ventana aparte"
|
2402 |
|
2403 |
-
#: app/features/mec.php:
|
2404 |
msgid "Modal 1"
|
2405 |
msgstr "Modal 1"
|
2406 |
|
@@ -2562,10 +2563,10 @@ msgstr "Historial de cambios"
|
|
2562 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2563 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2564 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2565 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2566 |
-
#: app/features/mec/notifications.php:
|
2567 |
-
#: app/features/mec/notifications.php:
|
2568 |
-
#: app/features/mec/notifications.php:
|
2569 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2570 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2571 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2580,7 +2581,7 @@ msgid "Save Changes"
|
|
2580 |
msgstr "Guardar Cambios"
|
2581 |
|
2582 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2583 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2584 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2585 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2586 |
#: app/features/mec/support.php:52
|
@@ -2588,7 +2589,7 @@ msgid "Styling Options"
|
|
2588 |
msgstr "Opciones visuales"
|
2589 |
|
2590 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2591 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2592 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2593 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2594 |
#: app/features/mec/support.php:59
|
@@ -2597,21 +2598,21 @@ msgstr "CSS personalizado"
|
|
2597 |
|
2598 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2599 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2600 |
-
#: app/features/mec/notifications.php:
|
2601 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2602 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2603 |
msgid "Messages"
|
2604 |
msgstr "Mensajes"
|
2605 |
|
2606 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2607 |
-
#: app/features/mec/notifications.php:
|
2608 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2609 |
#: app/features/mec/styling.php:375
|
2610 |
msgid "Saved"
|
2611 |
msgstr "Guardado"
|
2612 |
|
2613 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2614 |
-
#: app/features/mec/notifications.php:
|
2615 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2616 |
#: app/features/mec/styling.php:376
|
2617 |
msgid "Settings Saved!"
|
@@ -3447,309 +3448,373 @@ msgstr "Campo de texto"
|
|
3447 |
msgid "No Search Options"
|
3448 |
msgstr "No hay opciones de búsqueda"
|
3449 |
|
3450 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3451 |
msgid "Booking Notification"
|
3452 |
msgstr "Avisos de reservas"
|
3453 |
|
3454 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3455 |
msgid "Booking Verification"
|
3456 |
msgstr "Verificación de la reserva"
|
3457 |
|
3458 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3459 |
#: app/features/mec/settings.php:1409
|
3460 |
msgid "Booking Confirmation"
|
3461 |
msgstr "Confirmación de reserva"
|
3462 |
|
3463 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3464 |
msgid "Admin Notification"
|
3465 |
msgstr "Notificación de administrador"
|
3466 |
|
3467 |
-
#: app/features/mec/notifications.php:
|
3468 |
-
#: app/libraries/notifications.php:
|
3469 |
msgid "Booking Reminder"
|
3470 |
msgstr "Recordatorio de reserva"
|
3471 |
|
3472 |
-
#: app/features/mec/notifications.php:
|
3473 |
#: app/features/mec/support-page.php:80
|
3474 |
msgid "New Event"
|
3475 |
msgstr "Nuevo evento"
|
3476 |
|
3477 |
-
#: app/features/mec/notifications.php:
|
3478 |
msgid "Enable booking notification"
|
3479 |
msgstr "Activar notificación de reservas"
|
3480 |
|
3481 |
-
#: app/features/mec/notifications.php:
|
3482 |
msgid "It sends to attendee after booking for notifying him/her."
|
3483 |
msgstr "Se envía a los asistentes después de la reserva."
|
3484 |
|
3485 |
-
#: app/features/mec/notifications.php:
|
3486 |
-
#: app/features/mec/notifications.php:
|
3487 |
-
#: app/features/mec/notifications.php:
|
3488 |
-
#: app/features/mec/notifications.php:
|
3489 |
-
#: app/features/mec/notifications.php:
|
3490 |
-
#: app/features/mec/notifications.php:
|
|
|
3491 |
msgid "Email Subject"
|
3492 |
msgstr "Asunto del correo electrónico"
|
3493 |
|
3494 |
-
#: app/features/mec/notifications.php:
|
3495 |
-
#: app/features/mec/notifications.php:
|
3496 |
-
#: app/features/mec/notifications.php:
|
3497 |
-
#: app/features/mec/notifications.php:
|
3498 |
-
#: app/features/mec/notifications.php:
|
3499 |
-
#: app/features/mec/notifications.php:
|
3500 |
-
#: app/features/mec/notifications.php:
|
3501 |
-
#: app/features/mec/notifications.php:
|
3502 |
-
#: app/features/mec/notifications.php:
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
#: app/features/mec/notifications.php:
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3507 |
msgid "Custom Recipients"
|
3508 |
msgstr "Destinatarios personalizados"
|
3509 |
|
3510 |
-
#: app/features/mec/notifications.php:
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
#: app/features/mec/notifications.php:
|
3513 |
-
#: app/features/mec/notifications.php:
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
-
#: app/features/mec/notifications.php:
|
3516 |
-
#: app/features/mec/notifications.php:
|
|
|
3517 |
msgid "Insert comma separated emails for multiple recipients."
|
3518 |
msgstr "Inserta los correos separados por coma para múltiples destinatarios."
|
3519 |
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
|
|
3522 |
msgid "Send the email to event organizer"
|
3523 |
msgstr "Enviar correo al organizador del evento"
|
3524 |
|
3525 |
-
#: app/features/mec/notifications.php:
|
3526 |
-
#: app/features/mec/notifications.php:
|
3527 |
-
#: app/features/mec/notifications.php:
|
3528 |
-
#: app/features/mec/notifications.php:
|
3529 |
-
#: app/features/mec/notifications.php:
|
3530 |
-
#: app/features/mec/notifications.php:
|
|
|
3531 |
msgid "Email Content"
|
3532 |
msgstr "Contenido del correo"
|
3533 |
|
3534 |
-
#: app/features/mec/notifications.php:
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
3537 |
-
#: app/features/mec/notifications.php:
|
3538 |
-
#: app/features/mec/notifications.php:
|
3539 |
-
#: app/features/mec/notifications.php:
|
|
|
3540 |
msgid "You can use following placeholders"
|
3541 |
msgstr "Puedes utilizar los siguientes marcadores de posición"
|
3542 |
|
3543 |
-
#: app/features/mec/notifications.php:
|
3544 |
-
#: app/features/mec/notifications.php:
|
3545 |
-
#: app/features/mec/notifications.php:
|
3546 |
-
#: app/features/mec/notifications.php:
|
3547 |
-
#: app/features/mec/notifications.php:
|
|
|
3548 |
msgid "First name of attendee"
|
3549 |
msgstr "Nombre del asistente"
|
3550 |
|
3551 |
-
#: app/features/mec/notifications.php:
|
3552 |
-
#: app/features/mec/notifications.php:
|
3553 |
-
#: app/features/mec/notifications.php:
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
#: app/features/mec/notifications.php:
|
|
|
3556 |
msgid "Last name of attendee"
|
3557 |
msgstr "Apellidos del asistente"
|
3558 |
|
3559 |
-
#: app/features/mec/notifications.php:
|
3560 |
-
#: app/features/mec/notifications.php:
|
3561 |
-
#: app/features/mec/notifications.php:
|
3562 |
-
#: app/features/mec/notifications.php:
|
3563 |
-
#: app/features/mec/notifications.php:
|
|
|
3564 |
msgid "Email of attendee"
|
3565 |
msgstr "Correo electrónico del asistente"
|
3566 |
|
3567 |
-
#: app/features/mec/notifications.php:
|
3568 |
-
#: app/features/mec/notifications.php:
|
3569 |
-
#: app/features/mec/notifications.php:
|
3570 |
-
#: app/features/mec/notifications.php:
|
3571 |
-
#: app/features/mec/notifications.php:
|
|
|
3572 |
msgid "Booked date of event"
|
3573 |
msgstr "Fecha de reserva del evento"
|
3574 |
|
3575 |
-
#: app/features/mec/notifications.php:
|
3576 |
-
#: app/features/mec/notifications.php:
|
3577 |
-
#: app/features/mec/notifications.php:
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
-
#: app/features/mec/notifications.php:
|
|
|
3580 |
#, fuzzy
|
3581 |
#| msgid "Booked date of event"
|
3582 |
msgid "Booked time of event"
|
3583 |
msgstr "Fecha de reserva del evento"
|
3584 |
|
3585 |
-
#: app/features/mec/notifications.php:
|
3586 |
-
#: app/features/mec/notifications.php:
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
-
#: app/features/mec/notifications.php:
|
|
|
3590 |
msgid "Booking Price"
|
3591 |
msgstr "Precio de la reserva"
|
3592 |
|
3593 |
-
#: app/features/mec/notifications.php:
|
3594 |
-
#: app/features/mec/notifications.php:
|
3595 |
-
#: app/features/mec/notifications.php:
|
3596 |
-
#: app/features/mec/notifications.php:
|
3597 |
-
#: app/features/mec/notifications.php:
|
3598 |
-
#: app/features/mec/notifications.php:
|
|
|
3599 |
msgid "Your website title"
|
3600 |
msgstr "Título de tu web"
|
3601 |
|
3602 |
-
#: app/features/mec/notifications.php:
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
-
#: app/features/mec/notifications.php:
|
3605 |
-
#: app/features/mec/notifications.php:
|
3606 |
-
#: app/features/mec/notifications.php:
|
3607 |
-
#: app/features/mec/notifications.php:
|
|
|
3608 |
msgid "Your website URL"
|
3609 |
msgstr "URL de tu sitio web"
|
3610 |
|
3611 |
-
#: app/features/mec/notifications.php:
|
3612 |
-
#: app/features/mec/notifications.php:
|
3613 |
-
#: app/features/mec/notifications.php:
|
3614 |
-
#: app/features/mec/notifications.php:
|
3615 |
-
#: app/features/mec/notifications.php:
|
3616 |
-
#: app/features/mec/notifications.php:
|
|
|
3617 |
msgid "Your website description"
|
3618 |
msgstr "Descripción de tu web"
|
3619 |
|
3620 |
-
#: app/features/mec/notifications.php:
|
3621 |
-
#: app/features/mec/notifications.php:
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
3624 |
-
#: app/features/mec/notifications.php:
|
|
|
3625 |
msgid "Event title"
|
3626 |
msgstr "Título del evento"
|
3627 |
|
3628 |
-
#: app/features/mec/notifications.php:
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
-
#: app/features/mec/notifications.php:
|
3631 |
-
#: app/features/mec/notifications.php:
|
3632 |
-
#: app/features/mec/notifications.php:
|
|
|
3633 |
#, fuzzy
|
3634 |
#| msgid "Event Link"
|
3635 |
msgid "Event link"
|
3636 |
msgstr "Enlace del evento"
|
3637 |
|
3638 |
-
#: app/features/mec/notifications.php:
|
3639 |
-
#: app/features/mec/notifications.php:
|
3640 |
-
#: app/features/mec/notifications.php:
|
3641 |
-
#: app/features/mec/notifications.php:
|
3642 |
-
#: app/features/mec/notifications.php:
|
|
|
3643 |
msgid "Organizer name of booked event"
|
3644 |
msgstr "Nombre del organizador del evento reservado"
|
3645 |
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
-
#: app/features/mec/notifications.php:
|
3648 |
-
#: app/features/mec/notifications.php:
|
3649 |
-
#: app/features/mec/notifications.php:
|
3650 |
-
#: app/features/mec/notifications.php:
|
|
|
3651 |
msgid "Organizer tel of booked event"
|
3652 |
msgstr "Teléfono del organizador del evento reservado"
|
3653 |
|
3654 |
-
#: app/features/mec/notifications.php:
|
3655 |
-
#: app/features/mec/notifications.php:
|
3656 |
-
#: app/features/mec/notifications.php:
|
3657 |
-
#: app/features/mec/notifications.php:
|
3658 |
-
#: app/features/mec/notifications.php:
|
|
|
3659 |
msgid "Organizer email of booked event"
|
3660 |
msgstr "Correo electrónico del organizar de un evento reservado"
|
3661 |
|
3662 |
-
#: app/features/mec/notifications.php:
|
3663 |
-
#: app/features/mec/notifications.php:
|
3664 |
-
#: app/features/mec/notifications.php:
|
3665 |
-
#: app/features/mec/notifications.php:
|
3666 |
-
#: app/features/mec/notifications.php:
|
|
|
3667 |
msgid "Location name of booked event"
|
3668 |
msgstr "Nombre del lugar del organizador del evento reservado"
|
3669 |
|
3670 |
-
#: app/features/mec/notifications.php:
|
3671 |
-
#: app/features/mec/notifications.php:
|
3672 |
-
#: app/features/mec/notifications.php:
|
3673 |
-
#: app/features/mec/notifications.php:
|
3674 |
-
#: app/features/mec/notifications.php:
|
|
|
3675 |
msgid "Location address of booked event"
|
3676 |
msgstr "Dirección del organizador del evento reservado"
|
3677 |
|
3678 |
-
#: app/features/mec/notifications.php:
|
3679 |
-
#: app/features/mec/notifications.php:
|
|
|
3680 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3681 |
msgstr ""
|
3682 |
"Información completa del asistente, como datos de formulario de reserva, "
|
3683 |
"nombre, correo electrónico, etc."
|
3684 |
|
3685 |
-
#: app/features/mec/notifications.php:
|
3686 |
-
#: app/features/mec/notifications.php:
|
3687 |
-
#: app/features/mec/notifications.php:
|
3688 |
msgid "Invoice Link"
|
3689 |
msgstr "Enlace de factura"
|
3690 |
|
3691 |
-
#: app/features/mec/notifications.php:
|
3692 |
-
#: app/features/mec/notifications.php:
|
3693 |
-
#: app/features/mec/notifications.php:
|
3694 |
-
#: app/features/mec/notifications.php:
|
3695 |
-
#: app/features/mec/notifications.php:
|
|
|
3696 |
msgid "Total Attendees"
|
3697 |
msgstr "Total asistentes"
|
3698 |
|
3699 |
-
#: app/features/mec/notifications.php:
|
3700 |
-
#: app/features/mec/notifications.php:
|
3701 |
-
#: app/features/mec/notifications.php:
|
3702 |
-
#: app/features/mec/notifications.php:
|
3703 |
msgid "Ticket name"
|
3704 |
msgstr "Nombre de la entrada"
|
3705 |
|
3706 |
-
#: app/features/mec/notifications.php:
|
3707 |
-
#: app/features/mec/notifications.php:
|
3708 |
-
#: app/features/mec/notifications.php:
|
3709 |
-
#: app/features/mec/notifications.php:
|
3710 |
msgid "Ticket time"
|
3711 |
msgstr "Hora de la entrada"
|
3712 |
|
3713 |
-
#: app/features/mec/notifications.php:
|
3714 |
-
#: app/features/mec/notifications.php:
|
3715 |
-
#: app/features/mec/notifications.php:
|
3716 |
-
#: app/features/mec/notifications.php:
|
3717 |
msgid "Download ICS file"
|
3718 |
msgstr "Descarga el archivo ICS"
|
3719 |
|
3720 |
-
#: app/features/mec/notifications.php:
|
3721 |
msgid "It sends to attendee email for verifying their booking/email."
|
3722 |
msgstr ""
|
3723 |
"Se envía a los asistentes un correo electrónico para verificar su reserva."
|
3724 |
|
3725 |
-
#: app/features/mec/notifications.php:
|
3726 |
msgid "Email/Booking verification link."
|
3727 |
msgstr "Enlace de verificación de correo electrónico/reserva."
|
3728 |
|
3729 |
-
#: app/features/mec/notifications.php:
|
3730 |
msgid "It sends to attendee after confirming the booking by admin."
|
3731 |
msgstr ""
|
3732 |
"Se envía a los asistentes después de confirmar la reserva por el "
|
3733 |
"administrador."
|
3734 |
|
3735 |
-
#: app/features/mec/notifications.php:
|
3736 |
-
#: app/features/mec/notifications.php:
|
3737 |
msgid "Booking cancellation link."
|
3738 |
msgstr "Enlace de cancelación de la reserva."
|
3739 |
|
3740 |
-
#: app/features/mec/notifications.php:
|
3741 |
-
|
3742 |
-
|
|
|
|
|
3743 |
|
3744 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3745 |
msgid "Admin booking management link."
|
3746 |
msgstr "Enlace del administrador de reservas."
|
3747 |
|
3748 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3749 |
msgid "Enable booking reminder notification"
|
3750 |
msgstr "Activar recordatorio de reservas del evento."
|
3751 |
|
3752 |
-
#: app/features/mec/notifications.php:
|
3753 |
#, php-format
|
3754 |
msgid ""
|
3755 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3761,19 +3826,19 @@ msgstr ""
|
|
3761 |
"este archivo %s, de lo contrario, puede enviar los recordatorios varias "
|
3762 |
"veces."
|
3763 |
|
3764 |
-
#: app/features/mec/notifications.php:
|
3765 |
msgid "only once per day"
|
3766 |
msgstr "una vez al día"
|
3767 |
|
3768 |
-
#: app/features/mec/notifications.php:
|
3769 |
msgid "Days"
|
3770 |
msgstr "Días"
|
3771 |
|
3772 |
-
#: app/features/mec/notifications.php:
|
3773 |
msgid "Enable new event notification"
|
3774 |
msgstr "Activa los avisos de nuevos eventos"
|
3775 |
|
3776 |
-
#: app/features/mec/notifications.php:
|
3777 |
msgid ""
|
3778 |
"It sends after adding a new event from frontend event submission or from "
|
3779 |
"website backend."
|
@@ -3781,36 +3846,36 @@ msgstr ""
|
|
3781 |
"Se envía después de agregar un nuevo evento de presentación de evento de "
|
3782 |
"frontend o desde el sitio web backend."
|
3783 |
|
3784 |
-
#: app/features/mec/notifications.php:
|
3785 |
msgid "Title of event"
|
3786 |
msgstr "Título del evento"
|
3787 |
|
3788 |
-
#: app/features/mec/notifications.php:
|
3789 |
#, fuzzy
|
3790 |
#| msgid "Title of event"
|
3791 |
msgid "Link of event"
|
3792 |
msgstr "Título del evento"
|
3793 |
|
3794 |
-
#: app/features/mec/notifications.php:
|
3795 |
msgid "Status of event"
|
3796 |
msgstr "Estado del evento"
|
3797 |
|
3798 |
-
#: app/features/mec/notifications.php:
|
3799 |
#: app/features/mec/settings.php:1253
|
3800 |
msgid "Event Note"
|
3801 |
msgstr "Nota de evento"
|
3802 |
|
3803 |
-
#: app/features/mec/notifications.php:
|
3804 |
msgid "Admin events management link."
|
3805 |
msgstr "Enlace del administrador de reservas."
|
3806 |
|
3807 |
-
#: app/features/mec/notifications.php:
|
3808 |
-
#: app/features/mec/notifications.php:
|
3809 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3810 |
msgid "Verified"
|
3811 |
msgstr "Verificado"
|
3812 |
|
3813 |
-
#: app/features/mec/notifications.php:
|
3814 |
msgid "Please Refresh Page"
|
3815 |
msgstr "Por favor, actualiza la página"
|
3816 |
|
@@ -5272,7 +5337,7 @@ msgid "eg. https://webnus.net"
|
|
5272 |
msgstr "ej. https://webnus.net"
|
5273 |
|
5274 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5275 |
-
#: app/skins/single.php:
|
5276 |
msgid "Other Organizers"
|
5277 |
msgstr "En común"
|
5278 |
|
@@ -5401,7 +5466,7 @@ msgstr "Actualizar"
|
|
5401 |
msgid "day"
|
5402 |
msgstr "día "
|
5403 |
|
5404 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5405 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5406 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5407 |
msgid "days"
|
@@ -5411,7 +5476,7 @@ msgstr "días"
|
|
5411 |
msgid "hour"
|
5412 |
msgstr "hora"
|
5413 |
|
5414 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5415 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5416 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5417 |
msgid "hours"
|
@@ -5421,7 +5486,7 @@ msgstr "horas"
|
|
5421 |
msgid "minute"
|
5422 |
msgstr "minuto"
|
5423 |
|
5424 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5425 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5426 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5427 |
msgid "minutes"
|
@@ -5431,7 +5496,7 @@ msgstr "minutos"
|
|
5431 |
msgid "second"
|
5432 |
msgstr "segundo"
|
5433 |
|
5434 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5435 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5436 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5437 |
msgid "seconds"
|
@@ -5902,38 +5967,44 @@ msgstr "Se ha recibido tu reserva."
|
|
5902 |
msgid "Your booking is confirmed."
|
5903 |
msgstr "Tu reserva ha sido confirmada."
|
5904 |
|
5905 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5906 |
msgid "A new booking is received."
|
5907 |
msgstr "Nueva reserva recibida."
|
5908 |
|
5909 |
-
#: app/libraries/notifications.php:
|
5910 |
msgid "A new event is added."
|
5911 |
msgstr "Se ha añadido un nuevo evento."
|
5912 |
|
5913 |
-
#: app/libraries/notifications.php:
|
5914 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5915 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5916 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5917 |
msgid "All of the day"
|
5918 |
msgstr "Todo el día"
|
5919 |
|
5920 |
-
#: app/libraries/notifications.php:
|
5921 |
msgid "to"
|
5922 |
msgstr "a"
|
5923 |
|
5924 |
-
#: app/libraries/notifications.php:
|
5925 |
msgid "+ Add to Google Calendar"
|
5926 |
msgstr "+ Añadir Google Calendar"
|
5927 |
|
5928 |
-
#: app/libraries/notifications.php:
|
5929 |
msgid "+ iCal export"
|
5930 |
msgstr "Exportación + iCal"
|
5931 |
|
5932 |
-
#: app/libraries/notifications.php:
|
5933 |
msgid "Yes"
|
5934 |
msgstr "Sí"
|
5935 |
|
5936 |
-
#: app/libraries/notifications.php:
|
5937 |
msgid "No"
|
5938 |
msgstr "No"
|
5939 |
|
@@ -6150,15 +6221,15 @@ msgstr "Lista"
|
|
6150 |
msgid "All"
|
6151 |
msgstr "Todo"
|
6152 |
|
6153 |
-
#: app/skins/monthly_view/calendar.php:
|
6154 |
-
#: app/skins/monthly_view/calendar.php:
|
6155 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6156 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6157 |
#, php-format
|
6158 |
msgid "Events for %s"
|
6159 |
msgstr "Eventos %s"
|
6160 |
|
6161 |
-
#: app/skins/monthly_view/calendar.php:
|
6162 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6163 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6164 |
msgid "No Events"
|
@@ -6168,19 +6239,19 @@ msgstr "Sin eventos"
|
|
6168 |
msgid "Home"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
-
#: app/skins/single.php:
|
6172 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6173 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6174 |
msgid "Phone"
|
6175 |
msgstr "Teléfono"
|
6176 |
|
6177 |
-
#: app/skins/single.php:
|
6178 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6179 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6180 |
msgid "Website"
|
6181 |
msgstr "Web"
|
6182 |
|
6183 |
-
#: app/skins/single.php:
|
6184 |
msgid "Speakers:"
|
6185 |
msgstr ""
|
6186 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
+
"POT-Creation-Date: 2019-06-10 15:04+0430\n"
|
8 |
+
"PO-Revision-Date: 2019-06-10 15:04+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:348
|
29 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
55 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
56 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
57 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
281 |
msgid "Event"
|
282 |
msgstr "Evento"
|
283 |
|
284 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
285 |
msgid "Add Event"
|
286 |
msgstr "Nuevo evento"
|
287 |
|
329 |
msgstr "Categoría"
|
330 |
|
331 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
332 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
333 |
#: app/libraries/main.php:4375
|
334 |
msgid "Categories"
|
335 |
msgstr "Categorías"
|
428 |
#: app/features/events.php:410 app/features/events.php:1682
|
429 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
430 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
431 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
442 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
443 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
444 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
445 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
446 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
447 |
#: app/skins/single/modern.php:48
|
566 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
567 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
568 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
569 |
+
#: app/features/mec/notifications.php:170
|
570 |
+
#: app/features/mec/notifications.php:228
|
571 |
+
#: app/features/mec/notifications.php:280
|
572 |
+
#: app/features/mec/notifications.php:339
|
573 |
+
#: app/features/mec/notifications.php:406
|
574 |
+
#: app/features/mec/notifications.php:469
|
575 |
+
#: app/features/mec/notifications.php:480
|
576 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
577 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
578 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
579 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
782 |
msgstr ""
|
783 |
|
784 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
785 |
+
#: app/skins/single.php:379
|
786 |
msgid "Hourly Schedule"
|
787 |
msgstr "Programación horaria"
|
788 |
|
854 |
|
855 |
#: app/features/events.php:913 app/features/events.php:933
|
856 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
857 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
858 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
859 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
860 |
msgid "Speakers"
|
1254 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1255 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1256 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1257 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1258 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1259 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1260 |
msgid "Location"
|
1426 |
msgstr "Eliminar imagen"
|
1427 |
|
1428 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1429 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1430 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1431 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1432 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1433 |
msgid "Labels"
|
1434 |
msgstr "Etiquetas"
|
1435 |
|
1436 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1437 |
#: app/features/mec/meta_boxes/filter.php:138
|
1438 |
msgid "Tags"
|
1439 |
msgstr "Tags"
|
1469 |
|
1470 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1471 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1472 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1473 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1474 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1475 |
msgid "Import / Export"
|
1741 |
#: app/features/ix/export_g_calendar.php:72
|
1742 |
#: app/features/ix/export_g_calendar.php:147
|
1743 |
#: app/features/ix/export_g_calendar.php:164
|
1744 |
+
#: app/features/mec/notifications.php:207
|
1745 |
+
#: app/features/mec/notifications.php:260
|
1746 |
+
#: app/features/mec/notifications.php:313
|
1747 |
+
#: app/features/mec/notifications.php:513
|
1748 |
msgid "Add to Google Calendar"
|
1749 |
msgstr "Añadir a Google Calendar"
|
1750 |
|
1751 |
#: app/features/ix/export_g_calendar.php:90
|
1752 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1753 |
msgid "Checking ..."
|
1754 |
msgstr "Verificando…"
|
1755 |
|
1990 |
|
1991 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1992 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1993 |
+
#: app/features/mec/notifications.php:457
|
1994 |
msgid "Important Note"
|
1995 |
msgstr "Nota importante"
|
1996 |
|
2122 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2123 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2124 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2125 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2126 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2127 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2128 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2136 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2137 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2138 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2139 |
+
#: app/skins/monthly_view/calendar.php:86
|
2140 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2141 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2142 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2164 |
msgid "Event %s"
|
2165 |
msgstr "Evento %s"
|
2166 |
|
2167 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2168 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2169 |
#: app/libraries/main.php:4379
|
2170 |
msgid "Locations"
|
2289 |
"Si quieres, puedes seleccionar organizadores adicionales además del "
|
2290 |
"organizador principal."
|
2291 |
|
2292 |
+
#: app/features/mec.php:153
|
2293 |
msgid ""
|
2294 |
"Activation faild. Please check your purchase code or license type."
|
2295 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: app/features/mec.php:153
|
2299 |
msgid "Troubleshooting"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: app/features/mec.php:193
|
2303 |
msgid ""
|
2304 |
"Your options is not in JSON format. Please insert correct options in this "
|
2305 |
"field and try again."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: app/features/mec.php:200
|
2309 |
msgid "Your options field can not be empty!"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: app/features/mec.php:206
|
2313 |
msgid "Your options imported successfuly."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: app/features/mec.php:299
|
2317 |
#, fuzzy
|
2318 |
#| msgid "Support"
|
2319 |
msgid "MEC - Support"
|
2320 |
msgstr "Soporte"
|
2321 |
|
2322 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2323 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2324 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2325 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2326 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2327 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2328 |
msgid "Support"
|
2329 |
msgstr "Soporte"
|
2330 |
|
2331 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2332 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2333 |
#: app/libraries/main.php:4381
|
2334 |
msgid "Organizers"
|
2335 |
msgstr "Organizadores"
|
2336 |
|
2337 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2338 |
#: app/features/mec/dashboard.php:194
|
2339 |
msgid "Shortcodes"
|
2340 |
msgstr "Shortcodes"
|
2341 |
|
2342 |
+
#: app/features/mec.php:329
|
2343 |
msgid "MEC - Settings"
|
2344 |
msgstr "Ajustes MEC"
|
2345 |
|
2346 |
+
#: app/features/mec.php:330
|
2347 |
#, fuzzy
|
2348 |
#| msgid "MEC - Settings"
|
2349 |
msgid "MEC - Addons"
|
2350 |
msgstr "Ajustes MEC"
|
2351 |
|
2352 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2353 |
msgid "Addons"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: app/features/mec.php:349
|
2357 |
msgid "Add Shortcode"
|
2358 |
msgstr "Nuevo Shortcode"
|
2359 |
|
2360 |
+
#: app/features/mec.php:350
|
2361 |
msgid "Add New Shortcode"
|
2362 |
msgstr "Añadir nuevo Shortcode"
|
2363 |
|
2364 |
+
#: app/features/mec.php:351
|
2365 |
msgid "No shortcodes found!"
|
2366 |
msgstr "No hay shortcodes"
|
2367 |
|
2368 |
+
#: app/features/mec.php:352
|
2369 |
msgid "All Shortcodes"
|
2370 |
msgstr "Todos los Shortcodes"
|
2371 |
|
2372 |
+
#: app/features/mec.php:353
|
2373 |
msgid "Edit shortcodes"
|
2374 |
msgstr "Editar Shortcodes"
|
2375 |
|
2376 |
+
#: app/features/mec.php:354
|
2377 |
msgid "No shortcodes found in Trash!"
|
2378 |
msgstr "No hay shortcodes en la papelera"
|
2379 |
|
2380 |
+
#: app/features/mec.php:402
|
2381 |
msgid "Display Options"
|
2382 |
msgstr "Opciones de pantalla"
|
2383 |
|
2384 |
+
#: app/features/mec.php:403
|
2385 |
msgid "Filter Options"
|
2386 |
msgstr "Opciones de filtros"
|
2387 |
|
2388 |
+
#: app/features/mec.php:405
|
2389 |
msgid "Search Form"
|
2390 |
msgstr "Formulario de Búsqueda"
|
2391 |
|
2392 |
+
#: app/features/mec.php:755
|
2393 |
msgid "Display content's images as Popup"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: app/features/mec.php:768
|
2397 |
msgid "Single Event Display Method"
|
2398 |
msgstr "Método de vista para página del evento"
|
2399 |
|
2400 |
+
#: app/features/mec.php:773
|
2401 |
msgid "Separate Window"
|
2402 |
msgstr "Ventana aparte"
|
2403 |
|
2404 |
+
#: app/features/mec.php:774
|
2405 |
msgid "Modal 1"
|
2406 |
msgstr "Modal 1"
|
2407 |
|
2563 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2564 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2565 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2566 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2567 |
+
#: app/features/mec/notifications.php:581
|
2568 |
+
#: app/features/mec/notifications.php:680
|
2569 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2570 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2571 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2572 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2581 |
msgstr "Guardar Cambios"
|
2582 |
|
2583 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2584 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2585 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2586 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2587 |
#: app/features/mec/support.php:52
|
2589 |
msgstr "Opciones visuales"
|
2590 |
|
2591 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2592 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2593 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2594 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2595 |
#: app/features/mec/support.php:59
|
2598 |
|
2599 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2600 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2601 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2602 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2603 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2604 |
msgid "Messages"
|
2605 |
msgstr "Mensajes"
|
2606 |
|
2607 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2608 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2609 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2610 |
#: app/features/mec/styling.php:375
|
2611 |
msgid "Saved"
|
2612 |
msgstr "Guardado"
|
2613 |
|
2614 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2615 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2616 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2617 |
#: app/features/mec/styling.php:376
|
2618 |
msgid "Settings Saved!"
|
3448 |
msgid "No Search Options"
|
3449 |
msgstr "No hay opciones de búsqueda"
|
3450 |
|
3451 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3452 |
msgid "Booking Notification"
|
3453 |
msgstr "Avisos de reservas"
|
3454 |
|
3455 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3456 |
msgid "Booking Verification"
|
3457 |
msgstr "Verificación de la reserva"
|
3458 |
|
3459 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3460 |
#: app/features/mec/settings.php:1409
|
3461 |
msgid "Booking Confirmation"
|
3462 |
msgstr "Confirmación de reserva"
|
3463 |
|
3464 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3465 |
+
#, fuzzy
|
3466 |
+
#| msgid "Booking cancellation link."
|
3467 |
+
msgid "Booking Cancellation"
|
3468 |
+
msgstr "Enlace de cancelación de la reserva."
|
3469 |
+
|
3470 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3471 |
msgid "Admin Notification"
|
3472 |
msgstr "Notificación de administrador"
|
3473 |
|
3474 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3475 |
+
#: app/libraries/notifications.php:354
|
3476 |
msgid "Booking Reminder"
|
3477 |
msgstr "Recordatorio de reserva"
|
3478 |
|
3479 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3480 |
#: app/features/mec/support-page.php:80
|
3481 |
msgid "New Event"
|
3482 |
msgstr "Nuevo evento"
|
3483 |
|
3484 |
+
#: app/features/mec/notifications.php:155
|
3485 |
msgid "Enable booking notification"
|
3486 |
msgstr "Activar notificación de reservas"
|
3487 |
|
3488 |
+
#: app/features/mec/notifications.php:159
|
3489 |
msgid "It sends to attendee after booking for notifying him/her."
|
3490 |
msgstr "Se envía a los asistentes después de la reserva."
|
3491 |
|
3492 |
+
#: app/features/mec/notifications.php:161
|
3493 |
+
#: app/features/mec/notifications.php:219
|
3494 |
+
#: app/features/mec/notifications.php:271
|
3495 |
+
#: app/features/mec/notifications.php:330
|
3496 |
+
#: app/features/mec/notifications.php:397
|
3497 |
+
#: app/features/mec/notifications.php:460
|
3498 |
+
#: app/features/mec/notifications.php:532
|
3499 |
msgid "Email Subject"
|
3500 |
msgstr "Asunto del correo electrónico"
|
3501 |
|
3502 |
+
#: app/features/mec/notifications.php:165
|
3503 |
+
#: app/features/mec/notifications.php:169
|
3504 |
+
#: app/features/mec/notifications.php:223
|
3505 |
+
#: app/features/mec/notifications.php:227
|
3506 |
+
#: app/features/mec/notifications.php:275
|
3507 |
+
#: app/features/mec/notifications.php:279
|
3508 |
+
#: app/features/mec/notifications.php:334
|
3509 |
+
#: app/features/mec/notifications.php:338
|
3510 |
+
#: app/features/mec/notifications.php:401
|
3511 |
+
#: app/features/mec/notifications.php:405
|
3512 |
+
#: app/features/mec/notifications.php:464
|
3513 |
+
#: app/features/mec/notifications.php:468
|
3514 |
+
#: app/features/mec/notifications.php:479
|
3515 |
+
#: app/features/mec/notifications.php:536
|
3516 |
+
#: app/features/mec/notifications.php:540
|
3517 |
msgid "Custom Recipients"
|
3518 |
msgstr "Destinatarios personalizados"
|
3519 |
|
3520 |
+
#: app/features/mec/notifications.php:170
|
3521 |
+
#: app/features/mec/notifications.php:228
|
3522 |
+
#: app/features/mec/notifications.php:280
|
3523 |
+
#: app/features/mec/notifications.php:339
|
3524 |
+
#: app/features/mec/notifications.php:406
|
3525 |
+
#: app/features/mec/notifications.php:469
|
3526 |
+
#: app/features/mec/notifications.php:480
|
3527 |
+
#: app/features/mec/notifications.php:541
|
3528 |
msgid "Insert comma separated emails for multiple recipients."
|
3529 |
msgstr "Inserta los correos separados por coma para múltiples destinatarios."
|
3530 |
|
3531 |
+
#: app/features/mec/notifications.php:177
|
3532 |
+
#: app/features/mec/notifications.php:350
|
3533 |
+
#: app/features/mec/notifications.php:413
|
3534 |
msgid "Send the email to event organizer"
|
3535 |
msgstr "Enviar correo al organizador del evento"
|
3536 |
|
3537 |
+
#: app/features/mec/notifications.php:180
|
3538 |
+
#: app/features/mec/notifications.php:234
|
3539 |
+
#: app/features/mec/notifications.php:286
|
3540 |
+
#: app/features/mec/notifications.php:357
|
3541 |
+
#: app/features/mec/notifications.php:416
|
3542 |
+
#: app/features/mec/notifications.php:486
|
3543 |
+
#: app/features/mec/notifications.php:547
|
3544 |
msgid "Email Content"
|
3545 |
msgstr "Contenido del correo"
|
3546 |
|
3547 |
+
#: app/features/mec/notifications.php:183
|
3548 |
+
#: app/features/mec/notifications.php:237
|
3549 |
+
#: app/features/mec/notifications.php:289
|
3550 |
+
#: app/features/mec/notifications.php:360
|
3551 |
+
#: app/features/mec/notifications.php:419
|
3552 |
+
#: app/features/mec/notifications.php:489
|
3553 |
+
#: app/features/mec/notifications.php:550
|
3554 |
msgid "You can use following placeholders"
|
3555 |
msgstr "Puedes utilizar los siguientes marcadores de posición"
|
3556 |
|
3557 |
+
#: app/features/mec/notifications.php:185
|
3558 |
+
#: app/features/mec/notifications.php:239
|
3559 |
+
#: app/features/mec/notifications.php:291
|
3560 |
+
#: app/features/mec/notifications.php:362
|
3561 |
+
#: app/features/mec/notifications.php:421
|
3562 |
+
#: app/features/mec/notifications.php:491
|
3563 |
msgid "First name of attendee"
|
3564 |
msgstr "Nombre del asistente"
|
3565 |
|
3566 |
+
#: app/features/mec/notifications.php:186
|
3567 |
+
#: app/features/mec/notifications.php:240
|
3568 |
+
#: app/features/mec/notifications.php:292
|
3569 |
+
#: app/features/mec/notifications.php:363
|
3570 |
+
#: app/features/mec/notifications.php:422
|
3571 |
+
#: app/features/mec/notifications.php:492
|
3572 |
msgid "Last name of attendee"
|
3573 |
msgstr "Apellidos del asistente"
|
3574 |
|
3575 |
+
#: app/features/mec/notifications.php:187
|
3576 |
+
#: app/features/mec/notifications.php:241
|
3577 |
+
#: app/features/mec/notifications.php:293
|
3578 |
+
#: app/features/mec/notifications.php:364
|
3579 |
+
#: app/features/mec/notifications.php:423
|
3580 |
+
#: app/features/mec/notifications.php:493
|
3581 |
msgid "Email of attendee"
|
3582 |
msgstr "Correo electrónico del asistente"
|
3583 |
|
3584 |
+
#: app/features/mec/notifications.php:188
|
3585 |
+
#: app/features/mec/notifications.php:242
|
3586 |
+
#: app/features/mec/notifications.php:294
|
3587 |
+
#: app/features/mec/notifications.php:365
|
3588 |
+
#: app/features/mec/notifications.php:424
|
3589 |
+
#: app/features/mec/notifications.php:494
|
3590 |
msgid "Booked date of event"
|
3591 |
msgstr "Fecha de reserva del evento"
|
3592 |
|
3593 |
+
#: app/features/mec/notifications.php:189
|
3594 |
+
#: app/features/mec/notifications.php:243
|
3595 |
+
#: app/features/mec/notifications.php:295
|
3596 |
+
#: app/features/mec/notifications.php:366
|
3597 |
+
#: app/features/mec/notifications.php:425
|
3598 |
+
#: app/features/mec/notifications.php:495
|
3599 |
#, fuzzy
|
3600 |
#| msgid "Booked date of event"
|
3601 |
msgid "Booked time of event"
|
3602 |
msgstr "Fecha de reserva del evento"
|
3603 |
|
3604 |
+
#: app/features/mec/notifications.php:190
|
3605 |
+
#: app/features/mec/notifications.php:244
|
3606 |
+
#: app/features/mec/notifications.php:296
|
3607 |
+
#: app/features/mec/notifications.php:367
|
3608 |
+
#: app/features/mec/notifications.php:426
|
3609 |
+
#: app/features/mec/notifications.php:496
|
3610 |
msgid "Booking Price"
|
3611 |
msgstr "Precio de la reserva"
|
3612 |
|
3613 |
+
#: app/features/mec/notifications.php:191
|
3614 |
+
#: app/features/mec/notifications.php:245
|
3615 |
+
#: app/features/mec/notifications.php:297
|
3616 |
+
#: app/features/mec/notifications.php:368
|
3617 |
+
#: app/features/mec/notifications.php:427
|
3618 |
+
#: app/features/mec/notifications.php:497
|
3619 |
+
#: app/features/mec/notifications.php:556
|
3620 |
msgid "Your website title"
|
3621 |
msgstr "Título de tu web"
|
3622 |
|
3623 |
+
#: app/features/mec/notifications.php:192
|
3624 |
+
#: app/features/mec/notifications.php:246
|
3625 |
+
#: app/features/mec/notifications.php:298
|
3626 |
+
#: app/features/mec/notifications.php:369
|
3627 |
+
#: app/features/mec/notifications.php:428
|
3628 |
+
#: app/features/mec/notifications.php:498
|
3629 |
+
#: app/features/mec/notifications.php:557
|
3630 |
msgid "Your website URL"
|
3631 |
msgstr "URL de tu sitio web"
|
3632 |
|
3633 |
+
#: app/features/mec/notifications.php:193
|
3634 |
+
#: app/features/mec/notifications.php:247
|
3635 |
+
#: app/features/mec/notifications.php:299
|
3636 |
+
#: app/features/mec/notifications.php:370
|
3637 |
+
#: app/features/mec/notifications.php:429
|
3638 |
+
#: app/features/mec/notifications.php:499
|
3639 |
+
#: app/features/mec/notifications.php:558
|
3640 |
msgid "Your website description"
|
3641 |
msgstr "Descripción de tu web"
|
3642 |
|
3643 |
+
#: app/features/mec/notifications.php:194
|
3644 |
+
#: app/features/mec/notifications.php:248
|
3645 |
+
#: app/features/mec/notifications.php:300
|
3646 |
+
#: app/features/mec/notifications.php:371
|
3647 |
+
#: app/features/mec/notifications.php:430
|
3648 |
+
#: app/features/mec/notifications.php:500
|
3649 |
msgid "Event title"
|
3650 |
msgstr "Título del evento"
|
3651 |
|
3652 |
+
#: app/features/mec/notifications.php:195
|
3653 |
+
#: app/features/mec/notifications.php:249
|
3654 |
+
#: app/features/mec/notifications.php:301
|
3655 |
+
#: app/features/mec/notifications.php:372
|
3656 |
+
#: app/features/mec/notifications.php:431
|
3657 |
+
#: app/features/mec/notifications.php:501
|
3658 |
#, fuzzy
|
3659 |
#| msgid "Event Link"
|
3660 |
msgid "Event link"
|
3661 |
msgstr "Enlace del evento"
|
3662 |
|
3663 |
+
#: app/features/mec/notifications.php:196
|
3664 |
+
#: app/features/mec/notifications.php:250
|
3665 |
+
#: app/features/mec/notifications.php:302
|
3666 |
+
#: app/features/mec/notifications.php:373
|
3667 |
+
#: app/features/mec/notifications.php:432
|
3668 |
+
#: app/features/mec/notifications.php:502
|
3669 |
msgid "Organizer name of booked event"
|
3670 |
msgstr "Nombre del organizador del evento reservado"
|
3671 |
|
3672 |
+
#: app/features/mec/notifications.php:197
|
3673 |
+
#: app/features/mec/notifications.php:251
|
3674 |
+
#: app/features/mec/notifications.php:303
|
3675 |
+
#: app/features/mec/notifications.php:374
|
3676 |
+
#: app/features/mec/notifications.php:433
|
3677 |
+
#: app/features/mec/notifications.php:503
|
3678 |
msgid "Organizer tel of booked event"
|
3679 |
msgstr "Teléfono del organizador del evento reservado"
|
3680 |
|
3681 |
+
#: app/features/mec/notifications.php:198
|
3682 |
+
#: app/features/mec/notifications.php:252
|
3683 |
+
#: app/features/mec/notifications.php:304
|
3684 |
+
#: app/features/mec/notifications.php:375
|
3685 |
+
#: app/features/mec/notifications.php:434
|
3686 |
+
#: app/features/mec/notifications.php:504
|
3687 |
msgid "Organizer email of booked event"
|
3688 |
msgstr "Correo electrónico del organizar de un evento reservado"
|
3689 |
|
3690 |
+
#: app/features/mec/notifications.php:199
|
3691 |
+
#: app/features/mec/notifications.php:253
|
3692 |
+
#: app/features/mec/notifications.php:305
|
3693 |
+
#: app/features/mec/notifications.php:376
|
3694 |
+
#: app/features/mec/notifications.php:435
|
3695 |
+
#: app/features/mec/notifications.php:505
|
3696 |
msgid "Location name of booked event"
|
3697 |
msgstr "Nombre del lugar del organizador del evento reservado"
|
3698 |
|
3699 |
+
#: app/features/mec/notifications.php:200
|
3700 |
+
#: app/features/mec/notifications.php:254
|
3701 |
+
#: app/features/mec/notifications.php:306
|
3702 |
+
#: app/features/mec/notifications.php:377
|
3703 |
+
#: app/features/mec/notifications.php:436
|
3704 |
+
#: app/features/mec/notifications.php:506
|
3705 |
msgid "Location address of booked event"
|
3706 |
msgstr "Dirección del organizador del evento reservado"
|
3707 |
|
3708 |
+
#: app/features/mec/notifications.php:201
|
3709 |
+
#: app/features/mec/notifications.php:379
|
3710 |
+
#: app/features/mec/notifications.php:438
|
3711 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3712 |
msgstr ""
|
3713 |
"Información completa del asistente, como datos de formulario de reserva, "
|
3714 |
"nombre, correo electrónico, etc."
|
3715 |
|
3716 |
+
#: app/features/mec/notifications.php:202
|
3717 |
+
#: app/features/mec/notifications.php:308
|
3718 |
+
#: app/features/mec/notifications.php:508
|
3719 |
msgid "Invoice Link"
|
3720 |
msgstr "Enlace de factura"
|
3721 |
|
3722 |
+
#: app/features/mec/notifications.php:203
|
3723 |
+
#: app/features/mec/notifications.php:256
|
3724 |
+
#: app/features/mec/notifications.php:309
|
3725 |
+
#: app/features/mec/notifications.php:380
|
3726 |
+
#: app/features/mec/notifications.php:439
|
3727 |
+
#: app/features/mec/notifications.php:509
|
3728 |
msgid "Total Attendees"
|
3729 |
msgstr "Total asistentes"
|
3730 |
|
3731 |
+
#: app/features/mec/notifications.php:204
|
3732 |
+
#: app/features/mec/notifications.php:257
|
3733 |
+
#: app/features/mec/notifications.php:310
|
3734 |
+
#: app/features/mec/notifications.php:510
|
3735 |
msgid "Ticket name"
|
3736 |
msgstr "Nombre de la entrada"
|
3737 |
|
3738 |
+
#: app/features/mec/notifications.php:205
|
3739 |
+
#: app/features/mec/notifications.php:258
|
3740 |
+
#: app/features/mec/notifications.php:311
|
3741 |
+
#: app/features/mec/notifications.php:511
|
3742 |
msgid "Ticket time"
|
3743 |
msgstr "Hora de la entrada"
|
3744 |
|
3745 |
+
#: app/features/mec/notifications.php:206
|
3746 |
+
#: app/features/mec/notifications.php:259
|
3747 |
+
#: app/features/mec/notifications.php:312
|
3748 |
+
#: app/features/mec/notifications.php:512
|
3749 |
msgid "Download ICS file"
|
3750 |
msgstr "Descarga el archivo ICS"
|
3751 |
|
3752 |
+
#: app/features/mec/notifications.php:217
|
3753 |
msgid "It sends to attendee email for verifying their booking/email."
|
3754 |
msgstr ""
|
3755 |
"Se envía a los asistentes un correo electrónico para verificar su reserva."
|
3756 |
|
3757 |
+
#: app/features/mec/notifications.php:255
|
3758 |
msgid "Email/Booking verification link."
|
3759 |
msgstr "Enlace de verificación de correo electrónico/reserva."
|
3760 |
|
3761 |
+
#: app/features/mec/notifications.php:269
|
3762 |
msgid "It sends to attendee after confirming the booking by admin."
|
3763 |
msgstr ""
|
3764 |
"Se envía a los asistentes después de confirmar la reserva por el "
|
3765 |
"administrador."
|
3766 |
|
3767 |
+
#: app/features/mec/notifications.php:307
|
3768 |
+
#: app/features/mec/notifications.php:507
|
3769 |
msgid "Booking cancellation link."
|
3770 |
msgstr "Enlace de cancelación de la reserva."
|
3771 |
|
3772 |
+
#: app/features/mec/notifications.php:324
|
3773 |
+
#, fuzzy
|
3774 |
+
#| msgid "Enable new event notification"
|
3775 |
+
msgid "Enable cancellation notification"
|
3776 |
+
msgstr "Activa los avisos de nuevos eventos"
|
3777 |
|
3778 |
+
#: app/features/mec/notifications.php:328
|
3779 |
+
#, fuzzy
|
3780 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3781 |
+
msgid ""
|
3782 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3783 |
+
"them."
|
3784 |
+
msgstr "Se envía a los asistentes después de la reserva."
|
3785 |
+
|
3786 |
+
#: app/features/mec/notifications.php:346
|
3787 |
+
#, fuzzy
|
3788 |
+
#| msgid "Send the email to event organizer"
|
3789 |
+
msgid "Send the email to admin"
|
3790 |
+
msgstr "Enviar correo al organizador del evento"
|
3791 |
+
|
3792 |
+
#: app/features/mec/notifications.php:354
|
3793 |
+
#, fuzzy
|
3794 |
+
#| msgid "Send the email to event organizer"
|
3795 |
+
msgid "Send the email to booking user"
|
3796 |
+
msgstr "Enviar correo al organizador del evento"
|
3797 |
+
|
3798 |
+
#: app/features/mec/notifications.php:378
|
3799 |
+
#: app/features/mec/notifications.php:437
|
3800 |
msgid "Admin booking management link."
|
3801 |
msgstr "Enlace del administrador de reservas."
|
3802 |
|
3803 |
+
#: app/features/mec/notifications.php:391
|
3804 |
+
#, fuzzy
|
3805 |
+
#| msgid "Enable booking notification"
|
3806 |
+
msgid "Enable admin notification"
|
3807 |
+
msgstr "Activar notificación de reservas"
|
3808 |
+
|
3809 |
+
#: app/features/mec/notifications.php:395
|
3810 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3811 |
+
msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
|
3812 |
+
|
3813 |
+
#: app/features/mec/notifications.php:451
|
3814 |
msgid "Enable booking reminder notification"
|
3815 |
msgstr "Activar recordatorio de reservas del evento."
|
3816 |
|
3817 |
+
#: app/features/mec/notifications.php:457
|
3818 |
#, php-format
|
3819 |
msgid ""
|
3820 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3826 |
"este archivo %s, de lo contrario, puede enviar los recordatorios varias "
|
3827 |
"veces."
|
3828 |
|
3829 |
+
#: app/features/mec/notifications.php:457
|
3830 |
msgid "only once per day"
|
3831 |
msgstr "una vez al día"
|
3832 |
|
3833 |
+
#: app/features/mec/notifications.php:475
|
3834 |
msgid "Days"
|
3835 |
msgstr "Días"
|
3836 |
|
3837 |
+
#: app/features/mec/notifications.php:526
|
3838 |
msgid "Enable new event notification"
|
3839 |
msgstr "Activa los avisos de nuevos eventos"
|
3840 |
|
3841 |
+
#: app/features/mec/notifications.php:530
|
3842 |
msgid ""
|
3843 |
"It sends after adding a new event from frontend event submission or from "
|
3844 |
"website backend."
|
3846 |
"Se envía después de agregar un nuevo evento de presentación de evento de "
|
3847 |
"frontend o desde el sitio web backend."
|
3848 |
|
3849 |
+
#: app/features/mec/notifications.php:552
|
3850 |
msgid "Title of event"
|
3851 |
msgstr "Título del evento"
|
3852 |
|
3853 |
+
#: app/features/mec/notifications.php:553
|
3854 |
#, fuzzy
|
3855 |
#| msgid "Title of event"
|
3856 |
msgid "Link of event"
|
3857 |
msgstr "Título del evento"
|
3858 |
|
3859 |
+
#: app/features/mec/notifications.php:554
|
3860 |
msgid "Status of event"
|
3861 |
msgstr "Estado del evento"
|
3862 |
|
3863 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3864 |
#: app/features/mec/settings.php:1253
|
3865 |
msgid "Event Note"
|
3866 |
msgstr "Nota de evento"
|
3867 |
|
3868 |
+
#: app/features/mec/notifications.php:559
|
3869 |
msgid "Admin events management link."
|
3870 |
msgstr "Enlace del administrador de reservas."
|
3871 |
|
3872 |
+
#: app/features/mec/notifications.php:661
|
3873 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3874 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3875 |
msgid "Verified"
|
3876 |
msgstr "Verificado"
|
3877 |
|
3878 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3879 |
msgid "Please Refresh Page"
|
3880 |
msgstr "Por favor, actualiza la página"
|
3881 |
|
5337 |
msgstr "ej. https://webnus.net"
|
5338 |
|
5339 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5340 |
+
#: app/skins/single.php:295
|
5341 |
msgid "Other Organizers"
|
5342 |
msgstr "En común"
|
5343 |
|
5466 |
msgid "day"
|
5467 |
msgstr "día "
|
5468 |
|
5469 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5470 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5471 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5472 |
msgid "days"
|
5476 |
msgid "hour"
|
5477 |
msgstr "hora"
|
5478 |
|
5479 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5480 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5481 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5482 |
msgid "hours"
|
5486 |
msgid "minute"
|
5487 |
msgstr "minuto"
|
5488 |
|
5489 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5490 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5491 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5492 |
msgid "minutes"
|
5496 |
msgid "second"
|
5497 |
msgstr "segundo"
|
5498 |
|
5499 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5500 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5501 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5502 |
msgid "seconds"
|
5967 |
msgid "Your booking is confirmed."
|
5968 |
msgstr "Tu reserva ha sido confirmada."
|
5969 |
|
5970 |
+
#: app/libraries/notifications.php:252
|
5971 |
+
#, fuzzy
|
5972 |
+
#| msgid "Your booking cannot be canceled."
|
5973 |
+
msgid "booking canceled."
|
5974 |
+
msgstr "La reserva no puede cancelarse."
|
5975 |
+
|
5976 |
+
#: app/libraries/notifications.php:296
|
5977 |
msgid "A new booking is received."
|
5978 |
msgstr "Nueva reserva recibida."
|
5979 |
|
5980 |
+
#: app/libraries/notifications.php:425
|
5981 |
msgid "A new event is added."
|
5982 |
msgstr "Se ha añadido un nuevo evento."
|
5983 |
|
5984 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
5985 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5986 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5987 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5988 |
msgid "All of the day"
|
5989 |
msgstr "Todo el día"
|
5990 |
|
5991 |
+
#: app/libraries/notifications.php:605
|
5992 |
msgid "to"
|
5993 |
msgstr "a"
|
5994 |
|
5995 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
5996 |
msgid "+ Add to Google Calendar"
|
5997 |
msgstr "+ Añadir Google Calendar"
|
5998 |
|
5999 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
6000 |
msgid "+ iCal export"
|
6001 |
msgstr "Exportación + iCal"
|
6002 |
|
6003 |
+
#: app/libraries/notifications.php:683
|
6004 |
msgid "Yes"
|
6005 |
msgstr "Sí"
|
6006 |
|
6007 |
+
#: app/libraries/notifications.php:683
|
6008 |
msgid "No"
|
6009 |
msgstr "No"
|
6010 |
|
6221 |
msgid "All"
|
6222 |
msgstr "Todo"
|
6223 |
|
6224 |
+
#: app/skins/monthly_view/calendar.php:68
|
6225 |
+
#: app/skins/monthly_view/calendar.php:154
|
6226 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6227 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6228 |
#, php-format
|
6229 |
msgid "Events for %s"
|
6230 |
msgstr "Eventos %s"
|
6231 |
|
6232 |
+
#: app/skins/monthly_view/calendar.php:156
|
6233 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6234 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6235 |
msgid "No Events"
|
6239 |
msgid "Home"
|
6240 |
msgstr ""
|
6241 |
|
6242 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6243 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6244 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6245 |
msgid "Phone"
|
6246 |
msgstr "Teléfono"
|
6247 |
|
6248 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6249 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6250 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6251 |
msgid "Website"
|
6252 |
msgstr "Web"
|
6253 |
|
6254 |
+
#: app/skins/single.php:393
|
6255 |
msgid "Speakers:"
|
6256 |
msgstr ""
|
6257 |
|
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-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
67 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
68 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -267,7 +267,7 @@ msgstr "Évenements"
|
|
267 |
msgid "Event"
|
268 |
msgstr "Événement"
|
269 |
|
270 |
-
#: app/features/events.php:136 app/features/mec.php:
|
271 |
msgid "Add Event"
|
272 |
msgstr "Ajouter un événement"
|
273 |
|
@@ -315,7 +315,7 @@ msgid "Category"
|
|
315 |
msgstr "Catégorie"
|
316 |
|
317 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
318 |
-
#: app/features/mec.php:
|
319 |
#: app/libraries/main.php:4375
|
320 |
msgid "Categories"
|
321 |
msgstr "Catégories"
|
@@ -414,7 +414,7 @@ msgstr "Coordonnées de l'Invité"
|
|
414 |
#: app/features/events.php:410 app/features/events.php:1682
|
415 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +426,8 @@ msgstr "Nom"
|
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
428 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
429 |
-
#: app/libraries/notifications.php:
|
430 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
431 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
433 |
#: app/skins/single/modern.php:48
|
@@ -552,13 +552,14 @@ msgstr ""
|
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
555 |
-
#: app/features/mec/notifications.php:
|
556 |
-
#: app/features/mec/notifications.php:
|
557 |
-
#: app/features/mec/notifications.php:
|
558 |
-
#: app/features/mec/notifications.php:
|
559 |
-
#: app/features/mec/notifications.php:
|
560 |
-
#: app/features/mec/notifications.php:
|
561 |
-
#: app/features/mec/notifications.php:
|
|
|
562 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
563 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
564 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -770,7 +771,7 @@ msgid "Day 1"
|
|
770 |
msgstr ""
|
771 |
|
772 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
773 |
-
#: app/skins/single.php:
|
774 |
msgid "Hourly Schedule"
|
775 |
msgstr "Programme"
|
776 |
|
@@ -842,7 +843,7 @@ msgstr "Description"
|
|
842 |
|
843 |
#: app/features/events.php:913 app/features/events.php:933
|
844 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
845 |
-
#: app/features/mec.php:
|
846 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
847 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
848 |
msgid "Speakers"
|
@@ -1242,7 +1243,7 @@ msgstr "organisateurs"
|
|
1242 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1243 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1244 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1245 |
-
#: app/skins/single.php:
|
1246 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1247 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1248 |
msgid "Location"
|
@@ -1412,14 +1413,14 @@ msgid "Remove Image"
|
|
1412 |
msgstr "Supprimer l'image"
|
1413 |
|
1414 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1415 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1416 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1417 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1418 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1419 |
msgid "Labels"
|
1420 |
msgstr "Labels"
|
1421 |
|
1422 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1423 |
#: app/features/mec/meta_boxes/filter.php:138
|
1424 |
msgid "Tags"
|
1425 |
msgstr "Étiquettes"
|
@@ -1455,7 +1456,7 @@ msgstr "M.E.C. - Importer / Exporter"
|
|
1455 |
|
1456 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1457 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1458 |
-
#: app/features/mec/notifications.php:
|
1459 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1460 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1461 |
msgid "Import / Export"
|
@@ -1734,15 +1735,15 @@ msgstr "Basculer"
|
|
1734 |
#: app/features/ix/export_g_calendar.php:72
|
1735 |
#: app/features/ix/export_g_calendar.php:147
|
1736 |
#: app/features/ix/export_g_calendar.php:164
|
1737 |
-
#: app/features/mec/notifications.php:
|
1738 |
-
#: app/features/mec/notifications.php:
|
1739 |
-
#: app/features/mec/notifications.php:
|
1740 |
-
#: app/features/mec/notifications.php:
|
1741 |
msgid "Add to Google Calendar"
|
1742 |
msgstr "Ajouter à Google Agenda"
|
1743 |
|
1744 |
#: app/features/ix/export_g_calendar.php:90
|
1745 |
-
#: app/features/mec/notifications.php:
|
1746 |
msgid "Checking ..."
|
1747 |
msgstr "Vérification..."
|
1748 |
|
@@ -2001,7 +2002,7 @@ msgstr "Import auto depuis Google Agenda"
|
|
2001 |
|
2002 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2003 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2004 |
-
#: app/features/mec/notifications.php:
|
2005 |
msgid "Important Note"
|
2006 |
msgstr "Note Importante"
|
2007 |
|
@@ -2140,7 +2141,7 @@ msgstr ""
|
|
2140 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2141 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2142 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2143 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2144 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2145 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2146 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2156,7 +2157,7 @@ msgstr "Image Principale"
|
|
2156 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2157 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2158 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2159 |
-
#: app/skins/monthly_view/calendar.php:
|
2160 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2161 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2162 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2184,7 +2185,7 @@ msgstr "Identifiant de la catégorie."
|
|
2184 |
msgid "Event %s"
|
2185 |
msgstr "%s événement"
|
2186 |
|
2187 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2188 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2189 |
#: app/libraries/main.php:4379
|
2190 |
msgid "Locations"
|
@@ -2309,123 +2310,123 @@ msgstr ""
|
|
2309 |
"Vous pouvez sélectionner des organisateurs supplémentaires en plus de "
|
2310 |
"l'organisateur principal si vous le souhaitez."
|
2311 |
|
2312 |
-
#: app/features/mec.php:
|
2313 |
msgid ""
|
2314 |
"Activation faild. Please check your purchase code or license type."
|
2315 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: app/features/mec.php:
|
2319 |
msgid "Troubleshooting"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: app/features/mec.php:
|
2323 |
msgid ""
|
2324 |
"Your options is not in JSON format. Please insert correct options in this "
|
2325 |
"field and try again."
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: app/features/mec.php:
|
2329 |
#, fuzzy
|
2330 |
#| msgid "Your booking cannot verify!"
|
2331 |
msgid "Your options field can not be empty!"
|
2332 |
msgstr "Votre réservation ne peut pas être vérifiée!"
|
2333 |
|
2334 |
-
#: app/features/mec.php:
|
2335 |
#, fuzzy
|
2336 |
#| msgid "Your booking successfully verified."
|
2337 |
msgid "Your options imported successfuly."
|
2338 |
msgstr "Votre réservation est vérifiée avec succès."
|
2339 |
|
2340 |
-
#: app/features/mec.php:
|
2341 |
#, fuzzy
|
2342 |
#| msgid "Support"
|
2343 |
msgid "MEC - Support"
|
2344 |
msgstr "Aide"
|
2345 |
|
2346 |
-
#: app/features/mec.php:
|
2347 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2348 |
-
#: app/features/mec/notifications.php:
|
2349 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2350 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2351 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2352 |
msgid "Support"
|
2353 |
msgstr "Aide"
|
2354 |
|
2355 |
-
#: app/features/mec.php:
|
2356 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2357 |
#: app/libraries/main.php:4381
|
2358 |
msgid "Organizers"
|
2359 |
msgstr "Organisateurs"
|
2360 |
|
2361 |
-
#: app/features/mec.php:
|
2362 |
#: app/features/mec/dashboard.php:194
|
2363 |
msgid "Shortcodes"
|
2364 |
msgstr "Shortcodes"
|
2365 |
|
2366 |
-
#: app/features/mec.php:
|
2367 |
msgid "MEC - Settings"
|
2368 |
msgstr "Agenda - Paramètres"
|
2369 |
|
2370 |
-
#: app/features/mec.php:
|
2371 |
#, fuzzy
|
2372 |
#| msgid "MEC - Settings"
|
2373 |
msgid "MEC - Addons"
|
2374 |
msgstr "Agenda - Paramètres"
|
2375 |
|
2376 |
-
#: app/features/mec.php:
|
2377 |
msgid "Addons"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: app/features/mec.php:
|
2381 |
msgid "Add Shortcode"
|
2382 |
msgstr "Ajouter un Shortcode"
|
2383 |
|
2384 |
-
#: app/features/mec.php:
|
2385 |
msgid "Add New Shortcode"
|
2386 |
msgstr "Ajouter un nouveau Shortcode"
|
2387 |
|
2388 |
-
#: app/features/mec.php:
|
2389 |
msgid "No shortcodes found!"
|
2390 |
msgstr "Aucun shortcode trouvé !"
|
2391 |
|
2392 |
-
#: app/features/mec.php:
|
2393 |
msgid "All Shortcodes"
|
2394 |
msgstr "Tous les Shortcode"
|
2395 |
|
2396 |
-
#: app/features/mec.php:
|
2397 |
msgid "Edit shortcodes"
|
2398 |
msgstr "Modifier les shortcodes"
|
2399 |
|
2400 |
-
#: app/features/mec.php:
|
2401 |
msgid "No shortcodes found in Trash!"
|
2402 |
msgstr "Pas de shortcode dans la corbeille"
|
2403 |
|
2404 |
-
#: app/features/mec.php:
|
2405 |
msgid "Display Options"
|
2406 |
msgstr "Options d'affichage"
|
2407 |
|
2408 |
-
#: app/features/mec.php:
|
2409 |
msgid "Filter Options"
|
2410 |
msgstr "Options des filtres"
|
2411 |
|
2412 |
-
#: app/features/mec.php:
|
2413 |
msgid "Search Form"
|
2414 |
msgstr "Formulaire de Recherche"
|
2415 |
|
2416 |
-
#: app/features/mec.php:
|
2417 |
msgid "Display content's images as Popup"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#: app/features/mec.php:
|
2421 |
msgid "Single Event Display Method"
|
2422 |
msgstr "Méthode d'affichage"
|
2423 |
|
2424 |
-
#: app/features/mec.php:
|
2425 |
msgid "Separate Window"
|
2426 |
msgstr "Page séparé"
|
2427 |
|
2428 |
-
#: app/features/mec.php:
|
2429 |
msgid "Modal 1"
|
2430 |
msgstr "Pop-up"
|
2431 |
|
@@ -2589,10 +2590,10 @@ msgstr "Journal des modifications"
|
|
2589 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2590 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2591 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2592 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2593 |
-
#: app/features/mec/notifications.php:
|
2594 |
-
#: app/features/mec/notifications.php:
|
2595 |
-
#: app/features/mec/notifications.php:
|
2596 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2597 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2598 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2607,7 +2608,7 @@ msgid "Save Changes"
|
|
2607 |
msgstr "Sauvegarder"
|
2608 |
|
2609 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2610 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2611 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2612 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2613 |
#: app/features/mec/support.php:52
|
@@ -2615,7 +2616,7 @@ msgid "Styling Options"
|
|
2615 |
msgstr "Options de style"
|
2616 |
|
2617 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2618 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2619 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2620 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2621 |
#: app/features/mec/support.php:59
|
@@ -2624,21 +2625,21 @@ msgstr "Modifier le CSS"
|
|
2624 |
|
2625 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2626 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2627 |
-
#: app/features/mec/notifications.php:
|
2628 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2629 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2630 |
msgid "Messages"
|
2631 |
msgstr "Messages"
|
2632 |
|
2633 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2634 |
-
#: app/features/mec/notifications.php:
|
2635 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2636 |
#: app/features/mec/styling.php:375
|
2637 |
msgid "Saved"
|
2638 |
msgstr "Sauvegardé"
|
2639 |
|
2640 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2641 |
-
#: app/features/mec/notifications.php:
|
2642 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2643 |
#: app/features/mec/styling.php:376
|
2644 |
msgid "Settings Saved!"
|
@@ -3480,316 +3481,381 @@ msgstr "Texte du champ d'entrée"
|
|
3480 |
msgid "No Search Options"
|
3481 |
msgstr "Aucune option de recherche"
|
3482 |
|
3483 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3484 |
msgid "Booking Notification"
|
3485 |
msgstr "Notification de réservation"
|
3486 |
|
3487 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3488 |
msgid "Booking Verification"
|
3489 |
msgstr "Vérification de réservation"
|
3490 |
|
3491 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3492 |
#: app/features/mec/settings.php:1409
|
3493 |
msgid "Booking Confirmation"
|
3494 |
msgstr "Confirmation de réservation"
|
3495 |
|
3496 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3497 |
msgid "Admin Notification"
|
3498 |
msgstr "Notification de l'administrateur"
|
3499 |
|
3500 |
-
#: app/features/mec/notifications.php:
|
3501 |
-
#: app/libraries/notifications.php:
|
3502 |
msgid "Booking Reminder"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
#: app/features/mec/support-page.php:80
|
3507 |
msgid "New Event"
|
3508 |
msgstr "Nouvel événement"
|
3509 |
|
3510 |
-
#: app/features/mec/notifications.php:
|
3511 |
msgid "Enable booking notification"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
msgid "It sends to attendee after booking for notifying him/her."
|
3516 |
msgstr ""
|
3517 |
"Elle est envoyée aux participants après leur réservation pour les avertir."
|
3518 |
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
3523 |
-
#: app/features/mec/notifications.php:
|
3524 |
-
#: app/features/mec/notifications.php:
|
|
|
3525 |
msgid "Email Subject"
|
3526 |
msgstr "Sujet"
|
3527 |
|
3528 |
-
#: app/features/mec/notifications.php:
|
3529 |
-
#: app/features/mec/notifications.php:
|
3530 |
-
#: app/features/mec/notifications.php:
|
3531 |
-
#: app/features/mec/notifications.php:
|
3532 |
-
#: app/features/mec/notifications.php:
|
3533 |
-
#: app/features/mec/notifications.php:
|
3534 |
-
#: app/features/mec/notifications.php:
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
3537 |
-
#: app/features/mec/notifications.php:
|
3538 |
-
#: app/features/mec/notifications.php:
|
3539 |
-
#: app/features/mec/notifications.php:
|
3540 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3541 |
msgid "Custom Recipients"
|
3542 |
msgstr "Destinataires personnalisés"
|
3543 |
|
3544 |
-
#: app/features/mec/notifications.php:
|
3545 |
-
#: app/features/mec/notifications.php:
|
3546 |
-
#: app/features/mec/notifications.php:
|
3547 |
-
#: app/features/mec/notifications.php:
|
3548 |
-
#: app/features/mec/notifications.php:
|
3549 |
-
#: app/features/mec/notifications.php:
|
3550 |
-
#: app/features/mec/notifications.php:
|
|
|
3551 |
msgid "Insert comma separated emails for multiple recipients."
|
3552 |
msgstr ""
|
3553 |
"Insérez une virgule entre chaque emails pour séparés plusieurs destinataires."
|
3554 |
|
3555 |
-
#: app/features/mec/notifications.php:
|
3556 |
-
#: app/features/mec/notifications.php:
|
|
|
3557 |
msgid "Send the email to event organizer"
|
3558 |
msgstr "Envoyer l'email à l'organisateur de l'événement"
|
3559 |
|
3560 |
-
#: app/features/mec/notifications.php:
|
3561 |
-
#: app/features/mec/notifications.php:
|
3562 |
-
#: app/features/mec/notifications.php:
|
3563 |
-
#: app/features/mec/notifications.php:
|
3564 |
-
#: app/features/mec/notifications.php:
|
3565 |
-
#: app/features/mec/notifications.php:
|
|
|
3566 |
msgid "Email Content"
|
3567 |
msgstr "Contenu de l'email"
|
3568 |
|
3569 |
-
#: app/features/mec/notifications.php:
|
3570 |
-
#: app/features/mec/notifications.php:
|
3571 |
-
#: app/features/mec/notifications.php:
|
3572 |
-
#: app/features/mec/notifications.php:
|
3573 |
-
#: app/features/mec/notifications.php:
|
3574 |
-
#: app/features/mec/notifications.php:
|
|
|
3575 |
msgid "You can use following placeholders"
|
3576 |
msgstr "Vous pouvez utiliser les variables suivantes"
|
3577 |
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
-
#: app/features/mec/notifications.php:
|
3580 |
-
#: app/features/mec/notifications.php:
|
3581 |
-
#: app/features/mec/notifications.php:
|
3582 |
-
#: app/features/mec/notifications.php:
|
|
|
3583 |
msgid "First name of attendee"
|
3584 |
msgstr "Prénom du participant"
|
3585 |
|
3586 |
-
#: app/features/mec/notifications.php:
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
-
#: app/features/mec/notifications.php:
|
3590 |
-
#: app/features/mec/notifications.php:
|
|
|
3591 |
msgid "Last name of attendee"
|
3592 |
msgstr "Nom du participant"
|
3593 |
|
3594 |
-
#: app/features/mec/notifications.php:
|
3595 |
-
#: app/features/mec/notifications.php:
|
3596 |
-
#: app/features/mec/notifications.php:
|
3597 |
-
#: app/features/mec/notifications.php:
|
3598 |
-
#: app/features/mec/notifications.php:
|
|
|
3599 |
msgid "Email of attendee"
|
3600 |
msgstr "Email du participant"
|
3601 |
|
3602 |
-
#: app/features/mec/notifications.php:
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
-
#: app/features/mec/notifications.php:
|
3605 |
-
#: app/features/mec/notifications.php:
|
3606 |
-
#: app/features/mec/notifications.php:
|
|
|
3607 |
msgid "Booked date of event"
|
3608 |
msgstr "Date de réservation"
|
3609 |
|
3610 |
-
#: app/features/mec/notifications.php:
|
3611 |
-
#: app/features/mec/notifications.php:
|
3612 |
-
#: app/features/mec/notifications.php:
|
3613 |
-
#: app/features/mec/notifications.php:
|
3614 |
-
#: app/features/mec/notifications.php:
|
|
|
3615 |
#, fuzzy
|
3616 |
#| msgid "Booked date of event"
|
3617 |
msgid "Booked time of event"
|
3618 |
msgstr "Date de réservation"
|
3619 |
|
3620 |
-
#: app/features/mec/notifications.php:
|
3621 |
-
#: app/features/mec/notifications.php:
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
3624 |
-
#: app/features/mec/notifications.php:
|
|
|
3625 |
msgid "Booking Price"
|
3626 |
msgstr "Prix de la réservation"
|
3627 |
|
3628 |
-
#: app/features/mec/notifications.php:
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
-
#: app/features/mec/notifications.php:
|
3631 |
-
#: app/features/mec/notifications.php:
|
3632 |
-
#: app/features/mec/notifications.php:
|
3633 |
-
#: app/features/mec/notifications.php:
|
|
|
3634 |
msgid "Your website title"
|
3635 |
msgstr "Titre de votre site"
|
3636 |
|
3637 |
-
#: app/features/mec/notifications.php:
|
3638 |
-
#: app/features/mec/notifications.php:
|
3639 |
-
#: app/features/mec/notifications.php:
|
3640 |
-
#: app/features/mec/notifications.php:
|
3641 |
-
#: app/features/mec/notifications.php:
|
3642 |
-
#: app/features/mec/notifications.php:
|
|
|
3643 |
msgid "Your website URL"
|
3644 |
msgstr "URL de votre site"
|
3645 |
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
-
#: app/features/mec/notifications.php:
|
3648 |
-
#: app/features/mec/notifications.php:
|
3649 |
-
#: app/features/mec/notifications.php:
|
3650 |
-
#: app/features/mec/notifications.php:
|
3651 |
-
#: app/features/mec/notifications.php:
|
|
|
3652 |
msgid "Your website description"
|
3653 |
msgstr "Description de votre site"
|
3654 |
|
3655 |
-
#: app/features/mec/notifications.php:
|
3656 |
-
#: app/features/mec/notifications.php:
|
3657 |
-
#: app/features/mec/notifications.php:
|
3658 |
-
#: app/features/mec/notifications.php:
|
3659 |
-
#: app/features/mec/notifications.php:
|
|
|
3660 |
msgid "Event title"
|
3661 |
msgstr "Nom de l'événement"
|
3662 |
|
3663 |
-
#: app/features/mec/notifications.php:
|
3664 |
-
#: app/features/mec/notifications.php:
|
3665 |
-
#: app/features/mec/notifications.php:
|
3666 |
-
#: app/features/mec/notifications.php:
|
3667 |
-
#: app/features/mec/notifications.php:
|
|
|
3668 |
#, fuzzy
|
3669 |
#| msgid "Event Link"
|
3670 |
msgid "Event link"
|
3671 |
msgstr "Lien de l'événement"
|
3672 |
|
3673 |
-
#: app/features/mec/notifications.php:
|
3674 |
-
#: app/features/mec/notifications.php:
|
3675 |
-
#: app/features/mec/notifications.php:
|
3676 |
-
#: app/features/mec/notifications.php:
|
3677 |
-
#: app/features/mec/notifications.php:
|
|
|
3678 |
msgid "Organizer name of booked event"
|
3679 |
msgstr "Organisateur de l'événement réservé"
|
3680 |
|
3681 |
-
#: app/features/mec/notifications.php:
|
3682 |
-
#: app/features/mec/notifications.php:
|
3683 |
-
#: app/features/mec/notifications.php:
|
3684 |
-
#: app/features/mec/notifications.php:
|
3685 |
-
#: app/features/mec/notifications.php:
|
|
|
3686 |
msgid "Organizer tel of booked event"
|
3687 |
msgstr "Tel de l'organisateur de l'événement réservé"
|
3688 |
|
3689 |
-
#: app/features/mec/notifications.php:
|
3690 |
-
#: app/features/mec/notifications.php:
|
3691 |
-
#: app/features/mec/notifications.php:
|
3692 |
-
#: app/features/mec/notifications.php:
|
3693 |
-
#: app/features/mec/notifications.php:
|
|
|
3694 |
msgid "Organizer email of booked event"
|
3695 |
msgstr "Email de l'organisateur de l'événement réservé"
|
3696 |
|
3697 |
-
#: app/features/mec/notifications.php:
|
3698 |
-
#: app/features/mec/notifications.php:
|
3699 |
-
#: app/features/mec/notifications.php:
|
3700 |
-
#: app/features/mec/notifications.php:
|
3701 |
-
#: app/features/mec/notifications.php:
|
|
|
3702 |
msgid "Location name of booked event"
|
3703 |
msgstr "Nom du lieu de l'événement réservé"
|
3704 |
|
3705 |
-
#: app/features/mec/notifications.php:
|
3706 |
-
#: app/features/mec/notifications.php:
|
3707 |
-
#: app/features/mec/notifications.php:
|
3708 |
-
#: app/features/mec/notifications.php:
|
3709 |
-
#: app/features/mec/notifications.php:
|
|
|
3710 |
msgid "Location address of booked event"
|
3711 |
msgstr "Adresse lieu de l'événement réservé"
|
3712 |
|
3713 |
-
#: app/features/mec/notifications.php:
|
3714 |
-
#: app/features/mec/notifications.php:
|
|
|
3715 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3716 |
msgstr ""
|
3717 |
"Information complète des participants tels que les données de formulaire de "
|
3718 |
"réservation, nom, email, etc."
|
3719 |
|
3720 |
-
#: app/features/mec/notifications.php:
|
3721 |
-
#: app/features/mec/notifications.php:
|
3722 |
-
#: app/features/mec/notifications.php:
|
3723 |
msgid "Invoice Link"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: app/features/mec/notifications.php:
|
3727 |
-
#: app/features/mec/notifications.php:
|
3728 |
-
#: app/features/mec/notifications.php:
|
3729 |
-
#: app/features/mec/notifications.php:
|
3730 |
-
#: app/features/mec/notifications.php:
|
|
|
3731 |
msgid "Total Attendees"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: app/features/mec/notifications.php:
|
3735 |
-
#: app/features/mec/notifications.php:
|
3736 |
-
#: app/features/mec/notifications.php:
|
3737 |
-
#: app/features/mec/notifications.php:
|
3738 |
#, fuzzy
|
3739 |
#| msgid "Ticket Name"
|
3740 |
msgid "Ticket name"
|
3741 |
msgstr "Nom du billet"
|
3742 |
|
3743 |
-
#: app/features/mec/notifications.php:
|
3744 |
-
#: app/features/mec/notifications.php:
|
3745 |
-
#: app/features/mec/notifications.php:
|
3746 |
-
#: app/features/mec/notifications.php:
|
3747 |
#, fuzzy
|
3748 |
#| msgid "Ticket Name"
|
3749 |
msgid "Ticket time"
|
3750 |
msgstr "Nom du billet"
|
3751 |
|
3752 |
-
#: app/features/mec/notifications.php:
|
3753 |
-
#: app/features/mec/notifications.php:
|
3754 |
-
#: app/features/mec/notifications.php:
|
3755 |
-
#: app/features/mec/notifications.php:
|
3756 |
msgid "Download ICS file"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: app/features/mec/notifications.php:
|
3760 |
msgid "It sends to attendee email for verifying their booking/email."
|
3761 |
msgstr "Envoyé par mail au participant pour vérification de réservation/email."
|
3762 |
|
3763 |
-
#: app/features/mec/notifications.php:
|
3764 |
msgid "Email/Booking verification link."
|
3765 |
msgstr "Vérification des réservations."
|
3766 |
|
3767 |
-
#: app/features/mec/notifications.php:
|
3768 |
msgid "It sends to attendee after confirming the booking by admin."
|
3769 |
msgstr ""
|
3770 |
"Vous envoie un mail vous avertissant lorsqu'un visiteur confirme sa demande "
|
3771 |
"d'ajout d'événement."
|
3772 |
|
3773 |
-
#: app/features/mec/notifications.php:
|
3774 |
-
#: app/features/mec/notifications.php:
|
3775 |
msgid "Booking cancellation link."
|
3776 |
msgstr "Lien d'annulation de la réservation."
|
3777 |
|
3778 |
-
#: app/features/mec/notifications.php:
|
3779 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3780 |
msgstr ""
|
3781 |
-
"
|
3782 |
-
"reçue."
|
3783 |
|
3784 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3785 |
msgid "Admin booking management link."
|
3786 |
msgstr "Administrateur lien de gestion des réservations."
|
3787 |
|
3788 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3789 |
msgid "Enable booking reminder notification"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: app/features/mec/notifications.php:
|
3793 |
#, php-format
|
3794 |
msgid ""
|
3795 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3797,19 +3863,19 @@ msgid ""
|
|
3797 |
"send the reminders multiple times."
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: app/features/mec/notifications.php:
|
3801 |
msgid "only once per day"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: app/features/mec/notifications.php:
|
3805 |
msgid "Days"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: app/features/mec/notifications.php:
|
3809 |
msgid "Enable new event notification"
|
3810 |
msgstr "Activer la notification d'ajout d'un nouvel événement"
|
3811 |
|
3812 |
-
#: app/features/mec/notifications.php:
|
3813 |
msgid ""
|
3814 |
"It sends after adding a new event from frontend event submission or from "
|
3815 |
"website backend."
|
@@ -3817,36 +3883,36 @@ msgstr ""
|
|
3817 |
"S'envoie lorsqu'un nouvel événement est ajouté depuis le formulaire de "
|
3818 |
"soumission ou depuis le tableau de bord du site."
|
3819 |
|
3820 |
-
#: app/features/mec/notifications.php:
|
3821 |
msgid "Title of event"
|
3822 |
msgstr "Titre de l'événement"
|
3823 |
|
3824 |
-
#: app/features/mec/notifications.php:
|
3825 |
#, fuzzy
|
3826 |
#| msgid "Title of event"
|
3827 |
msgid "Link of event"
|
3828 |
msgstr "Titre de l'événement"
|
3829 |
|
3830 |
-
#: app/features/mec/notifications.php:
|
3831 |
msgid "Status of event"
|
3832 |
msgstr "Statut de l'événement"
|
3833 |
|
3834 |
-
#: app/features/mec/notifications.php:
|
3835 |
#: app/features/mec/settings.php:1253
|
3836 |
msgid "Event Note"
|
3837 |
msgstr "Note sur l'événement"
|
3838 |
|
3839 |
-
#: app/features/mec/notifications.php:
|
3840 |
msgid "Admin events management link."
|
3841 |
msgstr "Lien d'administration d'événements."
|
3842 |
|
3843 |
-
#: app/features/mec/notifications.php:
|
3844 |
-
#: app/features/mec/notifications.php:
|
3845 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3846 |
msgid "Verified"
|
3847 |
msgstr "Vérifié"
|
3848 |
|
3849 |
-
#: app/features/mec/notifications.php:
|
3850 |
msgid "Please Refresh Page"
|
3851 |
msgstr "Merci de Rafraichir la Page"
|
3852 |
|
@@ -5331,7 +5397,7 @@ msgid "eg. https://webnus.net"
|
|
5331 |
msgstr "http://webnus.biz"
|
5332 |
|
5333 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5334 |
-
#: app/skins/single.php:
|
5335 |
msgid "Other Organizers"
|
5336 |
msgstr "Autres organisateurs"
|
5337 |
|
@@ -5479,7 +5545,7 @@ msgstr ""
|
|
5479 |
msgid "day"
|
5480 |
msgstr "jour"
|
5481 |
|
5482 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5483 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5484 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5485 |
msgid "days"
|
@@ -5489,7 +5555,7 @@ msgstr "jours"
|
|
5489 |
msgid "hour"
|
5490 |
msgstr "heure"
|
5491 |
|
5492 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5493 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5494 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5495 |
msgid "hours"
|
@@ -5499,7 +5565,7 @@ msgstr "heures"
|
|
5499 |
msgid "minute"
|
5500 |
msgstr "minute"
|
5501 |
|
5502 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5503 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5504 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5505 |
msgid "minutes"
|
@@ -5509,7 +5575,7 @@ msgstr "minutes"
|
|
5509 |
msgid "second"
|
5510 |
msgstr "seconde"
|
5511 |
|
5512 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5513 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5514 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5515 |
msgid "seconds"
|
@@ -5988,38 +6054,44 @@ msgstr "Votre réservation est reçue."
|
|
5988 |
msgid "Your booking is confirmed."
|
5989 |
msgstr "Votre réservation est confirmée."
|
5990 |
|
5991 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5992 |
msgid "A new booking is received."
|
5993 |
msgstr "Une nouvelle réservation est enregistrée."
|
5994 |
|
5995 |
-
#: app/libraries/notifications.php:
|
5996 |
msgid "A new event is added."
|
5997 |
msgstr "Un nouvel événement est ajouté."
|
5998 |
|
5999 |
-
#: app/libraries/notifications.php:
|
6000 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
6001 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
6002 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
6003 |
msgid "All of the day"
|
6004 |
msgstr "Toute la journée"
|
6005 |
|
6006 |
-
#: app/libraries/notifications.php:
|
6007 |
msgid "to"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
-
#: app/libraries/notifications.php:
|
6011 |
msgid "+ Add to Google Calendar"
|
6012 |
msgstr "+ Ajouter à mon Agenda Google"
|
6013 |
|
6014 |
-
#: app/libraries/notifications.php:
|
6015 |
msgid "+ iCal export"
|
6016 |
msgstr "+ Exporter vers iCal"
|
6017 |
|
6018 |
-
#: app/libraries/notifications.php:
|
6019 |
msgid "Yes"
|
6020 |
msgstr "Oui"
|
6021 |
|
6022 |
-
#: app/libraries/notifications.php:
|
6023 |
msgid "No"
|
6024 |
msgstr "Non"
|
6025 |
|
@@ -6236,15 +6308,15 @@ msgstr "Vu en liste"
|
|
6236 |
msgid "All"
|
6237 |
msgstr "Tout"
|
6238 |
|
6239 |
-
#: app/skins/monthly_view/calendar.php:
|
6240 |
-
#: app/skins/monthly_view/calendar.php:
|
6241 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6242 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6243 |
#, php-format
|
6244 |
msgid "Events for %s"
|
6245 |
msgstr "Événements pour %s"
|
6246 |
|
6247 |
-
#: app/skins/monthly_view/calendar.php:
|
6248 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6249 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6250 |
msgid "No Events"
|
@@ -6254,19 +6326,19 @@ msgstr "Aucun événement"
|
|
6254 |
msgid "Home"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
-
#: app/skins/single.php:
|
6258 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6259 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6260 |
msgid "Phone"
|
6261 |
msgstr "Téléphone"
|
6262 |
|
6263 |
-
#: app/skins/single.php:
|
6264 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6265 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6266 |
msgid "Website"
|
6267 |
msgstr "Site Web"
|
6268 |
|
6269 |
-
#: app/skins/single.php:
|
6270 |
msgid "Speakers:"
|
6271 |
msgstr ""
|
6272 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:04+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:04+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:348
|
34 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
66 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
67 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
68 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
267 |
msgid "Event"
|
268 |
msgstr "Événement"
|
269 |
|
270 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
271 |
msgid "Add Event"
|
272 |
msgstr "Ajouter un événement"
|
273 |
|
315 |
msgstr "Catégorie"
|
316 |
|
317 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
318 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
319 |
#: app/libraries/main.php:4375
|
320 |
msgid "Categories"
|
321 |
msgstr "Catégories"
|
414 |
#: app/features/events.php:410 app/features/events.php:1682
|
415 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
417 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
428 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
429 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
430 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
431 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
433 |
#: app/skins/single/modern.php:48
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
555 |
+
#: app/features/mec/notifications.php:170
|
556 |
+
#: app/features/mec/notifications.php:228
|
557 |
+
#: app/features/mec/notifications.php:280
|
558 |
+
#: app/features/mec/notifications.php:339
|
559 |
+
#: app/features/mec/notifications.php:406
|
560 |
+
#: app/features/mec/notifications.php:469
|
561 |
+
#: app/features/mec/notifications.php:480
|
562 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
563 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
564 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
565 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
771 |
msgstr ""
|
772 |
|
773 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
774 |
+
#: app/skins/single.php:379
|
775 |
msgid "Hourly Schedule"
|
776 |
msgstr "Programme"
|
777 |
|
843 |
|
844 |
#: app/features/events.php:913 app/features/events.php:933
|
845 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
846 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
847 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
848 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
849 |
msgid "Speakers"
|
1243 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1244 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1245 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1246 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1247 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1248 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1249 |
msgid "Location"
|
1413 |
msgstr "Supprimer l'image"
|
1414 |
|
1415 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1416 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1417 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1418 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1419 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1420 |
msgid "Labels"
|
1421 |
msgstr "Labels"
|
1422 |
|
1423 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1424 |
#: app/features/mec/meta_boxes/filter.php:138
|
1425 |
msgid "Tags"
|
1426 |
msgstr "Étiquettes"
|
1456 |
|
1457 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1458 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1459 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1460 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1461 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1462 |
msgid "Import / Export"
|
1735 |
#: app/features/ix/export_g_calendar.php:72
|
1736 |
#: app/features/ix/export_g_calendar.php:147
|
1737 |
#: app/features/ix/export_g_calendar.php:164
|
1738 |
+
#: app/features/mec/notifications.php:207
|
1739 |
+
#: app/features/mec/notifications.php:260
|
1740 |
+
#: app/features/mec/notifications.php:313
|
1741 |
+
#: app/features/mec/notifications.php:513
|
1742 |
msgid "Add to Google Calendar"
|
1743 |
msgstr "Ajouter à Google Agenda"
|
1744 |
|
1745 |
#: app/features/ix/export_g_calendar.php:90
|
1746 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1747 |
msgid "Checking ..."
|
1748 |
msgstr "Vérification..."
|
1749 |
|
2002 |
|
2003 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2004 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2005 |
+
#: app/features/mec/notifications.php:457
|
2006 |
msgid "Important Note"
|
2007 |
msgstr "Note Importante"
|
2008 |
|
2141 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2142 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2143 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2144 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2145 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2146 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2147 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2157 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2158 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2159 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2160 |
+
#: app/skins/monthly_view/calendar.php:86
|
2161 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2162 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2163 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2185 |
msgid "Event %s"
|
2186 |
msgstr "%s événement"
|
2187 |
|
2188 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2189 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2190 |
#: app/libraries/main.php:4379
|
2191 |
msgid "Locations"
|
2310 |
"Vous pouvez sélectionner des organisateurs supplémentaires en plus de "
|
2311 |
"l'organisateur principal si vous le souhaitez."
|
2312 |
|
2313 |
+
#: app/features/mec.php:153
|
2314 |
msgid ""
|
2315 |
"Activation faild. Please check your purchase code or license type."
|
2316 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: app/features/mec.php:153
|
2320 |
msgid "Troubleshooting"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: app/features/mec.php:193
|
2324 |
msgid ""
|
2325 |
"Your options is not in JSON format. Please insert correct options in this "
|
2326 |
"field and try again."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: app/features/mec.php:200
|
2330 |
#, fuzzy
|
2331 |
#| msgid "Your booking cannot verify!"
|
2332 |
msgid "Your options field can not be empty!"
|
2333 |
msgstr "Votre réservation ne peut pas être vérifiée!"
|
2334 |
|
2335 |
+
#: app/features/mec.php:206
|
2336 |
#, fuzzy
|
2337 |
#| msgid "Your booking successfully verified."
|
2338 |
msgid "Your options imported successfuly."
|
2339 |
msgstr "Votre réservation est vérifiée avec succès."
|
2340 |
|
2341 |
+
#: app/features/mec.php:299
|
2342 |
#, fuzzy
|
2343 |
#| msgid "Support"
|
2344 |
msgid "MEC - Support"
|
2345 |
msgstr "Aide"
|
2346 |
|
2347 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2348 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2349 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2350 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2351 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2352 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2353 |
msgid "Support"
|
2354 |
msgstr "Aide"
|
2355 |
|
2356 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2357 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2358 |
#: app/libraries/main.php:4381
|
2359 |
msgid "Organizers"
|
2360 |
msgstr "Organisateurs"
|
2361 |
|
2362 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2363 |
#: app/features/mec/dashboard.php:194
|
2364 |
msgid "Shortcodes"
|
2365 |
msgstr "Shortcodes"
|
2366 |
|
2367 |
+
#: app/features/mec.php:329
|
2368 |
msgid "MEC - Settings"
|
2369 |
msgstr "Agenda - Paramètres"
|
2370 |
|
2371 |
+
#: app/features/mec.php:330
|
2372 |
#, fuzzy
|
2373 |
#| msgid "MEC - Settings"
|
2374 |
msgid "MEC - Addons"
|
2375 |
msgstr "Agenda - Paramètres"
|
2376 |
|
2377 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2378 |
msgid "Addons"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: app/features/mec.php:349
|
2382 |
msgid "Add Shortcode"
|
2383 |
msgstr "Ajouter un Shortcode"
|
2384 |
|
2385 |
+
#: app/features/mec.php:350
|
2386 |
msgid "Add New Shortcode"
|
2387 |
msgstr "Ajouter un nouveau Shortcode"
|
2388 |
|
2389 |
+
#: app/features/mec.php:351
|
2390 |
msgid "No shortcodes found!"
|
2391 |
msgstr "Aucun shortcode trouvé !"
|
2392 |
|
2393 |
+
#: app/features/mec.php:352
|
2394 |
msgid "All Shortcodes"
|
2395 |
msgstr "Tous les Shortcode"
|
2396 |
|
2397 |
+
#: app/features/mec.php:353
|
2398 |
msgid "Edit shortcodes"
|
2399 |
msgstr "Modifier les shortcodes"
|
2400 |
|
2401 |
+
#: app/features/mec.php:354
|
2402 |
msgid "No shortcodes found in Trash!"
|
2403 |
msgstr "Pas de shortcode dans la corbeille"
|
2404 |
|
2405 |
+
#: app/features/mec.php:402
|
2406 |
msgid "Display Options"
|
2407 |
msgstr "Options d'affichage"
|
2408 |
|
2409 |
+
#: app/features/mec.php:403
|
2410 |
msgid "Filter Options"
|
2411 |
msgstr "Options des filtres"
|
2412 |
|
2413 |
+
#: app/features/mec.php:405
|
2414 |
msgid "Search Form"
|
2415 |
msgstr "Formulaire de Recherche"
|
2416 |
|
2417 |
+
#: app/features/mec.php:755
|
2418 |
msgid "Display content's images as Popup"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: app/features/mec.php:768
|
2422 |
msgid "Single Event Display Method"
|
2423 |
msgstr "Méthode d'affichage"
|
2424 |
|
2425 |
+
#: app/features/mec.php:773
|
2426 |
msgid "Separate Window"
|
2427 |
msgstr "Page séparé"
|
2428 |
|
2429 |
+
#: app/features/mec.php:774
|
2430 |
msgid "Modal 1"
|
2431 |
msgstr "Pop-up"
|
2432 |
|
2590 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2591 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2592 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2593 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2594 |
+
#: app/features/mec/notifications.php:581
|
2595 |
+
#: app/features/mec/notifications.php:680
|
2596 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2597 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2598 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2599 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2608 |
msgstr "Sauvegarder"
|
2609 |
|
2610 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2611 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2612 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2613 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2614 |
#: app/features/mec/support.php:52
|
2616 |
msgstr "Options de style"
|
2617 |
|
2618 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2619 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2620 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2621 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2622 |
#: app/features/mec/support.php:59
|
2625 |
|
2626 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2627 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2628 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2629 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2630 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2631 |
msgid "Messages"
|
2632 |
msgstr "Messages"
|
2633 |
|
2634 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2635 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2636 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2637 |
#: app/features/mec/styling.php:375
|
2638 |
msgid "Saved"
|
2639 |
msgstr "Sauvegardé"
|
2640 |
|
2641 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2642 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2643 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2644 |
#: app/features/mec/styling.php:376
|
2645 |
msgid "Settings Saved!"
|
3481 |
msgid "No Search Options"
|
3482 |
msgstr "Aucune option de recherche"
|
3483 |
|
3484 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3485 |
msgid "Booking Notification"
|
3486 |
msgstr "Notification de réservation"
|
3487 |
|
3488 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3489 |
msgid "Booking Verification"
|
3490 |
msgstr "Vérification de réservation"
|
3491 |
|
3492 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3493 |
#: app/features/mec/settings.php:1409
|
3494 |
msgid "Booking Confirmation"
|
3495 |
msgstr "Confirmation de réservation"
|
3496 |
|
3497 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3498 |
+
#, fuzzy
|
3499 |
+
#| msgid "Booking cancellation link."
|
3500 |
+
msgid "Booking Cancellation"
|
3501 |
+
msgstr "Lien d'annulation de la réservation."
|
3502 |
+
|
3503 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3504 |
msgid "Admin Notification"
|
3505 |
msgstr "Notification de l'administrateur"
|
3506 |
|
3507 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3508 |
+
#: app/libraries/notifications.php:354
|
3509 |
msgid "Booking Reminder"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3513 |
#: app/features/mec/support-page.php:80
|
3514 |
msgid "New Event"
|
3515 |
msgstr "Nouvel événement"
|
3516 |
|
3517 |
+
#: app/features/mec/notifications.php:155
|
3518 |
msgid "Enable booking notification"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: app/features/mec/notifications.php:159
|
3522 |
msgid "It sends to attendee after booking for notifying him/her."
|
3523 |
msgstr ""
|
3524 |
"Elle est envoyée aux participants après leur réservation pour les avertir."
|
3525 |
|
3526 |
+
#: app/features/mec/notifications.php:161
|
3527 |
+
#: app/features/mec/notifications.php:219
|
3528 |
+
#: app/features/mec/notifications.php:271
|
3529 |
+
#: app/features/mec/notifications.php:330
|
3530 |
+
#: app/features/mec/notifications.php:397
|
3531 |
+
#: app/features/mec/notifications.php:460
|
3532 |
+
#: app/features/mec/notifications.php:532
|
3533 |
msgid "Email Subject"
|
3534 |
msgstr "Sujet"
|
3535 |
|
3536 |
+
#: app/features/mec/notifications.php:165
|
3537 |
+
#: app/features/mec/notifications.php:169
|
3538 |
+
#: app/features/mec/notifications.php:223
|
3539 |
+
#: app/features/mec/notifications.php:227
|
3540 |
+
#: app/features/mec/notifications.php:275
|
3541 |
+
#: app/features/mec/notifications.php:279
|
3542 |
+
#: app/features/mec/notifications.php:334
|
3543 |
+
#: app/features/mec/notifications.php:338
|
3544 |
+
#: app/features/mec/notifications.php:401
|
3545 |
+
#: app/features/mec/notifications.php:405
|
3546 |
+
#: app/features/mec/notifications.php:464
|
3547 |
+
#: app/features/mec/notifications.php:468
|
3548 |
+
#: app/features/mec/notifications.php:479
|
3549 |
+
#: app/features/mec/notifications.php:536
|
3550 |
+
#: app/features/mec/notifications.php:540
|
3551 |
msgid "Custom Recipients"
|
3552 |
msgstr "Destinataires personnalisés"
|
3553 |
|
3554 |
+
#: app/features/mec/notifications.php:170
|
3555 |
+
#: app/features/mec/notifications.php:228
|
3556 |
+
#: app/features/mec/notifications.php:280
|
3557 |
+
#: app/features/mec/notifications.php:339
|
3558 |
+
#: app/features/mec/notifications.php:406
|
3559 |
+
#: app/features/mec/notifications.php:469
|
3560 |
+
#: app/features/mec/notifications.php:480
|
3561 |
+
#: app/features/mec/notifications.php:541
|
3562 |
msgid "Insert comma separated emails for multiple recipients."
|
3563 |
msgstr ""
|
3564 |
"Insérez une virgule entre chaque emails pour séparés plusieurs destinataires."
|
3565 |
|
3566 |
+
#: app/features/mec/notifications.php:177
|
3567 |
+
#: app/features/mec/notifications.php:350
|
3568 |
+
#: app/features/mec/notifications.php:413
|
3569 |
msgid "Send the email to event organizer"
|
3570 |
msgstr "Envoyer l'email à l'organisateur de l'événement"
|
3571 |
|
3572 |
+
#: app/features/mec/notifications.php:180
|
3573 |
+
#: app/features/mec/notifications.php:234
|
3574 |
+
#: app/features/mec/notifications.php:286
|
3575 |
+
#: app/features/mec/notifications.php:357
|
3576 |
+
#: app/features/mec/notifications.php:416
|
3577 |
+
#: app/features/mec/notifications.php:486
|
3578 |
+
#: app/features/mec/notifications.php:547
|
3579 |
msgid "Email Content"
|
3580 |
msgstr "Contenu de l'email"
|
3581 |
|
3582 |
+
#: app/features/mec/notifications.php:183
|
3583 |
+
#: app/features/mec/notifications.php:237
|
3584 |
+
#: app/features/mec/notifications.php:289
|
3585 |
+
#: app/features/mec/notifications.php:360
|
3586 |
+
#: app/features/mec/notifications.php:419
|
3587 |
+
#: app/features/mec/notifications.php:489
|
3588 |
+
#: app/features/mec/notifications.php:550
|
3589 |
msgid "You can use following placeholders"
|
3590 |
msgstr "Vous pouvez utiliser les variables suivantes"
|
3591 |
|
3592 |
+
#: app/features/mec/notifications.php:185
|
3593 |
+
#: app/features/mec/notifications.php:239
|
3594 |
+
#: app/features/mec/notifications.php:291
|
3595 |
+
#: app/features/mec/notifications.php:362
|
3596 |
+
#: app/features/mec/notifications.php:421
|
3597 |
+
#: app/features/mec/notifications.php:491
|
3598 |
msgid "First name of attendee"
|
3599 |
msgstr "Prénom du participant"
|
3600 |
|
3601 |
+
#: app/features/mec/notifications.php:186
|
3602 |
+
#: app/features/mec/notifications.php:240
|
3603 |
+
#: app/features/mec/notifications.php:292
|
3604 |
+
#: app/features/mec/notifications.php:363
|
3605 |
+
#: app/features/mec/notifications.php:422
|
3606 |
+
#: app/features/mec/notifications.php:492
|
3607 |
msgid "Last name of attendee"
|
3608 |
msgstr "Nom du participant"
|
3609 |
|
3610 |
+
#: app/features/mec/notifications.php:187
|
3611 |
+
#: app/features/mec/notifications.php:241
|
3612 |
+
#: app/features/mec/notifications.php:293
|
3613 |
+
#: app/features/mec/notifications.php:364
|
3614 |
+
#: app/features/mec/notifications.php:423
|
3615 |
+
#: app/features/mec/notifications.php:493
|
3616 |
msgid "Email of attendee"
|
3617 |
msgstr "Email du participant"
|
3618 |
|
3619 |
+
#: app/features/mec/notifications.php:188
|
3620 |
+
#: app/features/mec/notifications.php:242
|
3621 |
+
#: app/features/mec/notifications.php:294
|
3622 |
+
#: app/features/mec/notifications.php:365
|
3623 |
+
#: app/features/mec/notifications.php:424
|
3624 |
+
#: app/features/mec/notifications.php:494
|
3625 |
msgid "Booked date of event"
|
3626 |
msgstr "Date de réservation"
|
3627 |
|
3628 |
+
#: app/features/mec/notifications.php:189
|
3629 |
+
#: app/features/mec/notifications.php:243
|
3630 |
+
#: app/features/mec/notifications.php:295
|
3631 |
+
#: app/features/mec/notifications.php:366
|
3632 |
+
#: app/features/mec/notifications.php:425
|
3633 |
+
#: app/features/mec/notifications.php:495
|
3634 |
#, fuzzy
|
3635 |
#| msgid "Booked date of event"
|
3636 |
msgid "Booked time of event"
|
3637 |
msgstr "Date de réservation"
|
3638 |
|
3639 |
+
#: app/features/mec/notifications.php:190
|
3640 |
+
#: app/features/mec/notifications.php:244
|
3641 |
+
#: app/features/mec/notifications.php:296
|
3642 |
+
#: app/features/mec/notifications.php:367
|
3643 |
+
#: app/features/mec/notifications.php:426
|
3644 |
+
#: app/features/mec/notifications.php:496
|
3645 |
msgid "Booking Price"
|
3646 |
msgstr "Prix de la réservation"
|
3647 |
|
3648 |
+
#: app/features/mec/notifications.php:191
|
3649 |
+
#: app/features/mec/notifications.php:245
|
3650 |
+
#: app/features/mec/notifications.php:297
|
3651 |
+
#: app/features/mec/notifications.php:368
|
3652 |
+
#: app/features/mec/notifications.php:427
|
3653 |
+
#: app/features/mec/notifications.php:497
|
3654 |
+
#: app/features/mec/notifications.php:556
|
3655 |
msgid "Your website title"
|
3656 |
msgstr "Titre de votre site"
|
3657 |
|
3658 |
+
#: app/features/mec/notifications.php:192
|
3659 |
+
#: app/features/mec/notifications.php:246
|
3660 |
+
#: app/features/mec/notifications.php:298
|
3661 |
+
#: app/features/mec/notifications.php:369
|
3662 |
+
#: app/features/mec/notifications.php:428
|
3663 |
+
#: app/features/mec/notifications.php:498
|
3664 |
+
#: app/features/mec/notifications.php:557
|
3665 |
msgid "Your website URL"
|
3666 |
msgstr "URL de votre site"
|
3667 |
|
3668 |
+
#: app/features/mec/notifications.php:193
|
3669 |
+
#: app/features/mec/notifications.php:247
|
3670 |
+
#: app/features/mec/notifications.php:299
|
3671 |
+
#: app/features/mec/notifications.php:370
|
3672 |
+
#: app/features/mec/notifications.php:429
|
3673 |
+
#: app/features/mec/notifications.php:499
|
3674 |
+
#: app/features/mec/notifications.php:558
|
3675 |
msgid "Your website description"
|
3676 |
msgstr "Description de votre site"
|
3677 |
|
3678 |
+
#: app/features/mec/notifications.php:194
|
3679 |
+
#: app/features/mec/notifications.php:248
|
3680 |
+
#: app/features/mec/notifications.php:300
|
3681 |
+
#: app/features/mec/notifications.php:371
|
3682 |
+
#: app/features/mec/notifications.php:430
|
3683 |
+
#: app/features/mec/notifications.php:500
|
3684 |
msgid "Event title"
|
3685 |
msgstr "Nom de l'événement"
|
3686 |
|
3687 |
+
#: app/features/mec/notifications.php:195
|
3688 |
+
#: app/features/mec/notifications.php:249
|
3689 |
+
#: app/features/mec/notifications.php:301
|
3690 |
+
#: app/features/mec/notifications.php:372
|
3691 |
+
#: app/features/mec/notifications.php:431
|
3692 |
+
#: app/features/mec/notifications.php:501
|
3693 |
#, fuzzy
|
3694 |
#| msgid "Event Link"
|
3695 |
msgid "Event link"
|
3696 |
msgstr "Lien de l'événement"
|
3697 |
|
3698 |
+
#: app/features/mec/notifications.php:196
|
3699 |
+
#: app/features/mec/notifications.php:250
|
3700 |
+
#: app/features/mec/notifications.php:302
|
3701 |
+
#: app/features/mec/notifications.php:373
|
3702 |
+
#: app/features/mec/notifications.php:432
|
3703 |
+
#: app/features/mec/notifications.php:502
|
3704 |
msgid "Organizer name of booked event"
|
3705 |
msgstr "Organisateur de l'événement réservé"
|
3706 |
|
3707 |
+
#: app/features/mec/notifications.php:197
|
3708 |
+
#: app/features/mec/notifications.php:251
|
3709 |
+
#: app/features/mec/notifications.php:303
|
3710 |
+
#: app/features/mec/notifications.php:374
|
3711 |
+
#: app/features/mec/notifications.php:433
|
3712 |
+
#: app/features/mec/notifications.php:503
|
3713 |
msgid "Organizer tel of booked event"
|
3714 |
msgstr "Tel de l'organisateur de l'événement réservé"
|
3715 |
|
3716 |
+
#: app/features/mec/notifications.php:198
|
3717 |
+
#: app/features/mec/notifications.php:252
|
3718 |
+
#: app/features/mec/notifications.php:304
|
3719 |
+
#: app/features/mec/notifications.php:375
|
3720 |
+
#: app/features/mec/notifications.php:434
|
3721 |
+
#: app/features/mec/notifications.php:504
|
3722 |
msgid "Organizer email of booked event"
|
3723 |
msgstr "Email de l'organisateur de l'événement réservé"
|
3724 |
|
3725 |
+
#: app/features/mec/notifications.php:199
|
3726 |
+
#: app/features/mec/notifications.php:253
|
3727 |
+
#: app/features/mec/notifications.php:305
|
3728 |
+
#: app/features/mec/notifications.php:376
|
3729 |
+
#: app/features/mec/notifications.php:435
|
3730 |
+
#: app/features/mec/notifications.php:505
|
3731 |
msgid "Location name of booked event"
|
3732 |
msgstr "Nom du lieu de l'événement réservé"
|
3733 |
|
3734 |
+
#: app/features/mec/notifications.php:200
|
3735 |
+
#: app/features/mec/notifications.php:254
|
3736 |
+
#: app/features/mec/notifications.php:306
|
3737 |
+
#: app/features/mec/notifications.php:377
|
3738 |
+
#: app/features/mec/notifications.php:436
|
3739 |
+
#: app/features/mec/notifications.php:506
|
3740 |
msgid "Location address of booked event"
|
3741 |
msgstr "Adresse lieu de l'événement réservé"
|
3742 |
|
3743 |
+
#: app/features/mec/notifications.php:201
|
3744 |
+
#: app/features/mec/notifications.php:379
|
3745 |
+
#: app/features/mec/notifications.php:438
|
3746 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3747 |
msgstr ""
|
3748 |
"Information complète des participants tels que les données de formulaire de "
|
3749 |
"réservation, nom, email, etc."
|
3750 |
|
3751 |
+
#: app/features/mec/notifications.php:202
|
3752 |
+
#: app/features/mec/notifications.php:308
|
3753 |
+
#: app/features/mec/notifications.php:508
|
3754 |
msgid "Invoice Link"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: app/features/mec/notifications.php:203
|
3758 |
+
#: app/features/mec/notifications.php:256
|
3759 |
+
#: app/features/mec/notifications.php:309
|
3760 |
+
#: app/features/mec/notifications.php:380
|
3761 |
+
#: app/features/mec/notifications.php:439
|
3762 |
+
#: app/features/mec/notifications.php:509
|
3763 |
msgid "Total Attendees"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: app/features/mec/notifications.php:204
|
3767 |
+
#: app/features/mec/notifications.php:257
|
3768 |
+
#: app/features/mec/notifications.php:310
|
3769 |
+
#: app/features/mec/notifications.php:510
|
3770 |
#, fuzzy
|
3771 |
#| msgid "Ticket Name"
|
3772 |
msgid "Ticket name"
|
3773 |
msgstr "Nom du billet"
|
3774 |
|
3775 |
+
#: app/features/mec/notifications.php:205
|
3776 |
+
#: app/features/mec/notifications.php:258
|
3777 |
+
#: app/features/mec/notifications.php:311
|
3778 |
+
#: app/features/mec/notifications.php:511
|
3779 |
#, fuzzy
|
3780 |
#| msgid "Ticket Name"
|
3781 |
msgid "Ticket time"
|
3782 |
msgstr "Nom du billet"
|
3783 |
|
3784 |
+
#: app/features/mec/notifications.php:206
|
3785 |
+
#: app/features/mec/notifications.php:259
|
3786 |
+
#: app/features/mec/notifications.php:312
|
3787 |
+
#: app/features/mec/notifications.php:512
|
3788 |
msgid "Download ICS file"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: app/features/mec/notifications.php:217
|
3792 |
msgid "It sends to attendee email for verifying their booking/email."
|
3793 |
msgstr "Envoyé par mail au participant pour vérification de réservation/email."
|
3794 |
|
3795 |
+
#: app/features/mec/notifications.php:255
|
3796 |
msgid "Email/Booking verification link."
|
3797 |
msgstr "Vérification des réservations."
|
3798 |
|
3799 |
+
#: app/features/mec/notifications.php:269
|
3800 |
msgid "It sends to attendee after confirming the booking by admin."
|
3801 |
msgstr ""
|
3802 |
"Vous envoie un mail vous avertissant lorsqu'un visiteur confirme sa demande "
|
3803 |
"d'ajout d'événement."
|
3804 |
|
3805 |
+
#: app/features/mec/notifications.php:307
|
3806 |
+
#: app/features/mec/notifications.php:507
|
3807 |
msgid "Booking cancellation link."
|
3808 |
msgstr "Lien d'annulation de la réservation."
|
3809 |
|
3810 |
+
#: app/features/mec/notifications.php:324
|
3811 |
+
#, fuzzy
|
3812 |
+
#| msgid "Enable new event notification"
|
3813 |
+
msgid "Enable cancellation notification"
|
3814 |
+
msgstr "Activer la notification d'ajout d'un nouvel événement"
|
3815 |
+
|
3816 |
+
#: app/features/mec/notifications.php:328
|
3817 |
+
#, fuzzy
|
3818 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3819 |
+
msgid ""
|
3820 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3821 |
+
"them."
|
3822 |
msgstr ""
|
3823 |
+
"Elle est envoyée aux participants après leur réservation pour les avertir."
|
|
|
3824 |
|
3825 |
+
#: app/features/mec/notifications.php:346
|
3826 |
+
#, fuzzy
|
3827 |
+
#| msgid "Send the email to event organizer"
|
3828 |
+
msgid "Send the email to admin"
|
3829 |
+
msgstr "Envoyer l'email à l'organisateur de l'événement"
|
3830 |
+
|
3831 |
+
#: app/features/mec/notifications.php:354
|
3832 |
+
#, fuzzy
|
3833 |
+
#| msgid "Send the email to event organizer"
|
3834 |
+
msgid "Send the email to booking user"
|
3835 |
+
msgstr "Envoyer l'email à l'organisateur de l'événement"
|
3836 |
+
|
3837 |
+
#: app/features/mec/notifications.php:378
|
3838 |
+
#: app/features/mec/notifications.php:437
|
3839 |
msgid "Admin booking management link."
|
3840 |
msgstr "Administrateur lien de gestion des réservations."
|
3841 |
|
3842 |
+
#: app/features/mec/notifications.php:391
|
3843 |
+
#, fuzzy
|
3844 |
+
#| msgid "Enable new event notification"
|
3845 |
+
msgid "Enable admin notification"
|
3846 |
+
msgstr "Activer la notification d'ajout d'un nouvel événement"
|
3847 |
+
|
3848 |
+
#: app/features/mec/notifications.php:395
|
3849 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3850 |
+
msgstr ""
|
3851 |
+
"Il est envoyé à admin pour l'informer qu'il y a une nouvelle réservation "
|
3852 |
+
"reçue."
|
3853 |
+
|
3854 |
+
#: app/features/mec/notifications.php:451
|
3855 |
msgid "Enable booking reminder notification"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: app/features/mec/notifications.php:457
|
3859 |
#, php-format
|
3860 |
msgid ""
|
3861 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3863 |
"send the reminders multiple times."
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: app/features/mec/notifications.php:457
|
3867 |
msgid "only once per day"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: app/features/mec/notifications.php:475
|
3871 |
msgid "Days"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: app/features/mec/notifications.php:526
|
3875 |
msgid "Enable new event notification"
|
3876 |
msgstr "Activer la notification d'ajout d'un nouvel événement"
|
3877 |
|
3878 |
+
#: app/features/mec/notifications.php:530
|
3879 |
msgid ""
|
3880 |
"It sends after adding a new event from frontend event submission or from "
|
3881 |
"website backend."
|
3883 |
"S'envoie lorsqu'un nouvel événement est ajouté depuis le formulaire de "
|
3884 |
"soumission ou depuis le tableau de bord du site."
|
3885 |
|
3886 |
+
#: app/features/mec/notifications.php:552
|
3887 |
msgid "Title of event"
|
3888 |
msgstr "Titre de l'événement"
|
3889 |
|
3890 |
+
#: app/features/mec/notifications.php:553
|
3891 |
#, fuzzy
|
3892 |
#| msgid "Title of event"
|
3893 |
msgid "Link of event"
|
3894 |
msgstr "Titre de l'événement"
|
3895 |
|
3896 |
+
#: app/features/mec/notifications.php:554
|
3897 |
msgid "Status of event"
|
3898 |
msgstr "Statut de l'événement"
|
3899 |
|
3900 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3901 |
#: app/features/mec/settings.php:1253
|
3902 |
msgid "Event Note"
|
3903 |
msgstr "Note sur l'événement"
|
3904 |
|
3905 |
+
#: app/features/mec/notifications.php:559
|
3906 |
msgid "Admin events management link."
|
3907 |
msgstr "Lien d'administration d'événements."
|
3908 |
|
3909 |
+
#: app/features/mec/notifications.php:661
|
3910 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3911 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3912 |
msgid "Verified"
|
3913 |
msgstr "Vérifié"
|
3914 |
|
3915 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3916 |
msgid "Please Refresh Page"
|
3917 |
msgstr "Merci de Rafraichir la Page"
|
3918 |
|
5397 |
msgstr "http://webnus.biz"
|
5398 |
|
5399 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5400 |
+
#: app/skins/single.php:295
|
5401 |
msgid "Other Organizers"
|
5402 |
msgstr "Autres organisateurs"
|
5403 |
|
5545 |
msgid "day"
|
5546 |
msgstr "jour"
|
5547 |
|
5548 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5549 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5550 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5551 |
msgid "days"
|
5555 |
msgid "hour"
|
5556 |
msgstr "heure"
|
5557 |
|
5558 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5559 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5560 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5561 |
msgid "hours"
|
5565 |
msgid "minute"
|
5566 |
msgstr "minute"
|
5567 |
|
5568 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5569 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5570 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5571 |
msgid "minutes"
|
5575 |
msgid "second"
|
5576 |
msgstr "seconde"
|
5577 |
|
5578 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5579 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5580 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5581 |
msgid "seconds"
|
6054 |
msgid "Your booking is confirmed."
|
6055 |
msgstr "Votre réservation est confirmée."
|
6056 |
|
6057 |
+
#: app/libraries/notifications.php:252
|
6058 |
+
#, fuzzy
|
6059 |
+
#| msgid "Your booking cannot be canceled."
|
6060 |
+
msgid "booking canceled."
|
6061 |
+
msgstr "Votre réservation ne peut être annulée."
|
6062 |
+
|
6063 |
+
#: app/libraries/notifications.php:296
|
6064 |
msgid "A new booking is received."
|
6065 |
msgstr "Une nouvelle réservation est enregistrée."
|
6066 |
|
6067 |
+
#: app/libraries/notifications.php:425
|
6068 |
msgid "A new event is added."
|
6069 |
msgstr "Un nouvel événement est ajouté."
|
6070 |
|
6071 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
6072 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
6073 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
6074 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
6075 |
msgid "All of the day"
|
6076 |
msgstr "Toute la journée"
|
6077 |
|
6078 |
+
#: app/libraries/notifications.php:605
|
6079 |
msgid "to"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
6083 |
msgid "+ Add to Google Calendar"
|
6084 |
msgstr "+ Ajouter à mon Agenda Google"
|
6085 |
|
6086 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
6087 |
msgid "+ iCal export"
|
6088 |
msgstr "+ Exporter vers iCal"
|
6089 |
|
6090 |
+
#: app/libraries/notifications.php:683
|
6091 |
msgid "Yes"
|
6092 |
msgstr "Oui"
|
6093 |
|
6094 |
+
#: app/libraries/notifications.php:683
|
6095 |
msgid "No"
|
6096 |
msgstr "Non"
|
6097 |
|
6308 |
msgid "All"
|
6309 |
msgstr "Tout"
|
6310 |
|
6311 |
+
#: app/skins/monthly_view/calendar.php:68
|
6312 |
+
#: app/skins/monthly_view/calendar.php:154
|
6313 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6314 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6315 |
#, php-format
|
6316 |
msgid "Events for %s"
|
6317 |
msgstr "Événements pour %s"
|
6318 |
|
6319 |
+
#: app/skins/monthly_view/calendar.php:156
|
6320 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6321 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6322 |
msgid "No Events"
|
6326 |
msgid "Home"
|
6327 |
msgstr ""
|
6328 |
|
6329 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6330 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6331 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6332 |
msgid "Phone"
|
6333 |
msgstr "Téléphone"
|
6334 |
|
6335 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6336 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6337 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6338 |
msgid "Website"
|
6339 |
msgstr "Site Web"
|
6340 |
|
6341 |
+
#: app/skins/single.php:393
|
6342 |
msgid "Speakers:"
|
6343 |
msgstr ""
|
6344 |
|
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-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
61 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
62 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -261,7 +261,7 @@ msgstr ""
|
|
261 |
msgid "Event"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: app/features/events.php:136 app/features/mec.php:
|
265 |
msgid "Add Event"
|
266 |
msgstr ""
|
267 |
|
@@ -309,7 +309,7 @@ msgid "Category"
|
|
309 |
msgstr "kategória"
|
310 |
|
311 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
312 |
-
#: app/features/mec.php:
|
313 |
#: app/libraries/main.php:4375
|
314 |
msgid "Categories"
|
315 |
msgstr ""
|
@@ -408,7 +408,7 @@ msgstr ""
|
|
408 |
#: app/features/events.php:410 app/features/events.php:1682
|
409 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
410 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +420,8 @@ 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:1087
|
422 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
423 |
-
#: app/libraries/notifications.php:
|
424 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
425 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
426 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
427 |
#: app/skins/single/modern.php:48
|
@@ -540,13 +540,14 @@ msgstr ""
|
|
540 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
541 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
542 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
543 |
-
#: app/features/mec/notifications.php:
|
544 |
-
#: app/features/mec/notifications.php:
|
545 |
-
#: app/features/mec/notifications.php:
|
546 |
-
#: app/features/mec/notifications.php:
|
547 |
-
#: app/features/mec/notifications.php:
|
548 |
-
#: app/features/mec/notifications.php:
|
549 |
-
#: app/features/mec/notifications.php:
|
|
|
550 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
551 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
552 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -751,7 +752,7 @@ msgid "Day 1"
|
|
751 |
msgstr ""
|
752 |
|
753 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
754 |
-
#: app/skins/single.php:
|
755 |
msgid "Hourly Schedule"
|
756 |
msgstr "Programterv"
|
757 |
|
@@ -823,7 +824,7 @@ msgstr ""
|
|
823 |
|
824 |
#: app/features/events.php:913 app/features/events.php:933
|
825 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
826 |
-
#: app/features/mec.php:
|
827 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
828 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
829 |
msgid "Speakers"
|
@@ -1205,7 +1206,7 @@ msgstr ""
|
|
1205 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1206 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1207 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1208 |
-
#: app/skins/single.php:
|
1209 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1210 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1211 |
msgid "Location"
|
@@ -1375,14 +1376,14 @@ msgid "Remove Image"
|
|
1375 |
msgstr ""
|
1376 |
|
1377 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1378 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1379 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1380 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1381 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1382 |
msgid "Labels"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1386 |
#: app/features/mec/meta_boxes/filter.php:138
|
1387 |
msgid "Tags"
|
1388 |
msgstr ""
|
@@ -1418,7 +1419,7 @@ msgstr ""
|
|
1418 |
|
1419 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1420 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1421 |
-
#: app/features/mec/notifications.php:
|
1422 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1423 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1424 |
msgid "Import / Export"
|
@@ -1677,15 +1678,15 @@ msgstr ""
|
|
1677 |
#: app/features/ix/export_g_calendar.php:72
|
1678 |
#: app/features/ix/export_g_calendar.php:147
|
1679 |
#: app/features/ix/export_g_calendar.php:164
|
1680 |
-
#: app/features/mec/notifications.php:
|
1681 |
-
#: app/features/mec/notifications.php:
|
1682 |
-
#: app/features/mec/notifications.php:
|
1683 |
-
#: app/features/mec/notifications.php:
|
1684 |
msgid "Add to Google Calendar"
|
1685 |
msgstr "Google Naptárba mentés"
|
1686 |
|
1687 |
#: app/features/ix/export_g_calendar.php:90
|
1688 |
-
#: app/features/mec/notifications.php:
|
1689 |
msgid "Checking ..."
|
1690 |
msgstr ""
|
1691 |
|
@@ -1911,7 +1912,7 @@ msgstr ""
|
|
1911 |
|
1912 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1913 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1914 |
-
#: app/features/mec/notifications.php:
|
1915 |
msgid "Important Note"
|
1916 |
msgstr ""
|
1917 |
|
@@ -2037,7 +2038,7 @@ msgstr ""
|
|
2037 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2038 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2039 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2040 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2041 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2042 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2043 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2051,7 +2052,7 @@ msgstr ""
|
|
2051 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2052 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2053 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2054 |
-
#: app/skins/monthly_view/calendar.php:
|
2055 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2056 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2057 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2079,7 +2080,7 @@ msgstr ""
|
|
2079 |
msgid "Event %s"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2083 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2084 |
#: app/libraries/main.php:4379
|
2085 |
msgid "Locations"
|
@@ -2197,115 +2198,115 @@ msgid ""
|
|
2197 |
"You can select extra locations in addition to main location if you like."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: app/features/mec.php:
|
2201 |
msgid ""
|
2202 |
"Activation faild. Please check your purchase code or license type."
|
2203 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: app/features/mec.php:
|
2207 |
msgid "Troubleshooting"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: app/features/mec.php:
|
2211 |
msgid ""
|
2212 |
"Your options is not in JSON format. Please insert correct options in this "
|
2213 |
"field and try again."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: app/features/mec.php:
|
2217 |
msgid "Your options field can not be empty!"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: app/features/mec.php:
|
2221 |
msgid "Your options imported successfuly."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: app/features/mec.php:
|
2225 |
msgid "MEC - Support"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: app/features/mec.php:
|
2229 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2230 |
-
#: app/features/mec/notifications.php:
|
2231 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2232 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2233 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2234 |
msgid "Support"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: app/features/mec.php:
|
2238 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2239 |
#: app/libraries/main.php:4381
|
2240 |
msgid "Organizers"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: app/features/mec.php:
|
2244 |
#: app/features/mec/dashboard.php:194
|
2245 |
msgid "Shortcodes"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: app/features/mec.php:
|
2249 |
msgid "MEC - Settings"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: app/features/mec.php:
|
2253 |
msgid "MEC - Addons"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: app/features/mec.php:
|
2257 |
msgid "Addons"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: app/features/mec.php:
|
2261 |
msgid "Add Shortcode"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: app/features/mec.php:
|
2265 |
msgid "Add New Shortcode"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: app/features/mec.php:
|
2269 |
msgid "No shortcodes found!"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: app/features/mec.php:
|
2273 |
msgid "All Shortcodes"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: app/features/mec.php:
|
2277 |
msgid "Edit shortcodes"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: app/features/mec.php:
|
2281 |
msgid "No shortcodes found in Trash!"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: app/features/mec.php:
|
2285 |
msgid "Display Options"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: app/features/mec.php:
|
2289 |
msgid "Filter Options"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: app/features/mec.php:
|
2293 |
msgid "Search Form"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: app/features/mec.php:
|
2297 |
msgid "Display content's images as Popup"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: app/features/mec.php:
|
2301 |
msgid "Single Event Display Method"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: app/features/mec.php:
|
2305 |
msgid "Separate Window"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: app/features/mec.php:
|
2309 |
msgid "Modal 1"
|
2310 |
msgstr ""
|
2311 |
|
@@ -2456,10 +2457,10 @@ msgstr ""
|
|
2456 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2457 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2458 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2459 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2460 |
-
#: app/features/mec/notifications.php:
|
2461 |
-
#: app/features/mec/notifications.php:
|
2462 |
-
#: app/features/mec/notifications.php:
|
2463 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2464 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2465 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2474,7 +2475,7 @@ msgid "Save Changes"
|
|
2474 |
msgstr ""
|
2475 |
|
2476 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2477 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2478 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2479 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2480 |
#: app/features/mec/support.php:52
|
@@ -2482,7 +2483,7 @@ msgid "Styling Options"
|
|
2482 |
msgstr ""
|
2483 |
|
2484 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2485 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2486 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2487 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2488 |
#: app/features/mec/support.php:59
|
@@ -2491,21 +2492,21 @@ msgstr ""
|
|
2491 |
|
2492 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2493 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2494 |
-
#: app/features/mec/notifications.php:
|
2495 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2496 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2497 |
msgid "Messages"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2501 |
-
#: app/features/mec/notifications.php:
|
2502 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2503 |
#: app/features/mec/styling.php:375
|
2504 |
msgid "Saved"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2508 |
-
#: app/features/mec/notifications.php:
|
2509 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2510 |
#: app/features/mec/styling.php:376
|
2511 |
msgid "Settings Saved!"
|
@@ -3318,306 +3319,358 @@ msgstr ""
|
|
3318 |
msgid "No Search Options"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3322 |
msgid "Booking Notification"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3326 |
msgid "Booking Verification"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3330 |
#: app/features/mec/settings.php:1409
|
3331 |
msgid "Booking Confirmation"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
3335 |
msgid "Admin Notification"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: app/features/mec/notifications.php:
|
3339 |
-
#: app/libraries/notifications.php:
|
3340 |
msgid "Booking Reminder"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: app/features/mec/notifications.php:
|
3344 |
#: app/features/mec/support-page.php:80
|
3345 |
msgid "New Event"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#: app/features/mec/notifications.php:
|
3349 |
msgid "Enable booking notification"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: app/features/mec/notifications.php:
|
3353 |
msgid "It sends to attendee after booking for notifying him/her."
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: app/features/mec/notifications.php:
|
3357 |
-
#: app/features/mec/notifications.php:
|
3358 |
-
#: app/features/mec/notifications.php:
|
3359 |
-
#: app/features/mec/notifications.php:
|
3360 |
-
#: app/features/mec/notifications.php:
|
3361 |
-
#: app/features/mec/notifications.php:
|
|
|
3362 |
msgid "Email Subject"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#: app/features/mec/notifications.php:
|
3366 |
-
#: app/features/mec/notifications.php:
|
3367 |
-
#: app/features/mec/notifications.php:
|
3368 |
-
#: app/features/mec/notifications.php:
|
3369 |
-
#: app/features/mec/notifications.php:
|
3370 |
-
#: app/features/mec/notifications.php:
|
3371 |
-
#: app/features/mec/notifications.php:322
|
3372 |
-
#: app/features/mec/notifications.php:326
|
3373 |
-
#: app/features/mec/notifications.php:385
|
3374 |
-
#: app/features/mec/notifications.php:389
|
3375 |
-
#: app/features/mec/notifications.php:400
|
3376 |
-
#: app/features/mec/notifications.php:457
|
3377 |
-
#: app/features/mec/notifications.php:461
|
3378 |
-
msgid "Custom Recipients"
|
3379 |
-
msgstr ""
|
3380 |
-
|
3381 |
-
#: app/features/mec/notifications.php:164
|
3382 |
-
#: app/features/mec/notifications.php:222
|
3383 |
-
#: app/features/mec/notifications.php:274
|
3384 |
-
#: app/features/mec/notifications.php:327
|
3385 |
-
#: app/features/mec/notifications.php:390
|
3386 |
-
#: app/features/mec/notifications.php:401
|
3387 |
-
#: app/features/mec/notifications.php:462
|
3388 |
-
msgid "Insert comma separated emails for multiple recipients."
|
3389 |
-
msgstr ""
|
3390 |
-
|
3391 |
-
#: app/features/mec/notifications.php:171
|
3392 |
#: app/features/mec/notifications.php:334
|
3393 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#: app/features/mec/notifications.php:
|
3397 |
#: app/features/mec/notifications.php:228
|
3398 |
#: app/features/mec/notifications.php:280
|
3399 |
-
#: app/features/mec/notifications.php:
|
3400 |
-
#: app/features/mec/notifications.php:
|
3401 |
-
#: app/features/mec/notifications.php:
|
3402 |
-
|
|
|
|
|
3403 |
msgstr ""
|
3404 |
|
3405 |
#: app/features/mec/notifications.php:177
|
3406 |
-
#: app/features/mec/notifications.php:
|
3407 |
-
#: app/features/mec/notifications.php:
|
3408 |
-
|
3409 |
-
#: app/features/mec/notifications.php:410
|
3410 |
-
#: app/features/mec/notifications.php:471
|
3411 |
-
msgid "You can use following placeholders"
|
3412 |
-
msgstr ""
|
3413 |
-
|
3414 |
-
#: app/features/mec/notifications.php:179
|
3415 |
-
#: app/features/mec/notifications.php:233
|
3416 |
-
#: app/features/mec/notifications.php:285
|
3417 |
-
#: app/features/mec/notifications.php:342
|
3418 |
-
#: app/features/mec/notifications.php:412
|
3419 |
-
msgid "First name of attendee"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
#: app/features/mec/notifications.php:180
|
3423 |
#: app/features/mec/notifications.php:234
|
3424 |
#: app/features/mec/notifications.php:286
|
3425 |
-
#: app/features/mec/notifications.php:
|
3426 |
-
#: app/features/mec/notifications.php:
|
3427 |
-
|
3428 |
-
|
3429 |
-
|
3430 |
-
#: app/features/mec/notifications.php:181
|
3431 |
-
#: app/features/mec/notifications.php:235
|
3432 |
-
#: app/features/mec/notifications.php:287
|
3433 |
-
#: app/features/mec/notifications.php:344
|
3434 |
-
#: app/features/mec/notifications.php:414
|
3435 |
-
msgid "Email of attendee"
|
3436 |
-
msgstr "A résztvevők email címe"
|
3437 |
-
|
3438 |
-
#: app/features/mec/notifications.php:182
|
3439 |
-
#: app/features/mec/notifications.php:236
|
3440 |
-
#: app/features/mec/notifications.php:288
|
3441 |
-
#: app/features/mec/notifications.php:345
|
3442 |
-
#: app/features/mec/notifications.php:415
|
3443 |
-
msgid "Booked date of event"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
#: app/features/mec/notifications.php:183
|
3447 |
#: app/features/mec/notifications.php:237
|
3448 |
#: app/features/mec/notifications.php:289
|
3449 |
-
#: app/features/mec/notifications.php:
|
3450 |
-
#: app/features/mec/notifications.php:
|
3451 |
-
|
3452 |
-
|
3453 |
-
msgid "
|
3454 |
-
msgstr "Foglalás az eseményre"
|
3455 |
-
|
3456 |
-
#: app/features/mec/notifications.php:184
|
3457 |
-
#: app/features/mec/notifications.php:238
|
3458 |
-
#: app/features/mec/notifications.php:290
|
3459 |
-
#: app/features/mec/notifications.php:347
|
3460 |
-
#: app/features/mec/notifications.php:417
|
3461 |
-
msgid "Booking Price"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
#: app/features/mec/notifications.php:185
|
3465 |
#: app/features/mec/notifications.php:239
|
3466 |
#: app/features/mec/notifications.php:291
|
3467 |
-
#: app/features/mec/notifications.php:
|
3468 |
-
#: app/features/mec/notifications.php:
|
3469 |
-
#: app/features/mec/notifications.php:
|
3470 |
-
msgid "
|
3471 |
msgstr ""
|
3472 |
|
3473 |
#: app/features/mec/notifications.php:186
|
3474 |
#: app/features/mec/notifications.php:240
|
3475 |
#: app/features/mec/notifications.php:292
|
3476 |
-
#: app/features/mec/notifications.php:
|
3477 |
-
#: app/features/mec/notifications.php:
|
3478 |
-
#: app/features/mec/notifications.php:
|
3479 |
-
msgid "
|
3480 |
msgstr ""
|
3481 |
|
3482 |
#: app/features/mec/notifications.php:187
|
3483 |
#: app/features/mec/notifications.php:241
|
3484 |
#: app/features/mec/notifications.php:293
|
3485 |
-
#: app/features/mec/notifications.php:
|
3486 |
-
#: app/features/mec/notifications.php:
|
3487 |
-
#: app/features/mec/notifications.php:
|
3488 |
-
msgid "
|
3489 |
-
msgstr ""
|
3490 |
|
3491 |
#: app/features/mec/notifications.php:188
|
3492 |
#: app/features/mec/notifications.php:242
|
3493 |
#: app/features/mec/notifications.php:294
|
3494 |
-
#: app/features/mec/notifications.php:
|
3495 |
-
#: app/features/mec/notifications.php:
|
3496 |
-
|
|
|
3497 |
msgstr ""
|
3498 |
|
3499 |
#: app/features/mec/notifications.php:189
|
3500 |
#: app/features/mec/notifications.php:243
|
3501 |
#: app/features/mec/notifications.php:295
|
3502 |
-
#: app/features/mec/notifications.php:
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
|
3505 |
-
|
|
|
|
|
|
|
3506 |
|
3507 |
#: app/features/mec/notifications.php:190
|
3508 |
#: app/features/mec/notifications.php:244
|
3509 |
#: app/features/mec/notifications.php:296
|
3510 |
-
#: app/features/mec/notifications.php:
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
|
|
|
3513 |
msgstr ""
|
3514 |
|
3515 |
#: app/features/mec/notifications.php:191
|
3516 |
#: app/features/mec/notifications.php:245
|
3517 |
#: app/features/mec/notifications.php:297
|
3518 |
-
#: app/features/mec/notifications.php:
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
|
|
|
|
|
3521 |
msgstr ""
|
3522 |
|
3523 |
#: app/features/mec/notifications.php:192
|
3524 |
#: app/features/mec/notifications.php:246
|
3525 |
#: app/features/mec/notifications.php:298
|
3526 |
-
#: app/features/mec/notifications.php:
|
3527 |
-
#: app/features/mec/notifications.php:
|
3528 |
-
|
|
|
|
|
3529 |
msgstr ""
|
3530 |
|
3531 |
#: app/features/mec/notifications.php:193
|
3532 |
#: app/features/mec/notifications.php:247
|
3533 |
#: app/features/mec/notifications.php:299
|
3534 |
-
#: app/features/mec/notifications.php:
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
|
|
|
|
|
3537 |
msgstr ""
|
3538 |
|
3539 |
#: app/features/mec/notifications.php:194
|
3540 |
#: app/features/mec/notifications.php:248
|
3541 |
#: app/features/mec/notifications.php:300
|
3542 |
-
#: app/features/mec/notifications.php:
|
3543 |
-
#: app/features/mec/notifications.php:
|
3544 |
-
|
|
|
3545 |
msgstr ""
|
3546 |
|
3547 |
#: app/features/mec/notifications.php:195
|
3548 |
-
#: app/features/mec/notifications.php:
|
3549 |
-
|
|
|
|
|
|
|
|
|
3550 |
msgstr ""
|
3551 |
|
3552 |
#: app/features/mec/notifications.php:196
|
|
|
3553 |
#: app/features/mec/notifications.php:302
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
|
|
|
|
|
3556 |
msgstr ""
|
3557 |
|
3558 |
#: app/features/mec/notifications.php:197
|
3559 |
-
#: app/features/mec/notifications.php:
|
3560 |
#: app/features/mec/notifications.php:303
|
3561 |
-
#: app/features/mec/notifications.php:
|
3562 |
-
#: app/features/mec/notifications.php:
|
3563 |
-
|
|
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: app/features/mec/notifications.php:198
|
3567 |
-
#: app/features/mec/notifications.php:
|
3568 |
#: app/features/mec/notifications.php:304
|
3569 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3570 |
#, fuzzy
|
3571 |
#| msgid "First name"
|
3572 |
msgid "Ticket name"
|
3573 |
msgstr "Keresztnév"
|
3574 |
|
3575 |
-
#: app/features/mec/notifications.php:
|
3576 |
-
#: app/features/mec/notifications.php:
|
3577 |
-
#: app/features/mec/notifications.php:
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
#, fuzzy
|
3580 |
#| msgid "Tickets Price"
|
3581 |
msgid "Ticket time"
|
3582 |
msgstr "Jegy(ek) ára"
|
3583 |
|
3584 |
-
#: app/features/mec/notifications.php:
|
3585 |
-
#: app/features/mec/notifications.php:
|
3586 |
-
#: app/features/mec/notifications.php:
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
msgid "Download ICS file"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: app/features/mec/notifications.php:
|
3592 |
msgid "It sends to attendee email for verifying their booking/email."
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
#: app/features/mec/notifications.php:
|
3596 |
msgid "Email/Booking verification link."
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: app/features/mec/notifications.php:
|
3600 |
msgid "It sends to attendee after confirming the booking by admin."
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
-
#: app/features/mec/notifications.php:
|
3605 |
msgid "Booking cancellation link."
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: app/features/mec/notifications.php:
|
3609 |
-
msgid "
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3613 |
msgid "Admin booking management link."
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3617 |
msgid "Enable booking reminder notification"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: app/features/mec/notifications.php:
|
3621 |
#, php-format
|
3622 |
msgid ""
|
3623 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3625,52 +3678,52 @@ msgid ""
|
|
3625 |
"send the reminders multiple times."
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: app/features/mec/notifications.php:
|
3629 |
msgid "only once per day"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: app/features/mec/notifications.php:
|
3633 |
msgid "Days"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: app/features/mec/notifications.php:
|
3637 |
msgid "Enable new event notification"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: app/features/mec/notifications.php:
|
3641 |
msgid ""
|
3642 |
"It sends after adding a new event from frontend event submission or from "
|
3643 |
"website backend."
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
msgid "Title of event"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: app/features/mec/notifications.php:
|
3651 |
msgid "Link of event"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: app/features/mec/notifications.php:
|
3655 |
msgid "Status of event"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: app/features/mec/notifications.php:
|
3659 |
#: app/features/mec/settings.php:1253
|
3660 |
msgid "Event Note"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
-
#: app/features/mec/notifications.php:
|
3664 |
msgid "Admin events management link."
|
3665 |
msgstr ""
|
3666 |
|
3667 |
-
#: app/features/mec/notifications.php:
|
3668 |
-
#: app/features/mec/notifications.php:
|
3669 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3670 |
msgid "Verified"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: app/features/mec/notifications.php:
|
3674 |
msgid "Please Refresh Page"
|
3675 |
msgstr ""
|
3676 |
|
@@ -4980,7 +5033,7 @@ msgid "eg. https://webnus.net"
|
|
4980 |
msgstr ""
|
4981 |
|
4982 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
4983 |
-
#: app/skins/single.php:
|
4984 |
msgid "Other Organizers"
|
4985 |
msgstr ""
|
4986 |
|
@@ -5109,7 +5162,7 @@ msgstr ""
|
|
5109 |
msgid "day"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5113 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5114 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5115 |
msgid "days"
|
@@ -5119,7 +5172,7 @@ msgstr "Nap"
|
|
5119 |
msgid "hour"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5123 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5124 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5125 |
msgid "hours"
|
@@ -5129,7 +5182,7 @@ msgstr "óra"
|
|
5129 |
msgid "minute"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5133 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5134 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5135 |
msgid "minutes"
|
@@ -5139,7 +5192,7 @@ msgstr "perc"
|
|
5139 |
msgid "second"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5143 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5144 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5145 |
msgid "seconds"
|
@@ -5610,38 +5663,44 @@ msgstr ""
|
|
5610 |
msgid "Your booking is confirmed."
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5614 |
msgid "A new booking is received."
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: app/libraries/notifications.php:
|
5618 |
msgid "A new event is added."
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: app/libraries/notifications.php:
|
5622 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5623 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5624 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5625 |
msgid "All of the day"
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#: app/libraries/notifications.php:
|
5629 |
msgid "to"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
-
#: app/libraries/notifications.php:
|
5633 |
msgid "+ Add to Google Calendar"
|
5634 |
msgstr "+ Google Naptárba mentés"
|
5635 |
|
5636 |
-
#: app/libraries/notifications.php:
|
5637 |
msgid "+ iCal export"
|
5638 |
msgstr "+ iCal Exportálás"
|
5639 |
|
5640 |
-
#: app/libraries/notifications.php:
|
5641 |
msgid "Yes"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: app/libraries/notifications.php:
|
5645 |
msgid "No"
|
5646 |
msgstr ""
|
5647 |
|
@@ -5852,15 +5911,15 @@ msgstr ""
|
|
5852 |
msgid "All"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: app/skins/monthly_view/calendar.php:
|
5856 |
-
#: app/skins/monthly_view/calendar.php:
|
5857 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5858 |
#: app/skins/monthly_view/calendar_clean.php:153
|
5859 |
#, php-format
|
5860 |
msgid "Events for %s"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: app/skins/monthly_view/calendar.php:
|
5864 |
#: app/skins/monthly_view/calendar_clean.php:155
|
5865 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5866 |
msgid "No Events"
|
@@ -5870,19 +5929,19 @@ msgstr ""
|
|
5870 |
msgid "Home"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: app/skins/single.php:
|
5874 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
5875 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
5876 |
msgid "Phone"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: app/skins/single.php:
|
5880 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
5881 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
5882 |
msgid "Website"
|
5883 |
msgstr "Honlap"
|
5884 |
|
5885 |
-
#: app/skins/single.php:
|
5886 |
msgid "Speakers:"
|
5887 |
msgstr ""
|
5888 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:04+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:04+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:348
|
34 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
35 |
msgid "Shortcode"
|
36 |
msgstr ""
|
37 |
|
56 |
msgid "Event Color"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: app/features/contextual.php:55 app/features/mec.php:329
|
60 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
61 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
62 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
261 |
msgid "Event"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
265 |
msgid "Add Event"
|
266 |
msgstr ""
|
267 |
|
309 |
msgstr "kategória"
|
310 |
|
311 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
312 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
313 |
#: app/libraries/main.php:4375
|
314 |
msgid "Categories"
|
315 |
msgstr ""
|
408 |
#: app/features/events.php:410 app/features/events.php:1682
|
409 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
410 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
411 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
422 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
423 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
424 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
425 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
426 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
427 |
#: app/skins/single/modern.php:48
|
540 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
541 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
542 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
543 |
+
#: app/features/mec/notifications.php:170
|
544 |
+
#: app/features/mec/notifications.php:228
|
545 |
+
#: app/features/mec/notifications.php:280
|
546 |
+
#: app/features/mec/notifications.php:339
|
547 |
+
#: app/features/mec/notifications.php:406
|
548 |
+
#: app/features/mec/notifications.php:469
|
549 |
+
#: app/features/mec/notifications.php:480
|
550 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
551 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
552 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
553 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
752 |
msgstr ""
|
753 |
|
754 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
755 |
+
#: app/skins/single.php:379
|
756 |
msgid "Hourly Schedule"
|
757 |
msgstr "Programterv"
|
758 |
|
824 |
|
825 |
#: app/features/events.php:913 app/features/events.php:933
|
826 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
827 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
828 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
829 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
830 |
msgid "Speakers"
|
1206 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1207 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1208 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1209 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1210 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1211 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1212 |
msgid "Location"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1379 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1380 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1381 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1382 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1383 |
msgid "Labels"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1387 |
#: app/features/mec/meta_boxes/filter.php:138
|
1388 |
msgid "Tags"
|
1389 |
msgstr ""
|
1419 |
|
1420 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1421 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1422 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1423 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1424 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1425 |
msgid "Import / Export"
|
1678 |
#: app/features/ix/export_g_calendar.php:72
|
1679 |
#: app/features/ix/export_g_calendar.php:147
|
1680 |
#: app/features/ix/export_g_calendar.php:164
|
1681 |
+
#: app/features/mec/notifications.php:207
|
1682 |
+
#: app/features/mec/notifications.php:260
|
1683 |
+
#: app/features/mec/notifications.php:313
|
1684 |
+
#: app/features/mec/notifications.php:513
|
1685 |
msgid "Add to Google Calendar"
|
1686 |
msgstr "Google Naptárba mentés"
|
1687 |
|
1688 |
#: app/features/ix/export_g_calendar.php:90
|
1689 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1690 |
msgid "Checking ..."
|
1691 |
msgstr ""
|
1692 |
|
1912 |
|
1913 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1914 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1915 |
+
#: app/features/mec/notifications.php:457
|
1916 |
msgid "Important Note"
|
1917 |
msgstr ""
|
1918 |
|
2038 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2039 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2040 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2041 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2042 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2043 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2044 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2052 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2053 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2054 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2055 |
+
#: app/skins/monthly_view/calendar.php:86
|
2056 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2057 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2058 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2080 |
msgid "Event %s"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2084 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2085 |
#: app/libraries/main.php:4379
|
2086 |
msgid "Locations"
|
2198 |
"You can select extra locations in addition to main location if you like."
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: app/features/mec.php:153
|
2202 |
msgid ""
|
2203 |
"Activation faild. Please check your purchase code or license type."
|
2204 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: app/features/mec.php:153
|
2208 |
msgid "Troubleshooting"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: app/features/mec.php:193
|
2212 |
msgid ""
|
2213 |
"Your options is not in JSON format. Please insert correct options in this "
|
2214 |
"field and try again."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: app/features/mec.php:200
|
2218 |
msgid "Your options field can not be empty!"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: app/features/mec.php:206
|
2222 |
msgid "Your options imported successfuly."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: app/features/mec.php:299
|
2226 |
msgid "MEC - Support"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2230 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2231 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2232 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2233 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2234 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2235 |
msgid "Support"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2239 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2240 |
#: app/libraries/main.php:4381
|
2241 |
msgid "Organizers"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2245 |
#: app/features/mec/dashboard.php:194
|
2246 |
msgid "Shortcodes"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: app/features/mec.php:329
|
2250 |
msgid "MEC - Settings"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: app/features/mec.php:330
|
2254 |
msgid "MEC - Addons"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2258 |
msgid "Addons"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: app/features/mec.php:349
|
2262 |
msgid "Add Shortcode"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: app/features/mec.php:350
|
2266 |
msgid "Add New Shortcode"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: app/features/mec.php:351
|
2270 |
msgid "No shortcodes found!"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: app/features/mec.php:352
|
2274 |
msgid "All Shortcodes"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: app/features/mec.php:353
|
2278 |
msgid "Edit shortcodes"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: app/features/mec.php:354
|
2282 |
msgid "No shortcodes found in Trash!"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: app/features/mec.php:402
|
2286 |
msgid "Display Options"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: app/features/mec.php:403
|
2290 |
msgid "Filter Options"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: app/features/mec.php:405
|
2294 |
msgid "Search Form"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: app/features/mec.php:755
|
2298 |
msgid "Display content's images as Popup"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: app/features/mec.php:768
|
2302 |
msgid "Single Event Display Method"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: app/features/mec.php:773
|
2306 |
msgid "Separate Window"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: app/features/mec.php:774
|
2310 |
msgid "Modal 1"
|
2311 |
msgstr ""
|
2312 |
|
2457 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2458 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2459 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2460 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2461 |
+
#: app/features/mec/notifications.php:581
|
2462 |
+
#: app/features/mec/notifications.php:680
|
2463 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2464 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2465 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2466 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2475 |
msgstr ""
|
2476 |
|
2477 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2478 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2479 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2480 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2481 |
#: app/features/mec/support.php:52
|
2483 |
msgstr ""
|
2484 |
|
2485 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2486 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2487 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2488 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2489 |
#: app/features/mec/support.php:59
|
2492 |
|
2493 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2494 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2495 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2496 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2497 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2498 |
msgid "Messages"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2502 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2503 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2504 |
#: app/features/mec/styling.php:375
|
2505 |
msgid "Saved"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2509 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2510 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2511 |
#: app/features/mec/styling.php:376
|
2512 |
msgid "Settings Saved!"
|
3319 |
msgid "No Search Options"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3323 |
msgid "Booking Notification"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3327 |
msgid "Booking Verification"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3331 |
#: app/features/mec/settings.php:1409
|
3332 |
msgid "Booking Confirmation"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3336 |
+
msgid "Booking Cancellation"
|
3337 |
+
msgstr ""
|
3338 |
+
|
3339 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3340 |
msgid "Admin Notification"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3344 |
+
#: app/libraries/notifications.php:354
|
3345 |
msgid "Booking Reminder"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3349 |
#: app/features/mec/support-page.php:80
|
3350 |
msgid "New Event"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: app/features/mec/notifications.php:155
|
3354 |
msgid "Enable booking notification"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
+
#: app/features/mec/notifications.php:159
|
3358 |
msgid "It sends to attendee after booking for notifying him/her."
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: app/features/mec/notifications.php:161
|
3362 |
+
#: app/features/mec/notifications.php:219
|
3363 |
+
#: app/features/mec/notifications.php:271
|
3364 |
+
#: app/features/mec/notifications.php:330
|
3365 |
+
#: app/features/mec/notifications.php:397
|
3366 |
+
#: app/features/mec/notifications.php:460
|
3367 |
+
#: app/features/mec/notifications.php:532
|
3368 |
msgid "Email Subject"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: app/features/mec/notifications.php:165
|
3372 |
+
#: app/features/mec/notifications.php:169
|
3373 |
+
#: app/features/mec/notifications.php:223
|
3374 |
+
#: app/features/mec/notifications.php:227
|
3375 |
+
#: app/features/mec/notifications.php:275
|
3376 |
+
#: app/features/mec/notifications.php:279
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3377 |
#: app/features/mec/notifications.php:334
|
3378 |
+
#: app/features/mec/notifications.php:338
|
3379 |
+
#: app/features/mec/notifications.php:401
|
3380 |
+
#: app/features/mec/notifications.php:405
|
3381 |
+
#: app/features/mec/notifications.php:464
|
3382 |
+
#: app/features/mec/notifications.php:468
|
3383 |
+
#: app/features/mec/notifications.php:479
|
3384 |
+
#: app/features/mec/notifications.php:536
|
3385 |
+
#: app/features/mec/notifications.php:540
|
3386 |
+
msgid "Custom Recipients"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
+
#: app/features/mec/notifications.php:170
|
3390 |
#: app/features/mec/notifications.php:228
|
3391 |
#: app/features/mec/notifications.php:280
|
3392 |
+
#: app/features/mec/notifications.php:339
|
3393 |
+
#: app/features/mec/notifications.php:406
|
3394 |
+
#: app/features/mec/notifications.php:469
|
3395 |
+
#: app/features/mec/notifications.php:480
|
3396 |
+
#: app/features/mec/notifications.php:541
|
3397 |
+
msgid "Insert comma separated emails for multiple recipients."
|
3398 |
msgstr ""
|
3399 |
|
3400 |
#: app/features/mec/notifications.php:177
|
3401 |
+
#: app/features/mec/notifications.php:350
|
3402 |
+
#: app/features/mec/notifications.php:413
|
3403 |
+
msgid "Send the email to event organizer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3404 |
msgstr ""
|
3405 |
|
3406 |
#: app/features/mec/notifications.php:180
|
3407 |
#: app/features/mec/notifications.php:234
|
3408 |
#: app/features/mec/notifications.php:286
|
3409 |
+
#: app/features/mec/notifications.php:357
|
3410 |
+
#: app/features/mec/notifications.php:416
|
3411 |
+
#: app/features/mec/notifications.php:486
|
3412 |
+
#: app/features/mec/notifications.php:547
|
3413 |
+
msgid "Email Content"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3414 |
msgstr ""
|
3415 |
|
3416 |
#: app/features/mec/notifications.php:183
|
3417 |
#: app/features/mec/notifications.php:237
|
3418 |
#: app/features/mec/notifications.php:289
|
3419 |
+
#: app/features/mec/notifications.php:360
|
3420 |
+
#: app/features/mec/notifications.php:419
|
3421 |
+
#: app/features/mec/notifications.php:489
|
3422 |
+
#: app/features/mec/notifications.php:550
|
3423 |
+
msgid "You can use following placeholders"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3424 |
msgstr ""
|
3425 |
|
3426 |
#: app/features/mec/notifications.php:185
|
3427 |
#: app/features/mec/notifications.php:239
|
3428 |
#: app/features/mec/notifications.php:291
|
3429 |
+
#: app/features/mec/notifications.php:362
|
3430 |
+
#: app/features/mec/notifications.php:421
|
3431 |
+
#: app/features/mec/notifications.php:491
|
3432 |
+
msgid "First name of attendee"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
#: app/features/mec/notifications.php:186
|
3436 |
#: app/features/mec/notifications.php:240
|
3437 |
#: app/features/mec/notifications.php:292
|
3438 |
+
#: app/features/mec/notifications.php:363
|
3439 |
+
#: app/features/mec/notifications.php:422
|
3440 |
+
#: app/features/mec/notifications.php:492
|
3441 |
+
msgid "Last name of attendee"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
#: app/features/mec/notifications.php:187
|
3445 |
#: app/features/mec/notifications.php:241
|
3446 |
#: app/features/mec/notifications.php:293
|
3447 |
+
#: app/features/mec/notifications.php:364
|
3448 |
+
#: app/features/mec/notifications.php:423
|
3449 |
+
#: app/features/mec/notifications.php:493
|
3450 |
+
msgid "Email of attendee"
|
3451 |
+
msgstr "A résztvevők email címe"
|
3452 |
|
3453 |
#: app/features/mec/notifications.php:188
|
3454 |
#: app/features/mec/notifications.php:242
|
3455 |
#: app/features/mec/notifications.php:294
|
3456 |
+
#: app/features/mec/notifications.php:365
|
3457 |
+
#: app/features/mec/notifications.php:424
|
3458 |
+
#: app/features/mec/notifications.php:494
|
3459 |
+
msgid "Booked date of event"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
#: app/features/mec/notifications.php:189
|
3463 |
#: app/features/mec/notifications.php:243
|
3464 |
#: app/features/mec/notifications.php:295
|
3465 |
+
#: app/features/mec/notifications.php:366
|
3466 |
+
#: app/features/mec/notifications.php:425
|
3467 |
+
#: app/features/mec/notifications.php:495
|
3468 |
+
#, fuzzy
|
3469 |
+
#| msgid "Book Event"
|
3470 |
+
msgid "Booked time of event"
|
3471 |
+
msgstr "Foglalás az eseményre"
|
3472 |
|
3473 |
#: app/features/mec/notifications.php:190
|
3474 |
#: app/features/mec/notifications.php:244
|
3475 |
#: app/features/mec/notifications.php:296
|
3476 |
+
#: app/features/mec/notifications.php:367
|
3477 |
+
#: app/features/mec/notifications.php:426
|
3478 |
+
#: app/features/mec/notifications.php:496
|
3479 |
+
msgid "Booking Price"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
#: app/features/mec/notifications.php:191
|
3483 |
#: app/features/mec/notifications.php:245
|
3484 |
#: app/features/mec/notifications.php:297
|
3485 |
+
#: app/features/mec/notifications.php:368
|
3486 |
+
#: app/features/mec/notifications.php:427
|
3487 |
+
#: app/features/mec/notifications.php:497
|
3488 |
+
#: app/features/mec/notifications.php:556
|
3489 |
+
msgid "Your website title"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
#: app/features/mec/notifications.php:192
|
3493 |
#: app/features/mec/notifications.php:246
|
3494 |
#: app/features/mec/notifications.php:298
|
3495 |
+
#: app/features/mec/notifications.php:369
|
3496 |
+
#: app/features/mec/notifications.php:428
|
3497 |
+
#: app/features/mec/notifications.php:498
|
3498 |
+
#: app/features/mec/notifications.php:557
|
3499 |
+
msgid "Your website URL"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
#: app/features/mec/notifications.php:193
|
3503 |
#: app/features/mec/notifications.php:247
|
3504 |
#: app/features/mec/notifications.php:299
|
3505 |
+
#: app/features/mec/notifications.php:370
|
3506 |
+
#: app/features/mec/notifications.php:429
|
3507 |
+
#: app/features/mec/notifications.php:499
|
3508 |
+
#: app/features/mec/notifications.php:558
|
3509 |
+
msgid "Your website description"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
#: app/features/mec/notifications.php:194
|
3513 |
#: app/features/mec/notifications.php:248
|
3514 |
#: app/features/mec/notifications.php:300
|
3515 |
+
#: app/features/mec/notifications.php:371
|
3516 |
+
#: app/features/mec/notifications.php:430
|
3517 |
+
#: app/features/mec/notifications.php:500
|
3518 |
+
msgid "Event title"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
#: app/features/mec/notifications.php:195
|
3522 |
+
#: app/features/mec/notifications.php:249
|
3523 |
+
#: app/features/mec/notifications.php:301
|
3524 |
+
#: app/features/mec/notifications.php:372
|
3525 |
+
#: app/features/mec/notifications.php:431
|
3526 |
+
#: app/features/mec/notifications.php:501
|
3527 |
+
msgid "Event link"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
#: app/features/mec/notifications.php:196
|
3531 |
+
#: app/features/mec/notifications.php:250
|
3532 |
#: app/features/mec/notifications.php:302
|
3533 |
+
#: app/features/mec/notifications.php:373
|
3534 |
+
#: app/features/mec/notifications.php:432
|
3535 |
+
#: app/features/mec/notifications.php:502
|
3536 |
+
msgid "Organizer name of booked event"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
#: app/features/mec/notifications.php:197
|
3540 |
+
#: app/features/mec/notifications.php:251
|
3541 |
#: app/features/mec/notifications.php:303
|
3542 |
+
#: app/features/mec/notifications.php:374
|
3543 |
+
#: app/features/mec/notifications.php:433
|
3544 |
+
#: app/features/mec/notifications.php:503
|
3545 |
+
msgid "Organizer tel of booked event"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
#: app/features/mec/notifications.php:198
|
3549 |
+
#: app/features/mec/notifications.php:252
|
3550 |
#: app/features/mec/notifications.php:304
|
3551 |
+
#: app/features/mec/notifications.php:375
|
3552 |
+
#: app/features/mec/notifications.php:434
|
3553 |
+
#: app/features/mec/notifications.php:504
|
3554 |
+
msgid "Organizer email of booked event"
|
3555 |
+
msgstr ""
|
3556 |
+
|
3557 |
+
#: app/features/mec/notifications.php:199
|
3558 |
+
#: app/features/mec/notifications.php:253
|
3559 |
+
#: app/features/mec/notifications.php:305
|
3560 |
+
#: app/features/mec/notifications.php:376
|
3561 |
+
#: app/features/mec/notifications.php:435
|
3562 |
+
#: app/features/mec/notifications.php:505
|
3563 |
+
msgid "Location name of booked event"
|
3564 |
+
msgstr ""
|
3565 |
+
|
3566 |
+
#: app/features/mec/notifications.php:200
|
3567 |
+
#: app/features/mec/notifications.php:254
|
3568 |
+
#: app/features/mec/notifications.php:306
|
3569 |
+
#: app/features/mec/notifications.php:377
|
3570 |
+
#: app/features/mec/notifications.php:436
|
3571 |
+
#: app/features/mec/notifications.php:506
|
3572 |
+
msgid "Location address of booked event"
|
3573 |
+
msgstr ""
|
3574 |
+
|
3575 |
+
#: app/features/mec/notifications.php:201
|
3576 |
+
#: app/features/mec/notifications.php:379
|
3577 |
+
#: app/features/mec/notifications.php:438
|
3578 |
+
msgid "Full Attendee info such as booking form data, name, email etc."
|
3579 |
+
msgstr ""
|
3580 |
+
|
3581 |
+
#: app/features/mec/notifications.php:202
|
3582 |
+
#: app/features/mec/notifications.php:308
|
3583 |
+
#: app/features/mec/notifications.php:508
|
3584 |
+
msgid "Invoice Link"
|
3585 |
+
msgstr ""
|
3586 |
+
|
3587 |
+
#: app/features/mec/notifications.php:203
|
3588 |
+
#: app/features/mec/notifications.php:256
|
3589 |
+
#: app/features/mec/notifications.php:309
|
3590 |
+
#: app/features/mec/notifications.php:380
|
3591 |
+
#: app/features/mec/notifications.php:439
|
3592 |
+
#: app/features/mec/notifications.php:509
|
3593 |
+
msgid "Total Attendees"
|
3594 |
+
msgstr ""
|
3595 |
+
|
3596 |
+
#: app/features/mec/notifications.php:204
|
3597 |
+
#: app/features/mec/notifications.php:257
|
3598 |
+
#: app/features/mec/notifications.php:310
|
3599 |
+
#: app/features/mec/notifications.php:510
|
3600 |
#, fuzzy
|
3601 |
#| msgid "First name"
|
3602 |
msgid "Ticket name"
|
3603 |
msgstr "Keresztnév"
|
3604 |
|
3605 |
+
#: app/features/mec/notifications.php:205
|
3606 |
+
#: app/features/mec/notifications.php:258
|
3607 |
+
#: app/features/mec/notifications.php:311
|
3608 |
+
#: app/features/mec/notifications.php:511
|
3609 |
#, fuzzy
|
3610 |
#| msgid "Tickets Price"
|
3611 |
msgid "Ticket time"
|
3612 |
msgstr "Jegy(ek) ára"
|
3613 |
|
3614 |
+
#: app/features/mec/notifications.php:206
|
3615 |
+
#: app/features/mec/notifications.php:259
|
3616 |
+
#: app/features/mec/notifications.php:312
|
3617 |
+
#: app/features/mec/notifications.php:512
|
3618 |
msgid "Download ICS file"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: app/features/mec/notifications.php:217
|
3622 |
msgid "It sends to attendee email for verifying their booking/email."
|
3623 |
msgstr ""
|
3624 |
|
3625 |
+
#: app/features/mec/notifications.php:255
|
3626 |
msgid "Email/Booking verification link."
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: app/features/mec/notifications.php:269
|
3630 |
msgid "It sends to attendee after confirming the booking by admin."
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: app/features/mec/notifications.php:307
|
3634 |
+
#: app/features/mec/notifications.php:507
|
3635 |
msgid "Booking cancellation link."
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: app/features/mec/notifications.php:324
|
3639 |
+
msgid "Enable cancellation notification"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: app/features/mec/notifications.php:328
|
3643 |
+
msgid ""
|
3644 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3645 |
+
"them."
|
3646 |
+
msgstr ""
|
3647 |
+
|
3648 |
+
#: app/features/mec/notifications.php:346
|
3649 |
+
msgid "Send the email to admin"
|
3650 |
+
msgstr ""
|
3651 |
+
|
3652 |
+
#: app/features/mec/notifications.php:354
|
3653 |
+
msgid "Send the email to booking user"
|
3654 |
+
msgstr ""
|
3655 |
+
|
3656 |
+
#: app/features/mec/notifications.php:378
|
3657 |
+
#: app/features/mec/notifications.php:437
|
3658 |
msgid "Admin booking management link."
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: app/features/mec/notifications.php:391
|
3662 |
+
msgid "Enable admin notification"
|
3663 |
+
msgstr ""
|
3664 |
+
|
3665 |
+
#: app/features/mec/notifications.php:395
|
3666 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3667 |
+
msgstr ""
|
3668 |
+
|
3669 |
+
#: app/features/mec/notifications.php:451
|
3670 |
msgid "Enable booking reminder notification"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
#: app/features/mec/notifications.php:457
|
3674 |
#, php-format
|
3675 |
msgid ""
|
3676 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3678 |
"send the reminders multiple times."
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: app/features/mec/notifications.php:457
|
3682 |
msgid "only once per day"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: app/features/mec/notifications.php:475
|
3686 |
msgid "Days"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: app/features/mec/notifications.php:526
|
3690 |
msgid "Enable new event notification"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: app/features/mec/notifications.php:530
|
3694 |
msgid ""
|
3695 |
"It sends after adding a new event from frontend event submission or from "
|
3696 |
"website backend."
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: app/features/mec/notifications.php:552
|
3700 |
msgid "Title of event"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: app/features/mec/notifications.php:553
|
3704 |
msgid "Link of event"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: app/features/mec/notifications.php:554
|
3708 |
msgid "Status of event"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3712 |
#: app/features/mec/settings.php:1253
|
3713 |
msgid "Event Note"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: app/features/mec/notifications.php:559
|
3717 |
msgid "Admin events management link."
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: app/features/mec/notifications.php:661
|
3721 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3722 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3723 |
msgid "Verified"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3727 |
msgid "Please Refresh Page"
|
3728 |
msgstr ""
|
3729 |
|
5033 |
msgstr ""
|
5034 |
|
5035 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5036 |
+
#: app/skins/single.php:295
|
5037 |
msgid "Other Organizers"
|
5038 |
msgstr ""
|
5039 |
|
5162 |
msgid "day"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5166 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5167 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5168 |
msgid "days"
|
5172 |
msgid "hour"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5176 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5177 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5178 |
msgid "hours"
|
5182 |
msgid "minute"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5186 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5187 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5188 |
msgid "minutes"
|
5192 |
msgid "second"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5196 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5197 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5198 |
msgid "seconds"
|
5663 |
msgid "Your booking is confirmed."
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: app/libraries/notifications.php:252
|
5667 |
+
#, fuzzy
|
5668 |
+
#| msgid "Bookings"
|
5669 |
+
msgid "booking canceled."
|
5670 |
+
msgstr "Foglalások"
|
5671 |
+
|
5672 |
+
#: app/libraries/notifications.php:296
|
5673 |
msgid "A new booking is received."
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: app/libraries/notifications.php:425
|
5677 |
msgid "A new event is added."
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
5681 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5682 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5683 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5684 |
msgid "All of the day"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
+
#: app/libraries/notifications.php:605
|
5688 |
msgid "to"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
5692 |
msgid "+ Add to Google Calendar"
|
5693 |
msgstr "+ Google Naptárba mentés"
|
5694 |
|
5695 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
5696 |
msgid "+ iCal export"
|
5697 |
msgstr "+ iCal Exportálás"
|
5698 |
|
5699 |
+
#: app/libraries/notifications.php:683
|
5700 |
msgid "Yes"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
+
#: app/libraries/notifications.php:683
|
5704 |
msgid "No"
|
5705 |
msgstr ""
|
5706 |
|
5911 |
msgid "All"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
+
#: app/skins/monthly_view/calendar.php:68
|
5915 |
+
#: app/skins/monthly_view/calendar.php:154
|
5916 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5917 |
#: app/skins/monthly_view/calendar_clean.php:153
|
5918 |
#, php-format
|
5919 |
msgid "Events for %s"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
+
#: app/skins/monthly_view/calendar.php:156
|
5923 |
#: app/skins/monthly_view/calendar_clean.php:155
|
5924 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5925 |
msgid "No Events"
|
5929 |
msgid "Home"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
5933 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
5934 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
5935 |
msgid "Phone"
|
5936 |
msgstr ""
|
5937 |
|
5938 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
5939 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
5940 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
5941 |
msgid "Website"
|
5942 |
msgstr "Honlap"
|
5943 |
|
5944 |
+
#: app/skins/single.php:393
|
5945 |
msgid "Speakers:"
|
5946 |
msgstr ""
|
5947 |
|
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-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
67 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
68 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -267,7 +267,7 @@ msgstr "Eventi"
|
|
267 |
msgid "Event"
|
268 |
msgstr "Evento"
|
269 |
|
270 |
-
#: app/features/events.php:136 app/features/mec.php:
|
271 |
msgid "Add Event"
|
272 |
msgstr "Aggiungi Evento"
|
273 |
|
@@ -315,7 +315,7 @@ msgid "Category"
|
|
315 |
msgstr "Categoria"
|
316 |
|
317 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
318 |
-
#: app/features/mec.php:
|
319 |
#: app/libraries/main.php:4375
|
320 |
msgid "Categories"
|
321 |
msgstr "Categorie"
|
@@ -414,7 +414,7 @@ msgstr "Dati dell'ospite"
|
|
414 |
#: app/features/events.php:410 app/features/events.php:1682
|
415 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +426,8 @@ msgstr "Nome"
|
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
428 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
429 |
-
#: app/libraries/notifications.php:
|
430 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
431 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
433 |
#: app/skins/single/modern.php:48
|
@@ -552,13 +552,14 @@ msgstr ""
|
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
555 |
-
#: app/features/mec/notifications.php:
|
556 |
-
#: app/features/mec/notifications.php:
|
557 |
-
#: app/features/mec/notifications.php:
|
558 |
-
#: app/features/mec/notifications.php:
|
559 |
-
#: app/features/mec/notifications.php:
|
560 |
-
#: app/features/mec/notifications.php:
|
561 |
-
#: app/features/mec/notifications.php:
|
|
|
562 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
563 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
564 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -769,7 +770,7 @@ msgid "Day 1"
|
|
769 |
msgstr ""
|
770 |
|
771 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
772 |
-
#: app/skins/single.php:
|
773 |
msgid "Hourly Schedule"
|
774 |
msgstr "Schedula per Ore"
|
775 |
|
@@ -841,7 +842,7 @@ msgstr "Descrizione"
|
|
841 |
|
842 |
#: app/features/events.php:913 app/features/events.php:933
|
843 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
844 |
-
#: app/features/mec.php:
|
845 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
846 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
847 |
msgid "Speakers"
|
@@ -1246,7 +1247,7 @@ msgstr ""
|
|
1246 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1248 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1249 |
-
#: app/skins/single.php:
|
1250 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1251 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1252 |
msgid "Location"
|
@@ -1418,14 +1419,14 @@ msgid "Remove Image"
|
|
1418 |
msgstr "Rimuovi immagine"
|
1419 |
|
1420 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1421 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1422 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1423 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1424 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1425 |
msgid "Labels"
|
1426 |
msgstr "Etichette"
|
1427 |
|
1428 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1429 |
#: app/features/mec/meta_boxes/filter.php:138
|
1430 |
msgid "Tags"
|
1431 |
msgstr "Tag"
|
@@ -1461,7 +1462,7 @@ msgstr "MEC - Importa / Esporta"
|
|
1461 |
|
1462 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1463 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1464 |
-
#: app/features/mec/notifications.php:
|
1465 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1466 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1467 |
msgid "Import / Export"
|
@@ -1744,15 +1745,15 @@ msgstr "Attiva / Disattiva"
|
|
1744 |
#: app/features/ix/export_g_calendar.php:72
|
1745 |
#: app/features/ix/export_g_calendar.php:147
|
1746 |
#: app/features/ix/export_g_calendar.php:164
|
1747 |
-
#: app/features/mec/notifications.php:
|
1748 |
-
#: app/features/mec/notifications.php:
|
1749 |
-
#: app/features/mec/notifications.php:
|
1750 |
-
#: app/features/mec/notifications.php:
|
1751 |
msgid "Add to Google Calendar"
|
1752 |
msgstr "Aggiungi al calendario Google"
|
1753 |
|
1754 |
#: app/features/ix/export_g_calendar.php:90
|
1755 |
-
#: app/features/mec/notifications.php:
|
1756 |
msgid "Checking ..."
|
1757 |
msgstr "Sto controllando..."
|
1758 |
|
@@ -2005,7 +2006,7 @@ msgstr "Importa automaticamente da Google"
|
|
2005 |
|
2006 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2007 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2008 |
-
#: app/features/mec/notifications.php:
|
2009 |
msgid "Important Note"
|
2010 |
msgstr "Nota importante"
|
2011 |
|
@@ -2144,7 +2145,7 @@ msgstr ""
|
|
2144 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2145 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2146 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2147 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2148 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2149 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2150 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2160,7 +2161,7 @@ msgstr "Immagine in evidenza"
|
|
2160 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2161 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2162 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2163 |
-
#: app/skins/monthly_view/calendar.php:
|
2164 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2165 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2166 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2188,7 +2189,7 @@ msgstr "Slug"
|
|
2188 |
msgid "Event %s"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2192 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2193 |
#: app/libraries/main.php:4379
|
2194 |
msgid "Locations"
|
@@ -2308,123 +2309,123 @@ msgid ""
|
|
2308 |
"You can select extra locations in addition to main location if you like."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: app/features/mec.php:
|
2312 |
msgid ""
|
2313 |
"Activation faild. Please check your purchase code or license type."
|
2314 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: app/features/mec.php:
|
2318 |
msgid "Troubleshooting"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: app/features/mec.php:
|
2322 |
msgid ""
|
2323 |
"Your options is not in JSON format. Please insert correct options in this "
|
2324 |
"field and try again."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: app/features/mec.php:
|
2328 |
#, fuzzy
|
2329 |
#| msgid "Your booking cannot verify!"
|
2330 |
msgid "Your options field can not be empty!"
|
2331 |
msgstr "La tua prenotazione non può essere verificata!"
|
2332 |
|
2333 |
-
#: app/features/mec.php:
|
2334 |
#, fuzzy
|
2335 |
#| msgid "Your booking successfully verified."
|
2336 |
msgid "Your options imported successfuly."
|
2337 |
msgstr "La tua prenotazione è stata verificata correttamente."
|
2338 |
|
2339 |
-
#: app/features/mec.php:
|
2340 |
#, fuzzy
|
2341 |
#| msgid "Support"
|
2342 |
msgid "MEC - Support"
|
2343 |
msgstr "Supporto"
|
2344 |
|
2345 |
-
#: app/features/mec.php:
|
2346 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2347 |
-
#: app/features/mec/notifications.php:
|
2348 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2349 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2350 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2351 |
msgid "Support"
|
2352 |
msgstr "Supporto"
|
2353 |
|
2354 |
-
#: app/features/mec.php:
|
2355 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2356 |
#: app/libraries/main.php:4381
|
2357 |
msgid "Organizers"
|
2358 |
msgstr "Organizzatori"
|
2359 |
|
2360 |
-
#: app/features/mec.php:
|
2361 |
#: app/features/mec/dashboard.php:194
|
2362 |
msgid "Shortcodes"
|
2363 |
msgstr "Shortcode"
|
2364 |
|
2365 |
-
#: app/features/mec.php:
|
2366 |
msgid "MEC - Settings"
|
2367 |
msgstr "Impostazioni Calendario"
|
2368 |
|
2369 |
-
#: app/features/mec.php:
|
2370 |
#, fuzzy
|
2371 |
#| msgid "MEC - Settings"
|
2372 |
msgid "MEC - Addons"
|
2373 |
msgstr "Impostazioni Calendario"
|
2374 |
|
2375 |
-
#: app/features/mec.php:
|
2376 |
msgid "Addons"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: app/features/mec.php:
|
2380 |
msgid "Add Shortcode"
|
2381 |
msgstr "Aggiungi Shortcode"
|
2382 |
|
2383 |
-
#: app/features/mec.php:
|
2384 |
msgid "Add New Shortcode"
|
2385 |
msgstr "Aggiungi un nuovo Shortcode"
|
2386 |
|
2387 |
-
#: app/features/mec.php:
|
2388 |
msgid "No shortcodes found!"
|
2389 |
msgstr "Nessun shortcode trovato!"
|
2390 |
|
2391 |
-
#: app/features/mec.php:
|
2392 |
msgid "All Shortcodes"
|
2393 |
msgstr "Tutti gli Shortcode"
|
2394 |
|
2395 |
-
#: app/features/mec.php:
|
2396 |
msgid "Edit shortcodes"
|
2397 |
msgstr "Modifica shortcode"
|
2398 |
|
2399 |
-
#: app/features/mec.php:
|
2400 |
msgid "No shortcodes found in Trash!"
|
2401 |
msgstr "Nessun shortcode trovato nel cestino!"
|
2402 |
|
2403 |
-
#: app/features/mec.php:
|
2404 |
msgid "Display Options"
|
2405 |
msgstr "Opzioni display"
|
2406 |
|
2407 |
-
#: app/features/mec.php:
|
2408 |
msgid "Filter Options"
|
2409 |
msgstr "Opzioni filtro"
|
2410 |
|
2411 |
-
#: app/features/mec.php:
|
2412 |
msgid "Search Form"
|
2413 |
msgstr "Casella di ricerca"
|
2414 |
|
2415 |
-
#: app/features/mec.php:
|
2416 |
msgid "Display content's images as Popup"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: app/features/mec.php:
|
2420 |
msgid "Single Event Display Method"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: app/features/mec.php:
|
2424 |
msgid "Separate Window"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: app/features/mec.php:
|
2428 |
msgid "Modal 1"
|
2429 |
msgstr ""
|
2430 |
|
@@ -2585,10 +2586,10 @@ msgstr "Log modifiche"
|
|
2585 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2586 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2587 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2588 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2589 |
-
#: app/features/mec/notifications.php:
|
2590 |
-
#: app/features/mec/notifications.php:
|
2591 |
-
#: app/features/mec/notifications.php:
|
2592 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2593 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2594 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2603,7 +2604,7 @@ msgid "Save Changes"
|
|
2603 |
msgstr "Salva le modifiche"
|
2604 |
|
2605 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2606 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2607 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2608 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2609 |
#: app/features/mec/support.php:52
|
@@ -2611,7 +2612,7 @@ msgid "Styling Options"
|
|
2611 |
msgstr "Opzioni di stile"
|
2612 |
|
2613 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2614 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2615 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2616 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2617 |
#: app/features/mec/support.php:59
|
@@ -2620,21 +2621,21 @@ msgstr "CSS personalizzato"
|
|
2620 |
|
2621 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2622 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2623 |
-
#: app/features/mec/notifications.php:
|
2624 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2625 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2626 |
msgid "Messages"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2630 |
-
#: app/features/mec/notifications.php:
|
2631 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2632 |
#: app/features/mec/styling.php:375
|
2633 |
msgid "Saved"
|
2634 |
msgstr "Salvato"
|
2635 |
|
2636 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2637 |
-
#: app/features/mec/notifications.php:
|
2638 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2639 |
#: app/features/mec/styling.php:376
|
2640 |
msgid "Settings Saved!"
|
@@ -3467,311 +3468,375 @@ msgstr "Inserisci testo"
|
|
3467 |
msgid "No Search Options"
|
3468 |
msgstr "Nessuna opzione di ricerca"
|
3469 |
|
3470 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3471 |
msgid "Booking Notification"
|
3472 |
msgstr "Notifica Prenotazione"
|
3473 |
|
3474 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3475 |
msgid "Booking Verification"
|
3476 |
msgstr "Verifica prenotazione"
|
3477 |
|
3478 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3479 |
#: app/features/mec/settings.php:1409
|
3480 |
msgid "Booking Confirmation"
|
3481 |
msgstr "Conferma Prenotazione"
|
3482 |
|
3483 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3484 |
msgid "Admin Notification"
|
3485 |
msgstr "Notifica all'amministratore"
|
3486 |
|
3487 |
-
#: app/features/mec/notifications.php:
|
3488 |
-
#: app/libraries/notifications.php:
|
3489 |
msgid "Booking Reminder"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: app/features/mec/notifications.php:
|
3493 |
#: app/features/mec/support-page.php:80
|
3494 |
msgid "New Event"
|
3495 |
msgstr "Nuovo Evento"
|
3496 |
|
3497 |
-
#: app/features/mec/notifications.php:
|
3498 |
msgid "Enable booking notification"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: app/features/mec/notifications.php:
|
3502 |
msgid "It sends to attendee after booking for notifying him/her."
|
3503 |
msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
|
3504 |
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
3507 |
-
#: app/features/mec/notifications.php:
|
3508 |
-
#: app/features/mec/notifications.php:
|
3509 |
-
#: app/features/mec/notifications.php:
|
3510 |
-
#: app/features/mec/notifications.php:
|
|
|
3511 |
msgid "Email Subject"
|
3512 |
msgstr "Oggetto Email"
|
3513 |
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
-
#: app/features/mec/notifications.php:
|
3516 |
-
#: app/features/mec/notifications.php:
|
3517 |
-
#: app/features/mec/notifications.php:
|
3518 |
-
#: app/features/mec/notifications.php:
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
3523 |
-
#: app/features/mec/notifications.php:
|
3524 |
-
#: app/features/mec/notifications.php:
|
3525 |
-
#: app/features/mec/notifications.php:
|
3526 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3527 |
msgid "Custom Recipients"
|
3528 |
msgstr "Altri destinatari"
|
3529 |
|
3530 |
-
#: app/features/mec/notifications.php:
|
3531 |
-
#: app/features/mec/notifications.php:
|
3532 |
-
#: app/features/mec/notifications.php:
|
3533 |
-
#: app/features/mec/notifications.php:
|
3534 |
-
#: app/features/mec/notifications.php:
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
|
|
3537 |
msgid "Insert comma separated emails for multiple recipients."
|
3538 |
msgstr "Puoi inserire più destinatari email separati da virgola."
|
3539 |
|
3540 |
-
#: app/features/mec/notifications.php:
|
3541 |
-
#: app/features/mec/notifications.php:
|
|
|
3542 |
msgid "Send the email to event organizer"
|
3543 |
msgstr "Invia l'email all'organizzatore dell'evento"
|
3544 |
|
3545 |
-
#: app/features/mec/notifications.php:
|
3546 |
-
#: app/features/mec/notifications.php:
|
3547 |
-
#: app/features/mec/notifications.php:
|
3548 |
-
#: app/features/mec/notifications.php:
|
3549 |
-
#: app/features/mec/notifications.php:
|
3550 |
-
#: app/features/mec/notifications.php:
|
|
|
3551 |
msgid "Email Content"
|
3552 |
msgstr "Contenuto Email"
|
3553 |
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
#: app/features/mec/notifications.php:
|
3556 |
-
#: app/features/mec/notifications.php:
|
3557 |
-
#: app/features/mec/notifications.php:
|
3558 |
-
#: app/features/mec/notifications.php:
|
3559 |
-
#: app/features/mec/notifications.php:
|
|
|
3560 |
msgid "You can use following placeholders"
|
3561 |
msgstr "Puoi usare i seguenti placeholder"
|
3562 |
|
3563 |
-
#: app/features/mec/notifications.php:
|
3564 |
-
#: app/features/mec/notifications.php:
|
3565 |
-
#: app/features/mec/notifications.php:
|
3566 |
-
#: app/features/mec/notifications.php:
|
3567 |
-
#: app/features/mec/notifications.php:
|
|
|
3568 |
msgid "First name of attendee"
|
3569 |
msgstr "Nome partecipante"
|
3570 |
|
3571 |
-
#: app/features/mec/notifications.php:
|
3572 |
-
#: app/features/mec/notifications.php:
|
3573 |
-
#: app/features/mec/notifications.php:
|
3574 |
-
#: app/features/mec/notifications.php:
|
3575 |
-
#: app/features/mec/notifications.php:
|
|
|
3576 |
msgid "Last name of attendee"
|
3577 |
msgstr "Cognome partecipante"
|
3578 |
|
3579 |
-
#: app/features/mec/notifications.php:
|
3580 |
-
#: app/features/mec/notifications.php:
|
3581 |
-
#: app/features/mec/notifications.php:
|
3582 |
-
#: app/features/mec/notifications.php:
|
3583 |
-
#: app/features/mec/notifications.php:
|
|
|
3584 |
msgid "Email of attendee"
|
3585 |
msgstr "Email partecipante"
|
3586 |
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
-
#: app/features/mec/notifications.php:
|
3590 |
-
#: app/features/mec/notifications.php:
|
3591 |
-
#: app/features/mec/notifications.php:
|
|
|
3592 |
msgid "Booked date of event"
|
3593 |
msgstr "Data prenotata per l'evento"
|
3594 |
|
3595 |
-
#: app/features/mec/notifications.php:
|
3596 |
-
#: app/features/mec/notifications.php:
|
3597 |
-
#: app/features/mec/notifications.php:
|
3598 |
-
#: app/features/mec/notifications.php:
|
3599 |
-
#: app/features/mec/notifications.php:
|
|
|
3600 |
#, fuzzy
|
3601 |
#| msgid "Booked date of event"
|
3602 |
msgid "Booked time of event"
|
3603 |
msgstr "Data prenotata per l'evento"
|
3604 |
|
3605 |
-
#: app/features/mec/notifications.php:
|
3606 |
-
#: app/features/mec/notifications.php:
|
3607 |
-
#: app/features/mec/notifications.php:
|
3608 |
-
#: app/features/mec/notifications.php:
|
3609 |
-
#: app/features/mec/notifications.php:
|
|
|
3610 |
msgid "Booking Price"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
-
#: app/features/mec/notifications.php:
|
3614 |
-
#: app/features/mec/notifications.php:
|
3615 |
-
#: app/features/mec/notifications.php:
|
3616 |
-
#: app/features/mec/notifications.php:
|
3617 |
-
#: app/features/mec/notifications.php:
|
3618 |
-
#: app/features/mec/notifications.php:
|
|
|
3619 |
msgid "Your website title"
|
3620 |
msgstr "Titolo del tuo sito web"
|
3621 |
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
3624 |
-
#: app/features/mec/notifications.php:
|
3625 |
-
#: app/features/mec/notifications.php:
|
3626 |
-
#: app/features/mec/notifications.php:
|
3627 |
-
#: app/features/mec/notifications.php:
|
|
|
3628 |
msgid "Your website URL"
|
3629 |
msgstr "URL del tuo sito web"
|
3630 |
|
3631 |
-
#: app/features/mec/notifications.php:
|
3632 |
-
#: app/features/mec/notifications.php:
|
3633 |
-
#: app/features/mec/notifications.php:
|
3634 |
-
#: app/features/mec/notifications.php:
|
3635 |
-
#: app/features/mec/notifications.php:
|
3636 |
-
#: app/features/mec/notifications.php:
|
|
|
3637 |
msgid "Your website description"
|
3638 |
msgstr "Descrizione del tuo sito web"
|
3639 |
|
3640 |
-
#: app/features/mec/notifications.php:
|
3641 |
-
#: app/features/mec/notifications.php:
|
3642 |
-
#: app/features/mec/notifications.php:
|
3643 |
-
#: app/features/mec/notifications.php:
|
3644 |
-
#: app/features/mec/notifications.php:
|
|
|
3645 |
msgid "Event title"
|
3646 |
msgstr "Titolo evento"
|
3647 |
|
3648 |
-
#: app/features/mec/notifications.php:
|
3649 |
-
#: app/features/mec/notifications.php:
|
3650 |
-
#: app/features/mec/notifications.php:
|
3651 |
-
#: app/features/mec/notifications.php:
|
3652 |
-
#: app/features/mec/notifications.php:
|
|
|
3653 |
#, fuzzy
|
3654 |
#| msgid "Event Link"
|
3655 |
msgid "Event link"
|
3656 |
msgstr "Link dell'evento"
|
3657 |
|
3658 |
-
#: app/features/mec/notifications.php:
|
3659 |
-
#: app/features/mec/notifications.php:
|
3660 |
-
#: app/features/mec/notifications.php:
|
3661 |
-
#: app/features/mec/notifications.php:
|
3662 |
-
#: app/features/mec/notifications.php:
|
|
|
3663 |
msgid "Organizer name of booked event"
|
3664 |
msgstr "Nome dell'organizzatore che ha prenotato l'evento"
|
3665 |
|
3666 |
-
#: app/features/mec/notifications.php:
|
3667 |
-
#: app/features/mec/notifications.php:
|
3668 |
-
#: app/features/mec/notifications.php:
|
3669 |
-
#: app/features/mec/notifications.php:
|
3670 |
-
#: app/features/mec/notifications.php:
|
|
|
3671 |
msgid "Organizer tel of booked event"
|
3672 |
msgstr "Telefono dell'organizzatore che ha prenotato l'evento"
|
3673 |
|
3674 |
-
#: app/features/mec/notifications.php:
|
3675 |
-
#: app/features/mec/notifications.php:
|
3676 |
-
#: app/features/mec/notifications.php:
|
3677 |
-
#: app/features/mec/notifications.php:
|
3678 |
-
#: app/features/mec/notifications.php:
|
|
|
3679 |
msgid "Organizer email of booked event"
|
3680 |
msgstr "Email dell'organizzatore che ha prenotato l'evento"
|
3681 |
|
3682 |
-
#: app/features/mec/notifications.php:
|
3683 |
-
#: app/features/mec/notifications.php:
|
3684 |
-
#: app/features/mec/notifications.php:
|
3685 |
-
#: app/features/mec/notifications.php:
|
3686 |
-
#: app/features/mec/notifications.php:
|
|
|
3687 |
msgid "Location name of booked event"
|
3688 |
msgstr "Nome del luogo dell'evento prenotato"
|
3689 |
|
3690 |
-
#: app/features/mec/notifications.php:
|
3691 |
-
#: app/features/mec/notifications.php:
|
3692 |
-
#: app/features/mec/notifications.php:
|
3693 |
-
#: app/features/mec/notifications.php:
|
3694 |
-
#: app/features/mec/notifications.php:
|
|
|
3695 |
msgid "Location address of booked event"
|
3696 |
msgstr "Indirizzo del luogo dell'evento prenotato"
|
3697 |
|
3698 |
-
#: app/features/mec/notifications.php:
|
3699 |
-
#: app/features/mec/notifications.php:
|
|
|
3700 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3701 |
msgstr ""
|
3702 |
"Informazioni complete partecipanti (dati di prenotazione, nome, email, etc.)."
|
3703 |
|
3704 |
-
#: app/features/mec/notifications.php:
|
3705 |
-
#: app/features/mec/notifications.php:
|
3706 |
-
#: app/features/mec/notifications.php:
|
3707 |
msgid "Invoice Link"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: app/features/mec/notifications.php:
|
3711 |
-
#: app/features/mec/notifications.php:
|
3712 |
-
#: app/features/mec/notifications.php:
|
3713 |
-
#: app/features/mec/notifications.php:
|
3714 |
-
#: app/features/mec/notifications.php:
|
|
|
3715 |
msgid "Total Attendees"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: app/features/mec/notifications.php:
|
3719 |
-
#: app/features/mec/notifications.php:
|
3720 |
-
#: app/features/mec/notifications.php:
|
3721 |
-
#: app/features/mec/notifications.php:
|
3722 |
#, fuzzy
|
3723 |
#| msgid "Ticket Name"
|
3724 |
msgid "Ticket name"
|
3725 |
msgstr "Nome biglietto/ticket"
|
3726 |
|
3727 |
-
#: app/features/mec/notifications.php:
|
3728 |
-
#: app/features/mec/notifications.php:
|
3729 |
-
#: app/features/mec/notifications.php:
|
3730 |
-
#: app/features/mec/notifications.php:
|
3731 |
#, fuzzy
|
3732 |
#| msgid "Ticket Name"
|
3733 |
msgid "Ticket time"
|
3734 |
msgstr "Nome biglietto/ticket"
|
3735 |
|
3736 |
-
#: app/features/mec/notifications.php:
|
3737 |
-
#: app/features/mec/notifications.php:
|
3738 |
-
#: app/features/mec/notifications.php:
|
3739 |
-
#: app/features/mec/notifications.php:
|
3740 |
msgid "Download ICS file"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
-
#: app/features/mec/notifications.php:
|
3744 |
msgid "It sends to attendee email for verifying their booking/email."
|
3745 |
msgstr "Invia email ai partecipanti per verificare le loro prenotazioni/email."
|
3746 |
|
3747 |
-
#: app/features/mec/notifications.php:
|
3748 |
msgid "Email/Booking verification link."
|
3749 |
msgstr "Link di verifica Email/Prenotazione."
|
3750 |
|
3751 |
-
#: app/features/mec/notifications.php:
|
3752 |
msgid "It sends to attendee after confirming the booking by admin."
|
3753 |
msgstr ""
|
3754 |
"Invia ai partecipanti dopo conferma della prenotazione da parte "
|
3755 |
"dell'amministratore."
|
3756 |
|
3757 |
-
#: app/features/mec/notifications.php:
|
3758 |
-
#: app/features/mec/notifications.php:
|
3759 |
msgid "Booking cancellation link."
|
3760 |
msgstr "Link per la cancellazione della prenotazione."
|
3761 |
|
3762 |
-
#: app/features/mec/notifications.php:
|
3763 |
-
|
3764 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3765 |
|
3766 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3767 |
msgid "Admin booking management link."
|
3768 |
msgstr "Link amministratore gestione prenotazioni."
|
3769 |
|
3770 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3771 |
msgid "Enable booking reminder notification"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: app/features/mec/notifications.php:
|
3775 |
#, php-format
|
3776 |
msgid ""
|
3777 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3779,54 +3844,54 @@ msgid ""
|
|
3779 |
"send the reminders multiple times."
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: app/features/mec/notifications.php:
|
3783 |
msgid "only once per day"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: app/features/mec/notifications.php:
|
3787 |
msgid "Days"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: app/features/mec/notifications.php:
|
3791 |
msgid "Enable new event notification"
|
3792 |
msgstr "Attiva notifica nuovo evento"
|
3793 |
|
3794 |
-
#: app/features/mec/notifications.php:
|
3795 |
msgid ""
|
3796 |
"It sends after adding a new event from frontend event submission or from "
|
3797 |
"website backend."
|
3798 |
msgstr "Invia dopo l'inserimento di un nuovo evento da frontend o da backend."
|
3799 |
|
3800 |
-
#: app/features/mec/notifications.php:
|
3801 |
msgid "Title of event"
|
3802 |
msgstr "Titolo dell'evento"
|
3803 |
|
3804 |
-
#: app/features/mec/notifications.php:
|
3805 |
#, fuzzy
|
3806 |
#| msgid "Title of event"
|
3807 |
msgid "Link of event"
|
3808 |
msgstr "Titolo dell'evento"
|
3809 |
|
3810 |
-
#: app/features/mec/notifications.php:
|
3811 |
msgid "Status of event"
|
3812 |
msgstr "Stato dell'evento"
|
3813 |
|
3814 |
-
#: app/features/mec/notifications.php:
|
3815 |
#: app/features/mec/settings.php:1253
|
3816 |
msgid "Event Note"
|
3817 |
msgstr "Note dell'evento"
|
3818 |
|
3819 |
-
#: app/features/mec/notifications.php:
|
3820 |
msgid "Admin events management link."
|
3821 |
msgstr "Link amministratore gestione eventi."
|
3822 |
|
3823 |
-
#: app/features/mec/notifications.php:
|
3824 |
-
#: app/features/mec/notifications.php:
|
3825 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3826 |
msgid "Verified"
|
3827 |
msgstr "Verificato"
|
3828 |
|
3829 |
-
#: app/features/mec/notifications.php:
|
3830 |
msgid "Please Refresh Page"
|
3831 |
msgstr "Si prega di ricaricare la pagina"
|
3832 |
|
@@ -5289,7 +5354,7 @@ msgid "eg. https://webnus.net"
|
|
5289 |
msgstr "http://webnus.biz"
|
5290 |
|
5291 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5292 |
-
#: app/skins/single.php:
|
5293 |
msgid "Other Organizers"
|
5294 |
msgstr ""
|
5295 |
|
@@ -5433,7 +5498,7 @@ msgstr ""
|
|
5433 |
msgid "day"
|
5434 |
msgstr "giorno"
|
5435 |
|
5436 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5437 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5438 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5439 |
msgid "days"
|
@@ -5443,7 +5508,7 @@ msgstr "giorni"
|
|
5443 |
msgid "hour"
|
5444 |
msgstr "ora"
|
5445 |
|
5446 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5447 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5448 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5449 |
msgid "hours"
|
@@ -5453,7 +5518,7 @@ msgstr "ore"
|
|
5453 |
msgid "minute"
|
5454 |
msgstr "minuto"
|
5455 |
|
5456 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5457 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5458 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5459 |
msgid "minutes"
|
@@ -5463,7 +5528,7 @@ msgstr "minuti"
|
|
5463 |
msgid "second"
|
5464 |
msgstr "secondo"
|
5465 |
|
5466 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5467 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5468 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5469 |
msgid "seconds"
|
@@ -5941,38 +6006,44 @@ msgstr ""
|
|
5941 |
msgid "Your booking is confirmed."
|
5942 |
msgstr "La tua prenotazione è confermata."
|
5943 |
|
5944 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5945 |
msgid "A new booking is received."
|
5946 |
msgstr "Una nuova prenotazione è stata ricevuta."
|
5947 |
|
5948 |
-
#: app/libraries/notifications.php:
|
5949 |
msgid "A new event is added."
|
5950 |
msgstr "Un nuovo evento è stato aggiunto."
|
5951 |
|
5952 |
-
#: app/libraries/notifications.php:
|
5953 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5954 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5955 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5956 |
msgid "All of the day"
|
5957 |
msgstr "Tutti del giorno"
|
5958 |
|
5959 |
-
#: app/libraries/notifications.php:
|
5960 |
msgid "to"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: app/libraries/notifications.php:
|
5964 |
msgid "+ Add to Google Calendar"
|
5965 |
msgstr "+ Aggiungi a Google Calendar"
|
5966 |
|
5967 |
-
#: app/libraries/notifications.php:
|
5968 |
msgid "+ iCal export"
|
5969 |
msgstr "+ Esporta iCal"
|
5970 |
|
5971 |
-
#: app/libraries/notifications.php:
|
5972 |
msgid "Yes"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: app/libraries/notifications.php:
|
5976 |
msgid "No"
|
5977 |
msgstr ""
|
5978 |
|
@@ -6185,15 +6256,15 @@ msgstr "Lista"
|
|
6185 |
msgid "All"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
-
#: app/skins/monthly_view/calendar.php:
|
6189 |
-
#: app/skins/monthly_view/calendar.php:
|
6190 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6191 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6192 |
#, php-format
|
6193 |
msgid "Events for %s"
|
6194 |
msgstr "Eventi di %s"
|
6195 |
|
6196 |
-
#: app/skins/monthly_view/calendar.php:
|
6197 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6198 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6199 |
msgid "No Events"
|
@@ -6203,19 +6274,19 @@ msgstr "Nessun evento"
|
|
6203 |
msgid "Home"
|
6204 |
msgstr ""
|
6205 |
|
6206 |
-
#: app/skins/single.php:
|
6207 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6208 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6209 |
msgid "Phone"
|
6210 |
msgstr "Telefono"
|
6211 |
|
6212 |
-
#: app/skins/single.php:
|
6213 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6214 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6215 |
msgid "Website"
|
6216 |
msgstr "Sito web"
|
6217 |
|
6218 |
-
#: app/skins/single.php:
|
6219 |
#, fuzzy
|
6220 |
#| msgid "No Search Options"
|
6221 |
msgid "Speakers:"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:05+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:05+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:348
|
34 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
66 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
67 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
68 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
267 |
msgid "Event"
|
268 |
msgstr "Evento"
|
269 |
|
270 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
271 |
msgid "Add Event"
|
272 |
msgstr "Aggiungi Evento"
|
273 |
|
315 |
msgstr "Categoria"
|
316 |
|
317 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
318 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
319 |
#: app/libraries/main.php:4375
|
320 |
msgid "Categories"
|
321 |
msgstr "Categorie"
|
414 |
#: app/features/events.php:410 app/features/events.php:1682
|
415 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
417 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
428 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
429 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
430 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
431 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
433 |
#: app/skins/single/modern.php:48
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
555 |
+
#: app/features/mec/notifications.php:170
|
556 |
+
#: app/features/mec/notifications.php:228
|
557 |
+
#: app/features/mec/notifications.php:280
|
558 |
+
#: app/features/mec/notifications.php:339
|
559 |
+
#: app/features/mec/notifications.php:406
|
560 |
+
#: app/features/mec/notifications.php:469
|
561 |
+
#: app/features/mec/notifications.php:480
|
562 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
563 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
564 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
565 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
770 |
msgstr ""
|
771 |
|
772 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
773 |
+
#: app/skins/single.php:379
|
774 |
msgid "Hourly Schedule"
|
775 |
msgstr "Schedula per Ore"
|
776 |
|
842 |
|
843 |
#: app/features/events.php:913 app/features/events.php:933
|
844 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
845 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
846 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
847 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
848 |
msgid "Speakers"
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1248 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1249 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1250 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1251 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1252 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1253 |
msgid "Location"
|
1419 |
msgstr "Rimuovi immagine"
|
1420 |
|
1421 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1422 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1423 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1424 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1425 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1426 |
msgid "Labels"
|
1427 |
msgstr "Etichette"
|
1428 |
|
1429 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1430 |
#: app/features/mec/meta_boxes/filter.php:138
|
1431 |
msgid "Tags"
|
1432 |
msgstr "Tag"
|
1462 |
|
1463 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1464 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1465 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1466 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1467 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1468 |
msgid "Import / Export"
|
1745 |
#: app/features/ix/export_g_calendar.php:72
|
1746 |
#: app/features/ix/export_g_calendar.php:147
|
1747 |
#: app/features/ix/export_g_calendar.php:164
|
1748 |
+
#: app/features/mec/notifications.php:207
|
1749 |
+
#: app/features/mec/notifications.php:260
|
1750 |
+
#: app/features/mec/notifications.php:313
|
1751 |
+
#: app/features/mec/notifications.php:513
|
1752 |
msgid "Add to Google Calendar"
|
1753 |
msgstr "Aggiungi al calendario Google"
|
1754 |
|
1755 |
#: app/features/ix/export_g_calendar.php:90
|
1756 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1757 |
msgid "Checking ..."
|
1758 |
msgstr "Sto controllando..."
|
1759 |
|
2006 |
|
2007 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2008 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2009 |
+
#: app/features/mec/notifications.php:457
|
2010 |
msgid "Important Note"
|
2011 |
msgstr "Nota importante"
|
2012 |
|
2145 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2146 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2147 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2148 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2149 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2150 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2151 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2161 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2162 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2163 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2164 |
+
#: app/skins/monthly_view/calendar.php:86
|
2165 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2166 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2167 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2189 |
msgid "Event %s"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2193 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2194 |
#: app/libraries/main.php:4379
|
2195 |
msgid "Locations"
|
2309 |
"You can select extra locations in addition to main location if you like."
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: app/features/mec.php:153
|
2313 |
msgid ""
|
2314 |
"Activation faild. Please check your purchase code or license type."
|
2315 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: app/features/mec.php:153
|
2319 |
msgid "Troubleshooting"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: app/features/mec.php:193
|
2323 |
msgid ""
|
2324 |
"Your options is not in JSON format. Please insert correct options in this "
|
2325 |
"field and try again."
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: app/features/mec.php:200
|
2329 |
#, fuzzy
|
2330 |
#| msgid "Your booking cannot verify!"
|
2331 |
msgid "Your options field can not be empty!"
|
2332 |
msgstr "La tua prenotazione non può essere verificata!"
|
2333 |
|
2334 |
+
#: app/features/mec.php:206
|
2335 |
#, fuzzy
|
2336 |
#| msgid "Your booking successfully verified."
|
2337 |
msgid "Your options imported successfuly."
|
2338 |
msgstr "La tua prenotazione è stata verificata correttamente."
|
2339 |
|
2340 |
+
#: app/features/mec.php:299
|
2341 |
#, fuzzy
|
2342 |
#| msgid "Support"
|
2343 |
msgid "MEC - Support"
|
2344 |
msgstr "Supporto"
|
2345 |
|
2346 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2347 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2348 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2349 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2350 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2351 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2352 |
msgid "Support"
|
2353 |
msgstr "Supporto"
|
2354 |
|
2355 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2356 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2357 |
#: app/libraries/main.php:4381
|
2358 |
msgid "Organizers"
|
2359 |
msgstr "Organizzatori"
|
2360 |
|
2361 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2362 |
#: app/features/mec/dashboard.php:194
|
2363 |
msgid "Shortcodes"
|
2364 |
msgstr "Shortcode"
|
2365 |
|
2366 |
+
#: app/features/mec.php:329
|
2367 |
msgid "MEC - Settings"
|
2368 |
msgstr "Impostazioni Calendario"
|
2369 |
|
2370 |
+
#: app/features/mec.php:330
|
2371 |
#, fuzzy
|
2372 |
#| msgid "MEC - Settings"
|
2373 |
msgid "MEC - Addons"
|
2374 |
msgstr "Impostazioni Calendario"
|
2375 |
|
2376 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2377 |
msgid "Addons"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: app/features/mec.php:349
|
2381 |
msgid "Add Shortcode"
|
2382 |
msgstr "Aggiungi Shortcode"
|
2383 |
|
2384 |
+
#: app/features/mec.php:350
|
2385 |
msgid "Add New Shortcode"
|
2386 |
msgstr "Aggiungi un nuovo Shortcode"
|
2387 |
|
2388 |
+
#: app/features/mec.php:351
|
2389 |
msgid "No shortcodes found!"
|
2390 |
msgstr "Nessun shortcode trovato!"
|
2391 |
|
2392 |
+
#: app/features/mec.php:352
|
2393 |
msgid "All Shortcodes"
|
2394 |
msgstr "Tutti gli Shortcode"
|
2395 |
|
2396 |
+
#: app/features/mec.php:353
|
2397 |
msgid "Edit shortcodes"
|
2398 |
msgstr "Modifica shortcode"
|
2399 |
|
2400 |
+
#: app/features/mec.php:354
|
2401 |
msgid "No shortcodes found in Trash!"
|
2402 |
msgstr "Nessun shortcode trovato nel cestino!"
|
2403 |
|
2404 |
+
#: app/features/mec.php:402
|
2405 |
msgid "Display Options"
|
2406 |
msgstr "Opzioni display"
|
2407 |
|
2408 |
+
#: app/features/mec.php:403
|
2409 |
msgid "Filter Options"
|
2410 |
msgstr "Opzioni filtro"
|
2411 |
|
2412 |
+
#: app/features/mec.php:405
|
2413 |
msgid "Search Form"
|
2414 |
msgstr "Casella di ricerca"
|
2415 |
|
2416 |
+
#: app/features/mec.php:755
|
2417 |
msgid "Display content's images as Popup"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: app/features/mec.php:768
|
2421 |
msgid "Single Event Display Method"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: app/features/mec.php:773
|
2425 |
msgid "Separate Window"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: app/features/mec.php:774
|
2429 |
msgid "Modal 1"
|
2430 |
msgstr ""
|
2431 |
|
2586 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2587 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2588 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2589 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2590 |
+
#: app/features/mec/notifications.php:581
|
2591 |
+
#: app/features/mec/notifications.php:680
|
2592 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2593 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2594 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2595 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2604 |
msgstr "Salva le modifiche"
|
2605 |
|
2606 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2607 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2608 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2609 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2610 |
#: app/features/mec/support.php:52
|
2612 |
msgstr "Opzioni di stile"
|
2613 |
|
2614 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2615 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2616 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2617 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2618 |
#: app/features/mec/support.php:59
|
2621 |
|
2622 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2623 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2624 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2625 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2626 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2627 |
msgid "Messages"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2631 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2632 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2633 |
#: app/features/mec/styling.php:375
|
2634 |
msgid "Saved"
|
2635 |
msgstr "Salvato"
|
2636 |
|
2637 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2638 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2639 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2640 |
#: app/features/mec/styling.php:376
|
2641 |
msgid "Settings Saved!"
|
3468 |
msgid "No Search Options"
|
3469 |
msgstr "Nessuna opzione di ricerca"
|
3470 |
|
3471 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3472 |
msgid "Booking Notification"
|
3473 |
msgstr "Notifica Prenotazione"
|
3474 |
|
3475 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3476 |
msgid "Booking Verification"
|
3477 |
msgstr "Verifica prenotazione"
|
3478 |
|
3479 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3480 |
#: app/features/mec/settings.php:1409
|
3481 |
msgid "Booking Confirmation"
|
3482 |
msgstr "Conferma Prenotazione"
|
3483 |
|
3484 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3485 |
+
#, fuzzy
|
3486 |
+
#| msgid "Booking cancellation link."
|
3487 |
+
msgid "Booking Cancellation"
|
3488 |
+
msgstr "Link per la cancellazione della prenotazione."
|
3489 |
+
|
3490 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3491 |
msgid "Admin Notification"
|
3492 |
msgstr "Notifica all'amministratore"
|
3493 |
|
3494 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3495 |
+
#: app/libraries/notifications.php:354
|
3496 |
msgid "Booking Reminder"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3500 |
#: app/features/mec/support-page.php:80
|
3501 |
msgid "New Event"
|
3502 |
msgstr "Nuovo Evento"
|
3503 |
|
3504 |
+
#: app/features/mec/notifications.php:155
|
3505 |
msgid "Enable booking notification"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: app/features/mec/notifications.php:159
|
3509 |
msgid "It sends to attendee after booking for notifying him/her."
|
3510 |
msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
|
3511 |
|
3512 |
+
#: app/features/mec/notifications.php:161
|
3513 |
+
#: app/features/mec/notifications.php:219
|
3514 |
+
#: app/features/mec/notifications.php:271
|
3515 |
+
#: app/features/mec/notifications.php:330
|
3516 |
+
#: app/features/mec/notifications.php:397
|
3517 |
+
#: app/features/mec/notifications.php:460
|
3518 |
+
#: app/features/mec/notifications.php:532
|
3519 |
msgid "Email Subject"
|
3520 |
msgstr "Oggetto Email"
|
3521 |
|
3522 |
+
#: app/features/mec/notifications.php:165
|
3523 |
+
#: app/features/mec/notifications.php:169
|
3524 |
+
#: app/features/mec/notifications.php:223
|
3525 |
+
#: app/features/mec/notifications.php:227
|
3526 |
+
#: app/features/mec/notifications.php:275
|
3527 |
+
#: app/features/mec/notifications.php:279
|
3528 |
+
#: app/features/mec/notifications.php:334
|
3529 |
+
#: app/features/mec/notifications.php:338
|
3530 |
+
#: app/features/mec/notifications.php:401
|
3531 |
+
#: app/features/mec/notifications.php:405
|
3532 |
+
#: app/features/mec/notifications.php:464
|
3533 |
+
#: app/features/mec/notifications.php:468
|
3534 |
+
#: app/features/mec/notifications.php:479
|
3535 |
+
#: app/features/mec/notifications.php:536
|
3536 |
+
#: app/features/mec/notifications.php:540
|
3537 |
msgid "Custom Recipients"
|
3538 |
msgstr "Altri destinatari"
|
3539 |
|
3540 |
+
#: app/features/mec/notifications.php:170
|
3541 |
+
#: app/features/mec/notifications.php:228
|
3542 |
+
#: app/features/mec/notifications.php:280
|
3543 |
+
#: app/features/mec/notifications.php:339
|
3544 |
+
#: app/features/mec/notifications.php:406
|
3545 |
+
#: app/features/mec/notifications.php:469
|
3546 |
+
#: app/features/mec/notifications.php:480
|
3547 |
+
#: app/features/mec/notifications.php:541
|
3548 |
msgid "Insert comma separated emails for multiple recipients."
|
3549 |
msgstr "Puoi inserire più destinatari email separati da virgola."
|
3550 |
|
3551 |
+
#: app/features/mec/notifications.php:177
|
3552 |
+
#: app/features/mec/notifications.php:350
|
3553 |
+
#: app/features/mec/notifications.php:413
|
3554 |
msgid "Send the email to event organizer"
|
3555 |
msgstr "Invia l'email all'organizzatore dell'evento"
|
3556 |
|
3557 |
+
#: app/features/mec/notifications.php:180
|
3558 |
+
#: app/features/mec/notifications.php:234
|
3559 |
+
#: app/features/mec/notifications.php:286
|
3560 |
+
#: app/features/mec/notifications.php:357
|
3561 |
+
#: app/features/mec/notifications.php:416
|
3562 |
+
#: app/features/mec/notifications.php:486
|
3563 |
+
#: app/features/mec/notifications.php:547
|
3564 |
msgid "Email Content"
|
3565 |
msgstr "Contenuto Email"
|
3566 |
|
3567 |
+
#: app/features/mec/notifications.php:183
|
3568 |
+
#: app/features/mec/notifications.php:237
|
3569 |
+
#: app/features/mec/notifications.php:289
|
3570 |
+
#: app/features/mec/notifications.php:360
|
3571 |
+
#: app/features/mec/notifications.php:419
|
3572 |
+
#: app/features/mec/notifications.php:489
|
3573 |
+
#: app/features/mec/notifications.php:550
|
3574 |
msgid "You can use following placeholders"
|
3575 |
msgstr "Puoi usare i seguenti placeholder"
|
3576 |
|
3577 |
+
#: app/features/mec/notifications.php:185
|
3578 |
+
#: app/features/mec/notifications.php:239
|
3579 |
+
#: app/features/mec/notifications.php:291
|
3580 |
+
#: app/features/mec/notifications.php:362
|
3581 |
+
#: app/features/mec/notifications.php:421
|
3582 |
+
#: app/features/mec/notifications.php:491
|
3583 |
msgid "First name of attendee"
|
3584 |
msgstr "Nome partecipante"
|
3585 |
|
3586 |
+
#: app/features/mec/notifications.php:186
|
3587 |
+
#: app/features/mec/notifications.php:240
|
3588 |
+
#: app/features/mec/notifications.php:292
|
3589 |
+
#: app/features/mec/notifications.php:363
|
3590 |
+
#: app/features/mec/notifications.php:422
|
3591 |
+
#: app/features/mec/notifications.php:492
|
3592 |
msgid "Last name of attendee"
|
3593 |
msgstr "Cognome partecipante"
|
3594 |
|
3595 |
+
#: app/features/mec/notifications.php:187
|
3596 |
+
#: app/features/mec/notifications.php:241
|
3597 |
+
#: app/features/mec/notifications.php:293
|
3598 |
+
#: app/features/mec/notifications.php:364
|
3599 |
+
#: app/features/mec/notifications.php:423
|
3600 |
+
#: app/features/mec/notifications.php:493
|
3601 |
msgid "Email of attendee"
|
3602 |
msgstr "Email partecipante"
|
3603 |
|
3604 |
+
#: app/features/mec/notifications.php:188
|
3605 |
+
#: app/features/mec/notifications.php:242
|
3606 |
+
#: app/features/mec/notifications.php:294
|
3607 |
+
#: app/features/mec/notifications.php:365
|
3608 |
+
#: app/features/mec/notifications.php:424
|
3609 |
+
#: app/features/mec/notifications.php:494
|
3610 |
msgid "Booked date of event"
|
3611 |
msgstr "Data prenotata per l'evento"
|
3612 |
|
3613 |
+
#: app/features/mec/notifications.php:189
|
3614 |
+
#: app/features/mec/notifications.php:243
|
3615 |
+
#: app/features/mec/notifications.php:295
|
3616 |
+
#: app/features/mec/notifications.php:366
|
3617 |
+
#: app/features/mec/notifications.php:425
|
3618 |
+
#: app/features/mec/notifications.php:495
|
3619 |
#, fuzzy
|
3620 |
#| msgid "Booked date of event"
|
3621 |
msgid "Booked time of event"
|
3622 |
msgstr "Data prenotata per l'evento"
|
3623 |
|
3624 |
+
#: app/features/mec/notifications.php:190
|
3625 |
+
#: app/features/mec/notifications.php:244
|
3626 |
+
#: app/features/mec/notifications.php:296
|
3627 |
+
#: app/features/mec/notifications.php:367
|
3628 |
+
#: app/features/mec/notifications.php:426
|
3629 |
+
#: app/features/mec/notifications.php:496
|
3630 |
msgid "Booking Price"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: app/features/mec/notifications.php:191
|
3634 |
+
#: app/features/mec/notifications.php:245
|
3635 |
+
#: app/features/mec/notifications.php:297
|
3636 |
+
#: app/features/mec/notifications.php:368
|
3637 |
+
#: app/features/mec/notifications.php:427
|
3638 |
+
#: app/features/mec/notifications.php:497
|
3639 |
+
#: app/features/mec/notifications.php:556
|
3640 |
msgid "Your website title"
|
3641 |
msgstr "Titolo del tuo sito web"
|
3642 |
|
3643 |
+
#: app/features/mec/notifications.php:192
|
3644 |
+
#: app/features/mec/notifications.php:246
|
3645 |
+
#: app/features/mec/notifications.php:298
|
3646 |
+
#: app/features/mec/notifications.php:369
|
3647 |
+
#: app/features/mec/notifications.php:428
|
3648 |
+
#: app/features/mec/notifications.php:498
|
3649 |
+
#: app/features/mec/notifications.php:557
|
3650 |
msgid "Your website URL"
|
3651 |
msgstr "URL del tuo sito web"
|
3652 |
|
3653 |
+
#: app/features/mec/notifications.php:193
|
3654 |
+
#: app/features/mec/notifications.php:247
|
3655 |
+
#: app/features/mec/notifications.php:299
|
3656 |
+
#: app/features/mec/notifications.php:370
|
3657 |
+
#: app/features/mec/notifications.php:429
|
3658 |
+
#: app/features/mec/notifications.php:499
|
3659 |
+
#: app/features/mec/notifications.php:558
|
3660 |
msgid "Your website description"
|
3661 |
msgstr "Descrizione del tuo sito web"
|
3662 |
|
3663 |
+
#: app/features/mec/notifications.php:194
|
3664 |
+
#: app/features/mec/notifications.php:248
|
3665 |
+
#: app/features/mec/notifications.php:300
|
3666 |
+
#: app/features/mec/notifications.php:371
|
3667 |
+
#: app/features/mec/notifications.php:430
|
3668 |
+
#: app/features/mec/notifications.php:500
|
3669 |
msgid "Event title"
|
3670 |
msgstr "Titolo evento"
|
3671 |
|
3672 |
+
#: app/features/mec/notifications.php:195
|
3673 |
+
#: app/features/mec/notifications.php:249
|
3674 |
+
#: app/features/mec/notifications.php:301
|
3675 |
+
#: app/features/mec/notifications.php:372
|
3676 |
+
#: app/features/mec/notifications.php:431
|
3677 |
+
#: app/features/mec/notifications.php:501
|
3678 |
#, fuzzy
|
3679 |
#| msgid "Event Link"
|
3680 |
msgid "Event link"
|
3681 |
msgstr "Link dell'evento"
|
3682 |
|
3683 |
+
#: app/features/mec/notifications.php:196
|
3684 |
+
#: app/features/mec/notifications.php:250
|
3685 |
+
#: app/features/mec/notifications.php:302
|
3686 |
+
#: app/features/mec/notifications.php:373
|
3687 |
+
#: app/features/mec/notifications.php:432
|
3688 |
+
#: app/features/mec/notifications.php:502
|
3689 |
msgid "Organizer name of booked event"
|
3690 |
msgstr "Nome dell'organizzatore che ha prenotato l'evento"
|
3691 |
|
3692 |
+
#: app/features/mec/notifications.php:197
|
3693 |
+
#: app/features/mec/notifications.php:251
|
3694 |
+
#: app/features/mec/notifications.php:303
|
3695 |
+
#: app/features/mec/notifications.php:374
|
3696 |
+
#: app/features/mec/notifications.php:433
|
3697 |
+
#: app/features/mec/notifications.php:503
|
3698 |
msgid "Organizer tel of booked event"
|
3699 |
msgstr "Telefono dell'organizzatore che ha prenotato l'evento"
|
3700 |
|
3701 |
+
#: app/features/mec/notifications.php:198
|
3702 |
+
#: app/features/mec/notifications.php:252
|
3703 |
+
#: app/features/mec/notifications.php:304
|
3704 |
+
#: app/features/mec/notifications.php:375
|
3705 |
+
#: app/features/mec/notifications.php:434
|
3706 |
+
#: app/features/mec/notifications.php:504
|
3707 |
msgid "Organizer email of booked event"
|
3708 |
msgstr "Email dell'organizzatore che ha prenotato l'evento"
|
3709 |
|
3710 |
+
#: app/features/mec/notifications.php:199
|
3711 |
+
#: app/features/mec/notifications.php:253
|
3712 |
+
#: app/features/mec/notifications.php:305
|
3713 |
+
#: app/features/mec/notifications.php:376
|
3714 |
+
#: app/features/mec/notifications.php:435
|
3715 |
+
#: app/features/mec/notifications.php:505
|
3716 |
msgid "Location name of booked event"
|
3717 |
msgstr "Nome del luogo dell'evento prenotato"
|
3718 |
|
3719 |
+
#: app/features/mec/notifications.php:200
|
3720 |
+
#: app/features/mec/notifications.php:254
|
3721 |
+
#: app/features/mec/notifications.php:306
|
3722 |
+
#: app/features/mec/notifications.php:377
|
3723 |
+
#: app/features/mec/notifications.php:436
|
3724 |
+
#: app/features/mec/notifications.php:506
|
3725 |
msgid "Location address of booked event"
|
3726 |
msgstr "Indirizzo del luogo dell'evento prenotato"
|
3727 |
|
3728 |
+
#: app/features/mec/notifications.php:201
|
3729 |
+
#: app/features/mec/notifications.php:379
|
3730 |
+
#: app/features/mec/notifications.php:438
|
3731 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3732 |
msgstr ""
|
3733 |
"Informazioni complete partecipanti (dati di prenotazione, nome, email, etc.)."
|
3734 |
|
3735 |
+
#: app/features/mec/notifications.php:202
|
3736 |
+
#: app/features/mec/notifications.php:308
|
3737 |
+
#: app/features/mec/notifications.php:508
|
3738 |
msgid "Invoice Link"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
+
#: app/features/mec/notifications.php:203
|
3742 |
+
#: app/features/mec/notifications.php:256
|
3743 |
+
#: app/features/mec/notifications.php:309
|
3744 |
+
#: app/features/mec/notifications.php:380
|
3745 |
+
#: app/features/mec/notifications.php:439
|
3746 |
+
#: app/features/mec/notifications.php:509
|
3747 |
msgid "Total Attendees"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: app/features/mec/notifications.php:204
|
3751 |
+
#: app/features/mec/notifications.php:257
|
3752 |
+
#: app/features/mec/notifications.php:310
|
3753 |
+
#: app/features/mec/notifications.php:510
|
3754 |
#, fuzzy
|
3755 |
#| msgid "Ticket Name"
|
3756 |
msgid "Ticket name"
|
3757 |
msgstr "Nome biglietto/ticket"
|
3758 |
|
3759 |
+
#: app/features/mec/notifications.php:205
|
3760 |
+
#: app/features/mec/notifications.php:258
|
3761 |
+
#: app/features/mec/notifications.php:311
|
3762 |
+
#: app/features/mec/notifications.php:511
|
3763 |
#, fuzzy
|
3764 |
#| msgid "Ticket Name"
|
3765 |
msgid "Ticket time"
|
3766 |
msgstr "Nome biglietto/ticket"
|
3767 |
|
3768 |
+
#: app/features/mec/notifications.php:206
|
3769 |
+
#: app/features/mec/notifications.php:259
|
3770 |
+
#: app/features/mec/notifications.php:312
|
3771 |
+
#: app/features/mec/notifications.php:512
|
3772 |
msgid "Download ICS file"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: app/features/mec/notifications.php:217
|
3776 |
msgid "It sends to attendee email for verifying their booking/email."
|
3777 |
msgstr "Invia email ai partecipanti per verificare le loro prenotazioni/email."
|
3778 |
|
3779 |
+
#: app/features/mec/notifications.php:255
|
3780 |
msgid "Email/Booking verification link."
|
3781 |
msgstr "Link di verifica Email/Prenotazione."
|
3782 |
|
3783 |
+
#: app/features/mec/notifications.php:269
|
3784 |
msgid "It sends to attendee after confirming the booking by admin."
|
3785 |
msgstr ""
|
3786 |
"Invia ai partecipanti dopo conferma della prenotazione da parte "
|
3787 |
"dell'amministratore."
|
3788 |
|
3789 |
+
#: app/features/mec/notifications.php:307
|
3790 |
+
#: app/features/mec/notifications.php:507
|
3791 |
msgid "Booking cancellation link."
|
3792 |
msgstr "Link per la cancellazione della prenotazione."
|
3793 |
|
3794 |
+
#: app/features/mec/notifications.php:324
|
3795 |
+
#, fuzzy
|
3796 |
+
#| msgid "Enable new event notification"
|
3797 |
+
msgid "Enable cancellation notification"
|
3798 |
+
msgstr "Attiva notifica nuovo evento"
|
3799 |
+
|
3800 |
+
#: app/features/mec/notifications.php:328
|
3801 |
+
#, fuzzy
|
3802 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3803 |
+
msgid ""
|
3804 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3805 |
+
"them."
|
3806 |
+
msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
|
3807 |
|
3808 |
+
#: app/features/mec/notifications.php:346
|
3809 |
+
#, fuzzy
|
3810 |
+
#| msgid "Send the email to event organizer"
|
3811 |
+
msgid "Send the email to admin"
|
3812 |
+
msgstr "Invia l'email all'organizzatore dell'evento"
|
3813 |
+
|
3814 |
+
#: app/features/mec/notifications.php:354
|
3815 |
+
#, fuzzy
|
3816 |
+
#| msgid "Send the email to event organizer"
|
3817 |
+
msgid "Send the email to booking user"
|
3818 |
+
msgstr "Invia l'email all'organizzatore dell'evento"
|
3819 |
+
|
3820 |
+
#: app/features/mec/notifications.php:378
|
3821 |
+
#: app/features/mec/notifications.php:437
|
3822 |
msgid "Admin booking management link."
|
3823 |
msgstr "Link amministratore gestione prenotazioni."
|
3824 |
|
3825 |
+
#: app/features/mec/notifications.php:391
|
3826 |
+
#, fuzzy
|
3827 |
+
#| msgid "Enable new event notification"
|
3828 |
+
msgid "Enable admin notification"
|
3829 |
+
msgstr "Attiva notifica nuovo evento"
|
3830 |
+
|
3831 |
+
#: app/features/mec/notifications.php:395
|
3832 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3833 |
+
msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
|
3834 |
+
|
3835 |
+
#: app/features/mec/notifications.php:451
|
3836 |
msgid "Enable booking reminder notification"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: app/features/mec/notifications.php:457
|
3840 |
#, php-format
|
3841 |
msgid ""
|
3842 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3844 |
"send the reminders multiple times."
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: app/features/mec/notifications.php:457
|
3848 |
msgid "only once per day"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: app/features/mec/notifications.php:475
|
3852 |
msgid "Days"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: app/features/mec/notifications.php:526
|
3856 |
msgid "Enable new event notification"
|
3857 |
msgstr "Attiva notifica nuovo evento"
|
3858 |
|
3859 |
+
#: app/features/mec/notifications.php:530
|
3860 |
msgid ""
|
3861 |
"It sends after adding a new event from frontend event submission or from "
|
3862 |
"website backend."
|
3863 |
msgstr "Invia dopo l'inserimento di un nuovo evento da frontend o da backend."
|
3864 |
|
3865 |
+
#: app/features/mec/notifications.php:552
|
3866 |
msgid "Title of event"
|
3867 |
msgstr "Titolo dell'evento"
|
3868 |
|
3869 |
+
#: app/features/mec/notifications.php:553
|
3870 |
#, fuzzy
|
3871 |
#| msgid "Title of event"
|
3872 |
msgid "Link of event"
|
3873 |
msgstr "Titolo dell'evento"
|
3874 |
|
3875 |
+
#: app/features/mec/notifications.php:554
|
3876 |
msgid "Status of event"
|
3877 |
msgstr "Stato dell'evento"
|
3878 |
|
3879 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3880 |
#: app/features/mec/settings.php:1253
|
3881 |
msgid "Event Note"
|
3882 |
msgstr "Note dell'evento"
|
3883 |
|
3884 |
+
#: app/features/mec/notifications.php:559
|
3885 |
msgid "Admin events management link."
|
3886 |
msgstr "Link amministratore gestione eventi."
|
3887 |
|
3888 |
+
#: app/features/mec/notifications.php:661
|
3889 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3890 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3891 |
msgid "Verified"
|
3892 |
msgstr "Verificato"
|
3893 |
|
3894 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3895 |
msgid "Please Refresh Page"
|
3896 |
msgstr "Si prega di ricaricare la pagina"
|
3897 |
|
5354 |
msgstr "http://webnus.biz"
|
5355 |
|
5356 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5357 |
+
#: app/skins/single.php:295
|
5358 |
msgid "Other Organizers"
|
5359 |
msgstr ""
|
5360 |
|
5498 |
msgid "day"
|
5499 |
msgstr "giorno"
|
5500 |
|
5501 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5502 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5503 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5504 |
msgid "days"
|
5508 |
msgid "hour"
|
5509 |
msgstr "ora"
|
5510 |
|
5511 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5512 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5513 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5514 |
msgid "hours"
|
5518 |
msgid "minute"
|
5519 |
msgstr "minuto"
|
5520 |
|
5521 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5522 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5523 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5524 |
msgid "minutes"
|
5528 |
msgid "second"
|
5529 |
msgstr "secondo"
|
5530 |
|
5531 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5532 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5533 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5534 |
msgid "seconds"
|
6006 |
msgid "Your booking is confirmed."
|
6007 |
msgstr "La tua prenotazione è confermata."
|
6008 |
|
6009 |
+
#: app/libraries/notifications.php:252
|
6010 |
+
#, fuzzy
|
6011 |
+
#| msgid "Your booking cannot be canceled."
|
6012 |
+
msgid "booking canceled."
|
6013 |
+
msgstr "La tua prenotazione non può essere cancellata."
|
6014 |
+
|
6015 |
+
#: app/libraries/notifications.php:296
|
6016 |
msgid "A new booking is received."
|
6017 |
msgstr "Una nuova prenotazione è stata ricevuta."
|
6018 |
|
6019 |
+
#: app/libraries/notifications.php:425
|
6020 |
msgid "A new event is added."
|
6021 |
msgstr "Un nuovo evento è stato aggiunto."
|
6022 |
|
6023 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
6024 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
6025 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
6026 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
6027 |
msgid "All of the day"
|
6028 |
msgstr "Tutti del giorno"
|
6029 |
|
6030 |
+
#: app/libraries/notifications.php:605
|
6031 |
msgid "to"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
6035 |
msgid "+ Add to Google Calendar"
|
6036 |
msgstr "+ Aggiungi a Google Calendar"
|
6037 |
|
6038 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
6039 |
msgid "+ iCal export"
|
6040 |
msgstr "+ Esporta iCal"
|
6041 |
|
6042 |
+
#: app/libraries/notifications.php:683
|
6043 |
msgid "Yes"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
+
#: app/libraries/notifications.php:683
|
6047 |
msgid "No"
|
6048 |
msgstr ""
|
6049 |
|
6256 |
msgid "All"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
+
#: app/skins/monthly_view/calendar.php:68
|
6260 |
+
#: app/skins/monthly_view/calendar.php:154
|
6261 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6262 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6263 |
#, php-format
|
6264 |
msgid "Events for %s"
|
6265 |
msgstr "Eventi di %s"
|
6266 |
|
6267 |
+
#: app/skins/monthly_view/calendar.php:156
|
6268 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6269 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6270 |
msgid "No Events"
|
6274 |
msgid "Home"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6278 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6279 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6280 |
msgid "Phone"
|
6281 |
msgstr "Telefono"
|
6282 |
|
6283 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6284 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6285 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6286 |
msgid "Website"
|
6287 |
msgstr "Sito web"
|
6288 |
|
6289 |
+
#: app/skins/single.php:393
|
6290 |
#, fuzzy
|
6291 |
#| msgid "No Search Options"
|
6292 |
msgid "Speakers:"
|
languages/modern-events-calendar-lite-nb_NO.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-nb_NO.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
61 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
62 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -285,7 +285,7 @@ msgstr "Arrangementer"
|
|
285 |
msgid "Event"
|
286 |
msgstr "Arrangement"
|
287 |
|
288 |
-
#: app/features/events.php:136 app/features/mec.php:
|
289 |
msgid "Add Event"
|
290 |
msgstr "Legg til Arrangement"
|
291 |
|
@@ -333,7 +333,7 @@ msgid "Category"
|
|
333 |
msgstr "Kategori"
|
334 |
|
335 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
336 |
-
#: app/features/mec.php:
|
337 |
#: app/libraries/main.php:4375
|
338 |
msgid "Categories"
|
339 |
msgstr "Kategorier"
|
@@ -432,7 +432,7 @@ msgstr "Gjestedata"
|
|
432 |
#: app/features/events.php:410 app/features/events.php:1682
|
433 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
434 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +444,8 @@ msgstr "Navn"
|
|
444 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
445 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
446 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
447 |
-
#: app/libraries/notifications.php:
|
448 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
449 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
450 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
451 |
#: app/skins/single/modern.php:48
|
@@ -570,13 +570,14 @@ msgstr ""
|
|
570 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
571 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
572 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
573 |
-
#: app/features/mec/notifications.php:
|
574 |
-
#: app/features/mec/notifications.php:
|
575 |
-
#: app/features/mec/notifications.php:
|
576 |
-
#: app/features/mec/notifications.php:
|
577 |
-
#: app/features/mec/notifications.php:
|
578 |
-
#: app/features/mec/notifications.php:
|
579 |
-
#: app/features/mec/notifications.php:
|
|
|
580 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
581 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
582 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -785,7 +786,7 @@ msgid "Day 1"
|
|
785 |
msgstr "Dag 1"
|
786 |
|
787 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
788 |
-
#: app/skins/single.php:
|
789 |
msgid "Hourly Schedule"
|
790 |
msgstr "Timeplan"
|
791 |
|
@@ -859,7 +860,7 @@ msgstr "Beskrivelse"
|
|
859 |
|
860 |
#: app/features/events.php:913 app/features/events.php:933
|
861 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
862 |
-
#: app/features/mec.php:
|
863 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
864 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
865 |
msgid "Speakers"
|
@@ -1261,7 +1262,7 @@ msgstr "arrangører"
|
|
1261 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1262 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1263 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1264 |
-
#: app/skins/single.php:
|
1265 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1266 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1267 |
msgid "Location"
|
@@ -1433,14 +1434,14 @@ msgid "Remove Image"
|
|
1433 |
msgstr "Fjern bilde"
|
1434 |
|
1435 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1436 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1437 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1438 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1439 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1440 |
msgid "Labels"
|
1441 |
msgstr "Etiketter"
|
1442 |
|
1443 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1444 |
#: app/features/mec/meta_boxes/filter.php:138
|
1445 |
msgid "Tags"
|
1446 |
msgstr "Stikkord"
|
@@ -1476,7 +1477,7 @@ msgstr "MEC - Import / Eksport"
|
|
1476 |
|
1477 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1478 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1479 |
-
#: app/features/mec/notifications.php:
|
1480 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1481 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1482 |
msgid "Import / Export"
|
@@ -1744,15 +1745,15 @@ msgstr "Toggle"
|
|
1744 |
#: app/features/ix/export_g_calendar.php:72
|
1745 |
#: app/features/ix/export_g_calendar.php:147
|
1746 |
#: app/features/ix/export_g_calendar.php:164
|
1747 |
-
#: app/features/mec/notifications.php:
|
1748 |
-
#: app/features/mec/notifications.php:
|
1749 |
-
#: app/features/mec/notifications.php:
|
1750 |
-
#: app/features/mec/notifications.php:
|
1751 |
msgid "Add to Google Calendar"
|
1752 |
msgstr "Legg til i Google Kalender"
|
1753 |
|
1754 |
#: app/features/ix/export_g_calendar.php:90
|
1755 |
-
#: app/features/mec/notifications.php:
|
1756 |
msgid "Checking ..."
|
1757 |
msgstr "Sjekker ..."
|
1758 |
|
@@ -1990,7 +1991,7 @@ msgstr "Automatisk Google Import"
|
|
1990 |
|
1991 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1992 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1993 |
-
#: app/features/mec/notifications.php:
|
1994 |
msgid "Important Note"
|
1995 |
msgstr "Viktig merknad"
|
1996 |
|
@@ -2130,7 +2131,7 @@ msgstr "Normal"
|
|
2130 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2131 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2132 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2133 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2134 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2135 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2136 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2144,7 +2145,7 @@ msgstr "Fremhevet"
|
|
2144 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2145 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2146 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2147 |
-
#: app/skins/monthly_view/calendar.php:
|
2148 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2149 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2150 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2172,7 +2173,7 @@ msgstr "Slug"
|
|
2172 |
msgid "Event %s"
|
2173 |
msgstr "Arrangement %s"
|
2174 |
|
2175 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2176 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2177 |
#: app/libraries/main.php:4379
|
2178 |
msgid "Locations"
|
@@ -2296,7 +2297,7 @@ msgid ""
|
|
2296 |
msgstr ""
|
2297 |
"Du kan velge ekstra arrangører i tillegg hovedarrangør hvis du trenger det."
|
2298 |
|
2299 |
-
#: app/features/mec.php:
|
2300 |
msgid ""
|
2301 |
"Activation faild. Please check your purchase code or license type."
|
2302 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
@@ -2304,11 +2305,11 @@ msgstr ""
|
|
2304 |
"Aktivisering feilet. Kontroller kjøpskoden eller lisenstypen.<br><b>Merk: "
|
2305 |
"din kjøpskode skal samsvare med din lisens type.</b>"
|
2306 |
|
2307 |
-
#: app/features/mec.php:
|
2308 |
msgid "Troubleshooting"
|
2309 |
msgstr "Feilsøking"
|
2310 |
|
2311 |
-
#: app/features/mec.php:
|
2312 |
msgid ""
|
2313 |
"Your options is not in JSON format. Please insert correct options in this "
|
2314 |
"field and try again."
|
@@ -2316,101 +2317,101 @@ msgstr ""
|
|
2316 |
"Alternativene er ikke i JSON-format. Sett inn riktige alternativer i dette "
|
2317 |
"feltet, og prøv på nytt."
|
2318 |
|
2319 |
-
#: app/features/mec.php:
|
2320 |
msgid "Your options field can not be empty!"
|
2321 |
msgstr "Ditt valgfeltet kan ikke være tom!"
|
2322 |
|
2323 |
-
#: app/features/mec.php:
|
2324 |
msgid "Your options imported successfuly."
|
2325 |
msgstr "Alternativene er importert."
|
2326 |
|
2327 |
-
#: app/features/mec.php:
|
2328 |
msgid "MEC - Support"
|
2329 |
msgstr "MEC-støtte"
|
2330 |
|
2331 |
-
#: app/features/mec.php:
|
2332 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2333 |
-
#: app/features/mec/notifications.php:
|
2334 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2335 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2336 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2337 |
msgid "Support"
|
2338 |
msgstr "Support"
|
2339 |
|
2340 |
-
#: app/features/mec.php:
|
2341 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2342 |
#: app/libraries/main.php:4381
|
2343 |
msgid "Organizers"
|
2344 |
msgstr "Arrangører"
|
2345 |
|
2346 |
-
#: app/features/mec.php:
|
2347 |
#: app/features/mec/dashboard.php:194
|
2348 |
msgid "Shortcodes"
|
2349 |
msgstr "Shortcodes"
|
2350 |
|
2351 |
-
#: app/features/mec.php:
|
2352 |
msgid "MEC - Settings"
|
2353 |
msgstr "MEC Innstillinger"
|
2354 |
|
2355 |
-
#: app/features/mec.php:
|
2356 |
#, fuzzy
|
2357 |
#| msgid "MEC - Settings"
|
2358 |
msgid "MEC - Addons"
|
2359 |
msgstr "MEC Innstillinger"
|
2360 |
|
2361 |
-
#: app/features/mec.php:
|
2362 |
msgid "Addons"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: app/features/mec.php:
|
2366 |
msgid "Add Shortcode"
|
2367 |
msgstr "Legg til kortkode"
|
2368 |
|
2369 |
-
#: app/features/mec.php:
|
2370 |
msgid "Add New Shortcode"
|
2371 |
msgstr "Legg til ny Kortkode"
|
2372 |
|
2373 |
-
#: app/features/mec.php:
|
2374 |
msgid "No shortcodes found!"
|
2375 |
msgstr "Ingen kortkoder funnet!"
|
2376 |
|
2377 |
-
#: app/features/mec.php:
|
2378 |
msgid "All Shortcodes"
|
2379 |
msgstr "Alle Kortkoder"
|
2380 |
|
2381 |
-
#: app/features/mec.php:
|
2382 |
msgid "Edit shortcodes"
|
2383 |
msgstr "Rediger Kortkoder"
|
2384 |
|
2385 |
-
#: app/features/mec.php:
|
2386 |
msgid "No shortcodes found in Trash!"
|
2387 |
msgstr "Ingen kortkoder funnet i søppel!"
|
2388 |
|
2389 |
-
#: app/features/mec.php:
|
2390 |
msgid "Display Options"
|
2391 |
msgstr "Visningsalternativer"
|
2392 |
|
2393 |
-
#: app/features/mec.php:
|
2394 |
msgid "Filter Options"
|
2395 |
msgstr "Alternativer for filter"
|
2396 |
|
2397 |
-
#: app/features/mec.php:
|
2398 |
msgid "Search Form"
|
2399 |
msgstr "Søkefelt"
|
2400 |
|
2401 |
-
#: app/features/mec.php:
|
2402 |
msgid "Display content's images as Popup"
|
2403 |
msgstr "Vise innholdet i bilder som popup"
|
2404 |
|
2405 |
-
#: app/features/mec.php:
|
2406 |
msgid "Single Event Display Method"
|
2407 |
msgstr "Enkeltarrangement Visnings Metode"
|
2408 |
|
2409 |
-
#: app/features/mec.php:
|
2410 |
msgid "Separate Window"
|
2411 |
msgstr "Separer Vindu"
|
2412 |
|
2413 |
-
#: app/features/mec.php:
|
2414 |
msgid "Modal 1"
|
2415 |
msgstr "Modale 1"
|
2416 |
|
@@ -2572,10 +2573,10 @@ msgstr "Endringslogg"
|
|
2572 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2573 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2574 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2575 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2576 |
-
#: app/features/mec/notifications.php:
|
2577 |
-
#: app/features/mec/notifications.php:
|
2578 |
-
#: app/features/mec/notifications.php:
|
2579 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2580 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2581 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2590,7 +2591,7 @@ msgid "Save Changes"
|
|
2590 |
msgstr "Lagre endringer"
|
2591 |
|
2592 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2593 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2594 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2595 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2596 |
#: app/features/mec/support.php:52
|
@@ -2598,7 +2599,7 @@ msgid "Styling Options"
|
|
2598 |
msgstr "Stylingvalg"
|
2599 |
|
2600 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2601 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2602 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2603 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2604 |
#: app/features/mec/support.php:59
|
@@ -2607,21 +2608,21 @@ msgstr "Egendefinert CSS"
|
|
2607 |
|
2608 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2609 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2610 |
-
#: app/features/mec/notifications.php:
|
2611 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2612 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2613 |
msgid "Messages"
|
2614 |
msgstr "Meldinger"
|
2615 |
|
2616 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2617 |
-
#: app/features/mec/notifications.php:
|
2618 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2619 |
#: app/features/mec/styling.php:375
|
2620 |
msgid "Saved"
|
2621 |
msgstr "Lagret"
|
2622 |
|
2623 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2624 |
-
#: app/features/mec/notifications.php:
|
2625 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2626 |
#: app/features/mec/styling.php:376
|
2627 |
msgid "Settings Saved!"
|
@@ -3453,305 +3454,369 @@ msgstr "Skriv inn tekst"
|
|
3453 |
msgid "No Search Options"
|
3454 |
msgstr "Ingen Søkealternativ"
|
3455 |
|
3456 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3457 |
msgid "Booking Notification"
|
3458 |
msgstr "Booking varsling"
|
3459 |
|
3460 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3461 |
msgid "Booking Verification"
|
3462 |
msgstr "Bestillingsbekreftelse"
|
3463 |
|
3464 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3465 |
#: app/features/mec/settings.php:1409
|
3466 |
msgid "Booking Confirmation"
|
3467 |
msgstr "Bestillingsbekreftelsen"
|
3468 |
|
3469 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3470 |
msgid "Admin Notification"
|
3471 |
msgstr "Admin-varsel"
|
3472 |
|
3473 |
-
#: app/features/mec/notifications.php:
|
3474 |
-
#: app/libraries/notifications.php:
|
3475 |
msgid "Booking Reminder"
|
3476 |
msgstr "Påminnelse angående din bestilling"
|
3477 |
|
3478 |
-
#: app/features/mec/notifications.php:
|
3479 |
#: app/features/mec/support-page.php:80
|
3480 |
msgid "New Event"
|
3481 |
msgstr "Nytt Arrangement"
|
3482 |
|
3483 |
-
#: app/features/mec/notifications.php:
|
3484 |
msgid "Enable booking notification"
|
3485 |
msgstr "Tillatt bestillingsvarsel"
|
3486 |
|
3487 |
-
#: app/features/mec/notifications.php:
|
3488 |
msgid "It sends to attendee after booking for notifying him/her."
|
3489 |
msgstr "Sendes til deltager etter booking for å opplyse han/henne."
|
3490 |
|
3491 |
-
#: app/features/mec/notifications.php:
|
3492 |
-
#: app/features/mec/notifications.php:
|
3493 |
-
#: app/features/mec/notifications.php:
|
3494 |
-
#: app/features/mec/notifications.php:
|
3495 |
-
#: app/features/mec/notifications.php:
|
3496 |
-
#: app/features/mec/notifications.php:
|
|
|
3497 |
msgid "Email Subject"
|
3498 |
msgstr "E-postemne"
|
3499 |
|
3500 |
-
#: app/features/mec/notifications.php:
|
3501 |
-
#: app/features/mec/notifications.php:
|
3502 |
-
#: app/features/mec/notifications.php:
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
#: app/features/mec/notifications.php:
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
3507 |
-
#: app/features/mec/notifications.php:
|
3508 |
-
#: app/features/mec/notifications.php:
|
3509 |
-
#: app/features/mec/notifications.php:
|
3510 |
-
#: app/features/mec/notifications.php:
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3513 |
msgid "Custom Recipients"
|
3514 |
msgstr "Tilpassede Mottagere"
|
3515 |
|
3516 |
-
#: app/features/mec/notifications.php:
|
3517 |
-
#: app/features/mec/notifications.php:
|
3518 |
-
#: app/features/mec/notifications.php:
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
|
|
3523 |
msgid "Insert comma separated emails for multiple recipients."
|
3524 |
msgstr "Sett inn kommaseparerte eposter for flere samtidige mottagere."
|
3525 |
|
3526 |
-
#: app/features/mec/notifications.php:
|
3527 |
-
#: app/features/mec/notifications.php:
|
|
|
3528 |
msgid "Send the email to event organizer"
|
3529 |
msgstr "Send epost til arrangøren"
|
3530 |
|
3531 |
-
#: app/features/mec/notifications.php:
|
3532 |
-
#: app/features/mec/notifications.php:
|
3533 |
-
#: app/features/mec/notifications.php:
|
3534 |
-
#: app/features/mec/notifications.php:
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
|
|
3537 |
msgid "Email Content"
|
3538 |
msgstr "E-postinnhold"
|
3539 |
|
3540 |
-
#: app/features/mec/notifications.php:
|
3541 |
-
#: app/features/mec/notifications.php:
|
3542 |
-
#: app/features/mec/notifications.php:
|
3543 |
-
#: app/features/mec/notifications.php:
|
3544 |
-
#: app/features/mec/notifications.php:
|
3545 |
-
#: app/features/mec/notifications.php:
|
|
|
3546 |
msgid "You can use following placeholders"
|
3547 |
msgstr "Du kan bruke følgende plassholdere"
|
3548 |
|
3549 |
-
#: app/features/mec/notifications.php:
|
3550 |
-
#: app/features/mec/notifications.php:
|
3551 |
-
#: app/features/mec/notifications.php:
|
3552 |
-
#: app/features/mec/notifications.php:
|
3553 |
-
#: app/features/mec/notifications.php:
|
|
|
3554 |
msgid "First name of attendee"
|
3555 |
msgstr "Fornavn til deltaker"
|
3556 |
|
3557 |
-
#: app/features/mec/notifications.php:
|
3558 |
-
#: app/features/mec/notifications.php:
|
3559 |
-
#: app/features/mec/notifications.php:
|
3560 |
-
#: app/features/mec/notifications.php:
|
3561 |
-
#: app/features/mec/notifications.php:
|
|
|
3562 |
msgid "Last name of attendee"
|
3563 |
msgstr "Etternavn på deltaker"
|
3564 |
|
3565 |
-
#: app/features/mec/notifications.php:
|
3566 |
-
#: app/features/mec/notifications.php:
|
3567 |
-
#: app/features/mec/notifications.php:
|
3568 |
-
#: app/features/mec/notifications.php:
|
3569 |
-
#: app/features/mec/notifications.php:
|
|
|
3570 |
msgid "Email of attendee"
|
3571 |
msgstr "E-post til deltaker"
|
3572 |
|
3573 |
-
#: app/features/mec/notifications.php:
|
3574 |
-
#: app/features/mec/notifications.php:
|
3575 |
-
#: app/features/mec/notifications.php:
|
3576 |
-
#: app/features/mec/notifications.php:
|
3577 |
-
#: app/features/mec/notifications.php:
|
|
|
3578 |
msgid "Booked date of event"
|
3579 |
msgstr "Booket dato for arrangement"
|
3580 |
|
3581 |
-
#: app/features/mec/notifications.php:
|
3582 |
-
#: app/features/mec/notifications.php:
|
3583 |
-
#: app/features/mec/notifications.php:
|
3584 |
-
#: app/features/mec/notifications.php:
|
3585 |
-
#: app/features/mec/notifications.php:
|
|
|
3586 |
#, fuzzy
|
3587 |
#| msgid "Booked date of event"
|
3588 |
msgid "Booked time of event"
|
3589 |
msgstr "Booket dato for arrangement"
|
3590 |
|
3591 |
-
#: app/features/mec/notifications.php:
|
3592 |
-
#: app/features/mec/notifications.php:
|
3593 |
-
#: app/features/mec/notifications.php:
|
3594 |
-
#: app/features/mec/notifications.php:
|
3595 |
-
#: app/features/mec/notifications.php:
|
|
|
3596 |
msgid "Booking Price"
|
3597 |
msgstr "Booking Pris"
|
3598 |
|
3599 |
-
#: app/features/mec/notifications.php:
|
3600 |
-
#: app/features/mec/notifications.php:
|
3601 |
-
#: app/features/mec/notifications.php:
|
3602 |
-
#: app/features/mec/notifications.php:
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
-
#: app/features/mec/notifications.php:
|
|
|
3605 |
msgid "Your website title"
|
3606 |
msgstr "Ditt nettstedstittel"
|
3607 |
|
3608 |
-
#: app/features/mec/notifications.php:
|
3609 |
-
#: app/features/mec/notifications.php:
|
3610 |
-
#: app/features/mec/notifications.php:
|
3611 |
-
#: app/features/mec/notifications.php:
|
3612 |
-
#: app/features/mec/notifications.php:
|
3613 |
-
#: app/features/mec/notifications.php:
|
|
|
3614 |
msgid "Your website URL"
|
3615 |
msgstr "Din nettstedsadresse (URL)"
|
3616 |
|
3617 |
-
#: app/features/mec/notifications.php:
|
3618 |
-
#: app/features/mec/notifications.php:
|
3619 |
-
#: app/features/mec/notifications.php:
|
3620 |
-
#: app/features/mec/notifications.php:
|
3621 |
-
#: app/features/mec/notifications.php:
|
3622 |
-
#: app/features/mec/notifications.php:
|
|
|
3623 |
msgid "Your website description"
|
3624 |
msgstr "Din nettstedsbeskrivelse"
|
3625 |
|
3626 |
-
#: app/features/mec/notifications.php:
|
3627 |
-
#: app/features/mec/notifications.php:
|
3628 |
-
#: app/features/mec/notifications.php:
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
-
#: app/features/mec/notifications.php:
|
|
|
3631 |
msgid "Event title"
|
3632 |
msgstr "Arrangementtittel"
|
3633 |
|
3634 |
-
#: app/features/mec/notifications.php:
|
3635 |
-
#: app/features/mec/notifications.php:
|
3636 |
-
#: app/features/mec/notifications.php:
|
3637 |
-
#: app/features/mec/notifications.php:
|
3638 |
-
#: app/features/mec/notifications.php:
|
|
|
3639 |
#, fuzzy
|
3640 |
#| msgid "Event Link"
|
3641 |
msgid "Event link"
|
3642 |
msgstr "Arrangemenslenke"
|
3643 |
|
3644 |
-
#: app/features/mec/notifications.php:
|
3645 |
-
#: app/features/mec/notifications.php:
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
-
#: app/features/mec/notifications.php:
|
3648 |
-
#: app/features/mec/notifications.php:
|
|
|
3649 |
msgid "Organizer name of booked event"
|
3650 |
msgstr "Arrangørnavnet av booket arrangement"
|
3651 |
|
3652 |
-
#: app/features/mec/notifications.php:
|
3653 |
-
#: app/features/mec/notifications.php:
|
3654 |
-
#: app/features/mec/notifications.php:
|
3655 |
-
#: app/features/mec/notifications.php:
|
3656 |
-
#: app/features/mec/notifications.php:
|
|
|
3657 |
msgid "Organizer tel of booked event"
|
3658 |
msgstr "Tlf til arrangør av booket arrangement"
|
3659 |
|
3660 |
-
#: app/features/mec/notifications.php:
|
3661 |
-
#: app/features/mec/notifications.php:
|
3662 |
-
#: app/features/mec/notifications.php:
|
3663 |
-
#: app/features/mec/notifications.php:
|
3664 |
-
#: app/features/mec/notifications.php:
|
|
|
3665 |
msgid "Organizer email of booked event"
|
3666 |
msgstr "E-post til arrangør av booket arrangement"
|
3667 |
|
3668 |
-
#: app/features/mec/notifications.php:
|
3669 |
-
#: app/features/mec/notifications.php:
|
3670 |
-
#: app/features/mec/notifications.php:
|
3671 |
-
#: app/features/mec/notifications.php:
|
3672 |
-
#: app/features/mec/notifications.php:
|
|
|
3673 |
msgid "Location name of booked event"
|
3674 |
msgstr "Stedsnavn til booket arrangement"
|
3675 |
|
3676 |
-
#: app/features/mec/notifications.php:
|
3677 |
-
#: app/features/mec/notifications.php:
|
3678 |
-
#: app/features/mec/notifications.php:
|
3679 |
-
#: app/features/mec/notifications.php:
|
3680 |
-
#: app/features/mec/notifications.php:
|
|
|
3681 |
msgid "Location address of booked event"
|
3682 |
msgstr "Adresse til bestilt arrangement"
|
3683 |
|
3684 |
-
#: app/features/mec/notifications.php:
|
3685 |
-
#: app/features/mec/notifications.php:
|
|
|
3686 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3687 |
msgstr "Full deltager info som booking skjema data, navn, epost osv."
|
3688 |
|
3689 |
-
#: app/features/mec/notifications.php:
|
3690 |
-
#: app/features/mec/notifications.php:
|
3691 |
-
#: app/features/mec/notifications.php:
|
3692 |
msgid "Invoice Link"
|
3693 |
msgstr "Fakturalenke"
|
3694 |
|
3695 |
-
#: app/features/mec/notifications.php:
|
3696 |
-
#: app/features/mec/notifications.php:
|
3697 |
-
#: app/features/mec/notifications.php:
|
3698 |
-
#: app/features/mec/notifications.php:
|
3699 |
-
#: app/features/mec/notifications.php:
|
|
|
3700 |
msgid "Total Attendees"
|
3701 |
msgstr "Antall deltakere"
|
3702 |
|
3703 |
-
#: app/features/mec/notifications.php:
|
3704 |
-
#: app/features/mec/notifications.php:
|
3705 |
-
#: app/features/mec/notifications.php:
|
3706 |
-
#: app/features/mec/notifications.php:
|
3707 |
msgid "Ticket name"
|
3708 |
msgstr "Navn på billett"
|
3709 |
|
3710 |
-
#: app/features/mec/notifications.php:
|
3711 |
-
#: app/features/mec/notifications.php:
|
3712 |
-
#: app/features/mec/notifications.php:
|
3713 |
-
#: app/features/mec/notifications.php:
|
3714 |
msgid "Ticket time"
|
3715 |
msgstr "Billettidspunkt"
|
3716 |
|
3717 |
-
#: app/features/mec/notifications.php:
|
3718 |
-
#: app/features/mec/notifications.php:
|
3719 |
-
#: app/features/mec/notifications.php:
|
3720 |
-
#: app/features/mec/notifications.php:
|
3721 |
msgid "Download ICS file"
|
3722 |
msgstr "Last ned ICS-fil"
|
3723 |
|
3724 |
-
#: app/features/mec/notifications.php:
|
3725 |
msgid "It sends to attendee email for verifying their booking/email."
|
3726 |
msgstr "Send epost til deltagere for å verifisere deres booking/epost."
|
3727 |
|
3728 |
-
#: app/features/mec/notifications.php:
|
3729 |
msgid "Email/Booking verification link."
|
3730 |
msgstr "Epost/Booking bekreftelseslenke"
|
3731 |
|
3732 |
-
#: app/features/mec/notifications.php:
|
3733 |
msgid "It sends to attendee after confirming the booking by admin."
|
3734 |
msgstr "Den sender til deltagere etter bekreftelse bookingen av administrator."
|
3735 |
|
3736 |
-
#: app/features/mec/notifications.php:
|
3737 |
-
#: app/features/mec/notifications.php:
|
3738 |
msgid "Booking cancellation link."
|
3739 |
msgstr "Booking avbestillingskobling."
|
3740 |
|
3741 |
-
#: app/features/mec/notifications.php:
|
3742 |
-
|
3743 |
-
|
3744 |
-
"
|
|
|
3745 |
|
3746 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3747 |
msgid "Admin booking management link."
|
3748 |
msgstr "Lenke til å Administrere booking."
|
3749 |
|
3750 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3751 |
msgid "Enable booking reminder notification"
|
3752 |
msgstr "Aktiver booking påminnelse"
|
3753 |
|
3754 |
-
#: app/features/mec/notifications.php:
|
3755 |
#, php-format
|
3756 |
msgid ""
|
3757 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3762,19 +3827,19 @@ msgstr ""
|
|
3762 |
"sende påmindelser. Vennligst noter at du burde kalle på denne filen %s eller "
|
3763 |
"vill den sende påmindelser flere ganger."
|
3764 |
|
3765 |
-
#: app/features/mec/notifications.php:
|
3766 |
msgid "only once per day"
|
3767 |
msgstr "bare en gang per dag"
|
3768 |
|
3769 |
-
#: app/features/mec/notifications.php:
|
3770 |
msgid "Days"
|
3771 |
msgstr "Dager"
|
3772 |
|
3773 |
-
#: app/features/mec/notifications.php:
|
3774 |
msgid "Enable new event notification"
|
3775 |
msgstr "Aktiver nytt arrangement-varsel"
|
3776 |
|
3777 |
-
#: app/features/mec/notifications.php:
|
3778 |
msgid ""
|
3779 |
"It sends after adding a new event from frontend event submission or from "
|
3780 |
"website backend."
|
@@ -3782,36 +3847,36 @@ msgstr ""
|
|
3782 |
"Sender etter ett nytt arrangement fra event registrering eller fra "
|
3783 |
"nettsidens bakside."
|
3784 |
|
3785 |
-
#: app/features/mec/notifications.php:
|
3786 |
msgid "Title of event"
|
3787 |
msgstr "Tittel på arrangement"
|
3788 |
|
3789 |
-
#: app/features/mec/notifications.php:
|
3790 |
#, fuzzy
|
3791 |
#| msgid "Title of event"
|
3792 |
msgid "Link of event"
|
3793 |
msgstr "Tittel på arrangement"
|
3794 |
|
3795 |
-
#: app/features/mec/notifications.php:
|
3796 |
msgid "Status of event"
|
3797 |
msgstr "Status på arrangement"
|
3798 |
|
3799 |
-
#: app/features/mec/notifications.php:
|
3800 |
#: app/features/mec/settings.php:1253
|
3801 |
msgid "Event Note"
|
3802 |
msgstr "Arrangementsnotat"
|
3803 |
|
3804 |
-
#: app/features/mec/notifications.php:
|
3805 |
msgid "Admin events management link."
|
3806 |
msgstr "Lenge til arrangementsadministrasjon"
|
3807 |
|
3808 |
-
#: app/features/mec/notifications.php:
|
3809 |
-
#: app/features/mec/notifications.php:
|
3810 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3811 |
msgid "Verified"
|
3812 |
msgstr "Verifisert"
|
3813 |
|
3814 |
-
#: app/features/mec/notifications.php:
|
3815 |
msgid "Please Refresh Page"
|
3816 |
msgstr "Vennligst Oppdater Side"
|
3817 |
|
@@ -5233,7 +5298,7 @@ msgid "eg. https://webnus.net"
|
|
5233 |
msgstr "F.eks. https://webnus.net"
|
5234 |
|
5235 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5236 |
-
#: app/skins/single.php:
|
5237 |
msgid "Other Organizers"
|
5238 |
msgstr "Andre Arrangører"
|
5239 |
|
@@ -5361,7 +5426,7 @@ msgstr "Oppgrader"
|
|
5361 |
msgid "day"
|
5362 |
msgstr "dag"
|
5363 |
|
5364 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5365 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5366 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5367 |
msgid "days"
|
@@ -5371,7 +5436,7 @@ msgstr "dager"
|
|
5371 |
msgid "hour"
|
5372 |
msgstr "time"
|
5373 |
|
5374 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5375 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5376 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5377 |
msgid "hours"
|
@@ -5381,7 +5446,7 @@ msgstr "timer"
|
|
5381 |
msgid "minute"
|
5382 |
msgstr "minutt"
|
5383 |
|
5384 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5385 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5386 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5387 |
msgid "minutes"
|
@@ -5391,7 +5456,7 @@ msgstr "minutter"
|
|
5391 |
msgid "second"
|
5392 |
msgstr "sekund"
|
5393 |
|
5394 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5395 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5396 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5397 |
msgid "seconds"
|
@@ -5860,38 +5925,44 @@ msgstr "Din bestilling er mottatt."
|
|
5860 |
msgid "Your booking is confirmed."
|
5861 |
msgstr "Din Bestilling er bekreftet."
|
5862 |
|
5863 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5864 |
msgid "A new booking is received."
|
5865 |
msgstr "En ny bestilling er mottatt."
|
5866 |
|
5867 |
-
#: app/libraries/notifications.php:
|
5868 |
msgid "A new event is added."
|
5869 |
msgstr "Ett nytt arrangement er lagt til."
|
5870 |
|
5871 |
-
#: app/libraries/notifications.php:
|
5872 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5873 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5874 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5875 |
msgid "All of the day"
|
5876 |
msgstr "Hele dagen"
|
5877 |
|
5878 |
-
#: app/libraries/notifications.php:
|
5879 |
msgid "to"
|
5880 |
msgstr "til"
|
5881 |
|
5882 |
-
#: app/libraries/notifications.php:
|
5883 |
msgid "+ Add to Google Calendar"
|
5884 |
msgstr "+ Legg til i Google Kalender"
|
5885 |
|
5886 |
-
#: app/libraries/notifications.php:
|
5887 |
msgid "+ iCal export"
|
5888 |
msgstr "+ iCal eksport"
|
5889 |
|
5890 |
-
#: app/libraries/notifications.php:
|
5891 |
msgid "Yes"
|
5892 |
msgstr "Ja"
|
5893 |
|
5894 |
-
#: app/libraries/notifications.php:
|
5895 |
msgid "No"
|
5896 |
msgstr "Nei"
|
5897 |
|
@@ -6103,15 +6174,15 @@ msgstr "Liste"
|
|
6103 |
msgid "All"
|
6104 |
msgstr "Alle"
|
6105 |
|
6106 |
-
#: app/skins/monthly_view/calendar.php:
|
6107 |
-
#: app/skins/monthly_view/calendar.php:
|
6108 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6109 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6110 |
#, php-format
|
6111 |
msgid "Events for %s"
|
6112 |
msgstr "Kalender for %s"
|
6113 |
|
6114 |
-
#: app/skins/monthly_view/calendar.php:
|
6115 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6116 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6117 |
msgid "No Events"
|
@@ -6121,19 +6192,19 @@ msgstr "Ingen hendelser"
|
|
6121 |
msgid "Home"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: app/skins/single.php:
|
6125 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6126 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6127 |
msgid "Phone"
|
6128 |
msgstr "Telefon"
|
6129 |
|
6130 |
-
#: app/skins/single.php:
|
6131 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6132 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6133 |
msgid "Website"
|
6134 |
msgstr "Nettsted"
|
6135 |
|
6136 |
-
#: app/skins/single.php:
|
6137 |
msgid "Speakers:"
|
6138 |
msgstr "Høyttalere:"
|
6139 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:05+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:05+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:348
|
34 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
60 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
61 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
62 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
285 |
msgid "Event"
|
286 |
msgstr "Arrangement"
|
287 |
|
288 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
289 |
msgid "Add Event"
|
290 |
msgstr "Legg til Arrangement"
|
291 |
|
333 |
msgstr "Kategori"
|
334 |
|
335 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
336 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
337 |
#: app/libraries/main.php:4375
|
338 |
msgid "Categories"
|
339 |
msgstr "Kategorier"
|
432 |
#: app/features/events.php:410 app/features/events.php:1682
|
433 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
434 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
435 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
446 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
447 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
448 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
449 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
450 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
451 |
#: app/skins/single/modern.php:48
|
570 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
571 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
572 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
573 |
+
#: app/features/mec/notifications.php:170
|
574 |
+
#: app/features/mec/notifications.php:228
|
575 |
+
#: app/features/mec/notifications.php:280
|
576 |
+
#: app/features/mec/notifications.php:339
|
577 |
+
#: app/features/mec/notifications.php:406
|
578 |
+
#: app/features/mec/notifications.php:469
|
579 |
+
#: app/features/mec/notifications.php:480
|
580 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
581 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
582 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
583 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
786 |
msgstr "Dag 1"
|
787 |
|
788 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
789 |
+
#: app/skins/single.php:379
|
790 |
msgid "Hourly Schedule"
|
791 |
msgstr "Timeplan"
|
792 |
|
860 |
|
861 |
#: app/features/events.php:913 app/features/events.php:933
|
862 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
863 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
864 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
865 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
866 |
msgid "Speakers"
|
1262 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1263 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1264 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1265 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1266 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1267 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1268 |
msgid "Location"
|
1434 |
msgstr "Fjern bilde"
|
1435 |
|
1436 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1437 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1438 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1439 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1440 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1441 |
msgid "Labels"
|
1442 |
msgstr "Etiketter"
|
1443 |
|
1444 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1445 |
#: app/features/mec/meta_boxes/filter.php:138
|
1446 |
msgid "Tags"
|
1447 |
msgstr "Stikkord"
|
1477 |
|
1478 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1479 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1480 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1481 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1482 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1483 |
msgid "Import / Export"
|
1745 |
#: app/features/ix/export_g_calendar.php:72
|
1746 |
#: app/features/ix/export_g_calendar.php:147
|
1747 |
#: app/features/ix/export_g_calendar.php:164
|
1748 |
+
#: app/features/mec/notifications.php:207
|
1749 |
+
#: app/features/mec/notifications.php:260
|
1750 |
+
#: app/features/mec/notifications.php:313
|
1751 |
+
#: app/features/mec/notifications.php:513
|
1752 |
msgid "Add to Google Calendar"
|
1753 |
msgstr "Legg til i Google Kalender"
|
1754 |
|
1755 |
#: app/features/ix/export_g_calendar.php:90
|
1756 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1757 |
msgid "Checking ..."
|
1758 |
msgstr "Sjekker ..."
|
1759 |
|
1991 |
|
1992 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1993 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1994 |
+
#: app/features/mec/notifications.php:457
|
1995 |
msgid "Important Note"
|
1996 |
msgstr "Viktig merknad"
|
1997 |
|
2131 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2132 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2133 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2134 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2135 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2136 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2137 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2145 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2146 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2147 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2148 |
+
#: app/skins/monthly_view/calendar.php:86
|
2149 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2150 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2151 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2173 |
msgid "Event %s"
|
2174 |
msgstr "Arrangement %s"
|
2175 |
|
2176 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2177 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2178 |
#: app/libraries/main.php:4379
|
2179 |
msgid "Locations"
|
2297 |
msgstr ""
|
2298 |
"Du kan velge ekstra arrangører i tillegg hovedarrangør hvis du trenger det."
|
2299 |
|
2300 |
+
#: app/features/mec.php:153
|
2301 |
msgid ""
|
2302 |
"Activation faild. Please check your purchase code or license type."
|
2303 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2305 |
"Aktivisering feilet. Kontroller kjøpskoden eller lisenstypen.<br><b>Merk: "
|
2306 |
"din kjøpskode skal samsvare med din lisens type.</b>"
|
2307 |
|
2308 |
+
#: app/features/mec.php:153
|
2309 |
msgid "Troubleshooting"
|
2310 |
msgstr "Feilsøking"
|
2311 |
|
2312 |
+
#: app/features/mec.php:193
|
2313 |
msgid ""
|
2314 |
"Your options is not in JSON format. Please insert correct options in this "
|
2315 |
"field and try again."
|
2317 |
"Alternativene er ikke i JSON-format. Sett inn riktige alternativer i dette "
|
2318 |
"feltet, og prøv på nytt."
|
2319 |
|
2320 |
+
#: app/features/mec.php:200
|
2321 |
msgid "Your options field can not be empty!"
|
2322 |
msgstr "Ditt valgfeltet kan ikke være tom!"
|
2323 |
|
2324 |
+
#: app/features/mec.php:206
|
2325 |
msgid "Your options imported successfuly."
|
2326 |
msgstr "Alternativene er importert."
|
2327 |
|
2328 |
+
#: app/features/mec.php:299
|
2329 |
msgid "MEC - Support"
|
2330 |
msgstr "MEC-støtte"
|
2331 |
|
2332 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2333 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2334 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2335 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2336 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2337 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2338 |
msgid "Support"
|
2339 |
msgstr "Support"
|
2340 |
|
2341 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2342 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2343 |
#: app/libraries/main.php:4381
|
2344 |
msgid "Organizers"
|
2345 |
msgstr "Arrangører"
|
2346 |
|
2347 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2348 |
#: app/features/mec/dashboard.php:194
|
2349 |
msgid "Shortcodes"
|
2350 |
msgstr "Shortcodes"
|
2351 |
|
2352 |
+
#: app/features/mec.php:329
|
2353 |
msgid "MEC - Settings"
|
2354 |
msgstr "MEC Innstillinger"
|
2355 |
|
2356 |
+
#: app/features/mec.php:330
|
2357 |
#, fuzzy
|
2358 |
#| msgid "MEC - Settings"
|
2359 |
msgid "MEC - Addons"
|
2360 |
msgstr "MEC Innstillinger"
|
2361 |
|
2362 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2363 |
msgid "Addons"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: app/features/mec.php:349
|
2367 |
msgid "Add Shortcode"
|
2368 |
msgstr "Legg til kortkode"
|
2369 |
|
2370 |
+
#: app/features/mec.php:350
|
2371 |
msgid "Add New Shortcode"
|
2372 |
msgstr "Legg til ny Kortkode"
|
2373 |
|
2374 |
+
#: app/features/mec.php:351
|
2375 |
msgid "No shortcodes found!"
|
2376 |
msgstr "Ingen kortkoder funnet!"
|
2377 |
|
2378 |
+
#: app/features/mec.php:352
|
2379 |
msgid "All Shortcodes"
|
2380 |
msgstr "Alle Kortkoder"
|
2381 |
|
2382 |
+
#: app/features/mec.php:353
|
2383 |
msgid "Edit shortcodes"
|
2384 |
msgstr "Rediger Kortkoder"
|
2385 |
|
2386 |
+
#: app/features/mec.php:354
|
2387 |
msgid "No shortcodes found in Trash!"
|
2388 |
msgstr "Ingen kortkoder funnet i søppel!"
|
2389 |
|
2390 |
+
#: app/features/mec.php:402
|
2391 |
msgid "Display Options"
|
2392 |
msgstr "Visningsalternativer"
|
2393 |
|
2394 |
+
#: app/features/mec.php:403
|
2395 |
msgid "Filter Options"
|
2396 |
msgstr "Alternativer for filter"
|
2397 |
|
2398 |
+
#: app/features/mec.php:405
|
2399 |
msgid "Search Form"
|
2400 |
msgstr "Søkefelt"
|
2401 |
|
2402 |
+
#: app/features/mec.php:755
|
2403 |
msgid "Display content's images as Popup"
|
2404 |
msgstr "Vise innholdet i bilder som popup"
|
2405 |
|
2406 |
+
#: app/features/mec.php:768
|
2407 |
msgid "Single Event Display Method"
|
2408 |
msgstr "Enkeltarrangement Visnings Metode"
|
2409 |
|
2410 |
+
#: app/features/mec.php:773
|
2411 |
msgid "Separate Window"
|
2412 |
msgstr "Separer Vindu"
|
2413 |
|
2414 |
+
#: app/features/mec.php:774
|
2415 |
msgid "Modal 1"
|
2416 |
msgstr "Modale 1"
|
2417 |
|
2573 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2574 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2575 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2576 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2577 |
+
#: app/features/mec/notifications.php:581
|
2578 |
+
#: app/features/mec/notifications.php:680
|
2579 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2580 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2581 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2582 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2591 |
msgstr "Lagre endringer"
|
2592 |
|
2593 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2594 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2595 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2596 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2597 |
#: app/features/mec/support.php:52
|
2599 |
msgstr "Stylingvalg"
|
2600 |
|
2601 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2602 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2603 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2604 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2605 |
#: app/features/mec/support.php:59
|
2608 |
|
2609 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2610 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2611 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2612 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2613 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2614 |
msgid "Messages"
|
2615 |
msgstr "Meldinger"
|
2616 |
|
2617 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2618 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2619 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2620 |
#: app/features/mec/styling.php:375
|
2621 |
msgid "Saved"
|
2622 |
msgstr "Lagret"
|
2623 |
|
2624 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2625 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2626 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2627 |
#: app/features/mec/styling.php:376
|
2628 |
msgid "Settings Saved!"
|
3454 |
msgid "No Search Options"
|
3455 |
msgstr "Ingen Søkealternativ"
|
3456 |
|
3457 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3458 |
msgid "Booking Notification"
|
3459 |
msgstr "Booking varsling"
|
3460 |
|
3461 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3462 |
msgid "Booking Verification"
|
3463 |
msgstr "Bestillingsbekreftelse"
|
3464 |
|
3465 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3466 |
#: app/features/mec/settings.php:1409
|
3467 |
msgid "Booking Confirmation"
|
3468 |
msgstr "Bestillingsbekreftelsen"
|
3469 |
|
3470 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3471 |
+
#, fuzzy
|
3472 |
+
#| msgid "Booking cancellation link."
|
3473 |
+
msgid "Booking Cancellation"
|
3474 |
+
msgstr "Booking avbestillingskobling."
|
3475 |
+
|
3476 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3477 |
msgid "Admin Notification"
|
3478 |
msgstr "Admin-varsel"
|
3479 |
|
3480 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3481 |
+
#: app/libraries/notifications.php:354
|
3482 |
msgid "Booking Reminder"
|
3483 |
msgstr "Påminnelse angående din bestilling"
|
3484 |
|
3485 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3486 |
#: app/features/mec/support-page.php:80
|
3487 |
msgid "New Event"
|
3488 |
msgstr "Nytt Arrangement"
|
3489 |
|
3490 |
+
#: app/features/mec/notifications.php:155
|
3491 |
msgid "Enable booking notification"
|
3492 |
msgstr "Tillatt bestillingsvarsel"
|
3493 |
|
3494 |
+
#: app/features/mec/notifications.php:159
|
3495 |
msgid "It sends to attendee after booking for notifying him/her."
|
3496 |
msgstr "Sendes til deltager etter booking for å opplyse han/henne."
|
3497 |
|
3498 |
+
#: app/features/mec/notifications.php:161
|
3499 |
+
#: app/features/mec/notifications.php:219
|
3500 |
+
#: app/features/mec/notifications.php:271
|
3501 |
+
#: app/features/mec/notifications.php:330
|
3502 |
+
#: app/features/mec/notifications.php:397
|
3503 |
+
#: app/features/mec/notifications.php:460
|
3504 |
+
#: app/features/mec/notifications.php:532
|
3505 |
msgid "Email Subject"
|
3506 |
msgstr "E-postemne"
|
3507 |
|
3508 |
+
#: app/features/mec/notifications.php:165
|
3509 |
+
#: app/features/mec/notifications.php:169
|
3510 |
+
#: app/features/mec/notifications.php:223
|
3511 |
+
#: app/features/mec/notifications.php:227
|
3512 |
+
#: app/features/mec/notifications.php:275
|
3513 |
+
#: app/features/mec/notifications.php:279
|
3514 |
+
#: app/features/mec/notifications.php:334
|
3515 |
+
#: app/features/mec/notifications.php:338
|
3516 |
+
#: app/features/mec/notifications.php:401
|
3517 |
+
#: app/features/mec/notifications.php:405
|
3518 |
+
#: app/features/mec/notifications.php:464
|
3519 |
+
#: app/features/mec/notifications.php:468
|
3520 |
+
#: app/features/mec/notifications.php:479
|
3521 |
+
#: app/features/mec/notifications.php:536
|
3522 |
+
#: app/features/mec/notifications.php:540
|
3523 |
msgid "Custom Recipients"
|
3524 |
msgstr "Tilpassede Mottagere"
|
3525 |
|
3526 |
+
#: app/features/mec/notifications.php:170
|
3527 |
+
#: app/features/mec/notifications.php:228
|
3528 |
+
#: app/features/mec/notifications.php:280
|
3529 |
+
#: app/features/mec/notifications.php:339
|
3530 |
+
#: app/features/mec/notifications.php:406
|
3531 |
+
#: app/features/mec/notifications.php:469
|
3532 |
+
#: app/features/mec/notifications.php:480
|
3533 |
+
#: app/features/mec/notifications.php:541
|
3534 |
msgid "Insert comma separated emails for multiple recipients."
|
3535 |
msgstr "Sett inn kommaseparerte eposter for flere samtidige mottagere."
|
3536 |
|
3537 |
+
#: app/features/mec/notifications.php:177
|
3538 |
+
#: app/features/mec/notifications.php:350
|
3539 |
+
#: app/features/mec/notifications.php:413
|
3540 |
msgid "Send the email to event organizer"
|
3541 |
msgstr "Send epost til arrangøren"
|
3542 |
|
3543 |
+
#: app/features/mec/notifications.php:180
|
3544 |
+
#: app/features/mec/notifications.php:234
|
3545 |
+
#: app/features/mec/notifications.php:286
|
3546 |
+
#: app/features/mec/notifications.php:357
|
3547 |
+
#: app/features/mec/notifications.php:416
|
3548 |
+
#: app/features/mec/notifications.php:486
|
3549 |
+
#: app/features/mec/notifications.php:547
|
3550 |
msgid "Email Content"
|
3551 |
msgstr "E-postinnhold"
|
3552 |
|
3553 |
+
#: app/features/mec/notifications.php:183
|
3554 |
+
#: app/features/mec/notifications.php:237
|
3555 |
+
#: app/features/mec/notifications.php:289
|
3556 |
+
#: app/features/mec/notifications.php:360
|
3557 |
+
#: app/features/mec/notifications.php:419
|
3558 |
+
#: app/features/mec/notifications.php:489
|
3559 |
+
#: app/features/mec/notifications.php:550
|
3560 |
msgid "You can use following placeholders"
|
3561 |
msgstr "Du kan bruke følgende plassholdere"
|
3562 |
|
3563 |
+
#: app/features/mec/notifications.php:185
|
3564 |
+
#: app/features/mec/notifications.php:239
|
3565 |
+
#: app/features/mec/notifications.php:291
|
3566 |
+
#: app/features/mec/notifications.php:362
|
3567 |
+
#: app/features/mec/notifications.php:421
|
3568 |
+
#: app/features/mec/notifications.php:491
|
3569 |
msgid "First name of attendee"
|
3570 |
msgstr "Fornavn til deltaker"
|
3571 |
|
3572 |
+
#: app/features/mec/notifications.php:186
|
3573 |
+
#: app/features/mec/notifications.php:240
|
3574 |
+
#: app/features/mec/notifications.php:292
|
3575 |
+
#: app/features/mec/notifications.php:363
|
3576 |
+
#: app/features/mec/notifications.php:422
|
3577 |
+
#: app/features/mec/notifications.php:492
|
3578 |
msgid "Last name of attendee"
|
3579 |
msgstr "Etternavn på deltaker"
|
3580 |
|
3581 |
+
#: app/features/mec/notifications.php:187
|
3582 |
+
#: app/features/mec/notifications.php:241
|
3583 |
+
#: app/features/mec/notifications.php:293
|
3584 |
+
#: app/features/mec/notifications.php:364
|
3585 |
+
#: app/features/mec/notifications.php:423
|
3586 |
+
#: app/features/mec/notifications.php:493
|
3587 |
msgid "Email of attendee"
|
3588 |
msgstr "E-post til deltaker"
|
3589 |
|
3590 |
+
#: app/features/mec/notifications.php:188
|
3591 |
+
#: app/features/mec/notifications.php:242
|
3592 |
+
#: app/features/mec/notifications.php:294
|
3593 |
+
#: app/features/mec/notifications.php:365
|
3594 |
+
#: app/features/mec/notifications.php:424
|
3595 |
+
#: app/features/mec/notifications.php:494
|
3596 |
msgid "Booked date of event"
|
3597 |
msgstr "Booket dato for arrangement"
|
3598 |
|
3599 |
+
#: app/features/mec/notifications.php:189
|
3600 |
+
#: app/features/mec/notifications.php:243
|
3601 |
+
#: app/features/mec/notifications.php:295
|
3602 |
+
#: app/features/mec/notifications.php:366
|
3603 |
+
#: app/features/mec/notifications.php:425
|
3604 |
+
#: app/features/mec/notifications.php:495
|
3605 |
#, fuzzy
|
3606 |
#| msgid "Booked date of event"
|
3607 |
msgid "Booked time of event"
|
3608 |
msgstr "Booket dato for arrangement"
|
3609 |
|
3610 |
+
#: app/features/mec/notifications.php:190
|
3611 |
+
#: app/features/mec/notifications.php:244
|
3612 |
+
#: app/features/mec/notifications.php:296
|
3613 |
+
#: app/features/mec/notifications.php:367
|
3614 |
+
#: app/features/mec/notifications.php:426
|
3615 |
+
#: app/features/mec/notifications.php:496
|
3616 |
msgid "Booking Price"
|
3617 |
msgstr "Booking Pris"
|
3618 |
|
3619 |
+
#: app/features/mec/notifications.php:191
|
3620 |
+
#: app/features/mec/notifications.php:245
|
3621 |
+
#: app/features/mec/notifications.php:297
|
3622 |
+
#: app/features/mec/notifications.php:368
|
3623 |
+
#: app/features/mec/notifications.php:427
|
3624 |
+
#: app/features/mec/notifications.php:497
|
3625 |
+
#: app/features/mec/notifications.php:556
|
3626 |
msgid "Your website title"
|
3627 |
msgstr "Ditt nettstedstittel"
|
3628 |
|
3629 |
+
#: app/features/mec/notifications.php:192
|
3630 |
+
#: app/features/mec/notifications.php:246
|
3631 |
+
#: app/features/mec/notifications.php:298
|
3632 |
+
#: app/features/mec/notifications.php:369
|
3633 |
+
#: app/features/mec/notifications.php:428
|
3634 |
+
#: app/features/mec/notifications.php:498
|
3635 |
+
#: app/features/mec/notifications.php:557
|
3636 |
msgid "Your website URL"
|
3637 |
msgstr "Din nettstedsadresse (URL)"
|
3638 |
|
3639 |
+
#: app/features/mec/notifications.php:193
|
3640 |
+
#: app/features/mec/notifications.php:247
|
3641 |
+
#: app/features/mec/notifications.php:299
|
3642 |
+
#: app/features/mec/notifications.php:370
|
3643 |
+
#: app/features/mec/notifications.php:429
|
3644 |
+
#: app/features/mec/notifications.php:499
|
3645 |
+
#: app/features/mec/notifications.php:558
|
3646 |
msgid "Your website description"
|
3647 |
msgstr "Din nettstedsbeskrivelse"
|
3648 |
|
3649 |
+
#: app/features/mec/notifications.php:194
|
3650 |
+
#: app/features/mec/notifications.php:248
|
3651 |
+
#: app/features/mec/notifications.php:300
|
3652 |
+
#: app/features/mec/notifications.php:371
|
3653 |
+
#: app/features/mec/notifications.php:430
|
3654 |
+
#: app/features/mec/notifications.php:500
|
3655 |
msgid "Event title"
|
3656 |
msgstr "Arrangementtittel"
|
3657 |
|
3658 |
+
#: app/features/mec/notifications.php:195
|
3659 |
+
#: app/features/mec/notifications.php:249
|
3660 |
+
#: app/features/mec/notifications.php:301
|
3661 |
+
#: app/features/mec/notifications.php:372
|
3662 |
+
#: app/features/mec/notifications.php:431
|
3663 |
+
#: app/features/mec/notifications.php:501
|
3664 |
#, fuzzy
|
3665 |
#| msgid "Event Link"
|
3666 |
msgid "Event link"
|
3667 |
msgstr "Arrangemenslenke"
|
3668 |
|
3669 |
+
#: app/features/mec/notifications.php:196
|
3670 |
+
#: app/features/mec/notifications.php:250
|
3671 |
+
#: app/features/mec/notifications.php:302
|
3672 |
+
#: app/features/mec/notifications.php:373
|
3673 |
+
#: app/features/mec/notifications.php:432
|
3674 |
+
#: app/features/mec/notifications.php:502
|
3675 |
msgid "Organizer name of booked event"
|
3676 |
msgstr "Arrangørnavnet av booket arrangement"
|
3677 |
|
3678 |
+
#: app/features/mec/notifications.php:197
|
3679 |
+
#: app/features/mec/notifications.php:251
|
3680 |
+
#: app/features/mec/notifications.php:303
|
3681 |
+
#: app/features/mec/notifications.php:374
|
3682 |
+
#: app/features/mec/notifications.php:433
|
3683 |
+
#: app/features/mec/notifications.php:503
|
3684 |
msgid "Organizer tel of booked event"
|
3685 |
msgstr "Tlf til arrangør av booket arrangement"
|
3686 |
|
3687 |
+
#: app/features/mec/notifications.php:198
|
3688 |
+
#: app/features/mec/notifications.php:252
|
3689 |
+
#: app/features/mec/notifications.php:304
|
3690 |
+
#: app/features/mec/notifications.php:375
|
3691 |
+
#: app/features/mec/notifications.php:434
|
3692 |
+
#: app/features/mec/notifications.php:504
|
3693 |
msgid "Organizer email of booked event"
|
3694 |
msgstr "E-post til arrangør av booket arrangement"
|
3695 |
|
3696 |
+
#: app/features/mec/notifications.php:199
|
3697 |
+
#: app/features/mec/notifications.php:253
|
3698 |
+
#: app/features/mec/notifications.php:305
|
3699 |
+
#: app/features/mec/notifications.php:376
|
3700 |
+
#: app/features/mec/notifications.php:435
|
3701 |
+
#: app/features/mec/notifications.php:505
|
3702 |
msgid "Location name of booked event"
|
3703 |
msgstr "Stedsnavn til booket arrangement"
|
3704 |
|
3705 |
+
#: app/features/mec/notifications.php:200
|
3706 |
+
#: app/features/mec/notifications.php:254
|
3707 |
+
#: app/features/mec/notifications.php:306
|
3708 |
+
#: app/features/mec/notifications.php:377
|
3709 |
+
#: app/features/mec/notifications.php:436
|
3710 |
+
#: app/features/mec/notifications.php:506
|
3711 |
msgid "Location address of booked event"
|
3712 |
msgstr "Adresse til bestilt arrangement"
|
3713 |
|
3714 |
+
#: app/features/mec/notifications.php:201
|
3715 |
+
#: app/features/mec/notifications.php:379
|
3716 |
+
#: app/features/mec/notifications.php:438
|
3717 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3718 |
msgstr "Full deltager info som booking skjema data, navn, epost osv."
|
3719 |
|
3720 |
+
#: app/features/mec/notifications.php:202
|
3721 |
+
#: app/features/mec/notifications.php:308
|
3722 |
+
#: app/features/mec/notifications.php:508
|
3723 |
msgid "Invoice Link"
|
3724 |
msgstr "Fakturalenke"
|
3725 |
|
3726 |
+
#: app/features/mec/notifications.php:203
|
3727 |
+
#: app/features/mec/notifications.php:256
|
3728 |
+
#: app/features/mec/notifications.php:309
|
3729 |
+
#: app/features/mec/notifications.php:380
|
3730 |
+
#: app/features/mec/notifications.php:439
|
3731 |
+
#: app/features/mec/notifications.php:509
|
3732 |
msgid "Total Attendees"
|
3733 |
msgstr "Antall deltakere"
|
3734 |
|
3735 |
+
#: app/features/mec/notifications.php:204
|
3736 |
+
#: app/features/mec/notifications.php:257
|
3737 |
+
#: app/features/mec/notifications.php:310
|
3738 |
+
#: app/features/mec/notifications.php:510
|
3739 |
msgid "Ticket name"
|
3740 |
msgstr "Navn på billett"
|
3741 |
|
3742 |
+
#: app/features/mec/notifications.php:205
|
3743 |
+
#: app/features/mec/notifications.php:258
|
3744 |
+
#: app/features/mec/notifications.php:311
|
3745 |
+
#: app/features/mec/notifications.php:511
|
3746 |
msgid "Ticket time"
|
3747 |
msgstr "Billettidspunkt"
|
3748 |
|
3749 |
+
#: app/features/mec/notifications.php:206
|
3750 |
+
#: app/features/mec/notifications.php:259
|
3751 |
+
#: app/features/mec/notifications.php:312
|
3752 |
+
#: app/features/mec/notifications.php:512
|
3753 |
msgid "Download ICS file"
|
3754 |
msgstr "Last ned ICS-fil"
|
3755 |
|
3756 |
+
#: app/features/mec/notifications.php:217
|
3757 |
msgid "It sends to attendee email for verifying their booking/email."
|
3758 |
msgstr "Send epost til deltagere for å verifisere deres booking/epost."
|
3759 |
|
3760 |
+
#: app/features/mec/notifications.php:255
|
3761 |
msgid "Email/Booking verification link."
|
3762 |
msgstr "Epost/Booking bekreftelseslenke"
|
3763 |
|
3764 |
+
#: app/features/mec/notifications.php:269
|
3765 |
msgid "It sends to attendee after confirming the booking by admin."
|
3766 |
msgstr "Den sender til deltagere etter bekreftelse bookingen av administrator."
|
3767 |
|
3768 |
+
#: app/features/mec/notifications.php:307
|
3769 |
+
#: app/features/mec/notifications.php:507
|
3770 |
msgid "Booking cancellation link."
|
3771 |
msgstr "Booking avbestillingskobling."
|
3772 |
|
3773 |
+
#: app/features/mec/notifications.php:324
|
3774 |
+
#, fuzzy
|
3775 |
+
#| msgid "Enable new event notification"
|
3776 |
+
msgid "Enable cancellation notification"
|
3777 |
+
msgstr "Aktiver nytt arrangement-varsel"
|
3778 |
|
3779 |
+
#: app/features/mec/notifications.php:328
|
3780 |
+
#, fuzzy
|
3781 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3782 |
+
msgid ""
|
3783 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3784 |
+
"them."
|
3785 |
+
msgstr "Sendes til deltager etter booking for å opplyse han/henne."
|
3786 |
+
|
3787 |
+
#: app/features/mec/notifications.php:346
|
3788 |
+
#, fuzzy
|
3789 |
+
#| msgid "Send the email to event organizer"
|
3790 |
+
msgid "Send the email to admin"
|
3791 |
+
msgstr "Send epost til arrangøren"
|
3792 |
+
|
3793 |
+
#: app/features/mec/notifications.php:354
|
3794 |
+
#, fuzzy
|
3795 |
+
#| msgid "Send the email to event organizer"
|
3796 |
+
msgid "Send the email to booking user"
|
3797 |
+
msgstr "Send epost til arrangøren"
|
3798 |
+
|
3799 |
+
#: app/features/mec/notifications.php:378
|
3800 |
+
#: app/features/mec/notifications.php:437
|
3801 |
msgid "Admin booking management link."
|
3802 |
msgstr "Lenke til å Administrere booking."
|
3803 |
|
3804 |
+
#: app/features/mec/notifications.php:391
|
3805 |
+
#, fuzzy
|
3806 |
+
#| msgid "Enable booking notification"
|
3807 |
+
msgid "Enable admin notification"
|
3808 |
+
msgstr "Tillatt bestillingsvarsel"
|
3809 |
+
|
3810 |
+
#: app/features/mec/notifications.php:395
|
3811 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3812 |
+
msgstr ""
|
3813 |
+
"Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
|
3814 |
+
|
3815 |
+
#: app/features/mec/notifications.php:451
|
3816 |
msgid "Enable booking reminder notification"
|
3817 |
msgstr "Aktiver booking påminnelse"
|
3818 |
|
3819 |
+
#: app/features/mec/notifications.php:457
|
3820 |
#, php-format
|
3821 |
msgid ""
|
3822 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3827 |
"sende påmindelser. Vennligst noter at du burde kalle på denne filen %s eller "
|
3828 |
"vill den sende påmindelser flere ganger."
|
3829 |
|
3830 |
+
#: app/features/mec/notifications.php:457
|
3831 |
msgid "only once per day"
|
3832 |
msgstr "bare en gang per dag"
|
3833 |
|
3834 |
+
#: app/features/mec/notifications.php:475
|
3835 |
msgid "Days"
|
3836 |
msgstr "Dager"
|
3837 |
|
3838 |
+
#: app/features/mec/notifications.php:526
|
3839 |
msgid "Enable new event notification"
|
3840 |
msgstr "Aktiver nytt arrangement-varsel"
|
3841 |
|
3842 |
+
#: app/features/mec/notifications.php:530
|
3843 |
msgid ""
|
3844 |
"It sends after adding a new event from frontend event submission or from "
|
3845 |
"website backend."
|
3847 |
"Sender etter ett nytt arrangement fra event registrering eller fra "
|
3848 |
"nettsidens bakside."
|
3849 |
|
3850 |
+
#: app/features/mec/notifications.php:552
|
3851 |
msgid "Title of event"
|
3852 |
msgstr "Tittel på arrangement"
|
3853 |
|
3854 |
+
#: app/features/mec/notifications.php:553
|
3855 |
#, fuzzy
|
3856 |
#| msgid "Title of event"
|
3857 |
msgid "Link of event"
|
3858 |
msgstr "Tittel på arrangement"
|
3859 |
|
3860 |
+
#: app/features/mec/notifications.php:554
|
3861 |
msgid "Status of event"
|
3862 |
msgstr "Status på arrangement"
|
3863 |
|
3864 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3865 |
#: app/features/mec/settings.php:1253
|
3866 |
msgid "Event Note"
|
3867 |
msgstr "Arrangementsnotat"
|
3868 |
|
3869 |
+
#: app/features/mec/notifications.php:559
|
3870 |
msgid "Admin events management link."
|
3871 |
msgstr "Lenge til arrangementsadministrasjon"
|
3872 |
|
3873 |
+
#: app/features/mec/notifications.php:661
|
3874 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3875 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3876 |
msgid "Verified"
|
3877 |
msgstr "Verifisert"
|
3878 |
|
3879 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3880 |
msgid "Please Refresh Page"
|
3881 |
msgstr "Vennligst Oppdater Side"
|
3882 |
|
5298 |
msgstr "F.eks. https://webnus.net"
|
5299 |
|
5300 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5301 |
+
#: app/skins/single.php:295
|
5302 |
msgid "Other Organizers"
|
5303 |
msgstr "Andre Arrangører"
|
5304 |
|
5426 |
msgid "day"
|
5427 |
msgstr "dag"
|
5428 |
|
5429 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5430 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5431 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5432 |
msgid "days"
|
5436 |
msgid "hour"
|
5437 |
msgstr "time"
|
5438 |
|
5439 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5440 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5441 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5442 |
msgid "hours"
|
5446 |
msgid "minute"
|
5447 |
msgstr "minutt"
|
5448 |
|
5449 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5450 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5451 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5452 |
msgid "minutes"
|
5456 |
msgid "second"
|
5457 |
msgstr "sekund"
|
5458 |
|
5459 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5460 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5461 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5462 |
msgid "seconds"
|
5925 |
msgid "Your booking is confirmed."
|
5926 |
msgstr "Din Bestilling er bekreftet."
|
5927 |
|
5928 |
+
#: app/libraries/notifications.php:252
|
5929 |
+
#, fuzzy
|
5930 |
+
#| msgid "Your booking cannot be canceled."
|
5931 |
+
msgid "booking canceled."
|
5932 |
+
msgstr "Din booking ble ikke kansellert."
|
5933 |
+
|
5934 |
+
#: app/libraries/notifications.php:296
|
5935 |
msgid "A new booking is received."
|
5936 |
msgstr "En ny bestilling er mottatt."
|
5937 |
|
5938 |
+
#: app/libraries/notifications.php:425
|
5939 |
msgid "A new event is added."
|
5940 |
msgstr "Ett nytt arrangement er lagt til."
|
5941 |
|
5942 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
5943 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5944 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5945 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5946 |
msgid "All of the day"
|
5947 |
msgstr "Hele dagen"
|
5948 |
|
5949 |
+
#: app/libraries/notifications.php:605
|
5950 |
msgid "to"
|
5951 |
msgstr "til"
|
5952 |
|
5953 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
5954 |
msgid "+ Add to Google Calendar"
|
5955 |
msgstr "+ Legg til i Google Kalender"
|
5956 |
|
5957 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
5958 |
msgid "+ iCal export"
|
5959 |
msgstr "+ iCal eksport"
|
5960 |
|
5961 |
+
#: app/libraries/notifications.php:683
|
5962 |
msgid "Yes"
|
5963 |
msgstr "Ja"
|
5964 |
|
5965 |
+
#: app/libraries/notifications.php:683
|
5966 |
msgid "No"
|
5967 |
msgstr "Nei"
|
5968 |
|
6174 |
msgid "All"
|
6175 |
msgstr "Alle"
|
6176 |
|
6177 |
+
#: app/skins/monthly_view/calendar.php:68
|
6178 |
+
#: app/skins/monthly_view/calendar.php:154
|
6179 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6180 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6181 |
#, php-format
|
6182 |
msgid "Events for %s"
|
6183 |
msgstr "Kalender for %s"
|
6184 |
|
6185 |
+
#: app/skins/monthly_view/calendar.php:156
|
6186 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6187 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6188 |
msgid "No Events"
|
6192 |
msgid "Home"
|
6193 |
msgstr ""
|
6194 |
|
6195 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6196 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6197 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6198 |
msgid "Phone"
|
6199 |
msgstr "Telefon"
|
6200 |
|
6201 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6202 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6203 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6204 |
msgid "Website"
|
6205 |
msgstr "Nettsted"
|
6206 |
|
6207 |
+
#: app/skins/single.php:393
|
6208 |
msgid "Speakers:"
|
6209 |
msgstr "Høyttalere:"
|
6210 |
|
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-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
65 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
66 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -266,7 +266,7 @@ msgstr "Evenementen"
|
|
266 |
msgid "Event"
|
267 |
msgstr "Evenement"
|
268 |
|
269 |
-
#: app/features/events.php:136 app/features/mec.php:
|
270 |
msgid "Add Event"
|
271 |
msgstr "Evenement toevoegen"
|
272 |
|
@@ -314,7 +314,7 @@ msgid "Category"
|
|
314 |
msgstr "Categorie"
|
315 |
|
316 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
317 |
-
#: app/features/mec.php:
|
318 |
#: app/libraries/main.php:4375
|
319 |
msgid "Categories"
|
320 |
msgstr "Categorieën"
|
@@ -413,7 +413,7 @@ msgstr ""
|
|
413 |
#: app/features/events.php:410 app/features/events.php:1682
|
414 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
415 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +425,8 @@ msgstr "Naam"
|
|
425 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
426 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
427 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
428 |
-
#: app/libraries/notifications.php:
|
429 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
430 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
431 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
432 |
#: app/skins/single/modern.php:48
|
@@ -551,13 +551,14 @@ msgstr ""
|
|
551 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
554 |
-
#: app/features/mec/notifications.php:
|
555 |
-
#: app/features/mec/notifications.php:
|
556 |
-
#: app/features/mec/notifications.php:
|
557 |
-
#: app/features/mec/notifications.php:
|
558 |
-
#: app/features/mec/notifications.php:
|
559 |
-
#: app/features/mec/notifications.php:
|
560 |
-
#: app/features/mec/notifications.php:
|
|
|
561 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
562 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
563 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -771,7 +772,7 @@ msgid "Day 1"
|
|
771 |
msgstr ""
|
772 |
|
773 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
774 |
-
#: app/skins/single.php:
|
775 |
msgid "Hourly Schedule"
|
776 |
msgstr "Urenschema"
|
777 |
|
@@ -843,7 +844,7 @@ msgstr "Beschrijving"
|
|
843 |
|
844 |
#: app/features/events.php:913 app/features/events.php:933
|
845 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
846 |
-
#: app/features/mec.php:
|
847 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
848 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
849 |
msgid "Speakers"
|
@@ -1246,7 +1247,7 @@ msgstr ""
|
|
1246 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1248 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1249 |
-
#: app/skins/single.php:
|
1250 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1251 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1252 |
msgid "Location"
|
@@ -1419,14 +1420,14 @@ msgid "Remove Image"
|
|
1419 |
msgstr "Verwijder afbeelding"
|
1420 |
|
1421 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1422 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1423 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1424 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1425 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1426 |
msgid "Labels"
|
1427 |
msgstr "Labels"
|
1428 |
|
1429 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1430 |
#: app/features/mec/meta_boxes/filter.php:138
|
1431 |
msgid "Tags"
|
1432 |
msgstr "Tags"
|
@@ -1462,7 +1463,7 @@ msgstr ""
|
|
1462 |
|
1463 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1464 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1465 |
-
#: app/features/mec/notifications.php:
|
1466 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1467 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1468 |
msgid "Import / Export"
|
@@ -1723,15 +1724,15 @@ msgstr ""
|
|
1723 |
#: app/features/ix/export_g_calendar.php:72
|
1724 |
#: app/features/ix/export_g_calendar.php:147
|
1725 |
#: app/features/ix/export_g_calendar.php:164
|
1726 |
-
#: app/features/mec/notifications.php:
|
1727 |
-
#: app/features/mec/notifications.php:
|
1728 |
-
#: app/features/mec/notifications.php:
|
1729 |
-
#: app/features/mec/notifications.php:
|
1730 |
msgid "Add to Google Calendar"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
#: app/features/ix/export_g_calendar.php:90
|
1734 |
-
#: app/features/mec/notifications.php:
|
1735 |
msgid "Checking ..."
|
1736 |
msgstr ""
|
1737 |
|
@@ -1961,7 +1962,7 @@ msgstr ""
|
|
1961 |
|
1962 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1963 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1964 |
-
#: app/features/mec/notifications.php:
|
1965 |
msgid "Important Note"
|
1966 |
msgstr ""
|
1967 |
|
@@ -2088,7 +2089,7 @@ msgstr ""
|
|
2088 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2089 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2090 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2091 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2092 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2093 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2094 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2104,7 +2105,7 @@ msgstr "Uitgelichte afbeelding"
|
|
2104 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2105 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2106 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2107 |
-
#: app/skins/monthly_view/calendar.php:
|
2108 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2109 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2110 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2132,7 +2133,7 @@ msgstr "Slug"
|
|
2132 |
msgid "Event %s"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2136 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2137 |
#: app/libraries/main.php:4379
|
2138 |
msgid "Locations"
|
@@ -2252,124 +2253,124 @@ msgid ""
|
|
2252 |
"You can select extra locations in addition to main location if you like."
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: app/features/mec.php:
|
2256 |
msgid ""
|
2257 |
"Activation faild. Please check your purchase code or license type."
|
2258 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: app/features/mec.php:
|
2262 |
msgid "Troubleshooting"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: app/features/mec.php:
|
2266 |
msgid ""
|
2267 |
"Your options is not in JSON format. Please insert correct options in this "
|
2268 |
"field and try again."
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: app/features/mec.php:
|
2272 |
#, fuzzy
|
2273 |
#| msgid "Your booking cannot verify!"
|
2274 |
msgid "Your options field can not be empty!"
|
2275 |
msgstr "Uw boeking kan niet worden geverifieerd!"
|
2276 |
|
2277 |
-
#: app/features/mec.php:
|
2278 |
#, fuzzy
|
2279 |
#| msgid "Your booking successfully verified."
|
2280 |
msgid "Your options imported successfuly."
|
2281 |
msgstr "Uw boeking is succesvol geverifieerd."
|
2282 |
|
2283 |
-
#: app/features/mec.php:
|
2284 |
#, fuzzy
|
2285 |
#| msgid "Support"
|
2286 |
msgid "MEC - Support"
|
2287 |
msgstr "Support"
|
2288 |
|
2289 |
-
#: app/features/mec.php:
|
2290 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2291 |
-
#: app/features/mec/notifications.php:
|
2292 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2293 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2294 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2295 |
msgid "Support"
|
2296 |
msgstr "Support"
|
2297 |
|
2298 |
-
#: app/features/mec.php:
|
2299 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2300 |
#: app/libraries/main.php:4381
|
2301 |
msgid "Organizers"
|
2302 |
msgstr "Organisatoren"
|
2303 |
|
2304 |
-
#: app/features/mec.php:
|
2305 |
#: app/features/mec/dashboard.php:194
|
2306 |
msgid "Shortcodes"
|
2307 |
msgstr "Shortcodes"
|
2308 |
|
2309 |
-
#: app/features/mec.php:
|
2310 |
msgid "MEC - Settings"
|
2311 |
msgstr "MEC - Instellingen"
|
2312 |
|
2313 |
-
#: app/features/mec.php:
|
2314 |
#, fuzzy
|
2315 |
#| msgid "MEC - Settings"
|
2316 |
msgid "MEC - Addons"
|
2317 |
msgstr "MEC - Instellingen"
|
2318 |
|
2319 |
-
#: app/features/mec.php:
|
2320 |
msgid "Addons"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: app/features/mec.php:
|
2324 |
msgid "Add Shortcode"
|
2325 |
msgstr "Shortcode toevoegen"
|
2326 |
|
2327 |
-
#: app/features/mec.php:
|
2328 |
msgid "Add New Shortcode"
|
2329 |
msgstr "Nieuwe shortcode toevoegen"
|
2330 |
|
2331 |
-
#: app/features/mec.php:
|
2332 |
msgid "No shortcodes found!"
|
2333 |
msgstr "Geen shortcodes gevonden!"
|
2334 |
|
2335 |
-
#: app/features/mec.php:
|
2336 |
msgid "All Shortcodes"
|
2337 |
msgstr "Alle shortcodes"
|
2338 |
|
2339 |
-
#: app/features/mec.php:
|
2340 |
msgid "Edit shortcodes"
|
2341 |
msgstr "Bewerk shortcodes"
|
2342 |
|
2343 |
-
#: app/features/mec.php:
|
2344 |
msgid "No shortcodes found in Trash!"
|
2345 |
msgstr "Geen shortcodes gevonden in de prullenbak!"
|
2346 |
|
2347 |
-
#: app/features/mec.php:
|
2348 |
msgid "Display Options"
|
2349 |
msgstr "Weergave opties"
|
2350 |
|
2351 |
-
#: app/features/mec.php:
|
2352 |
msgid "Filter Options"
|
2353 |
msgstr "Filter opties"
|
2354 |
|
2355 |
-
#: app/features/mec.php:
|
2356 |
#, fuzzy
|
2357 |
msgid "Search Form"
|
2358 |
msgstr "Zoek coupons"
|
2359 |
|
2360 |
-
#: app/features/mec.php:
|
2361 |
msgid "Display content's images as Popup"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: app/features/mec.php:
|
2365 |
msgid "Single Event Display Method"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: app/features/mec.php:
|
2369 |
msgid "Separate Window"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: app/features/mec.php:
|
2373 |
msgid "Modal 1"
|
2374 |
msgstr ""
|
2375 |
|
@@ -2526,10 +2527,10 @@ msgstr "Change log"
|
|
2526 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2527 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2528 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2529 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2530 |
-
#: app/features/mec/notifications.php:
|
2531 |
-
#: app/features/mec/notifications.php:
|
2532 |
-
#: app/features/mec/notifications.php:
|
2533 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2534 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2535 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2544,7 +2545,7 @@ msgid "Save Changes"
|
|
2544 |
msgstr "Wijzigingen opslaan"
|
2545 |
|
2546 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2547 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2548 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2549 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2550 |
#: app/features/mec/support.php:52
|
@@ -2552,7 +2553,7 @@ msgid "Styling Options"
|
|
2552 |
msgstr "Styling opties"
|
2553 |
|
2554 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2555 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2556 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2557 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2558 |
#: app/features/mec/support.php:59
|
@@ -2561,21 +2562,21 @@ msgstr "Custom CSS"
|
|
2561 |
|
2562 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2563 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2564 |
-
#: app/features/mec/notifications.php:
|
2565 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2566 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2567 |
msgid "Messages"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2571 |
-
#: app/features/mec/notifications.php:
|
2572 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2573 |
#: app/features/mec/styling.php:375
|
2574 |
msgid "Saved"
|
2575 |
msgstr "Opgeslagen"
|
2576 |
|
2577 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2578 |
-
#: app/features/mec/notifications.php:
|
2579 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2580 |
#: app/features/mec/styling.php:376
|
2581 |
msgid "Settings Saved!"
|
@@ -3427,314 +3428,376 @@ msgstr ""
|
|
3427 |
msgid "No Search Options"
|
3428 |
msgstr "Zoek locaties"
|
3429 |
|
3430 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3431 |
msgid "Booking Notification"
|
3432 |
msgstr "Boekingsnotificatie"
|
3433 |
|
3434 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3435 |
msgid "Booking Verification"
|
3436 |
msgstr "Boekingsverificatie"
|
3437 |
|
3438 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3439 |
#: app/features/mec/settings.php:1409
|
3440 |
msgid "Booking Confirmation"
|
3441 |
msgstr "Boekingsbevestiging"
|
3442 |
|
3443 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3444 |
msgid "Admin Notification"
|
3445 |
msgstr "Admin notificatie"
|
3446 |
|
3447 |
-
#: app/features/mec/notifications.php:
|
3448 |
-
#: app/libraries/notifications.php:
|
3449 |
msgid "Booking Reminder"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: app/features/mec/notifications.php:
|
3453 |
#: app/features/mec/support-page.php:80
|
3454 |
msgid "New Event"
|
3455 |
msgstr "Nieuw evenement"
|
3456 |
|
3457 |
-
#: app/features/mec/notifications.php:
|
3458 |
msgid "Enable booking notification"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: app/features/mec/notifications.php:
|
3462 |
msgid "It sends to attendee after booking for notifying him/her."
|
3463 |
msgstr ""
|
3464 |
"Wordt gestuurd naar deelnemer op hem / haar op de hoogte te stellen van de "
|
3465 |
"boeking."
|
3466 |
|
3467 |
-
#: app/features/mec/notifications.php:
|
3468 |
-
#: app/features/mec/notifications.php:
|
3469 |
-
#: app/features/mec/notifications.php:
|
3470 |
-
#: app/features/mec/notifications.php:
|
3471 |
-
#: app/features/mec/notifications.php:
|
3472 |
-
#: app/features/mec/notifications.php:
|
|
|
3473 |
msgid "Email Subject"
|
3474 |
msgstr "Email onderwerp"
|
3475 |
|
3476 |
-
#: app/features/mec/notifications.php:
|
3477 |
-
#: app/features/mec/notifications.php:
|
3478 |
-
#: app/features/mec/notifications.php:
|
3479 |
-
#: app/features/mec/notifications.php:
|
3480 |
-
#: app/features/mec/notifications.php:
|
3481 |
-
#: app/features/mec/notifications.php:
|
3482 |
-
#: app/features/mec/notifications.php:
|
3483 |
-
#: app/features/mec/notifications.php:
|
3484 |
-
#: app/features/mec/notifications.php:
|
3485 |
-
#: app/features/mec/notifications.php:
|
3486 |
-
#: app/features/mec/notifications.php:
|
3487 |
-
#: app/features/mec/notifications.php:
|
3488 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3489 |
msgid "Custom Recipients"
|
3490 |
msgstr "Geadresseerden"
|
3491 |
|
3492 |
-
#: app/features/mec/notifications.php:
|
3493 |
-
#: app/features/mec/notifications.php:
|
3494 |
-
#: app/features/mec/notifications.php:
|
3495 |
-
#: app/features/mec/notifications.php:
|
3496 |
-
#: app/features/mec/notifications.php:
|
3497 |
-
#: app/features/mec/notifications.php:
|
3498 |
-
#: app/features/mec/notifications.php:
|
|
|
3499 |
msgid "Insert comma separated emails for multiple recipients."
|
3500 |
msgstr "Vul verschillende emailadressen in door ze met een komma te scheiden."
|
3501 |
|
3502 |
-
#: app/features/mec/notifications.php:
|
3503 |
-
#: app/features/mec/notifications.php:
|
|
|
3504 |
msgid "Send the email to event organizer"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
#: app/features/mec/notifications.php:
|
3508 |
-
#: app/features/mec/notifications.php:
|
3509 |
-
#: app/features/mec/notifications.php:
|
3510 |
-
#: app/features/mec/notifications.php:
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
#: app/features/mec/notifications.php:
|
|
|
3513 |
msgid "Email Content"
|
3514 |
msgstr "Email inhoud"
|
3515 |
|
3516 |
-
#: app/features/mec/notifications.php:
|
3517 |
-
#: app/features/mec/notifications.php:
|
3518 |
-
#: app/features/mec/notifications.php:
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
|
|
3522 |
msgid "You can use following placeholders"
|
3523 |
msgstr "U kunt de volgende placeholders gebruiken"
|
3524 |
|
3525 |
-
#: app/features/mec/notifications.php:
|
3526 |
-
#: app/features/mec/notifications.php:
|
3527 |
-
#: app/features/mec/notifications.php:
|
3528 |
-
#: app/features/mec/notifications.php:
|
3529 |
-
#: app/features/mec/notifications.php:
|
|
|
3530 |
msgid "First name of attendee"
|
3531 |
msgstr "Voornaam van deelnemer"
|
3532 |
|
3533 |
-
#: app/features/mec/notifications.php:
|
3534 |
-
#: app/features/mec/notifications.php:
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
3537 |
-
#: app/features/mec/notifications.php:
|
|
|
3538 |
msgid "Last name of attendee"
|
3539 |
msgstr "Achternaam van deelnemer"
|
3540 |
|
3541 |
-
#: app/features/mec/notifications.php:
|
3542 |
-
#: app/features/mec/notifications.php:
|
3543 |
-
#: app/features/mec/notifications.php:
|
3544 |
-
#: app/features/mec/notifications.php:
|
3545 |
-
#: app/features/mec/notifications.php:
|
|
|
3546 |
msgid "Email of attendee"
|
3547 |
msgstr "Email van deelnemer"
|
3548 |
|
3549 |
-
#: app/features/mec/notifications.php:
|
3550 |
-
#: app/features/mec/notifications.php:
|
3551 |
-
#: app/features/mec/notifications.php:
|
3552 |
-
#: app/features/mec/notifications.php:
|
3553 |
-
#: app/features/mec/notifications.php:
|
|
|
3554 |
msgid "Booked date of event"
|
3555 |
msgstr "Geboekte datum van het evenement"
|
3556 |
|
3557 |
-
#: app/features/mec/notifications.php:
|
3558 |
-
#: app/features/mec/notifications.php:
|
3559 |
-
#: app/features/mec/notifications.php:
|
3560 |
-
#: app/features/mec/notifications.php:
|
3561 |
-
#: app/features/mec/notifications.php:
|
|
|
3562 |
#, fuzzy
|
3563 |
#| msgid "Booked date of event"
|
3564 |
msgid "Booked time of event"
|
3565 |
msgstr "Geboekte datum van het evenement"
|
3566 |
|
3567 |
-
#: app/features/mec/notifications.php:
|
3568 |
-
#: app/features/mec/notifications.php:
|
3569 |
-
#: app/features/mec/notifications.php:
|
3570 |
-
#: app/features/mec/notifications.php:
|
3571 |
-
#: app/features/mec/notifications.php:
|
|
|
3572 |
msgid "Booking Price"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: app/features/mec/notifications.php:
|
3576 |
-
#: app/features/mec/notifications.php:
|
3577 |
-
#: app/features/mec/notifications.php:
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
-
#: app/features/mec/notifications.php:
|
3580 |
-
#: app/features/mec/notifications.php:
|
|
|
3581 |
msgid "Your website title"
|
3582 |
msgstr "Uw website titel"
|
3583 |
|
3584 |
-
#: app/features/mec/notifications.php:
|
3585 |
-
#: app/features/mec/notifications.php:
|
3586 |
-
#: app/features/mec/notifications.php:
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
-
#: app/features/mec/notifications.php:
|
|
|
3590 |
msgid "Your website URL"
|
3591 |
msgstr "Uw website URL"
|
3592 |
|
3593 |
-
#: app/features/mec/notifications.php:
|
3594 |
-
#: app/features/mec/notifications.php:
|
3595 |
-
#: app/features/mec/notifications.php:
|
3596 |
-
#: app/features/mec/notifications.php:
|
3597 |
-
#: app/features/mec/notifications.php:
|
3598 |
-
#: app/features/mec/notifications.php:
|
|
|
3599 |
msgid "Your website description"
|
3600 |
msgstr "Uw website beschrijving"
|
3601 |
|
3602 |
-
#: app/features/mec/notifications.php:
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
-
#: app/features/mec/notifications.php:
|
3605 |
-
#: app/features/mec/notifications.php:
|
3606 |
-
#: app/features/mec/notifications.php:
|
|
|
3607 |
msgid "Event title"
|
3608 |
msgstr "Evenement titel"
|
3609 |
|
3610 |
-
#: app/features/mec/notifications.php:
|
3611 |
-
#: app/features/mec/notifications.php:
|
3612 |
-
#: app/features/mec/notifications.php:
|
3613 |
-
#: app/features/mec/notifications.php:
|
3614 |
-
#: app/features/mec/notifications.php:
|
|
|
3615 |
#, fuzzy
|
3616 |
msgid "Event link"
|
3617 |
msgstr "Evenement locatie"
|
3618 |
|
3619 |
-
#: app/features/mec/notifications.php:
|
3620 |
-
#: app/features/mec/notifications.php:
|
3621 |
-
#: app/features/mec/notifications.php:
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
|
|
3624 |
msgid "Organizer name of booked event"
|
3625 |
msgstr "Organisator naam van geboekt evenement"
|
3626 |
|
3627 |
-
#: app/features/mec/notifications.php:
|
3628 |
-
#: app/features/mec/notifications.php:
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
-
#: app/features/mec/notifications.php:
|
3631 |
-
#: app/features/mec/notifications.php:
|
|
|
3632 |
msgid "Organizer tel of booked event"
|
3633 |
msgstr "Organisator telefoonnummer van geboekt evenement"
|
3634 |
|
3635 |
-
#: app/features/mec/notifications.php:
|
3636 |
-
#: app/features/mec/notifications.php:
|
3637 |
-
#: app/features/mec/notifications.php:
|
3638 |
-
#: app/features/mec/notifications.php:
|
3639 |
-
#: app/features/mec/notifications.php:
|
|
|
3640 |
msgid "Organizer email of booked event"
|
3641 |
msgstr "Organisator email van geboekt evenement"
|
3642 |
|
3643 |
-
#: app/features/mec/notifications.php:
|
3644 |
-
#: app/features/mec/notifications.php:
|
3645 |
-
#: app/features/mec/notifications.php:
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
-
#: app/features/mec/notifications.php:
|
|
|
3648 |
msgid "Location name of booked event"
|
3649 |
msgstr "Locatie naam van geboekt evenement"
|
3650 |
|
3651 |
-
#: app/features/mec/notifications.php:
|
3652 |
-
#: app/features/mec/notifications.php:
|
3653 |
-
#: app/features/mec/notifications.php:
|
3654 |
-
#: app/features/mec/notifications.php:
|
3655 |
-
#: app/features/mec/notifications.php:
|
|
|
3656 |
msgid "Location address of booked event"
|
3657 |
msgstr "Locatie adres van geboekt evenement"
|
3658 |
|
3659 |
-
#: app/features/mec/notifications.php:
|
3660 |
-
#: app/features/mec/notifications.php:
|
|
|
3661 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3662 |
msgstr "Volledige deelnemers info zoals boekings datim, naam, email enz."
|
3663 |
|
3664 |
-
#: app/features/mec/notifications.php:
|
3665 |
-
#: app/features/mec/notifications.php:
|
3666 |
-
#: app/features/mec/notifications.php:
|
3667 |
msgid "Invoice Link"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: app/features/mec/notifications.php:
|
3671 |
-
#: app/features/mec/notifications.php:
|
3672 |
-
#: app/features/mec/notifications.php:
|
3673 |
-
#: app/features/mec/notifications.php:
|
3674 |
-
#: app/features/mec/notifications.php:
|
|
|
3675 |
msgid "Total Attendees"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: app/features/mec/notifications.php:
|
3679 |
-
#: app/features/mec/notifications.php:
|
3680 |
-
#: app/features/mec/notifications.php:
|
3681 |
-
#: app/features/mec/notifications.php:
|
3682 |
#, fuzzy
|
3683 |
#| msgid "Ticket Name"
|
3684 |
msgid "Ticket name"
|
3685 |
msgstr "Ticket naam"
|
3686 |
|
3687 |
-
#: app/features/mec/notifications.php:
|
3688 |
-
#: app/features/mec/notifications.php:
|
3689 |
-
#: app/features/mec/notifications.php:
|
3690 |
-
#: app/features/mec/notifications.php:
|
3691 |
#, fuzzy
|
3692 |
#| msgid "Ticket Name"
|
3693 |
msgid "Ticket time"
|
3694 |
msgstr "Ticket naam"
|
3695 |
|
3696 |
-
#: app/features/mec/notifications.php:
|
3697 |
-
#: app/features/mec/notifications.php:
|
3698 |
-
#: app/features/mec/notifications.php:
|
3699 |
-
#: app/features/mec/notifications.php:
|
3700 |
msgid "Download ICS file"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: app/features/mec/notifications.php:
|
3704 |
msgid "It sends to attendee email for verifying their booking/email."
|
3705 |
msgstr ""
|
3706 |
"Wordt gestuurd naar de deelnemers email voor verificatie van hun boeking."
|
3707 |
|
3708 |
-
#: app/features/mec/notifications.php:
|
3709 |
msgid "Email/Booking verification link."
|
3710 |
msgstr "Email/boeking verificatie link"
|
3711 |
|
3712 |
-
#: app/features/mec/notifications.php:
|
3713 |
msgid "It sends to attendee after confirming the booking by admin."
|
3714 |
msgstr ""
|
3715 |
"Wordt gestuurd naar de deelnemer om hem / haar op de hoogte te stellen voor "
|
3716 |
"bevestiging van de boeking."
|
3717 |
|
3718 |
-
#: app/features/mec/notifications.php:
|
3719 |
-
#: app/features/mec/notifications.php:
|
3720 |
msgid "Booking cancellation link."
|
3721 |
msgstr "Annuleringslink boeking"
|
3722 |
|
3723 |
-
#: app/features/mec/notifications.php:
|
3724 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3725 |
msgstr ""
|
3726 |
-
"
|
3727 |
-
"
|
3728 |
|
3729 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3730 |
msgid "Admin booking management link."
|
3731 |
msgstr "Admin boeking beheer link"
|
3732 |
|
3733 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3734 |
msgid "Enable booking reminder notification"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: app/features/mec/notifications.php:
|
3738 |
#, php-format
|
3739 |
msgid ""
|
3740 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3742,19 +3805,19 @@ msgid ""
|
|
3742 |
"send the reminders multiple times."
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: app/features/mec/notifications.php:
|
3746 |
msgid "only once per day"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: app/features/mec/notifications.php:
|
3750 |
msgid "Days"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: app/features/mec/notifications.php:
|
3754 |
msgid "Enable new event notification"
|
3755 |
msgstr "Nieuwe evenement notificatie inschakelen"
|
3756 |
|
3757 |
-
#: app/features/mec/notifications.php:
|
3758 |
msgid ""
|
3759 |
"It sends after adding a new event from frontend event submission or from "
|
3760 |
"website backend."
|
@@ -3762,36 +3825,36 @@ msgstr ""
|
|
3762 |
"Het zal een email sturen als er een nieuw evenement op de pagina of in de "
|
3763 |
"dashboard is aangemaakt."
|
3764 |
|
3765 |
-
#: app/features/mec/notifications.php:
|
3766 |
msgid "Title of event"
|
3767 |
msgstr "Titel van evenement"
|
3768 |
|
3769 |
-
#: app/features/mec/notifications.php:
|
3770 |
#, fuzzy
|
3771 |
#| msgid "Title of event"
|
3772 |
msgid "Link of event"
|
3773 |
msgstr "Titel van evenement"
|
3774 |
|
3775 |
-
#: app/features/mec/notifications.php:
|
3776 |
msgid "Status of event"
|
3777 |
msgstr "Status evenement"
|
3778 |
|
3779 |
-
#: app/features/mec/notifications.php:
|
3780 |
#: app/features/mec/settings.php:1253
|
3781 |
msgid "Event Note"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: app/features/mec/notifications.php:
|
3785 |
msgid "Admin events management link."
|
3786 |
msgstr "Admin evenement beheer link"
|
3787 |
|
3788 |
-
#: app/features/mec/notifications.php:
|
3789 |
-
#: app/features/mec/notifications.php:
|
3790 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3791 |
msgid "Verified"
|
3792 |
msgstr "Geverifieerd"
|
3793 |
|
3794 |
-
#: app/features/mec/notifications.php:
|
3795 |
msgid "Please Refresh Page"
|
3796 |
msgstr ""
|
3797 |
|
@@ -5211,7 +5274,7 @@ msgid "eg. https://webnus.net"
|
|
5211 |
msgstr ""
|
5212 |
|
5213 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5214 |
-
#: app/skins/single.php:
|
5215 |
msgid "Other Organizers"
|
5216 |
msgstr ""
|
5217 |
|
@@ -5353,7 +5416,7 @@ msgstr ""
|
|
5353 |
msgid "day"
|
5354 |
msgstr "dag"
|
5355 |
|
5356 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5357 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5358 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5359 |
msgid "days"
|
@@ -5363,7 +5426,7 @@ msgstr "dagen"
|
|
5363 |
msgid "hour"
|
5364 |
msgstr "uur"
|
5365 |
|
5366 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5367 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5368 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5369 |
msgid "hours"
|
@@ -5373,7 +5436,7 @@ msgstr "uren"
|
|
5373 |
msgid "minute"
|
5374 |
msgstr "minuut"
|
5375 |
|
5376 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5377 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5378 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5379 |
msgid "minutes"
|
@@ -5383,7 +5446,7 @@ msgstr "minuten"
|
|
5383 |
msgid "second"
|
5384 |
msgstr "seconde"
|
5385 |
|
5386 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5387 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5388 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5389 |
msgid "seconds"
|
@@ -5864,38 +5927,44 @@ msgstr ""
|
|
5864 |
msgid "Your booking is confirmed."
|
5865 |
msgstr "Uw boeking is bevestigd."
|
5866 |
|
5867 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5868 |
msgid "A new booking is received."
|
5869 |
msgstr "Een nieuwe boeking ontvangen."
|
5870 |
|
5871 |
-
#: app/libraries/notifications.php:
|
5872 |
msgid "A new event is added."
|
5873 |
msgstr "Een nieuw evenement is toegevoegd."
|
5874 |
|
5875 |
-
#: app/libraries/notifications.php:
|
5876 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5877 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5878 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5879 |
msgid "All of the day"
|
5880 |
msgstr "Hele dag"
|
5881 |
|
5882 |
-
#: app/libraries/notifications.php:
|
5883 |
msgid "to"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
-
#: app/libraries/notifications.php:
|
5887 |
msgid "+ Add to Google Calendar"
|
5888 |
msgstr "+ Aan Google Kalender toevoegen"
|
5889 |
|
5890 |
-
#: app/libraries/notifications.php:
|
5891 |
msgid "+ iCal export"
|
5892 |
msgstr "+ iCal export"
|
5893 |
|
5894 |
-
#: app/libraries/notifications.php:
|
5895 |
msgid "Yes"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: app/libraries/notifications.php:
|
5899 |
msgid "No"
|
5900 |
msgstr ""
|
5901 |
|
@@ -6110,15 +6179,15 @@ msgstr "Lijstweergave"
|
|
6110 |
msgid "All"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: app/skins/monthly_view/calendar.php:
|
6114 |
-
#: app/skins/monthly_view/calendar.php:
|
6115 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6116 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6117 |
#, php-format
|
6118 |
msgid "Events for %s"
|
6119 |
msgstr "Evenementen in %s"
|
6120 |
|
6121 |
-
#: app/skins/monthly_view/calendar.php:
|
6122 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6123 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6124 |
msgid "No Events"
|
@@ -6128,19 +6197,19 @@ msgstr "Geen evenementen"
|
|
6128 |
msgid "Home"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
-
#: app/skins/single.php:
|
6132 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6133 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6134 |
msgid "Phone"
|
6135 |
msgstr "Telefoon"
|
6136 |
|
6137 |
-
#: app/skins/single.php:
|
6138 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6139 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6140 |
msgid "Website"
|
6141 |
msgstr "Website"
|
6142 |
|
6143 |
-
#: app/skins/single.php:
|
6144 |
#, fuzzy
|
6145 |
msgid "Speakers:"
|
6146 |
msgstr "Zoek locaties"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:05+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:05+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:348
|
34 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
64 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
65 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
66 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
266 |
msgid "Event"
|
267 |
msgstr "Evenement"
|
268 |
|
269 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
270 |
msgid "Add Event"
|
271 |
msgstr "Evenement toevoegen"
|
272 |
|
314 |
msgstr "Categorie"
|
315 |
|
316 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
317 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
318 |
#: app/libraries/main.php:4375
|
319 |
msgid "Categories"
|
320 |
msgstr "Categorieën"
|
413 |
#: app/features/events.php:410 app/features/events.php:1682
|
414 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
415 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
416 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
427 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
428 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
429 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
430 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
431 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
432 |
#: app/skins/single/modern.php:48
|
551 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
554 |
+
#: app/features/mec/notifications.php:170
|
555 |
+
#: app/features/mec/notifications.php:228
|
556 |
+
#: app/features/mec/notifications.php:280
|
557 |
+
#: app/features/mec/notifications.php:339
|
558 |
+
#: app/features/mec/notifications.php:406
|
559 |
+
#: app/features/mec/notifications.php:469
|
560 |
+
#: app/features/mec/notifications.php:480
|
561 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
562 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
563 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
564 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
772 |
msgstr ""
|
773 |
|
774 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
775 |
+
#: app/skins/single.php:379
|
776 |
msgid "Hourly Schedule"
|
777 |
msgstr "Urenschema"
|
778 |
|
844 |
|
845 |
#: app/features/events.php:913 app/features/events.php:933
|
846 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
847 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
848 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
849 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
850 |
msgid "Speakers"
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1248 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1249 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1250 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1251 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1252 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1253 |
msgid "Location"
|
1420 |
msgstr "Verwijder afbeelding"
|
1421 |
|
1422 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1423 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1424 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1425 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1426 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1427 |
msgid "Labels"
|
1428 |
msgstr "Labels"
|
1429 |
|
1430 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1431 |
#: app/features/mec/meta_boxes/filter.php:138
|
1432 |
msgid "Tags"
|
1433 |
msgstr "Tags"
|
1463 |
|
1464 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1465 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1466 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1467 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1468 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1469 |
msgid "Import / Export"
|
1724 |
#: app/features/ix/export_g_calendar.php:72
|
1725 |
#: app/features/ix/export_g_calendar.php:147
|
1726 |
#: app/features/ix/export_g_calendar.php:164
|
1727 |
+
#: app/features/mec/notifications.php:207
|
1728 |
+
#: app/features/mec/notifications.php:260
|
1729 |
+
#: app/features/mec/notifications.php:313
|
1730 |
+
#: app/features/mec/notifications.php:513
|
1731 |
msgid "Add to Google Calendar"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
#: app/features/ix/export_g_calendar.php:90
|
1735 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1736 |
msgid "Checking ..."
|
1737 |
msgstr ""
|
1738 |
|
1962 |
|
1963 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1964 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1965 |
+
#: app/features/mec/notifications.php:457
|
1966 |
msgid "Important Note"
|
1967 |
msgstr ""
|
1968 |
|
2089 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2090 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2091 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2092 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2093 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2094 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2095 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2105 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2106 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2107 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2108 |
+
#: app/skins/monthly_view/calendar.php:86
|
2109 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2110 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2111 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2133 |
msgid "Event %s"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2137 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2138 |
#: app/libraries/main.php:4379
|
2139 |
msgid "Locations"
|
2253 |
"You can select extra locations in addition to main location if you like."
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: app/features/mec.php:153
|
2257 |
msgid ""
|
2258 |
"Activation faild. Please check your purchase code or license type."
|
2259 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: app/features/mec.php:153
|
2263 |
msgid "Troubleshooting"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: app/features/mec.php:193
|
2267 |
msgid ""
|
2268 |
"Your options is not in JSON format. Please insert correct options in this "
|
2269 |
"field and try again."
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: app/features/mec.php:200
|
2273 |
#, fuzzy
|
2274 |
#| msgid "Your booking cannot verify!"
|
2275 |
msgid "Your options field can not be empty!"
|
2276 |
msgstr "Uw boeking kan niet worden geverifieerd!"
|
2277 |
|
2278 |
+
#: app/features/mec.php:206
|
2279 |
#, fuzzy
|
2280 |
#| msgid "Your booking successfully verified."
|
2281 |
msgid "Your options imported successfuly."
|
2282 |
msgstr "Uw boeking is succesvol geverifieerd."
|
2283 |
|
2284 |
+
#: app/features/mec.php:299
|
2285 |
#, fuzzy
|
2286 |
#| msgid "Support"
|
2287 |
msgid "MEC - Support"
|
2288 |
msgstr "Support"
|
2289 |
|
2290 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2291 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2292 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2293 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2294 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2295 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2296 |
msgid "Support"
|
2297 |
msgstr "Support"
|
2298 |
|
2299 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2300 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2301 |
#: app/libraries/main.php:4381
|
2302 |
msgid "Organizers"
|
2303 |
msgstr "Organisatoren"
|
2304 |
|
2305 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2306 |
#: app/features/mec/dashboard.php:194
|
2307 |
msgid "Shortcodes"
|
2308 |
msgstr "Shortcodes"
|
2309 |
|
2310 |
+
#: app/features/mec.php:329
|
2311 |
msgid "MEC - Settings"
|
2312 |
msgstr "MEC - Instellingen"
|
2313 |
|
2314 |
+
#: app/features/mec.php:330
|
2315 |
#, fuzzy
|
2316 |
#| msgid "MEC - Settings"
|
2317 |
msgid "MEC - Addons"
|
2318 |
msgstr "MEC - Instellingen"
|
2319 |
|
2320 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2321 |
msgid "Addons"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: app/features/mec.php:349
|
2325 |
msgid "Add Shortcode"
|
2326 |
msgstr "Shortcode toevoegen"
|
2327 |
|
2328 |
+
#: app/features/mec.php:350
|
2329 |
msgid "Add New Shortcode"
|
2330 |
msgstr "Nieuwe shortcode toevoegen"
|
2331 |
|
2332 |
+
#: app/features/mec.php:351
|
2333 |
msgid "No shortcodes found!"
|
2334 |
msgstr "Geen shortcodes gevonden!"
|
2335 |
|
2336 |
+
#: app/features/mec.php:352
|
2337 |
msgid "All Shortcodes"
|
2338 |
msgstr "Alle shortcodes"
|
2339 |
|
2340 |
+
#: app/features/mec.php:353
|
2341 |
msgid "Edit shortcodes"
|
2342 |
msgstr "Bewerk shortcodes"
|
2343 |
|
2344 |
+
#: app/features/mec.php:354
|
2345 |
msgid "No shortcodes found in Trash!"
|
2346 |
msgstr "Geen shortcodes gevonden in de prullenbak!"
|
2347 |
|
2348 |
+
#: app/features/mec.php:402
|
2349 |
msgid "Display Options"
|
2350 |
msgstr "Weergave opties"
|
2351 |
|
2352 |
+
#: app/features/mec.php:403
|
2353 |
msgid "Filter Options"
|
2354 |
msgstr "Filter opties"
|
2355 |
|
2356 |
+
#: app/features/mec.php:405
|
2357 |
#, fuzzy
|
2358 |
msgid "Search Form"
|
2359 |
msgstr "Zoek coupons"
|
2360 |
|
2361 |
+
#: app/features/mec.php:755
|
2362 |
msgid "Display content's images as Popup"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: app/features/mec.php:768
|
2366 |
msgid "Single Event Display Method"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: app/features/mec.php:773
|
2370 |
msgid "Separate Window"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: app/features/mec.php:774
|
2374 |
msgid "Modal 1"
|
2375 |
msgstr ""
|
2376 |
|
2527 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2528 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2529 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2530 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2531 |
+
#: app/features/mec/notifications.php:581
|
2532 |
+
#: app/features/mec/notifications.php:680
|
2533 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2534 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2535 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2536 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2545 |
msgstr "Wijzigingen opslaan"
|
2546 |
|
2547 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2548 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2549 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2550 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2551 |
#: app/features/mec/support.php:52
|
2553 |
msgstr "Styling opties"
|
2554 |
|
2555 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2556 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2557 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2558 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2559 |
#: app/features/mec/support.php:59
|
2562 |
|
2563 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2564 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2565 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2566 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2567 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2568 |
msgid "Messages"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2572 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2573 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2574 |
#: app/features/mec/styling.php:375
|
2575 |
msgid "Saved"
|
2576 |
msgstr "Opgeslagen"
|
2577 |
|
2578 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2579 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2580 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2581 |
#: app/features/mec/styling.php:376
|
2582 |
msgid "Settings Saved!"
|
3428 |
msgid "No Search Options"
|
3429 |
msgstr "Zoek locaties"
|
3430 |
|
3431 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3432 |
msgid "Booking Notification"
|
3433 |
msgstr "Boekingsnotificatie"
|
3434 |
|
3435 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3436 |
msgid "Booking Verification"
|
3437 |
msgstr "Boekingsverificatie"
|
3438 |
|
3439 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3440 |
#: app/features/mec/settings.php:1409
|
3441 |
msgid "Booking Confirmation"
|
3442 |
msgstr "Boekingsbevestiging"
|
3443 |
|
3444 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3445 |
+
#, fuzzy
|
3446 |
+
#| msgid "Booking cancellation link."
|
3447 |
+
msgid "Booking Cancellation"
|
3448 |
+
msgstr "Annuleringslink boeking"
|
3449 |
+
|
3450 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3451 |
msgid "Admin Notification"
|
3452 |
msgstr "Admin notificatie"
|
3453 |
|
3454 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3455 |
+
#: app/libraries/notifications.php:354
|
3456 |
msgid "Booking Reminder"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3460 |
#: app/features/mec/support-page.php:80
|
3461 |
msgid "New Event"
|
3462 |
msgstr "Nieuw evenement"
|
3463 |
|
3464 |
+
#: app/features/mec/notifications.php:155
|
3465 |
msgid "Enable booking notification"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: app/features/mec/notifications.php:159
|
3469 |
msgid "It sends to attendee after booking for notifying him/her."
|
3470 |
msgstr ""
|
3471 |
"Wordt gestuurd naar deelnemer op hem / haar op de hoogte te stellen van de "
|
3472 |
"boeking."
|
3473 |
|
3474 |
+
#: app/features/mec/notifications.php:161
|
3475 |
+
#: app/features/mec/notifications.php:219
|
3476 |
+
#: app/features/mec/notifications.php:271
|
3477 |
+
#: app/features/mec/notifications.php:330
|
3478 |
+
#: app/features/mec/notifications.php:397
|
3479 |
+
#: app/features/mec/notifications.php:460
|
3480 |
+
#: app/features/mec/notifications.php:532
|
3481 |
msgid "Email Subject"
|
3482 |
msgstr "Email onderwerp"
|
3483 |
|
3484 |
+
#: app/features/mec/notifications.php:165
|
3485 |
+
#: app/features/mec/notifications.php:169
|
3486 |
+
#: app/features/mec/notifications.php:223
|
3487 |
+
#: app/features/mec/notifications.php:227
|
3488 |
+
#: app/features/mec/notifications.php:275
|
3489 |
+
#: app/features/mec/notifications.php:279
|
3490 |
+
#: app/features/mec/notifications.php:334
|
3491 |
+
#: app/features/mec/notifications.php:338
|
3492 |
+
#: app/features/mec/notifications.php:401
|
3493 |
+
#: app/features/mec/notifications.php:405
|
3494 |
+
#: app/features/mec/notifications.php:464
|
3495 |
+
#: app/features/mec/notifications.php:468
|
3496 |
+
#: app/features/mec/notifications.php:479
|
3497 |
+
#: app/features/mec/notifications.php:536
|
3498 |
+
#: app/features/mec/notifications.php:540
|
3499 |
msgid "Custom Recipients"
|
3500 |
msgstr "Geadresseerden"
|
3501 |
|
3502 |
+
#: app/features/mec/notifications.php:170
|
3503 |
+
#: app/features/mec/notifications.php:228
|
3504 |
+
#: app/features/mec/notifications.php:280
|
3505 |
+
#: app/features/mec/notifications.php:339
|
3506 |
+
#: app/features/mec/notifications.php:406
|
3507 |
+
#: app/features/mec/notifications.php:469
|
3508 |
+
#: app/features/mec/notifications.php:480
|
3509 |
+
#: app/features/mec/notifications.php:541
|
3510 |
msgid "Insert comma separated emails for multiple recipients."
|
3511 |
msgstr "Vul verschillende emailadressen in door ze met een komma te scheiden."
|
3512 |
|
3513 |
+
#: app/features/mec/notifications.php:177
|
3514 |
+
#: app/features/mec/notifications.php:350
|
3515 |
+
#: app/features/mec/notifications.php:413
|
3516 |
msgid "Send the email to event organizer"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: app/features/mec/notifications.php:180
|
3520 |
+
#: app/features/mec/notifications.php:234
|
3521 |
+
#: app/features/mec/notifications.php:286
|
3522 |
+
#: app/features/mec/notifications.php:357
|
3523 |
+
#: app/features/mec/notifications.php:416
|
3524 |
+
#: app/features/mec/notifications.php:486
|
3525 |
+
#: app/features/mec/notifications.php:547
|
3526 |
msgid "Email Content"
|
3527 |
msgstr "Email inhoud"
|
3528 |
|
3529 |
+
#: app/features/mec/notifications.php:183
|
3530 |
+
#: app/features/mec/notifications.php:237
|
3531 |
+
#: app/features/mec/notifications.php:289
|
3532 |
+
#: app/features/mec/notifications.php:360
|
3533 |
+
#: app/features/mec/notifications.php:419
|
3534 |
+
#: app/features/mec/notifications.php:489
|
3535 |
+
#: app/features/mec/notifications.php:550
|
3536 |
msgid "You can use following placeholders"
|
3537 |
msgstr "U kunt de volgende placeholders gebruiken"
|
3538 |
|
3539 |
+
#: app/features/mec/notifications.php:185
|
3540 |
+
#: app/features/mec/notifications.php:239
|
3541 |
+
#: app/features/mec/notifications.php:291
|
3542 |
+
#: app/features/mec/notifications.php:362
|
3543 |
+
#: app/features/mec/notifications.php:421
|
3544 |
+
#: app/features/mec/notifications.php:491
|
3545 |
msgid "First name of attendee"
|
3546 |
msgstr "Voornaam van deelnemer"
|
3547 |
|
3548 |
+
#: app/features/mec/notifications.php:186
|
3549 |
+
#: app/features/mec/notifications.php:240
|
3550 |
+
#: app/features/mec/notifications.php:292
|
3551 |
+
#: app/features/mec/notifications.php:363
|
3552 |
+
#: app/features/mec/notifications.php:422
|
3553 |
+
#: app/features/mec/notifications.php:492
|
3554 |
msgid "Last name of attendee"
|
3555 |
msgstr "Achternaam van deelnemer"
|
3556 |
|
3557 |
+
#: app/features/mec/notifications.php:187
|
3558 |
+
#: app/features/mec/notifications.php:241
|
3559 |
+
#: app/features/mec/notifications.php:293
|
3560 |
+
#: app/features/mec/notifications.php:364
|
3561 |
+
#: app/features/mec/notifications.php:423
|
3562 |
+
#: app/features/mec/notifications.php:493
|
3563 |
msgid "Email of attendee"
|
3564 |
msgstr "Email van deelnemer"
|
3565 |
|
3566 |
+
#: app/features/mec/notifications.php:188
|
3567 |
+
#: app/features/mec/notifications.php:242
|
3568 |
+
#: app/features/mec/notifications.php:294
|
3569 |
+
#: app/features/mec/notifications.php:365
|
3570 |
+
#: app/features/mec/notifications.php:424
|
3571 |
+
#: app/features/mec/notifications.php:494
|
3572 |
msgid "Booked date of event"
|
3573 |
msgstr "Geboekte datum van het evenement"
|
3574 |
|
3575 |
+
#: app/features/mec/notifications.php:189
|
3576 |
+
#: app/features/mec/notifications.php:243
|
3577 |
+
#: app/features/mec/notifications.php:295
|
3578 |
+
#: app/features/mec/notifications.php:366
|
3579 |
+
#: app/features/mec/notifications.php:425
|
3580 |
+
#: app/features/mec/notifications.php:495
|
3581 |
#, fuzzy
|
3582 |
#| msgid "Booked date of event"
|
3583 |
msgid "Booked time of event"
|
3584 |
msgstr "Geboekte datum van het evenement"
|
3585 |
|
3586 |
+
#: app/features/mec/notifications.php:190
|
3587 |
+
#: app/features/mec/notifications.php:244
|
3588 |
+
#: app/features/mec/notifications.php:296
|
3589 |
+
#: app/features/mec/notifications.php:367
|
3590 |
+
#: app/features/mec/notifications.php:426
|
3591 |
+
#: app/features/mec/notifications.php:496
|
3592 |
msgid "Booking Price"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: app/features/mec/notifications.php:191
|
3596 |
+
#: app/features/mec/notifications.php:245
|
3597 |
+
#: app/features/mec/notifications.php:297
|
3598 |
+
#: app/features/mec/notifications.php:368
|
3599 |
+
#: app/features/mec/notifications.php:427
|
3600 |
+
#: app/features/mec/notifications.php:497
|
3601 |
+
#: app/features/mec/notifications.php:556
|
3602 |
msgid "Your website title"
|
3603 |
msgstr "Uw website titel"
|
3604 |
|
3605 |
+
#: app/features/mec/notifications.php:192
|
3606 |
+
#: app/features/mec/notifications.php:246
|
3607 |
+
#: app/features/mec/notifications.php:298
|
3608 |
+
#: app/features/mec/notifications.php:369
|
3609 |
+
#: app/features/mec/notifications.php:428
|
3610 |
+
#: app/features/mec/notifications.php:498
|
3611 |
+
#: app/features/mec/notifications.php:557
|
3612 |
msgid "Your website URL"
|
3613 |
msgstr "Uw website URL"
|
3614 |
|
3615 |
+
#: app/features/mec/notifications.php:193
|
3616 |
+
#: app/features/mec/notifications.php:247
|
3617 |
+
#: app/features/mec/notifications.php:299
|
3618 |
+
#: app/features/mec/notifications.php:370
|
3619 |
+
#: app/features/mec/notifications.php:429
|
3620 |
+
#: app/features/mec/notifications.php:499
|
3621 |
+
#: app/features/mec/notifications.php:558
|
3622 |
msgid "Your website description"
|
3623 |
msgstr "Uw website beschrijving"
|
3624 |
|
3625 |
+
#: app/features/mec/notifications.php:194
|
3626 |
+
#: app/features/mec/notifications.php:248
|
3627 |
+
#: app/features/mec/notifications.php:300
|
3628 |
+
#: app/features/mec/notifications.php:371
|
3629 |
+
#: app/features/mec/notifications.php:430
|
3630 |
+
#: app/features/mec/notifications.php:500
|
3631 |
msgid "Event title"
|
3632 |
msgstr "Evenement titel"
|
3633 |
|
3634 |
+
#: app/features/mec/notifications.php:195
|
3635 |
+
#: app/features/mec/notifications.php:249
|
3636 |
+
#: app/features/mec/notifications.php:301
|
3637 |
+
#: app/features/mec/notifications.php:372
|
3638 |
+
#: app/features/mec/notifications.php:431
|
3639 |
+
#: app/features/mec/notifications.php:501
|
3640 |
#, fuzzy
|
3641 |
msgid "Event link"
|
3642 |
msgstr "Evenement locatie"
|
3643 |
|
3644 |
+
#: app/features/mec/notifications.php:196
|
3645 |
+
#: app/features/mec/notifications.php:250
|
3646 |
+
#: app/features/mec/notifications.php:302
|
3647 |
+
#: app/features/mec/notifications.php:373
|
3648 |
+
#: app/features/mec/notifications.php:432
|
3649 |
+
#: app/features/mec/notifications.php:502
|
3650 |
msgid "Organizer name of booked event"
|
3651 |
msgstr "Organisator naam van geboekt evenement"
|
3652 |
|
3653 |
+
#: app/features/mec/notifications.php:197
|
3654 |
+
#: app/features/mec/notifications.php:251
|
3655 |
+
#: app/features/mec/notifications.php:303
|
3656 |
+
#: app/features/mec/notifications.php:374
|
3657 |
+
#: app/features/mec/notifications.php:433
|
3658 |
+
#: app/features/mec/notifications.php:503
|
3659 |
msgid "Organizer tel of booked event"
|
3660 |
msgstr "Organisator telefoonnummer van geboekt evenement"
|
3661 |
|
3662 |
+
#: app/features/mec/notifications.php:198
|
3663 |
+
#: app/features/mec/notifications.php:252
|
3664 |
+
#: app/features/mec/notifications.php:304
|
3665 |
+
#: app/features/mec/notifications.php:375
|
3666 |
+
#: app/features/mec/notifications.php:434
|
3667 |
+
#: app/features/mec/notifications.php:504
|
3668 |
msgid "Organizer email of booked event"
|
3669 |
msgstr "Organisator email van geboekt evenement"
|
3670 |
|
3671 |
+
#: app/features/mec/notifications.php:199
|
3672 |
+
#: app/features/mec/notifications.php:253
|
3673 |
+
#: app/features/mec/notifications.php:305
|
3674 |
+
#: app/features/mec/notifications.php:376
|
3675 |
+
#: app/features/mec/notifications.php:435
|
3676 |
+
#: app/features/mec/notifications.php:505
|
3677 |
msgid "Location name of booked event"
|
3678 |
msgstr "Locatie naam van geboekt evenement"
|
3679 |
|
3680 |
+
#: app/features/mec/notifications.php:200
|
3681 |
+
#: app/features/mec/notifications.php:254
|
3682 |
+
#: app/features/mec/notifications.php:306
|
3683 |
+
#: app/features/mec/notifications.php:377
|
3684 |
+
#: app/features/mec/notifications.php:436
|
3685 |
+
#: app/features/mec/notifications.php:506
|
3686 |
msgid "Location address of booked event"
|
3687 |
msgstr "Locatie adres van geboekt evenement"
|
3688 |
|
3689 |
+
#: app/features/mec/notifications.php:201
|
3690 |
+
#: app/features/mec/notifications.php:379
|
3691 |
+
#: app/features/mec/notifications.php:438
|
3692 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3693 |
msgstr "Volledige deelnemers info zoals boekings datim, naam, email enz."
|
3694 |
|
3695 |
+
#: app/features/mec/notifications.php:202
|
3696 |
+
#: app/features/mec/notifications.php:308
|
3697 |
+
#: app/features/mec/notifications.php:508
|
3698 |
msgid "Invoice Link"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
+
#: app/features/mec/notifications.php:203
|
3702 |
+
#: app/features/mec/notifications.php:256
|
3703 |
+
#: app/features/mec/notifications.php:309
|
3704 |
+
#: app/features/mec/notifications.php:380
|
3705 |
+
#: app/features/mec/notifications.php:439
|
3706 |
+
#: app/features/mec/notifications.php:509
|
3707 |
msgid "Total Attendees"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: app/features/mec/notifications.php:204
|
3711 |
+
#: app/features/mec/notifications.php:257
|
3712 |
+
#: app/features/mec/notifications.php:310
|
3713 |
+
#: app/features/mec/notifications.php:510
|
3714 |
#, fuzzy
|
3715 |
#| msgid "Ticket Name"
|
3716 |
msgid "Ticket name"
|
3717 |
msgstr "Ticket naam"
|
3718 |
|
3719 |
+
#: app/features/mec/notifications.php:205
|
3720 |
+
#: app/features/mec/notifications.php:258
|
3721 |
+
#: app/features/mec/notifications.php:311
|
3722 |
+
#: app/features/mec/notifications.php:511
|
3723 |
#, fuzzy
|
3724 |
#| msgid "Ticket Name"
|
3725 |
msgid "Ticket time"
|
3726 |
msgstr "Ticket naam"
|
3727 |
|
3728 |
+
#: app/features/mec/notifications.php:206
|
3729 |
+
#: app/features/mec/notifications.php:259
|
3730 |
+
#: app/features/mec/notifications.php:312
|
3731 |
+
#: app/features/mec/notifications.php:512
|
3732 |
msgid "Download ICS file"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: app/features/mec/notifications.php:217
|
3736 |
msgid "It sends to attendee email for verifying their booking/email."
|
3737 |
msgstr ""
|
3738 |
"Wordt gestuurd naar de deelnemers email voor verificatie van hun boeking."
|
3739 |
|
3740 |
+
#: app/features/mec/notifications.php:255
|
3741 |
msgid "Email/Booking verification link."
|
3742 |
msgstr "Email/boeking verificatie link"
|
3743 |
|
3744 |
+
#: app/features/mec/notifications.php:269
|
3745 |
msgid "It sends to attendee after confirming the booking by admin."
|
3746 |
msgstr ""
|
3747 |
"Wordt gestuurd naar de deelnemer om hem / haar op de hoogte te stellen voor "
|
3748 |
"bevestiging van de boeking."
|
3749 |
|
3750 |
+
#: app/features/mec/notifications.php:307
|
3751 |
+
#: app/features/mec/notifications.php:507
|
3752 |
msgid "Booking cancellation link."
|
3753 |
msgstr "Annuleringslink boeking"
|
3754 |
|
3755 |
+
#: app/features/mec/notifications.php:324
|
3756 |
+
#, fuzzy
|
3757 |
+
#| msgid "Enable new event notification"
|
3758 |
+
msgid "Enable cancellation notification"
|
3759 |
+
msgstr "Nieuwe evenement notificatie inschakelen"
|
3760 |
+
|
3761 |
+
#: app/features/mec/notifications.php:328
|
3762 |
+
#, fuzzy
|
3763 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3764 |
+
msgid ""
|
3765 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3766 |
+
"them."
|
3767 |
msgstr ""
|
3768 |
+
"Wordt gestuurd naar deelnemer op hem / haar op de hoogte te stellen van de "
|
3769 |
+
"boeking."
|
3770 |
|
3771 |
+
#: app/features/mec/notifications.php:346
|
3772 |
+
msgid "Send the email to admin"
|
3773 |
+
msgstr ""
|
3774 |
+
|
3775 |
+
#: app/features/mec/notifications.php:354
|
3776 |
+
msgid "Send the email to booking user"
|
3777 |
+
msgstr ""
|
3778 |
+
|
3779 |
+
#: app/features/mec/notifications.php:378
|
3780 |
+
#: app/features/mec/notifications.php:437
|
3781 |
msgid "Admin booking management link."
|
3782 |
msgstr "Admin boeking beheer link"
|
3783 |
|
3784 |
+
#: app/features/mec/notifications.php:391
|
3785 |
+
#, fuzzy
|
3786 |
+
#| msgid "Enable new event notification"
|
3787 |
+
msgid "Enable admin notification"
|
3788 |
+
msgstr "Nieuwe evenement notificatie inschakelen"
|
3789 |
+
|
3790 |
+
#: app/features/mec/notifications.php:395
|
3791 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3792 |
+
msgstr ""
|
3793 |
+
"Het zal een email sturen naar de admin om hem / haar te melden dat er een "
|
3794 |
+
"nieuwe boeking is ontvangen."
|
3795 |
+
|
3796 |
+
#: app/features/mec/notifications.php:451
|
3797 |
msgid "Enable booking reminder notification"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: app/features/mec/notifications.php:457
|
3801 |
#, php-format
|
3802 |
msgid ""
|
3803 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3805 |
"send the reminders multiple times."
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: app/features/mec/notifications.php:457
|
3809 |
msgid "only once per day"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: app/features/mec/notifications.php:475
|
3813 |
msgid "Days"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: app/features/mec/notifications.php:526
|
3817 |
msgid "Enable new event notification"
|
3818 |
msgstr "Nieuwe evenement notificatie inschakelen"
|
3819 |
|
3820 |
+
#: app/features/mec/notifications.php:530
|
3821 |
msgid ""
|
3822 |
"It sends after adding a new event from frontend event submission or from "
|
3823 |
"website backend."
|
3825 |
"Het zal een email sturen als er een nieuw evenement op de pagina of in de "
|
3826 |
"dashboard is aangemaakt."
|
3827 |
|
3828 |
+
#: app/features/mec/notifications.php:552
|
3829 |
msgid "Title of event"
|
3830 |
msgstr "Titel van evenement"
|
3831 |
|
3832 |
+
#: app/features/mec/notifications.php:553
|
3833 |
#, fuzzy
|
3834 |
#| msgid "Title of event"
|
3835 |
msgid "Link of event"
|
3836 |
msgstr "Titel van evenement"
|
3837 |
|
3838 |
+
#: app/features/mec/notifications.php:554
|
3839 |
msgid "Status of event"
|
3840 |
msgstr "Status evenement"
|
3841 |
|
3842 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3843 |
#: app/features/mec/settings.php:1253
|
3844 |
msgid "Event Note"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: app/features/mec/notifications.php:559
|
3848 |
msgid "Admin events management link."
|
3849 |
msgstr "Admin evenement beheer link"
|
3850 |
|
3851 |
+
#: app/features/mec/notifications.php:661
|
3852 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3853 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3854 |
msgid "Verified"
|
3855 |
msgstr "Geverifieerd"
|
3856 |
|
3857 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3858 |
msgid "Please Refresh Page"
|
3859 |
msgstr ""
|
3860 |
|
5274 |
msgstr ""
|
5275 |
|
5276 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5277 |
+
#: app/skins/single.php:295
|
5278 |
msgid "Other Organizers"
|
5279 |
msgstr ""
|
5280 |
|
5416 |
msgid "day"
|
5417 |
msgstr "dag"
|
5418 |
|
5419 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5420 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5421 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5422 |
msgid "days"
|
5426 |
msgid "hour"
|
5427 |
msgstr "uur"
|
5428 |
|
5429 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5430 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5431 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5432 |
msgid "hours"
|
5436 |
msgid "minute"
|
5437 |
msgstr "minuut"
|
5438 |
|
5439 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5440 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5441 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5442 |
msgid "minutes"
|
5446 |
msgid "second"
|
5447 |
msgstr "seconde"
|
5448 |
|
5449 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5450 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5451 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5452 |
msgid "seconds"
|
5927 |
msgid "Your booking is confirmed."
|
5928 |
msgstr "Uw boeking is bevestigd."
|
5929 |
|
5930 |
+
#: app/libraries/notifications.php:252
|
5931 |
+
#, fuzzy
|
5932 |
+
#| msgid "Your booking cannot be canceled."
|
5933 |
+
msgid "booking canceled."
|
5934 |
+
msgstr "Uw boeking kan niet worden geannuleerd."
|
5935 |
+
|
5936 |
+
#: app/libraries/notifications.php:296
|
5937 |
msgid "A new booking is received."
|
5938 |
msgstr "Een nieuwe boeking ontvangen."
|
5939 |
|
5940 |
+
#: app/libraries/notifications.php:425
|
5941 |
msgid "A new event is added."
|
5942 |
msgstr "Een nieuw evenement is toegevoegd."
|
5943 |
|
5944 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
5945 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5946 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5947 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5948 |
msgid "All of the day"
|
5949 |
msgstr "Hele dag"
|
5950 |
|
5951 |
+
#: app/libraries/notifications.php:605
|
5952 |
msgid "to"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
5956 |
msgid "+ Add to Google Calendar"
|
5957 |
msgstr "+ Aan Google Kalender toevoegen"
|
5958 |
|
5959 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
5960 |
msgid "+ iCal export"
|
5961 |
msgstr "+ iCal export"
|
5962 |
|
5963 |
+
#: app/libraries/notifications.php:683
|
5964 |
msgid "Yes"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
+
#: app/libraries/notifications.php:683
|
5968 |
msgid "No"
|
5969 |
msgstr ""
|
5970 |
|
6179 |
msgid "All"
|
6180 |
msgstr ""
|
6181 |
|
6182 |
+
#: app/skins/monthly_view/calendar.php:68
|
6183 |
+
#: app/skins/monthly_view/calendar.php:154
|
6184 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6185 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6186 |
#, php-format
|
6187 |
msgid "Events for %s"
|
6188 |
msgstr "Evenementen in %s"
|
6189 |
|
6190 |
+
#: app/skins/monthly_view/calendar.php:156
|
6191 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6192 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6193 |
msgid "No Events"
|
6197 |
msgid "Home"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6201 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6202 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6203 |
msgid "Phone"
|
6204 |
msgstr "Telefoon"
|
6205 |
|
6206 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6207 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6208 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6209 |
msgid "Website"
|
6210 |
msgstr "Website"
|
6211 |
|
6212 |
+
#: app/skins/single.php:393
|
6213 |
#, fuzzy
|
6214 |
msgid "Speakers:"
|
6215 |
msgstr "Zoek locaties"
|
languages/modern-events-calendar-lite-pl_PL.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-pl_PL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
68 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
69 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -268,7 +268,7 @@ msgstr "Wydarzenia"
|
|
268 |
msgid "Event"
|
269 |
msgstr "Wydarzenie"
|
270 |
|
271 |
-
#: app/features/events.php:136 app/features/mec.php:
|
272 |
msgid "Add Event"
|
273 |
msgstr "Dodaj wydarzenie"
|
274 |
|
@@ -316,7 +316,7 @@ msgid "Category"
|
|
316 |
msgstr "Kategoria"
|
317 |
|
318 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
319 |
-
#: app/features/mec.php:
|
320 |
#: app/libraries/main.php:4375
|
321 |
msgid "Categories"
|
322 |
msgstr "Kategorie"
|
@@ -415,7 +415,7 @@ msgstr "Dane gości"
|
|
415 |
#: app/features/events.php:410 app/features/events.php:1682
|
416 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
417 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +427,8 @@ msgstr "Imię"
|
|
427 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
428 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
429 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
430 |
-
#: app/libraries/notifications.php:
|
431 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
432 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
433 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
434 |
#: app/skins/single/modern.php:48
|
@@ -553,13 +553,14 @@ msgstr ""
|
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
555 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
556 |
-
#: app/features/mec/notifications.php:
|
557 |
-
#: app/features/mec/notifications.php:
|
558 |
-
#: app/features/mec/notifications.php:
|
559 |
-
#: app/features/mec/notifications.php:
|
560 |
-
#: app/features/mec/notifications.php:
|
561 |
-
#: app/features/mec/notifications.php:
|
562 |
-
#: app/features/mec/notifications.php:
|
|
|
563 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
564 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
565 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -770,7 +771,7 @@ msgid "Day 1"
|
|
770 |
msgstr ""
|
771 |
|
772 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
773 |
-
#: app/skins/single.php:
|
774 |
msgid "Hourly Schedule"
|
775 |
msgstr "Harmonogram"
|
776 |
|
@@ -842,7 +843,7 @@ msgstr "Opis"
|
|
842 |
|
843 |
#: app/features/events.php:913 app/features/events.php:933
|
844 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
845 |
-
#: app/features/mec.php:
|
846 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
847 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
848 |
msgid "Speakers"
|
@@ -1247,7 +1248,7 @@ msgstr "organizatorzy"
|
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1248 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1249 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1250 |
-
#: app/skins/single.php:
|
1251 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1252 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1253 |
msgid "Location"
|
@@ -1419,14 +1420,14 @@ msgid "Remove Image"
|
|
1419 |
msgstr "Usuń obraz"
|
1420 |
|
1421 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1422 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1423 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1424 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1425 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1426 |
msgid "Labels"
|
1427 |
msgstr "Etykiety"
|
1428 |
|
1429 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1430 |
#: app/features/mec/meta_boxes/filter.php:138
|
1431 |
msgid "Tags"
|
1432 |
msgstr "Tagi"
|
@@ -1462,7 +1463,7 @@ msgstr "MEC - Importowanie / eksportowanie"
|
|
1462 |
|
1463 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1464 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1465 |
-
#: app/features/mec/notifications.php:
|
1466 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1467 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1468 |
msgid "Import / Export"
|
@@ -1741,15 +1742,15 @@ msgstr "Przełącz"
|
|
1741 |
#: app/features/ix/export_g_calendar.php:72
|
1742 |
#: app/features/ix/export_g_calendar.php:147
|
1743 |
#: app/features/ix/export_g_calendar.php:164
|
1744 |
-
#: app/features/mec/notifications.php:
|
1745 |
-
#: app/features/mec/notifications.php:
|
1746 |
-
#: app/features/mec/notifications.php:
|
1747 |
-
#: app/features/mec/notifications.php:
|
1748 |
msgid "Add to Google Calendar"
|
1749 |
msgstr "Dodaj do Kalendarza Google"
|
1750 |
|
1751 |
#: app/features/ix/export_g_calendar.php:90
|
1752 |
-
#: app/features/mec/notifications.php:
|
1753 |
msgid "Checking ..."
|
1754 |
msgstr "Sprawdzanie ..."
|
1755 |
|
@@ -1998,7 +1999,7 @@ msgstr "Automatyczny import Google"
|
|
1998 |
|
1999 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2000 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2001 |
-
#: app/features/mec/notifications.php:
|
2002 |
msgid "Important Note"
|
2003 |
msgstr "Ważna informacja"
|
2004 |
|
@@ -2138,7 +2139,7 @@ msgstr ""
|
|
2138 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2139 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2140 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2141 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2142 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2143 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2144 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2154,7 +2155,7 @@ msgstr "Obraz wyróżniający"
|
|
2154 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2155 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2156 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2157 |
-
#: app/skins/monthly_view/calendar.php:
|
2158 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2159 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2160 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2182,7 +2183,7 @@ msgstr "Upr. nazwa"
|
|
2182 |
msgid "Event %s"
|
2183 |
msgstr "Wydarzenie %s"
|
2184 |
|
2185 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2186 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2187 |
#: app/libraries/main.php:4379
|
2188 |
msgid "Locations"
|
@@ -2302,123 +2303,123 @@ msgid ""
|
|
2302 |
"You can select extra locations in addition to main location if you like."
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: app/features/mec.php:
|
2306 |
msgid ""
|
2307 |
"Activation faild. Please check your purchase code or license type."
|
2308 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: app/features/mec.php:
|
2312 |
msgid "Troubleshooting"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: app/features/mec.php:
|
2316 |
msgid ""
|
2317 |
"Your options is not in JSON format. Please insert correct options in this "
|
2318 |
"field and try again."
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: app/features/mec.php:
|
2322 |
#, fuzzy
|
2323 |
#| msgid "Your booking cannot verify!"
|
2324 |
msgid "Your options field can not be empty!"
|
2325 |
msgstr "Twoja rezerwacja nie może zostać zweryfikowana!"
|
2326 |
|
2327 |
-
#: app/features/mec.php:
|
2328 |
#, fuzzy
|
2329 |
#| msgid "Your booking successfully verified."
|
2330 |
msgid "Your options imported successfuly."
|
2331 |
msgstr "Twoja rezerwacja została pomyślnie zweryfikowana."
|
2332 |
|
2333 |
-
#: app/features/mec.php:
|
2334 |
#, fuzzy
|
2335 |
#| msgid "Support"
|
2336 |
msgid "MEC - Support"
|
2337 |
msgstr "Wsparcie"
|
2338 |
|
2339 |
-
#: app/features/mec.php:
|
2340 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2341 |
-
#: app/features/mec/notifications.php:
|
2342 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2343 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2344 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2345 |
msgid "Support"
|
2346 |
msgstr "Wsparcie"
|
2347 |
|
2348 |
-
#: app/features/mec.php:
|
2349 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2350 |
#: app/libraries/main.php:4381
|
2351 |
msgid "Organizers"
|
2352 |
msgstr "Organizatorzy"
|
2353 |
|
2354 |
-
#: app/features/mec.php:
|
2355 |
#: app/features/mec/dashboard.php:194
|
2356 |
msgid "Shortcodes"
|
2357 |
msgstr "Shortcodes"
|
2358 |
|
2359 |
-
#: app/features/mec.php:
|
2360 |
msgid "MEC - Settings"
|
2361 |
msgstr "MEC - Ustawienia"
|
2362 |
|
2363 |
-
#: app/features/mec.php:
|
2364 |
#, fuzzy
|
2365 |
#| msgid "MEC - Settings"
|
2366 |
msgid "MEC - Addons"
|
2367 |
msgstr "MEC - Ustawienia"
|
2368 |
|
2369 |
-
#: app/features/mec.php:
|
2370 |
msgid "Addons"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: app/features/mec.php:
|
2374 |
msgid "Add Shortcode"
|
2375 |
msgstr "Dodaj shortcode"
|
2376 |
|
2377 |
-
#: app/features/mec.php:
|
2378 |
msgid "Add New Shortcode"
|
2379 |
msgstr "Dodaj nowy shortcode"
|
2380 |
|
2381 |
-
#: app/features/mec.php:
|
2382 |
msgid "No shortcodes found!"
|
2383 |
msgstr "Nie znaleziono shortcodes!"
|
2384 |
|
2385 |
-
#: app/features/mec.php:
|
2386 |
msgid "All Shortcodes"
|
2387 |
msgstr "Wszystkie shortcodes"
|
2388 |
|
2389 |
-
#: app/features/mec.php:
|
2390 |
msgid "Edit shortcodes"
|
2391 |
msgstr "Edytuj shortcodes"
|
2392 |
|
2393 |
-
#: app/features/mec.php:
|
2394 |
msgid "No shortcodes found in Trash!"
|
2395 |
msgstr "Brak shortcodes w koszu!"
|
2396 |
|
2397 |
-
#: app/features/mec.php:
|
2398 |
msgid "Display Options"
|
2399 |
msgstr "Opcje wyświetlania"
|
2400 |
|
2401 |
-
#: app/features/mec.php:
|
2402 |
msgid "Filter Options"
|
2403 |
msgstr "Opcje filtrów"
|
2404 |
|
2405 |
-
#: app/features/mec.php:
|
2406 |
msgid "Search Form"
|
2407 |
msgstr "Formularz wyszukiwania"
|
2408 |
|
2409 |
-
#: app/features/mec.php:
|
2410 |
msgid "Display content's images as Popup"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: app/features/mec.php:
|
2414 |
msgid "Single Event Display Method"
|
2415 |
msgstr "Sposób wyświetlania wydarzenia"
|
2416 |
|
2417 |
-
#: app/features/mec.php:
|
2418 |
msgid "Separate Window"
|
2419 |
msgstr "Osobna karta"
|
2420 |
|
2421 |
-
#: app/features/mec.php:
|
2422 |
msgid "Modal 1"
|
2423 |
msgstr "Okno modalne"
|
2424 |
|
@@ -2579,10 +2580,10 @@ msgstr "Dziennik Zmian"
|
|
2579 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2580 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2581 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2582 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2583 |
-
#: app/features/mec/notifications.php:
|
2584 |
-
#: app/features/mec/notifications.php:
|
2585 |
-
#: app/features/mec/notifications.php:
|
2586 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2587 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2588 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2597,7 +2598,7 @@ msgid "Save Changes"
|
|
2597 |
msgstr "Zapisz zmiany"
|
2598 |
|
2599 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2600 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2601 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2602 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2603 |
#: app/features/mec/support.php:52
|
@@ -2605,7 +2606,7 @@ msgid "Styling Options"
|
|
2605 |
msgstr "Opcje stylów"
|
2606 |
|
2607 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2608 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2609 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2610 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2611 |
#: app/features/mec/support.php:59
|
@@ -2614,21 +2615,21 @@ msgstr "Własny kod CSS"
|
|
2614 |
|
2615 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2616 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2617 |
-
#: app/features/mec/notifications.php:
|
2618 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2619 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2620 |
msgid "Messages"
|
2621 |
msgstr "Wiadomości"
|
2622 |
|
2623 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2624 |
-
#: app/features/mec/notifications.php:
|
2625 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2626 |
#: app/features/mec/styling.php:375
|
2627 |
msgid "Saved"
|
2628 |
msgstr "Zapisane"
|
2629 |
|
2630 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2631 |
-
#: app/features/mec/notifications.php:
|
2632 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2633 |
#: app/features/mec/styling.php:376
|
2634 |
msgid "Settings Saved!"
|
@@ -3465,312 +3466,376 @@ msgstr "Pole tekstowe"
|
|
3465 |
msgid "No Search Options"
|
3466 |
msgstr "Brak opcji wyszukiwania"
|
3467 |
|
3468 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3469 |
msgid "Booking Notification"
|
3470 |
msgstr "Powiadomienie o rezerwacji"
|
3471 |
|
3472 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3473 |
msgid "Booking Verification"
|
3474 |
msgstr "Potwierdzenie rezerwacji"
|
3475 |
|
3476 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3477 |
#: app/features/mec/settings.php:1409
|
3478 |
msgid "Booking Confirmation"
|
3479 |
msgstr "Potwierdzenie rezerwacji"
|
3480 |
|
3481 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3482 |
msgid "Admin Notification"
|
3483 |
msgstr "Powiadomienie dla administratora"
|
3484 |
|
3485 |
-
#: app/features/mec/notifications.php:
|
3486 |
-
#: app/libraries/notifications.php:
|
3487 |
msgid "Booking Reminder"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: app/features/mec/notifications.php:
|
3491 |
#: app/features/mec/support-page.php:80
|
3492 |
msgid "New Event"
|
3493 |
msgstr "Nowe wydarzenie"
|
3494 |
|
3495 |
-
#: app/features/mec/notifications.php:
|
3496 |
msgid "Enable booking notification"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: app/features/mec/notifications.php:
|
3500 |
msgid "It sends to attendee after booking for notifying him/her."
|
3501 |
msgstr "Wysyła do uczestnika email po zgłoszeniu rezerwacji."
|
3502 |
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
#: app/features/mec/notifications.php:
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
3507 |
-
#: app/features/mec/notifications.php:
|
3508 |
-
#: app/features/mec/notifications.php:
|
|
|
3509 |
msgid "Email Subject"
|
3510 |
msgstr "Temat maila"
|
3511 |
|
3512 |
-
#: app/features/mec/notifications.php:
|
3513 |
-
#: app/features/mec/notifications.php:
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
-
#: app/features/mec/notifications.php:
|
3516 |
-
#: app/features/mec/notifications.php:
|
3517 |
-
#: app/features/mec/notifications.php:
|
3518 |
-
#: app/features/mec/notifications.php:
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
3523 |
-
#: app/features/mec/notifications.php:
|
3524 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3525 |
msgid "Custom Recipients"
|
3526 |
msgstr "Niestandardowi odbiorcy"
|
3527 |
|
3528 |
-
#: app/features/mec/notifications.php:
|
3529 |
-
#: app/features/mec/notifications.php:
|
3530 |
-
#: app/features/mec/notifications.php:
|
3531 |
-
#: app/features/mec/notifications.php:
|
3532 |
-
#: app/features/mec/notifications.php:
|
3533 |
-
#: app/features/mec/notifications.php:
|
3534 |
-
#: app/features/mec/notifications.php:
|
|
|
3535 |
msgid "Insert comma separated emails for multiple recipients."
|
3536 |
msgstr ""
|
3537 |
"Wstaw adresy email oddzielone przecinkami aby wysłać email do wielu "
|
3538 |
"odbiorców jednocześnie."
|
3539 |
|
3540 |
-
#: app/features/mec/notifications.php:
|
3541 |
-
#: app/features/mec/notifications.php:
|
|
|
3542 |
msgid "Send the email to event organizer"
|
3543 |
msgstr "Wyślij e-mail do organizatora"
|
3544 |
|
3545 |
-
#: app/features/mec/notifications.php:
|
3546 |
-
#: app/features/mec/notifications.php:
|
3547 |
-
#: app/features/mec/notifications.php:
|
3548 |
-
#: app/features/mec/notifications.php:
|
3549 |
-
#: app/features/mec/notifications.php:
|
3550 |
-
#: app/features/mec/notifications.php:
|
|
|
3551 |
msgid "Email Content"
|
3552 |
msgstr "Zawartość emaila"
|
3553 |
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
#: app/features/mec/notifications.php:
|
3556 |
-
#: app/features/mec/notifications.php:
|
3557 |
-
#: app/features/mec/notifications.php:
|
3558 |
-
#: app/features/mec/notifications.php:
|
3559 |
-
#: app/features/mec/notifications.php:
|
|
|
3560 |
msgid "You can use following placeholders"
|
3561 |
msgstr "Możesz użyć następujących symboli zastępczych"
|
3562 |
|
3563 |
-
#: app/features/mec/notifications.php:
|
3564 |
-
#: app/features/mec/notifications.php:
|
3565 |
-
#: app/features/mec/notifications.php:
|
3566 |
-
#: app/features/mec/notifications.php:
|
3567 |
-
#: app/features/mec/notifications.php:
|
|
|
3568 |
msgid "First name of attendee"
|
3569 |
msgstr "Imię"
|
3570 |
|
3571 |
-
#: app/features/mec/notifications.php:
|
3572 |
-
#: app/features/mec/notifications.php:
|
3573 |
-
#: app/features/mec/notifications.php:
|
3574 |
-
#: app/features/mec/notifications.php:
|
3575 |
-
#: app/features/mec/notifications.php:
|
|
|
3576 |
msgid "Last name of attendee"
|
3577 |
msgstr "Nazwisko"
|
3578 |
|
3579 |
-
#: app/features/mec/notifications.php:
|
3580 |
-
#: app/features/mec/notifications.php:
|
3581 |
-
#: app/features/mec/notifications.php:
|
3582 |
-
#: app/features/mec/notifications.php:
|
3583 |
-
#: app/features/mec/notifications.php:
|
|
|
3584 |
msgid "Email of attendee"
|
3585 |
msgstr "E-mail uczestnika"
|
3586 |
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
-
#: app/features/mec/notifications.php:
|
3590 |
-
#: app/features/mec/notifications.php:
|
3591 |
-
#: app/features/mec/notifications.php:
|
|
|
3592 |
msgid "Booked date of event"
|
3593 |
msgstr "Termin zarezerwowanego wydarzenia"
|
3594 |
|
3595 |
-
#: app/features/mec/notifications.php:
|
3596 |
-
#: app/features/mec/notifications.php:
|
3597 |
-
#: app/features/mec/notifications.php:
|
3598 |
-
#: app/features/mec/notifications.php:
|
3599 |
-
#: app/features/mec/notifications.php:
|
|
|
3600 |
#, fuzzy
|
3601 |
#| msgid "Booked date of event"
|
3602 |
msgid "Booked time of event"
|
3603 |
msgstr "Termin zarezerwowanego wydarzenia"
|
3604 |
|
3605 |
-
#: app/features/mec/notifications.php:
|
3606 |
-
#: app/features/mec/notifications.php:
|
3607 |
-
#: app/features/mec/notifications.php:
|
3608 |
-
#: app/features/mec/notifications.php:
|
3609 |
-
#: app/features/mec/notifications.php:
|
|
|
3610 |
msgid "Booking Price"
|
3611 |
msgstr "Cena rezerwacji"
|
3612 |
|
3613 |
-
#: app/features/mec/notifications.php:
|
3614 |
-
#: app/features/mec/notifications.php:
|
3615 |
-
#: app/features/mec/notifications.php:
|
3616 |
-
#: app/features/mec/notifications.php:
|
3617 |
-
#: app/features/mec/notifications.php:
|
3618 |
-
#: app/features/mec/notifications.php:
|
|
|
3619 |
msgid "Your website title"
|
3620 |
msgstr "Twoja strona WWW"
|
3621 |
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
3624 |
-
#: app/features/mec/notifications.php:
|
3625 |
-
#: app/features/mec/notifications.php:
|
3626 |
-
#: app/features/mec/notifications.php:
|
3627 |
-
#: app/features/mec/notifications.php:
|
|
|
3628 |
msgid "Your website URL"
|
3629 |
msgstr "Adres URL strony WWW"
|
3630 |
|
3631 |
-
#: app/features/mec/notifications.php:
|
3632 |
-
#: app/features/mec/notifications.php:
|
3633 |
-
#: app/features/mec/notifications.php:
|
3634 |
-
#: app/features/mec/notifications.php:
|
3635 |
-
#: app/features/mec/notifications.php:
|
3636 |
-
#: app/features/mec/notifications.php:
|
|
|
3637 |
msgid "Your website description"
|
3638 |
msgstr "Opis twojej strony WWW"
|
3639 |
|
3640 |
-
#: app/features/mec/notifications.php:
|
3641 |
-
#: app/features/mec/notifications.php:
|
3642 |
-
#: app/features/mec/notifications.php:
|
3643 |
-
#: app/features/mec/notifications.php:
|
3644 |
-
#: app/features/mec/notifications.php:
|
|
|
3645 |
msgid "Event title"
|
3646 |
msgstr "Tytuł wydarzenia"
|
3647 |
|
3648 |
-
#: app/features/mec/notifications.php:
|
3649 |
-
#: app/features/mec/notifications.php:
|
3650 |
-
#: app/features/mec/notifications.php:
|
3651 |
-
#: app/features/mec/notifications.php:
|
3652 |
-
#: app/features/mec/notifications.php:
|
|
|
3653 |
#, fuzzy
|
3654 |
#| msgid "Event Link"
|
3655 |
msgid "Event link"
|
3656 |
msgstr "Link strony www wydarzenia"
|
3657 |
|
3658 |
-
#: app/features/mec/notifications.php:
|
3659 |
-
#: app/features/mec/notifications.php:
|
3660 |
-
#: app/features/mec/notifications.php:
|
3661 |
-
#: app/features/mec/notifications.php:
|
3662 |
-
#: app/features/mec/notifications.php:
|
|
|
3663 |
msgid "Organizer name of booked event"
|
3664 |
msgstr "Nazwa organizatora zarezerwowanego wydarzenia"
|
3665 |
|
3666 |
-
#: app/features/mec/notifications.php:
|
3667 |
-
#: app/features/mec/notifications.php:
|
3668 |
-
#: app/features/mec/notifications.php:
|
3669 |
-
#: app/features/mec/notifications.php:
|
3670 |
-
#: app/features/mec/notifications.php:
|
|
|
3671 |
msgid "Organizer tel of booked event"
|
3672 |
msgstr "Telefon organizatora zarezerwowanego wydarzenia"
|
3673 |
|
3674 |
-
#: app/features/mec/notifications.php:
|
3675 |
-
#: app/features/mec/notifications.php:
|
3676 |
-
#: app/features/mec/notifications.php:
|
3677 |
-
#: app/features/mec/notifications.php:
|
3678 |
-
#: app/features/mec/notifications.php:
|
|
|
3679 |
msgid "Organizer email of booked event"
|
3680 |
msgstr "Email organizatora zarezerwowanego wydarzenia"
|
3681 |
|
3682 |
-
#: app/features/mec/notifications.php:
|
3683 |
-
#: app/features/mec/notifications.php:
|
3684 |
-
#: app/features/mec/notifications.php:
|
3685 |
-
#: app/features/mec/notifications.php:
|
3686 |
-
#: app/features/mec/notifications.php:
|
|
|
3687 |
msgid "Location name of booked event"
|
3688 |
msgstr "Nazwa lokalizacji zarezerwowanego wydarzenia"
|
3689 |
|
3690 |
-
#: app/features/mec/notifications.php:
|
3691 |
-
#: app/features/mec/notifications.php:
|
3692 |
-
#: app/features/mec/notifications.php:
|
3693 |
-
#: app/features/mec/notifications.php:
|
3694 |
-
#: app/features/mec/notifications.php:
|
|
|
3695 |
msgid "Location address of booked event"
|
3696 |
msgstr "Adres lokalizacji zarezerwowanego wydarzenia"
|
3697 |
|
3698 |
-
#: app/features/mec/notifications.php:
|
3699 |
-
#: app/features/mec/notifications.php:
|
|
|
3700 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3701 |
msgstr ""
|
3702 |
"Pełna informacja na temat uczestnika pochodząca z wypełnionego formularza."
|
3703 |
|
3704 |
-
#: app/features/mec/notifications.php:
|
3705 |
-
#: app/features/mec/notifications.php:
|
3706 |
-
#: app/features/mec/notifications.php:
|
3707 |
msgid "Invoice Link"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: app/features/mec/notifications.php:
|
3711 |
-
#: app/features/mec/notifications.php:
|
3712 |
-
#: app/features/mec/notifications.php:
|
3713 |
-
#: app/features/mec/notifications.php:
|
3714 |
-
#: app/features/mec/notifications.php:
|
|
|
3715 |
msgid "Total Attendees"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: app/features/mec/notifications.php:
|
3719 |
-
#: app/features/mec/notifications.php:
|
3720 |
-
#: app/features/mec/notifications.php:
|
3721 |
-
#: app/features/mec/notifications.php:
|
3722 |
#, fuzzy
|
3723 |
#| msgid "Ticket Name"
|
3724 |
msgid "Ticket name"
|
3725 |
msgstr "Nazwa biletu"
|
3726 |
|
3727 |
-
#: app/features/mec/notifications.php:
|
3728 |
-
#: app/features/mec/notifications.php:
|
3729 |
-
#: app/features/mec/notifications.php:
|
3730 |
-
#: app/features/mec/notifications.php:
|
3731 |
#, fuzzy
|
3732 |
#| msgid "Ticket Name"
|
3733 |
msgid "Ticket time"
|
3734 |
msgstr "Nazwa biletu"
|
3735 |
|
3736 |
-
#: app/features/mec/notifications.php:
|
3737 |
-
#: app/features/mec/notifications.php:
|
3738 |
-
#: app/features/mec/notifications.php:
|
3739 |
-
#: app/features/mec/notifications.php:
|
3740 |
msgid "Download ICS file"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
-
#: app/features/mec/notifications.php:
|
3744 |
msgid "It sends to attendee email for verifying their booking/email."
|
3745 |
msgstr "Wysyła email do uczestnika w celu potwierdzenia rezerwacji."
|
3746 |
|
3747 |
-
#: app/features/mec/notifications.php:
|
3748 |
msgid "Email/Booking verification link."
|
3749 |
msgstr "Link potwierdzający rezerwację."
|
3750 |
|
3751 |
-
#: app/features/mec/notifications.php:
|
3752 |
msgid "It sends to attendee after confirming the booking by admin."
|
3753 |
msgstr ""
|
3754 |
"Wysyła do uczestnika email po zaakceptowaniu rezerwacji przez administratora."
|
3755 |
|
3756 |
-
#: app/features/mec/notifications.php:
|
3757 |
-
#: app/features/mec/notifications.php:
|
3758 |
msgid "Booking cancellation link."
|
3759 |
msgstr "Link odrzucenia rezerwacji."
|
3760 |
|
3761 |
-
#: app/features/mec/notifications.php:
|
3762 |
-
|
3763 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3764 |
|
3765 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3766 |
msgid "Admin booking management link."
|
3767 |
msgstr "Link do administracji rezerwacją."
|
3768 |
|
3769 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3770 |
msgid "Enable booking reminder notification"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: app/features/mec/notifications.php:
|
3774 |
#, php-format
|
3775 |
msgid ""
|
3776 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3778,54 +3843,54 @@ msgid ""
|
|
3778 |
"send the reminders multiple times."
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: app/features/mec/notifications.php:
|
3782 |
msgid "only once per day"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: app/features/mec/notifications.php:
|
3786 |
msgid "Days"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: app/features/mec/notifications.php:
|
3790 |
msgid "Enable new event notification"
|
3791 |
msgstr "Włącz powiadomienie o nowym wydarzeniu"
|
3792 |
|
3793 |
-
#: app/features/mec/notifications.php:
|
3794 |
msgid ""
|
3795 |
"It sends after adding a new event from frontend event submission or from "
|
3796 |
"website backend."
|
3797 |
msgstr "Wysyła powiadomienie o nowym wydarzeniu gdy zostanie dodane."
|
3798 |
|
3799 |
-
#: app/features/mec/notifications.php:
|
3800 |
msgid "Title of event"
|
3801 |
msgstr "Tytuł wydarzenia"
|
3802 |
|
3803 |
-
#: app/features/mec/notifications.php:
|
3804 |
#, fuzzy
|
3805 |
#| msgid "Title of event"
|
3806 |
msgid "Link of event"
|
3807 |
msgstr "Tytuł wydarzenia"
|
3808 |
|
3809 |
-
#: app/features/mec/notifications.php:
|
3810 |
msgid "Status of event"
|
3811 |
msgstr "Status wydarzenia"
|
3812 |
|
3813 |
-
#: app/features/mec/notifications.php:
|
3814 |
#: app/features/mec/settings.php:1253
|
3815 |
msgid "Event Note"
|
3816 |
msgstr "Uwaga"
|
3817 |
|
3818 |
-
#: app/features/mec/notifications.php:
|
3819 |
msgid "Admin events management link."
|
3820 |
msgstr "Link do zarzadzania wydarzeniami."
|
3821 |
|
3822 |
-
#: app/features/mec/notifications.php:
|
3823 |
-
#: app/features/mec/notifications.php:
|
3824 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3825 |
msgid "Verified"
|
3826 |
msgstr "Zweryfikowane"
|
3827 |
|
3828 |
-
#: app/features/mec/notifications.php:
|
3829 |
msgid "Please Refresh Page"
|
3830 |
msgstr "Proszę odświeżyć stronę"
|
3831 |
|
@@ -5297,7 +5362,7 @@ msgid "eg. https://webnus.net"
|
|
5297 |
msgstr "http://webnus.biz"
|
5298 |
|
5299 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5300 |
-
#: app/skins/single.php:
|
5301 |
msgid "Other Organizers"
|
5302 |
msgstr ""
|
5303 |
|
@@ -5441,7 +5506,7 @@ msgstr ""
|
|
5441 |
msgid "day"
|
5442 |
msgstr "dzień"
|
5443 |
|
5444 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5445 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5446 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5447 |
msgid "days"
|
@@ -5451,7 +5516,7 @@ msgstr "dni"
|
|
5451 |
msgid "hour"
|
5452 |
msgstr "godzina"
|
5453 |
|
5454 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5455 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5456 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5457 |
msgid "hours"
|
@@ -5461,7 +5526,7 @@ msgstr "godzin"
|
|
5461 |
msgid "minute"
|
5462 |
msgstr "minuta"
|
5463 |
|
5464 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5465 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5466 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5467 |
msgid "minutes"
|
@@ -5471,7 +5536,7 @@ msgstr "minut"
|
|
5471 |
msgid "second"
|
5472 |
msgstr "sekunda"
|
5473 |
|
5474 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5475 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5476 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5477 |
msgid "seconds"
|
@@ -5949,38 +6014,44 @@ msgstr "Otrzymaliśmy twoją rezerwację."
|
|
5949 |
msgid "Your booking is confirmed."
|
5950 |
msgstr "Twoja rezerwacja jest potwierdzona."
|
5951 |
|
5952 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5953 |
msgid "A new booking is received."
|
5954 |
msgstr "Otrzymałeś nową rezerwację."
|
5955 |
|
5956 |
-
#: app/libraries/notifications.php:
|
5957 |
msgid "A new event is added."
|
5958 |
msgstr "Nowe wydarzenie zostało dodane."
|
5959 |
|
5960 |
-
#: app/libraries/notifications.php:
|
5961 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5962 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5963 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5964 |
msgid "All of the day"
|
5965 |
msgstr "Cały dzień"
|
5966 |
|
5967 |
-
#: app/libraries/notifications.php:
|
5968 |
msgid "to"
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#: app/libraries/notifications.php:
|
5972 |
msgid "+ Add to Google Calendar"
|
5973 |
msgstr "+ Dodaj do Google Calendar"
|
5974 |
|
5975 |
-
#: app/libraries/notifications.php:
|
5976 |
msgid "+ iCal export"
|
5977 |
msgstr "+ eksport iCal"
|
5978 |
|
5979 |
-
#: app/libraries/notifications.php:
|
5980 |
msgid "Yes"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: app/libraries/notifications.php:
|
5984 |
msgid "No"
|
5985 |
msgstr ""
|
5986 |
|
@@ -6193,15 +6264,15 @@ msgstr "Lista"
|
|
6193 |
msgid "All"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
-
#: app/skins/monthly_view/calendar.php:
|
6197 |
-
#: app/skins/monthly_view/calendar.php:
|
6198 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6199 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6200 |
#, php-format
|
6201 |
msgid "Events for %s"
|
6202 |
msgstr "Wydarzenia dla %s"
|
6203 |
|
6204 |
-
#: app/skins/monthly_view/calendar.php:
|
6205 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6206 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6207 |
msgid "No Events"
|
@@ -6211,19 +6282,19 @@ msgstr "Brak wydarzeń"
|
|
6211 |
msgid "Home"
|
6212 |
msgstr ""
|
6213 |
|
6214 |
-
#: app/skins/single.php:
|
6215 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6216 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6217 |
msgid "Phone"
|
6218 |
msgstr "Telefon"
|
6219 |
|
6220 |
-
#: app/skins/single.php:
|
6221 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6222 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6223 |
msgid "Website"
|
6224 |
msgstr "Strona WWW"
|
6225 |
|
6226 |
-
#: app/skins/single.php:
|
6227 |
#, fuzzy
|
6228 |
#| msgid "No Search Options"
|
6229 |
msgid "Speakers:"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:05+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:05+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:348
|
35 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
67 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
68 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
69 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
268 |
msgid "Event"
|
269 |
msgstr "Wydarzenie"
|
270 |
|
271 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
272 |
msgid "Add Event"
|
273 |
msgstr "Dodaj wydarzenie"
|
274 |
|
316 |
msgstr "Kategoria"
|
317 |
|
318 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
319 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
320 |
#: app/libraries/main.php:4375
|
321 |
msgid "Categories"
|
322 |
msgstr "Kategorie"
|
415 |
#: app/features/events.php:410 app/features/events.php:1682
|
416 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
417 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
418 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
429 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
430 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
431 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
432 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
433 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
434 |
#: app/skins/single/modern.php:48
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
555 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
556 |
+
#: app/features/mec/notifications.php:170
|
557 |
+
#: app/features/mec/notifications.php:228
|
558 |
+
#: app/features/mec/notifications.php:280
|
559 |
+
#: app/features/mec/notifications.php:339
|
560 |
+
#: app/features/mec/notifications.php:406
|
561 |
+
#: app/features/mec/notifications.php:469
|
562 |
+
#: app/features/mec/notifications.php:480
|
563 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
564 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
565 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
566 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
771 |
msgstr ""
|
772 |
|
773 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
774 |
+
#: app/skins/single.php:379
|
775 |
msgid "Hourly Schedule"
|
776 |
msgstr "Harmonogram"
|
777 |
|
843 |
|
844 |
#: app/features/events.php:913 app/features/events.php:933
|
845 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
846 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
847 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
848 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
849 |
msgid "Speakers"
|
1248 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1249 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1250 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1251 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1252 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1253 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1254 |
msgid "Location"
|
1420 |
msgstr "Usuń obraz"
|
1421 |
|
1422 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1423 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1424 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1425 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1426 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1427 |
msgid "Labels"
|
1428 |
msgstr "Etykiety"
|
1429 |
|
1430 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1431 |
#: app/features/mec/meta_boxes/filter.php:138
|
1432 |
msgid "Tags"
|
1433 |
msgstr "Tagi"
|
1463 |
|
1464 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1465 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1466 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1467 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1468 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1469 |
msgid "Import / Export"
|
1742 |
#: app/features/ix/export_g_calendar.php:72
|
1743 |
#: app/features/ix/export_g_calendar.php:147
|
1744 |
#: app/features/ix/export_g_calendar.php:164
|
1745 |
+
#: app/features/mec/notifications.php:207
|
1746 |
+
#: app/features/mec/notifications.php:260
|
1747 |
+
#: app/features/mec/notifications.php:313
|
1748 |
+
#: app/features/mec/notifications.php:513
|
1749 |
msgid "Add to Google Calendar"
|
1750 |
msgstr "Dodaj do Kalendarza Google"
|
1751 |
|
1752 |
#: app/features/ix/export_g_calendar.php:90
|
1753 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1754 |
msgid "Checking ..."
|
1755 |
msgstr "Sprawdzanie ..."
|
1756 |
|
1999 |
|
2000 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2001 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2002 |
+
#: app/features/mec/notifications.php:457
|
2003 |
msgid "Important Note"
|
2004 |
msgstr "Ważna informacja"
|
2005 |
|
2139 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2140 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2141 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2142 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2143 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2144 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2145 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2155 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2156 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2157 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2158 |
+
#: app/skins/monthly_view/calendar.php:86
|
2159 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2160 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2161 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2183 |
msgid "Event %s"
|
2184 |
msgstr "Wydarzenie %s"
|
2185 |
|
2186 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2187 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2188 |
#: app/libraries/main.php:4379
|
2189 |
msgid "Locations"
|
2303 |
"You can select extra locations in addition to main location if you like."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: app/features/mec.php:153
|
2307 |
msgid ""
|
2308 |
"Activation faild. Please check your purchase code or license type."
|
2309 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: app/features/mec.php:153
|
2313 |
msgid "Troubleshooting"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: app/features/mec.php:193
|
2317 |
msgid ""
|
2318 |
"Your options is not in JSON format. Please insert correct options in this "
|
2319 |
"field and try again."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: app/features/mec.php:200
|
2323 |
#, fuzzy
|
2324 |
#| msgid "Your booking cannot verify!"
|
2325 |
msgid "Your options field can not be empty!"
|
2326 |
msgstr "Twoja rezerwacja nie może zostać zweryfikowana!"
|
2327 |
|
2328 |
+
#: app/features/mec.php:206
|
2329 |
#, fuzzy
|
2330 |
#| msgid "Your booking successfully verified."
|
2331 |
msgid "Your options imported successfuly."
|
2332 |
msgstr "Twoja rezerwacja została pomyślnie zweryfikowana."
|
2333 |
|
2334 |
+
#: app/features/mec.php:299
|
2335 |
#, fuzzy
|
2336 |
#| msgid "Support"
|
2337 |
msgid "MEC - Support"
|
2338 |
msgstr "Wsparcie"
|
2339 |
|
2340 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2341 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2342 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2343 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2344 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2345 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2346 |
msgid "Support"
|
2347 |
msgstr "Wsparcie"
|
2348 |
|
2349 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2350 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2351 |
#: app/libraries/main.php:4381
|
2352 |
msgid "Organizers"
|
2353 |
msgstr "Organizatorzy"
|
2354 |
|
2355 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2356 |
#: app/features/mec/dashboard.php:194
|
2357 |
msgid "Shortcodes"
|
2358 |
msgstr "Shortcodes"
|
2359 |
|
2360 |
+
#: app/features/mec.php:329
|
2361 |
msgid "MEC - Settings"
|
2362 |
msgstr "MEC - Ustawienia"
|
2363 |
|
2364 |
+
#: app/features/mec.php:330
|
2365 |
#, fuzzy
|
2366 |
#| msgid "MEC - Settings"
|
2367 |
msgid "MEC - Addons"
|
2368 |
msgstr "MEC - Ustawienia"
|
2369 |
|
2370 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2371 |
msgid "Addons"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: app/features/mec.php:349
|
2375 |
msgid "Add Shortcode"
|
2376 |
msgstr "Dodaj shortcode"
|
2377 |
|
2378 |
+
#: app/features/mec.php:350
|
2379 |
msgid "Add New Shortcode"
|
2380 |
msgstr "Dodaj nowy shortcode"
|
2381 |
|
2382 |
+
#: app/features/mec.php:351
|
2383 |
msgid "No shortcodes found!"
|
2384 |
msgstr "Nie znaleziono shortcodes!"
|
2385 |
|
2386 |
+
#: app/features/mec.php:352
|
2387 |
msgid "All Shortcodes"
|
2388 |
msgstr "Wszystkie shortcodes"
|
2389 |
|
2390 |
+
#: app/features/mec.php:353
|
2391 |
msgid "Edit shortcodes"
|
2392 |
msgstr "Edytuj shortcodes"
|
2393 |
|
2394 |
+
#: app/features/mec.php:354
|
2395 |
msgid "No shortcodes found in Trash!"
|
2396 |
msgstr "Brak shortcodes w koszu!"
|
2397 |
|
2398 |
+
#: app/features/mec.php:402
|
2399 |
msgid "Display Options"
|
2400 |
msgstr "Opcje wyświetlania"
|
2401 |
|
2402 |
+
#: app/features/mec.php:403
|
2403 |
msgid "Filter Options"
|
2404 |
msgstr "Opcje filtrów"
|
2405 |
|
2406 |
+
#: app/features/mec.php:405
|
2407 |
msgid "Search Form"
|
2408 |
msgstr "Formularz wyszukiwania"
|
2409 |
|
2410 |
+
#: app/features/mec.php:755
|
2411 |
msgid "Display content's images as Popup"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: app/features/mec.php:768
|
2415 |
msgid "Single Event Display Method"
|
2416 |
msgstr "Sposób wyświetlania wydarzenia"
|
2417 |
|
2418 |
+
#: app/features/mec.php:773
|
2419 |
msgid "Separate Window"
|
2420 |
msgstr "Osobna karta"
|
2421 |
|
2422 |
+
#: app/features/mec.php:774
|
2423 |
msgid "Modal 1"
|
2424 |
msgstr "Okno modalne"
|
2425 |
|
2580 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2581 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2582 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2583 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2584 |
+
#: app/features/mec/notifications.php:581
|
2585 |
+
#: app/features/mec/notifications.php:680
|
2586 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2587 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2588 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2589 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2598 |
msgstr "Zapisz zmiany"
|
2599 |
|
2600 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2601 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2602 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2603 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2604 |
#: app/features/mec/support.php:52
|
2606 |
msgstr "Opcje stylów"
|
2607 |
|
2608 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2609 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2610 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2611 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2612 |
#: app/features/mec/support.php:59
|
2615 |
|
2616 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2617 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2618 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2619 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2620 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2621 |
msgid "Messages"
|
2622 |
msgstr "Wiadomości"
|
2623 |
|
2624 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2625 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2626 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2627 |
#: app/features/mec/styling.php:375
|
2628 |
msgid "Saved"
|
2629 |
msgstr "Zapisane"
|
2630 |
|
2631 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2632 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2633 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2634 |
#: app/features/mec/styling.php:376
|
2635 |
msgid "Settings Saved!"
|
3466 |
msgid "No Search Options"
|
3467 |
msgstr "Brak opcji wyszukiwania"
|
3468 |
|
3469 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3470 |
msgid "Booking Notification"
|
3471 |
msgstr "Powiadomienie o rezerwacji"
|
3472 |
|
3473 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3474 |
msgid "Booking Verification"
|
3475 |
msgstr "Potwierdzenie rezerwacji"
|
3476 |
|
3477 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3478 |
#: app/features/mec/settings.php:1409
|
3479 |
msgid "Booking Confirmation"
|
3480 |
msgstr "Potwierdzenie rezerwacji"
|
3481 |
|
3482 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3483 |
+
#, fuzzy
|
3484 |
+
#| msgid "Booking cancellation link."
|
3485 |
+
msgid "Booking Cancellation"
|
3486 |
+
msgstr "Link odrzucenia rezerwacji."
|
3487 |
+
|
3488 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3489 |
msgid "Admin Notification"
|
3490 |
msgstr "Powiadomienie dla administratora"
|
3491 |
|
3492 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3493 |
+
#: app/libraries/notifications.php:354
|
3494 |
msgid "Booking Reminder"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3498 |
#: app/features/mec/support-page.php:80
|
3499 |
msgid "New Event"
|
3500 |
msgstr "Nowe wydarzenie"
|
3501 |
|
3502 |
+
#: app/features/mec/notifications.php:155
|
3503 |
msgid "Enable booking notification"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: app/features/mec/notifications.php:159
|
3507 |
msgid "It sends to attendee after booking for notifying him/her."
|
3508 |
msgstr "Wysyła do uczestnika email po zgłoszeniu rezerwacji."
|
3509 |
|
3510 |
+
#: app/features/mec/notifications.php:161
|
3511 |
+
#: app/features/mec/notifications.php:219
|
3512 |
+
#: app/features/mec/notifications.php:271
|
3513 |
+
#: app/features/mec/notifications.php:330
|
3514 |
+
#: app/features/mec/notifications.php:397
|
3515 |
+
#: app/features/mec/notifications.php:460
|
3516 |
+
#: app/features/mec/notifications.php:532
|
3517 |
msgid "Email Subject"
|
3518 |
msgstr "Temat maila"
|
3519 |
|
3520 |
+
#: app/features/mec/notifications.php:165
|
3521 |
+
#: app/features/mec/notifications.php:169
|
3522 |
+
#: app/features/mec/notifications.php:223
|
3523 |
+
#: app/features/mec/notifications.php:227
|
3524 |
+
#: app/features/mec/notifications.php:275
|
3525 |
+
#: app/features/mec/notifications.php:279
|
3526 |
+
#: app/features/mec/notifications.php:334
|
3527 |
+
#: app/features/mec/notifications.php:338
|
3528 |
+
#: app/features/mec/notifications.php:401
|
3529 |
+
#: app/features/mec/notifications.php:405
|
3530 |
+
#: app/features/mec/notifications.php:464
|
3531 |
+
#: app/features/mec/notifications.php:468
|
3532 |
+
#: app/features/mec/notifications.php:479
|
3533 |
+
#: app/features/mec/notifications.php:536
|
3534 |
+
#: app/features/mec/notifications.php:540
|
3535 |
msgid "Custom Recipients"
|
3536 |
msgstr "Niestandardowi odbiorcy"
|
3537 |
|
3538 |
+
#: app/features/mec/notifications.php:170
|
3539 |
+
#: app/features/mec/notifications.php:228
|
3540 |
+
#: app/features/mec/notifications.php:280
|
3541 |
+
#: app/features/mec/notifications.php:339
|
3542 |
+
#: app/features/mec/notifications.php:406
|
3543 |
+
#: app/features/mec/notifications.php:469
|
3544 |
+
#: app/features/mec/notifications.php:480
|
3545 |
+
#: app/features/mec/notifications.php:541
|
3546 |
msgid "Insert comma separated emails for multiple recipients."
|
3547 |
msgstr ""
|
3548 |
"Wstaw adresy email oddzielone przecinkami aby wysłać email do wielu "
|
3549 |
"odbiorców jednocześnie."
|
3550 |
|
3551 |
+
#: app/features/mec/notifications.php:177
|
3552 |
+
#: app/features/mec/notifications.php:350
|
3553 |
+
#: app/features/mec/notifications.php:413
|
3554 |
msgid "Send the email to event organizer"
|
3555 |
msgstr "Wyślij e-mail do organizatora"
|
3556 |
|
3557 |
+
#: app/features/mec/notifications.php:180
|
3558 |
+
#: app/features/mec/notifications.php:234
|
3559 |
+
#: app/features/mec/notifications.php:286
|
3560 |
+
#: app/features/mec/notifications.php:357
|
3561 |
+
#: app/features/mec/notifications.php:416
|
3562 |
+
#: app/features/mec/notifications.php:486
|
3563 |
+
#: app/features/mec/notifications.php:547
|
3564 |
msgid "Email Content"
|
3565 |
msgstr "Zawartość emaila"
|
3566 |
|
3567 |
+
#: app/features/mec/notifications.php:183
|
3568 |
+
#: app/features/mec/notifications.php:237
|
3569 |
+
#: app/features/mec/notifications.php:289
|
3570 |
+
#: app/features/mec/notifications.php:360
|
3571 |
+
#: app/features/mec/notifications.php:419
|
3572 |
+
#: app/features/mec/notifications.php:489
|
3573 |
+
#: app/features/mec/notifications.php:550
|
3574 |
msgid "You can use following placeholders"
|
3575 |
msgstr "Możesz użyć następujących symboli zastępczych"
|
3576 |
|
3577 |
+
#: app/features/mec/notifications.php:185
|
3578 |
+
#: app/features/mec/notifications.php:239
|
3579 |
+
#: app/features/mec/notifications.php:291
|
3580 |
+
#: app/features/mec/notifications.php:362
|
3581 |
+
#: app/features/mec/notifications.php:421
|
3582 |
+
#: app/features/mec/notifications.php:491
|
3583 |
msgid "First name of attendee"
|
3584 |
msgstr "Imię"
|
3585 |
|
3586 |
+
#: app/features/mec/notifications.php:186
|
3587 |
+
#: app/features/mec/notifications.php:240
|
3588 |
+
#: app/features/mec/notifications.php:292
|
3589 |
+
#: app/features/mec/notifications.php:363
|
3590 |
+
#: app/features/mec/notifications.php:422
|
3591 |
+
#: app/features/mec/notifications.php:492
|
3592 |
msgid "Last name of attendee"
|
3593 |
msgstr "Nazwisko"
|
3594 |
|
3595 |
+
#: app/features/mec/notifications.php:187
|
3596 |
+
#: app/features/mec/notifications.php:241
|
3597 |
+
#: app/features/mec/notifications.php:293
|
3598 |
+
#: app/features/mec/notifications.php:364
|
3599 |
+
#: app/features/mec/notifications.php:423
|
3600 |
+
#: app/features/mec/notifications.php:493
|
3601 |
msgid "Email of attendee"
|
3602 |
msgstr "E-mail uczestnika"
|
3603 |
|
3604 |
+
#: app/features/mec/notifications.php:188
|
3605 |
+
#: app/features/mec/notifications.php:242
|
3606 |
+
#: app/features/mec/notifications.php:294
|
3607 |
+
#: app/features/mec/notifications.php:365
|
3608 |
+
#: app/features/mec/notifications.php:424
|
3609 |
+
#: app/features/mec/notifications.php:494
|
3610 |
msgid "Booked date of event"
|
3611 |
msgstr "Termin zarezerwowanego wydarzenia"
|
3612 |
|
3613 |
+
#: app/features/mec/notifications.php:189
|
3614 |
+
#: app/features/mec/notifications.php:243
|
3615 |
+
#: app/features/mec/notifications.php:295
|
3616 |
+
#: app/features/mec/notifications.php:366
|
3617 |
+
#: app/features/mec/notifications.php:425
|
3618 |
+
#: app/features/mec/notifications.php:495
|
3619 |
#, fuzzy
|
3620 |
#| msgid "Booked date of event"
|
3621 |
msgid "Booked time of event"
|
3622 |
msgstr "Termin zarezerwowanego wydarzenia"
|
3623 |
|
3624 |
+
#: app/features/mec/notifications.php:190
|
3625 |
+
#: app/features/mec/notifications.php:244
|
3626 |
+
#: app/features/mec/notifications.php:296
|
3627 |
+
#: app/features/mec/notifications.php:367
|
3628 |
+
#: app/features/mec/notifications.php:426
|
3629 |
+
#: app/features/mec/notifications.php:496
|
3630 |
msgid "Booking Price"
|
3631 |
msgstr "Cena rezerwacji"
|
3632 |
|
3633 |
+
#: app/features/mec/notifications.php:191
|
3634 |
+
#: app/features/mec/notifications.php:245
|
3635 |
+
#: app/features/mec/notifications.php:297
|
3636 |
+
#: app/features/mec/notifications.php:368
|
3637 |
+
#: app/features/mec/notifications.php:427
|
3638 |
+
#: app/features/mec/notifications.php:497
|
3639 |
+
#: app/features/mec/notifications.php:556
|
3640 |
msgid "Your website title"
|
3641 |
msgstr "Twoja strona WWW"
|
3642 |
|
3643 |
+
#: app/features/mec/notifications.php:192
|
3644 |
+
#: app/features/mec/notifications.php:246
|
3645 |
+
#: app/features/mec/notifications.php:298
|
3646 |
+
#: app/features/mec/notifications.php:369
|
3647 |
+
#: app/features/mec/notifications.php:428
|
3648 |
+
#: app/features/mec/notifications.php:498
|
3649 |
+
#: app/features/mec/notifications.php:557
|
3650 |
msgid "Your website URL"
|
3651 |
msgstr "Adres URL strony WWW"
|
3652 |
|
3653 |
+
#: app/features/mec/notifications.php:193
|
3654 |
+
#: app/features/mec/notifications.php:247
|
3655 |
+
#: app/features/mec/notifications.php:299
|
3656 |
+
#: app/features/mec/notifications.php:370
|
3657 |
+
#: app/features/mec/notifications.php:429
|
3658 |
+
#: app/features/mec/notifications.php:499
|
3659 |
+
#: app/features/mec/notifications.php:558
|
3660 |
msgid "Your website description"
|
3661 |
msgstr "Opis twojej strony WWW"
|
3662 |
|
3663 |
+
#: app/features/mec/notifications.php:194
|
3664 |
+
#: app/features/mec/notifications.php:248
|
3665 |
+
#: app/features/mec/notifications.php:300
|
3666 |
+
#: app/features/mec/notifications.php:371
|
3667 |
+
#: app/features/mec/notifications.php:430
|
3668 |
+
#: app/features/mec/notifications.php:500
|
3669 |
msgid "Event title"
|
3670 |
msgstr "Tytuł wydarzenia"
|
3671 |
|
3672 |
+
#: app/features/mec/notifications.php:195
|
3673 |
+
#: app/features/mec/notifications.php:249
|
3674 |
+
#: app/features/mec/notifications.php:301
|
3675 |
+
#: app/features/mec/notifications.php:372
|
3676 |
+
#: app/features/mec/notifications.php:431
|
3677 |
+
#: app/features/mec/notifications.php:501
|
3678 |
#, fuzzy
|
3679 |
#| msgid "Event Link"
|
3680 |
msgid "Event link"
|
3681 |
msgstr "Link strony www wydarzenia"
|
3682 |
|
3683 |
+
#: app/features/mec/notifications.php:196
|
3684 |
+
#: app/features/mec/notifications.php:250
|
3685 |
+
#: app/features/mec/notifications.php:302
|
3686 |
+
#: app/features/mec/notifications.php:373
|
3687 |
+
#: app/features/mec/notifications.php:432
|
3688 |
+
#: app/features/mec/notifications.php:502
|
3689 |
msgid "Organizer name of booked event"
|
3690 |
msgstr "Nazwa organizatora zarezerwowanego wydarzenia"
|
3691 |
|
3692 |
+
#: app/features/mec/notifications.php:197
|
3693 |
+
#: app/features/mec/notifications.php:251
|
3694 |
+
#: app/features/mec/notifications.php:303
|
3695 |
+
#: app/features/mec/notifications.php:374
|
3696 |
+
#: app/features/mec/notifications.php:433
|
3697 |
+
#: app/features/mec/notifications.php:503
|
3698 |
msgid "Organizer tel of booked event"
|
3699 |
msgstr "Telefon organizatora zarezerwowanego wydarzenia"
|
3700 |
|
3701 |
+
#: app/features/mec/notifications.php:198
|
3702 |
+
#: app/features/mec/notifications.php:252
|
3703 |
+
#: app/features/mec/notifications.php:304
|
3704 |
+
#: app/features/mec/notifications.php:375
|
3705 |
+
#: app/features/mec/notifications.php:434
|
3706 |
+
#: app/features/mec/notifications.php:504
|
3707 |
msgid "Organizer email of booked event"
|
3708 |
msgstr "Email organizatora zarezerwowanego wydarzenia"
|
3709 |
|
3710 |
+
#: app/features/mec/notifications.php:199
|
3711 |
+
#: app/features/mec/notifications.php:253
|
3712 |
+
#: app/features/mec/notifications.php:305
|
3713 |
+
#: app/features/mec/notifications.php:376
|
3714 |
+
#: app/features/mec/notifications.php:435
|
3715 |
+
#: app/features/mec/notifications.php:505
|
3716 |
msgid "Location name of booked event"
|
3717 |
msgstr "Nazwa lokalizacji zarezerwowanego wydarzenia"
|
3718 |
|
3719 |
+
#: app/features/mec/notifications.php:200
|
3720 |
+
#: app/features/mec/notifications.php:254
|
3721 |
+
#: app/features/mec/notifications.php:306
|
3722 |
+
#: app/features/mec/notifications.php:377
|
3723 |
+
#: app/features/mec/notifications.php:436
|
3724 |
+
#: app/features/mec/notifications.php:506
|
3725 |
msgid "Location address of booked event"
|
3726 |
msgstr "Adres lokalizacji zarezerwowanego wydarzenia"
|
3727 |
|
3728 |
+
#: app/features/mec/notifications.php:201
|
3729 |
+
#: app/features/mec/notifications.php:379
|
3730 |
+
#: app/features/mec/notifications.php:438
|
3731 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3732 |
msgstr ""
|
3733 |
"Pełna informacja na temat uczestnika pochodząca z wypełnionego formularza."
|
3734 |
|
3735 |
+
#: app/features/mec/notifications.php:202
|
3736 |
+
#: app/features/mec/notifications.php:308
|
3737 |
+
#: app/features/mec/notifications.php:508
|
3738 |
msgid "Invoice Link"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
+
#: app/features/mec/notifications.php:203
|
3742 |
+
#: app/features/mec/notifications.php:256
|
3743 |
+
#: app/features/mec/notifications.php:309
|
3744 |
+
#: app/features/mec/notifications.php:380
|
3745 |
+
#: app/features/mec/notifications.php:439
|
3746 |
+
#: app/features/mec/notifications.php:509
|
3747 |
msgid "Total Attendees"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: app/features/mec/notifications.php:204
|
3751 |
+
#: app/features/mec/notifications.php:257
|
3752 |
+
#: app/features/mec/notifications.php:310
|
3753 |
+
#: app/features/mec/notifications.php:510
|
3754 |
#, fuzzy
|
3755 |
#| msgid "Ticket Name"
|
3756 |
msgid "Ticket name"
|
3757 |
msgstr "Nazwa biletu"
|
3758 |
|
3759 |
+
#: app/features/mec/notifications.php:205
|
3760 |
+
#: app/features/mec/notifications.php:258
|
3761 |
+
#: app/features/mec/notifications.php:311
|
3762 |
+
#: app/features/mec/notifications.php:511
|
3763 |
#, fuzzy
|
3764 |
#| msgid "Ticket Name"
|
3765 |
msgid "Ticket time"
|
3766 |
msgstr "Nazwa biletu"
|
3767 |
|
3768 |
+
#: app/features/mec/notifications.php:206
|
3769 |
+
#: app/features/mec/notifications.php:259
|
3770 |
+
#: app/features/mec/notifications.php:312
|
3771 |
+
#: app/features/mec/notifications.php:512
|
3772 |
msgid "Download ICS file"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: app/features/mec/notifications.php:217
|
3776 |
msgid "It sends to attendee email for verifying their booking/email."
|
3777 |
msgstr "Wysyła email do uczestnika w celu potwierdzenia rezerwacji."
|
3778 |
|
3779 |
+
#: app/features/mec/notifications.php:255
|
3780 |
msgid "Email/Booking verification link."
|
3781 |
msgstr "Link potwierdzający rezerwację."
|
3782 |
|
3783 |
+
#: app/features/mec/notifications.php:269
|
3784 |
msgid "It sends to attendee after confirming the booking by admin."
|
3785 |
msgstr ""
|
3786 |
"Wysyła do uczestnika email po zaakceptowaniu rezerwacji przez administratora."
|
3787 |
|
3788 |
+
#: app/features/mec/notifications.php:307
|
3789 |
+
#: app/features/mec/notifications.php:507
|
3790 |
msgid "Booking cancellation link."
|
3791 |
msgstr "Link odrzucenia rezerwacji."
|
3792 |
|
3793 |
+
#: app/features/mec/notifications.php:324
|
3794 |
+
#, fuzzy
|
3795 |
+
#| msgid "Enable new event notification"
|
3796 |
+
msgid "Enable cancellation notification"
|
3797 |
+
msgstr "Włącz powiadomienie o nowym wydarzeniu"
|
3798 |
+
|
3799 |
+
#: app/features/mec/notifications.php:328
|
3800 |
+
#, fuzzy
|
3801 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3802 |
+
msgid ""
|
3803 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3804 |
+
"them."
|
3805 |
+
msgstr "Wysyła do uczestnika email po zgłoszeniu rezerwacji."
|
3806 |
|
3807 |
+
#: app/features/mec/notifications.php:346
|
3808 |
+
#, fuzzy
|
3809 |
+
#| msgid "Send the email to event organizer"
|
3810 |
+
msgid "Send the email to admin"
|
3811 |
+
msgstr "Wyślij e-mail do organizatora"
|
3812 |
+
|
3813 |
+
#: app/features/mec/notifications.php:354
|
3814 |
+
#, fuzzy
|
3815 |
+
#| msgid "Send the email to event organizer"
|
3816 |
+
msgid "Send the email to booking user"
|
3817 |
+
msgstr "Wyślij e-mail do organizatora"
|
3818 |
+
|
3819 |
+
#: app/features/mec/notifications.php:378
|
3820 |
+
#: app/features/mec/notifications.php:437
|
3821 |
msgid "Admin booking management link."
|
3822 |
msgstr "Link do administracji rezerwacją."
|
3823 |
|
3824 |
+
#: app/features/mec/notifications.php:391
|
3825 |
+
#, fuzzy
|
3826 |
+
#| msgid "Enable new event notification"
|
3827 |
+
msgid "Enable admin notification"
|
3828 |
+
msgstr "Włącz powiadomienie o nowym wydarzeniu"
|
3829 |
+
|
3830 |
+
#: app/features/mec/notifications.php:395
|
3831 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3832 |
+
msgstr "Wysyła do administratora email z informacją o nowej rezerwacji."
|
3833 |
+
|
3834 |
+
#: app/features/mec/notifications.php:451
|
3835 |
msgid "Enable booking reminder notification"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: app/features/mec/notifications.php:457
|
3839 |
#, php-format
|
3840 |
msgid ""
|
3841 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3843 |
"send the reminders multiple times."
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: app/features/mec/notifications.php:457
|
3847 |
msgid "only once per day"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: app/features/mec/notifications.php:475
|
3851 |
msgid "Days"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: app/features/mec/notifications.php:526
|
3855 |
msgid "Enable new event notification"
|
3856 |
msgstr "Włącz powiadomienie o nowym wydarzeniu"
|
3857 |
|
3858 |
+
#: app/features/mec/notifications.php:530
|
3859 |
msgid ""
|
3860 |
"It sends after adding a new event from frontend event submission or from "
|
3861 |
"website backend."
|
3862 |
msgstr "Wysyła powiadomienie o nowym wydarzeniu gdy zostanie dodane."
|
3863 |
|
3864 |
+
#: app/features/mec/notifications.php:552
|
3865 |
msgid "Title of event"
|
3866 |
msgstr "Tytuł wydarzenia"
|
3867 |
|
3868 |
+
#: app/features/mec/notifications.php:553
|
3869 |
#, fuzzy
|
3870 |
#| msgid "Title of event"
|
3871 |
msgid "Link of event"
|
3872 |
msgstr "Tytuł wydarzenia"
|
3873 |
|
3874 |
+
#: app/features/mec/notifications.php:554
|
3875 |
msgid "Status of event"
|
3876 |
msgstr "Status wydarzenia"
|
3877 |
|
3878 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3879 |
#: app/features/mec/settings.php:1253
|
3880 |
msgid "Event Note"
|
3881 |
msgstr "Uwaga"
|
3882 |
|
3883 |
+
#: app/features/mec/notifications.php:559
|
3884 |
msgid "Admin events management link."
|
3885 |
msgstr "Link do zarzadzania wydarzeniami."
|
3886 |
|
3887 |
+
#: app/features/mec/notifications.php:661
|
3888 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3889 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3890 |
msgid "Verified"
|
3891 |
msgstr "Zweryfikowane"
|
3892 |
|
3893 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3894 |
msgid "Please Refresh Page"
|
3895 |
msgstr "Proszę odświeżyć stronę"
|
3896 |
|
5362 |
msgstr "http://webnus.biz"
|
5363 |
|
5364 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5365 |
+
#: app/skins/single.php:295
|
5366 |
msgid "Other Organizers"
|
5367 |
msgstr ""
|
5368 |
|
5506 |
msgid "day"
|
5507 |
msgstr "dzień"
|
5508 |
|
5509 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5510 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5511 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5512 |
msgid "days"
|
5516 |
msgid "hour"
|
5517 |
msgstr "godzina"
|
5518 |
|
5519 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5520 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5521 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5522 |
msgid "hours"
|
5526 |
msgid "minute"
|
5527 |
msgstr "minuta"
|
5528 |
|
5529 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5530 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5531 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5532 |
msgid "minutes"
|
5536 |
msgid "second"
|
5537 |
msgstr "sekunda"
|
5538 |
|
5539 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5540 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5541 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5542 |
msgid "seconds"
|
6014 |
msgid "Your booking is confirmed."
|
6015 |
msgstr "Twoja rezerwacja jest potwierdzona."
|
6016 |
|
6017 |
+
#: app/libraries/notifications.php:252
|
6018 |
+
#, fuzzy
|
6019 |
+
#| msgid "Your booking cannot be canceled."
|
6020 |
+
msgid "booking canceled."
|
6021 |
+
msgstr "Twoja rezerwacja nie może zostać anulowana."
|
6022 |
+
|
6023 |
+
#: app/libraries/notifications.php:296
|
6024 |
msgid "A new booking is received."
|
6025 |
msgstr "Otrzymałeś nową rezerwację."
|
6026 |
|
6027 |
+
#: app/libraries/notifications.php:425
|
6028 |
msgid "A new event is added."
|
6029 |
msgstr "Nowe wydarzenie zostało dodane."
|
6030 |
|
6031 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
6032 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
6033 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
6034 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
6035 |
msgid "All of the day"
|
6036 |
msgstr "Cały dzień"
|
6037 |
|
6038 |
+
#: app/libraries/notifications.php:605
|
6039 |
msgid "to"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
6043 |
msgid "+ Add to Google Calendar"
|
6044 |
msgstr "+ Dodaj do Google Calendar"
|
6045 |
|
6046 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
6047 |
msgid "+ iCal export"
|
6048 |
msgstr "+ eksport iCal"
|
6049 |
|
6050 |
+
#: app/libraries/notifications.php:683
|
6051 |
msgid "Yes"
|
6052 |
msgstr ""
|
6053 |
|
6054 |
+
#: app/libraries/notifications.php:683
|
6055 |
msgid "No"
|
6056 |
msgstr ""
|
6057 |
|
6264 |
msgid "All"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
+
#: app/skins/monthly_view/calendar.php:68
|
6268 |
+
#: app/skins/monthly_view/calendar.php:154
|
6269 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6270 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6271 |
#, php-format
|
6272 |
msgid "Events for %s"
|
6273 |
msgstr "Wydarzenia dla %s"
|
6274 |
|
6275 |
+
#: app/skins/monthly_view/calendar.php:156
|
6276 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6277 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6278 |
msgid "No Events"
|
6282 |
msgid "Home"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6286 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6287 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6288 |
msgid "Phone"
|
6289 |
msgstr "Telefon"
|
6290 |
|
6291 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6292 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6293 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6294 |
msgid "Website"
|
6295 |
msgstr "Strona WWW"
|
6296 |
|
6297 |
+
#: app/skins/single.php:393
|
6298 |
#, fuzzy
|
6299 |
#| msgid "No Search Options"
|
6300 |
msgid "Speakers:"
|
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-06-
|
6 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
68 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
69 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -268,7 +268,7 @@ msgstr "Eventos"
|
|
268 |
msgid "Event"
|
269 |
msgstr "Evento"
|
270 |
|
271 |
-
#: app/features/events.php:136 app/features/mec.php:
|
272 |
msgid "Add Event"
|
273 |
msgstr "Adicionar Evento"
|
274 |
|
@@ -316,7 +316,7 @@ msgid "Category"
|
|
316 |
msgstr "Categoria"
|
317 |
|
318 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
319 |
-
#: app/features/mec.php:
|
320 |
#: app/libraries/main.php:4375
|
321 |
msgid "Categories"
|
322 |
msgstr "Categorias"
|
@@ -415,7 +415,7 @@ msgstr ""
|
|
415 |
#: app/features/events.php:410 app/features/events.php:1682
|
416 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
417 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +427,8 @@ msgstr "Nome"
|
|
427 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
428 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
429 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
430 |
-
#: app/libraries/notifications.php:
|
431 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
432 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
433 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
434 |
#: app/skins/single/modern.php:48
|
@@ -553,13 +553,14 @@ msgstr ""
|
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
555 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
556 |
-
#: app/features/mec/notifications.php:
|
557 |
-
#: app/features/mec/notifications.php:
|
558 |
-
#: app/features/mec/notifications.php:
|
559 |
-
#: app/features/mec/notifications.php:
|
560 |
-
#: app/features/mec/notifications.php:
|
561 |
-
#: app/features/mec/notifications.php:
|
562 |
-
#: app/features/mec/notifications.php:
|
|
|
563 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
564 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
565 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -770,7 +771,7 @@ msgid "Day 1"
|
|
770 |
msgstr ""
|
771 |
|
772 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
773 |
-
#: app/skins/single.php:
|
774 |
msgid "Hourly Schedule"
|
775 |
msgstr "Horários da Programação"
|
776 |
|
@@ -842,7 +843,7 @@ msgstr "Descrição"
|
|
842 |
|
843 |
#: app/features/events.php:913 app/features/events.php:933
|
844 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
845 |
-
#: app/features/mec.php:
|
846 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
847 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
848 |
msgid "Speakers"
|
@@ -1246,7 +1247,7 @@ msgstr ""
|
|
1246 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1248 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1249 |
-
#: app/skins/single.php:
|
1250 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1251 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1252 |
msgid "Location"
|
@@ -1418,14 +1419,14 @@ msgid "Remove Image"
|
|
1418 |
msgstr "Remover Imagem"
|
1419 |
|
1420 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1421 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1422 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1423 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1424 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1425 |
msgid "Labels"
|
1426 |
msgstr "Etiquetas"
|
1427 |
|
1428 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1429 |
#: app/features/mec/meta_boxes/filter.php:138
|
1430 |
msgid "Tags"
|
1431 |
msgstr "Tags"
|
@@ -1461,7 +1462,7 @@ msgstr "CEM - Importar / Exportar"
|
|
1461 |
|
1462 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1463 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1464 |
-
#: app/features/mec/notifications.php:
|
1465 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1466 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1467 |
msgid "Import / Export"
|
@@ -1745,15 +1746,15 @@ msgstr "Alternar"
|
|
1745 |
#: app/features/ix/export_g_calendar.php:72
|
1746 |
#: app/features/ix/export_g_calendar.php:147
|
1747 |
#: app/features/ix/export_g_calendar.php:164
|
1748 |
-
#: app/features/mec/notifications.php:
|
1749 |
-
#: app/features/mec/notifications.php:
|
1750 |
-
#: app/features/mec/notifications.php:
|
1751 |
-
#: app/features/mec/notifications.php:
|
1752 |
msgid "Add to Google Calendar"
|
1753 |
msgstr "Adicionar ao Calendário do Google"
|
1754 |
|
1755 |
#: app/features/ix/export_g_calendar.php:90
|
1756 |
-
#: app/features/mec/notifications.php:
|
1757 |
msgid "Checking ..."
|
1758 |
msgstr "Verificando ...."
|
1759 |
|
@@ -2009,7 +2010,7 @@ msgstr "Importar para Calendário do Google"
|
|
2009 |
|
2010 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2011 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2012 |
-
#: app/features/mec/notifications.php:
|
2013 |
#, fuzzy
|
2014 |
msgid "Important Note"
|
2015 |
msgstr "Importar / Exportar"
|
@@ -2140,7 +2141,7 @@ msgstr ""
|
|
2140 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2141 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2142 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2143 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2144 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2145 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2146 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2156,7 +2157,7 @@ msgstr "Imagem Destacada"
|
|
2156 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2157 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2158 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2159 |
-
#: app/skins/monthly_view/calendar.php:
|
2160 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2161 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2162 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2184,7 +2185,7 @@ msgstr "Slug"
|
|
2184 |
msgid "Event %s"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2188 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2189 |
#: app/libraries/main.php:4379
|
2190 |
msgid "Locations"
|
@@ -2304,123 +2305,123 @@ msgid ""
|
|
2304 |
"You can select extra locations in addition to main location if you like."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: app/features/mec.php:
|
2308 |
msgid ""
|
2309 |
"Activation faild. Please check your purchase code or license type."
|
2310 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: app/features/mec.php:
|
2314 |
msgid "Troubleshooting"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: app/features/mec.php:
|
2318 |
msgid ""
|
2319 |
"Your options is not in JSON format. Please insert correct options in this "
|
2320 |
"field and try again."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: app/features/mec.php:
|
2324 |
#, fuzzy
|
2325 |
#| msgid "Your booking cannot verify!"
|
2326 |
msgid "Your options field can not be empty!"
|
2327 |
msgstr "Sua reserva não pôde ser verificada!"
|
2328 |
|
2329 |
-
#: app/features/mec.php:
|
2330 |
#, fuzzy
|
2331 |
#| msgid "Your booking successfully verified."
|
2332 |
msgid "Your options imported successfuly."
|
2333 |
msgstr "Sua reserva foi verificada com sucesso."
|
2334 |
|
2335 |
-
#: app/features/mec.php:
|
2336 |
#, fuzzy
|
2337 |
#| msgid "Support"
|
2338 |
msgid "MEC - Support"
|
2339 |
msgstr "Suporte"
|
2340 |
|
2341 |
-
#: app/features/mec.php:
|
2342 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2343 |
-
#: app/features/mec/notifications.php:
|
2344 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2345 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2346 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2347 |
msgid "Support"
|
2348 |
msgstr "Suporte"
|
2349 |
|
2350 |
-
#: app/features/mec.php:
|
2351 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2352 |
#: app/libraries/main.php:4381
|
2353 |
msgid "Organizers"
|
2354 |
msgstr "Organizadores"
|
2355 |
|
2356 |
-
#: app/features/mec.php:
|
2357 |
#: app/features/mec/dashboard.php:194
|
2358 |
msgid "Shortcodes"
|
2359 |
msgstr "Códigos Curtos"
|
2360 |
|
2361 |
-
#: app/features/mec.php:
|
2362 |
msgid "MEC - Settings"
|
2363 |
msgstr "CEM - Configurações"
|
2364 |
|
2365 |
-
#: app/features/mec.php:
|
2366 |
#, fuzzy
|
2367 |
#| msgid "MEC - Settings"
|
2368 |
msgid "MEC - Addons"
|
2369 |
msgstr "CEM - Configurações"
|
2370 |
|
2371 |
-
#: app/features/mec.php:
|
2372 |
msgid "Addons"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: app/features/mec.php:
|
2376 |
msgid "Add Shortcode"
|
2377 |
msgstr "Adicionar Código Curto"
|
2378 |
|
2379 |
-
#: app/features/mec.php:
|
2380 |
msgid "Add New Shortcode"
|
2381 |
msgstr "Adicionar Novo Código Curto"
|
2382 |
|
2383 |
-
#: app/features/mec.php:
|
2384 |
msgid "No shortcodes found!"
|
2385 |
msgstr "Nenhum código curto encontrado!"
|
2386 |
|
2387 |
-
#: app/features/mec.php:
|
2388 |
msgid "All Shortcodes"
|
2389 |
msgstr "Todos os Códigos Curtos"
|
2390 |
|
2391 |
-
#: app/features/mec.php:
|
2392 |
msgid "Edit shortcodes"
|
2393 |
msgstr "Editar códigos curtos"
|
2394 |
|
2395 |
-
#: app/features/mec.php:
|
2396 |
msgid "No shortcodes found in Trash!"
|
2397 |
msgstr "Nenhum código curto encontrado na Lixeira!"
|
2398 |
|
2399 |
-
#: app/features/mec.php:
|
2400 |
msgid "Display Options"
|
2401 |
msgstr "Opções de Exibição"
|
2402 |
|
2403 |
-
#: app/features/mec.php:
|
2404 |
msgid "Filter Options"
|
2405 |
msgstr "Opções de Filtro"
|
2406 |
|
2407 |
-
#: app/features/mec.php:
|
2408 |
msgid "Search Form"
|
2409 |
msgstr "Formulário de Pesquisa"
|
2410 |
|
2411 |
-
#: app/features/mec.php:
|
2412 |
msgid "Display content's images as Popup"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: app/features/mec.php:
|
2416 |
msgid "Single Event Display Method"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: app/features/mec.php:
|
2420 |
msgid "Separate Window"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: app/features/mec.php:
|
2424 |
msgid "Modal 1"
|
2425 |
msgstr ""
|
2426 |
|
@@ -2581,10 +2582,10 @@ msgstr "Registro de Alterações"
|
|
2581 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2582 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2583 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2584 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2585 |
-
#: app/features/mec/notifications.php:
|
2586 |
-
#: app/features/mec/notifications.php:
|
2587 |
-
#: app/features/mec/notifications.php:
|
2588 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2589 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2590 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2599,7 +2600,7 @@ msgid "Save Changes"
|
|
2599 |
msgstr "Salvar Alterações"
|
2600 |
|
2601 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2602 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2603 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2604 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2605 |
#: app/features/mec/support.php:52
|
@@ -2607,7 +2608,7 @@ msgid "Styling Options"
|
|
2607 |
msgstr "Opções de Estilo"
|
2608 |
|
2609 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2610 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2611 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2612 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2613 |
#: app/features/mec/support.php:59
|
@@ -2616,21 +2617,21 @@ msgstr "Personalizar CSS"
|
|
2616 |
|
2617 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2618 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2619 |
-
#: app/features/mec/notifications.php:
|
2620 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2621 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2622 |
msgid "Messages"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2626 |
-
#: app/features/mec/notifications.php:
|
2627 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2628 |
#: app/features/mec/styling.php:375
|
2629 |
msgid "Saved"
|
2630 |
msgstr "Salvo"
|
2631 |
|
2632 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2633 |
-
#: app/features/mec/notifications.php:
|
2634 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2635 |
#: app/features/mec/styling.php:376
|
2636 |
msgid "Settings Saved!"
|
@@ -3463,315 +3464,379 @@ msgstr "Entrada de Texto"
|
|
3463 |
msgid "No Search Options"
|
3464 |
msgstr "Sem Opções de Pesquisa"
|
3465 |
|
3466 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3467 |
msgid "Booking Notification"
|
3468 |
msgstr "Notificação de Reserva"
|
3469 |
|
3470 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3471 |
msgid "Booking Verification"
|
3472 |
msgstr "Verificação de Reserva"
|
3473 |
|
3474 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3475 |
#: app/features/mec/settings.php:1409
|
3476 |
msgid "Booking Confirmation"
|
3477 |
msgstr "Confirmação de Reserva"
|
3478 |
|
3479 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3480 |
msgid "Admin Notification"
|
3481 |
msgstr "Notificação do Administrador"
|
3482 |
|
3483 |
-
#: app/features/mec/notifications.php:
|
3484 |
-
#: app/libraries/notifications.php:
|
3485 |
msgid "Booking Reminder"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: app/features/mec/notifications.php:
|
3489 |
#: app/features/mec/support-page.php:80
|
3490 |
msgid "New Event"
|
3491 |
msgstr "Novo Evento"
|
3492 |
|
3493 |
-
#: app/features/mec/notifications.php:
|
3494 |
msgid "Enable booking notification"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#: app/features/mec/notifications.php:
|
3498 |
msgid "It sends to attendee after booking for notifying him/her."
|
3499 |
msgstr "Ele envia ao participante após a reserva para notificá-lo."
|
3500 |
|
3501 |
-
#: app/features/mec/notifications.php:
|
3502 |
-
#: app/features/mec/notifications.php:
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
#: app/features/mec/notifications.php:
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
|
|
3507 |
msgid "Email Subject"
|
3508 |
msgstr "Assunto do E-mail"
|
3509 |
|
3510 |
-
#: app/features/mec/notifications.php:
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
#: app/features/mec/notifications.php:
|
3513 |
-
#: app/features/mec/notifications.php:
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
-
#: app/features/mec/notifications.php:
|
3516 |
-
#: app/features/mec/notifications.php:
|
3517 |
-
#: app/features/mec/notifications.php:
|
3518 |
-
#: app/features/mec/notifications.php:
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3523 |
msgid "Custom Recipients"
|
3524 |
msgstr "Personalizar Recipientes"
|
3525 |
|
3526 |
-
#: app/features/mec/notifications.php:
|
3527 |
-
#: app/features/mec/notifications.php:
|
3528 |
-
#: app/features/mec/notifications.php:
|
3529 |
-
#: app/features/mec/notifications.php:
|
3530 |
-
#: app/features/mec/notifications.php:
|
3531 |
-
#: app/features/mec/notifications.php:
|
3532 |
-
#: app/features/mec/notifications.php:
|
|
|
3533 |
msgid "Insert comma separated emails for multiple recipients."
|
3534 |
msgstr "Insira e-mails separados por vírgula para vários destinatários."
|
3535 |
|
3536 |
-
#: app/features/mec/notifications.php:
|
3537 |
-
#: app/features/mec/notifications.php:
|
|
|
3538 |
msgid "Send the email to event organizer"
|
3539 |
msgstr "Envie o e-mail para organizador do evento"
|
3540 |
|
3541 |
-
#: app/features/mec/notifications.php:
|
3542 |
-
#: app/features/mec/notifications.php:
|
3543 |
-
#: app/features/mec/notifications.php:
|
3544 |
-
#: app/features/mec/notifications.php:
|
3545 |
-
#: app/features/mec/notifications.php:
|
3546 |
-
#: app/features/mec/notifications.php:
|
|
|
3547 |
msgid "Email Content"
|
3548 |
msgstr "Conteúdo do E-mail"
|
3549 |
|
3550 |
-
#: app/features/mec/notifications.php:
|
3551 |
-
#: app/features/mec/notifications.php:
|
3552 |
-
#: app/features/mec/notifications.php:
|
3553 |
-
#: app/features/mec/notifications.php:
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
#: app/features/mec/notifications.php:
|
|
|
3556 |
msgid "You can use following placeholders"
|
3557 |
msgstr "Você pode usar os seguintes espaços reservados"
|
3558 |
|
3559 |
-
#: app/features/mec/notifications.php:
|
3560 |
-
#: app/features/mec/notifications.php:
|
3561 |
-
#: app/features/mec/notifications.php:
|
3562 |
-
#: app/features/mec/notifications.php:
|
3563 |
-
#: app/features/mec/notifications.php:
|
|
|
3564 |
msgid "First name of attendee"
|
3565 |
msgstr "Primeiro nome do participante"
|
3566 |
|
3567 |
-
#: app/features/mec/notifications.php:
|
3568 |
-
#: app/features/mec/notifications.php:
|
3569 |
-
#: app/features/mec/notifications.php:
|
3570 |
-
#: app/features/mec/notifications.php:
|
3571 |
-
#: app/features/mec/notifications.php:
|
|
|
3572 |
msgid "Last name of attendee"
|
3573 |
msgstr "Último nome do participante"
|
3574 |
|
3575 |
-
#: app/features/mec/notifications.php:
|
3576 |
-
#: app/features/mec/notifications.php:
|
3577 |
-
#: app/features/mec/notifications.php:
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
-
#: app/features/mec/notifications.php:
|
|
|
3580 |
msgid "Email of attendee"
|
3581 |
msgstr "E-mail do participante"
|
3582 |
|
3583 |
-
#: app/features/mec/notifications.php:
|
3584 |
-
#: app/features/mec/notifications.php:
|
3585 |
-
#: app/features/mec/notifications.php:
|
3586 |
-
#: app/features/mec/notifications.php:
|
3587 |
-
#: app/features/mec/notifications.php:
|
|
|
3588 |
msgid "Booked date of event"
|
3589 |
msgstr "Data do evento reservado"
|
3590 |
|
3591 |
-
#: app/features/mec/notifications.php:
|
3592 |
-
#: app/features/mec/notifications.php:
|
3593 |
-
#: app/features/mec/notifications.php:
|
3594 |
-
#: app/features/mec/notifications.php:
|
3595 |
-
#: app/features/mec/notifications.php:
|
|
|
3596 |
#, fuzzy
|
3597 |
#| msgid "Booked date of event"
|
3598 |
msgid "Booked time of event"
|
3599 |
msgstr "Data do evento reservado"
|
3600 |
|
3601 |
-
#: app/features/mec/notifications.php:
|
3602 |
-
#: app/features/mec/notifications.php:
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
-
#: app/features/mec/notifications.php:
|
3605 |
-
#: app/features/mec/notifications.php:
|
|
|
3606 |
msgid "Booking Price"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
-
#: app/features/mec/notifications.php:
|
3610 |
-
#: app/features/mec/notifications.php:
|
3611 |
-
#: app/features/mec/notifications.php:
|
3612 |
-
#: app/features/mec/notifications.php:
|
3613 |
-
#: app/features/mec/notifications.php:
|
3614 |
-
#: app/features/mec/notifications.php:
|
|
|
3615 |
msgid "Your website title"
|
3616 |
msgstr "Título do seu site"
|
3617 |
|
3618 |
-
#: app/features/mec/notifications.php:
|
3619 |
-
#: app/features/mec/notifications.php:
|
3620 |
-
#: app/features/mec/notifications.php:
|
3621 |
-
#: app/features/mec/notifications.php:
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
|
|
3624 |
msgid "Your website URL"
|
3625 |
msgstr "URL do seu site"
|
3626 |
|
3627 |
-
#: app/features/mec/notifications.php:
|
3628 |
-
#: app/features/mec/notifications.php:
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
-
#: app/features/mec/notifications.php:
|
3631 |
-
#: app/features/mec/notifications.php:
|
3632 |
-
#: app/features/mec/notifications.php:
|
|
|
3633 |
msgid "Your website description"
|
3634 |
msgstr "Descrição do seu site"
|
3635 |
|
3636 |
-
#: app/features/mec/notifications.php:
|
3637 |
-
#: app/features/mec/notifications.php:
|
3638 |
-
#: app/features/mec/notifications.php:
|
3639 |
-
#: app/features/mec/notifications.php:
|
3640 |
-
#: app/features/mec/notifications.php:
|
|
|
3641 |
msgid "Event title"
|
3642 |
msgstr "Título do evento"
|
3643 |
|
3644 |
-
#: app/features/mec/notifications.php:
|
3645 |
-
#: app/features/mec/notifications.php:
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
-
#: app/features/mec/notifications.php:
|
3648 |
-
#: app/features/mec/notifications.php:
|
|
|
3649 |
#, fuzzy
|
3650 |
#| msgid "Event Link"
|
3651 |
msgid "Event link"
|
3652 |
msgstr "Link do Evento"
|
3653 |
|
3654 |
-
#: app/features/mec/notifications.php:
|
3655 |
-
#: app/features/mec/notifications.php:
|
3656 |
-
#: app/features/mec/notifications.php:
|
3657 |
-
#: app/features/mec/notifications.php:
|
3658 |
-
#: app/features/mec/notifications.php:
|
|
|
3659 |
msgid "Organizer name of booked event"
|
3660 |
msgstr "Nome do organizador do evento reservado"
|
3661 |
|
3662 |
-
#: app/features/mec/notifications.php:
|
3663 |
-
#: app/features/mec/notifications.php:
|
3664 |
-
#: app/features/mec/notifications.php:
|
3665 |
-
#: app/features/mec/notifications.php:
|
3666 |
-
#: app/features/mec/notifications.php:
|
|
|
3667 |
msgid "Organizer tel of booked event"
|
3668 |
msgstr "Telefone do organizador do evento reservado"
|
3669 |
|
3670 |
-
#: app/features/mec/notifications.php:
|
3671 |
-
#: app/features/mec/notifications.php:
|
3672 |
-
#: app/features/mec/notifications.php:
|
3673 |
-
#: app/features/mec/notifications.php:
|
3674 |
-
#: app/features/mec/notifications.php:
|
|
|
3675 |
msgid "Organizer email of booked event"
|
3676 |
msgstr "E-mail do organizador do evento reservado"
|
3677 |
|
3678 |
-
#: app/features/mec/notifications.php:
|
3679 |
-
#: app/features/mec/notifications.php:
|
3680 |
-
#: app/features/mec/notifications.php:
|
3681 |
-
#: app/features/mec/notifications.php:
|
3682 |
-
#: app/features/mec/notifications.php:
|
|
|
3683 |
msgid "Location name of booked event"
|
3684 |
msgstr "Nome da localização do evento reservado"
|
3685 |
|
3686 |
-
#: app/features/mec/notifications.php:
|
3687 |
-
#: app/features/mec/notifications.php:
|
3688 |
-
#: app/features/mec/notifications.php:
|
3689 |
-
#: app/features/mec/notifications.php:
|
3690 |
-
#: app/features/mec/notifications.php:
|
|
|
3691 |
msgid "Location address of booked event"
|
3692 |
msgstr "Endereço da localização do evento reservado"
|
3693 |
|
3694 |
-
#: app/features/mec/notifications.php:
|
3695 |
-
#: app/features/mec/notifications.php:
|
|
|
3696 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3697 |
msgstr ""
|
3698 |
"Informação completa do participante, tais como dados do formulário de "
|
3699 |
"reserva, nome, e-mail etc."
|
3700 |
|
3701 |
-
#: app/features/mec/notifications.php:
|
3702 |
-
#: app/features/mec/notifications.php:
|
3703 |
-
#: app/features/mec/notifications.php:
|
3704 |
msgid "Invoice Link"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: app/features/mec/notifications.php:
|
3708 |
-
#: app/features/mec/notifications.php:
|
3709 |
-
#: app/features/mec/notifications.php:
|
3710 |
-
#: app/features/mec/notifications.php:
|
3711 |
-
#: app/features/mec/notifications.php:
|
|
|
3712 |
msgid "Total Attendees"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
#: app/features/mec/notifications.php:
|
3716 |
-
#: app/features/mec/notifications.php:
|
3717 |
-
#: app/features/mec/notifications.php:
|
3718 |
-
#: app/features/mec/notifications.php:
|
3719 |
#, fuzzy
|
3720 |
#| msgid "Ticket Name"
|
3721 |
msgid "Ticket name"
|
3722 |
msgstr "Nome do Bilhete"
|
3723 |
|
3724 |
-
#: app/features/mec/notifications.php:
|
3725 |
-
#: app/features/mec/notifications.php:
|
3726 |
-
#: app/features/mec/notifications.php:
|
3727 |
-
#: app/features/mec/notifications.php:
|
3728 |
#, fuzzy
|
3729 |
#| msgid "Ticket Name"
|
3730 |
msgid "Ticket time"
|
3731 |
msgstr "Nome do Bilhete"
|
3732 |
|
3733 |
-
#: app/features/mec/notifications.php:
|
3734 |
-
#: app/features/mec/notifications.php:
|
3735 |
-
#: app/features/mec/notifications.php:
|
3736 |
-
#: app/features/mec/notifications.php:
|
3737 |
msgid "Download ICS file"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
-
#: app/features/mec/notifications.php:
|
3741 |
msgid "It sends to attendee email for verifying their booking/email."
|
3742 |
msgstr ""
|
3743 |
"Ele envia para o e-mail do participante para verificar sua reserva por e-"
|
3744 |
"mail."
|
3745 |
|
3746 |
-
#: app/features/mec/notifications.php:
|
3747 |
msgid "Email/Booking verification link."
|
3748 |
msgstr "Link do e-mail de confirmação de reserva."
|
3749 |
|
3750 |
-
#: app/features/mec/notifications.php:
|
3751 |
msgid "It sends to attendee after confirming the booking by admin."
|
3752 |
msgstr ""
|
3753 |
"Ele envia para o participante depois de confirmar a reserva pelo "
|
3754 |
"administrador."
|
3755 |
|
3756 |
-
#: app/features/mec/notifications.php:
|
3757 |
-
#: app/features/mec/notifications.php:
|
3758 |
msgid "Booking cancellation link."
|
3759 |
msgstr "Link de cancelamento da reserva."
|
3760 |
|
3761 |
-
#: app/features/mec/notifications.php:
|
3762 |
-
|
3763 |
-
|
3764 |
-
"
|
|
|
3765 |
|
3766 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3767 |
msgid "Admin booking management link."
|
3768 |
msgstr "Gerenciamento do link da administração de reservas."
|
3769 |
|
3770 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3771 |
msgid "Enable booking reminder notification"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: app/features/mec/notifications.php:
|
3775 |
#, php-format
|
3776 |
msgid ""
|
3777 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3779,19 +3844,19 @@ msgid ""
|
|
3779 |
"send the reminders multiple times."
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: app/features/mec/notifications.php:
|
3783 |
msgid "only once per day"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: app/features/mec/notifications.php:
|
3787 |
msgid "Days"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: app/features/mec/notifications.php:
|
3791 |
msgid "Enable new event notification"
|
3792 |
msgstr "Habilitar notificação de novo evento"
|
3793 |
|
3794 |
-
#: app/features/mec/notifications.php:
|
3795 |
msgid ""
|
3796 |
"It sends after adding a new event from frontend event submission or from "
|
3797 |
"website backend."
|
@@ -3799,36 +3864,36 @@ msgstr ""
|
|
3799 |
"Ele envia depois de adicionar um novo evento a partir da submissão do evento "
|
3800 |
"no site ou a partir da administração do site."
|
3801 |
|
3802 |
-
#: app/features/mec/notifications.php:
|
3803 |
msgid "Title of event"
|
3804 |
msgstr "Título do evento"
|
3805 |
|
3806 |
-
#: app/features/mec/notifications.php:
|
3807 |
#, fuzzy
|
3808 |
#| msgid "Title of event"
|
3809 |
msgid "Link of event"
|
3810 |
msgstr "Título do evento"
|
3811 |
|
3812 |
-
#: app/features/mec/notifications.php:
|
3813 |
msgid "Status of event"
|
3814 |
msgstr "Estado do evento"
|
3815 |
|
3816 |
-
#: app/features/mec/notifications.php:
|
3817 |
#: app/features/mec/settings.php:1253
|
3818 |
msgid "Event Note"
|
3819 |
msgstr "Nota do Evento"
|
3820 |
|
3821 |
-
#: app/features/mec/notifications.php:
|
3822 |
msgid "Admin events management link."
|
3823 |
msgstr "Link de gerenciamento da administração de eventos."
|
3824 |
|
3825 |
-
#: app/features/mec/notifications.php:
|
3826 |
-
#: app/features/mec/notifications.php:
|
3827 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3828 |
msgid "Verified"
|
3829 |
msgstr "Verificado"
|
3830 |
|
3831 |
-
#: app/features/mec/notifications.php:
|
3832 |
msgid "Please Refresh Page"
|
3833 |
msgstr "Por favor, Atualize a Página"
|
3834 |
|
@@ -5292,7 +5357,7 @@ msgid "eg. https://webnus.net"
|
|
5292 |
msgstr "http://webnus.biz"
|
5293 |
|
5294 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5295 |
-
#: app/skins/single.php:
|
5296 |
msgid "Other Organizers"
|
5297 |
msgstr ""
|
5298 |
|
@@ -5436,7 +5501,7 @@ msgstr ""
|
|
5436 |
msgid "day"
|
5437 |
msgstr "dia"
|
5438 |
|
5439 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5440 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5441 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5442 |
msgid "days"
|
@@ -5446,7 +5511,7 @@ msgstr "dias"
|
|
5446 |
msgid "hour"
|
5447 |
msgstr "hora"
|
5448 |
|
5449 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5450 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5451 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5452 |
msgid "hours"
|
@@ -5456,7 +5521,7 @@ msgstr "horas"
|
|
5456 |
msgid "minute"
|
5457 |
msgstr "minuto"
|
5458 |
|
5459 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5460 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5461 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5462 |
msgid "minutes"
|
@@ -5466,7 +5531,7 @@ msgstr "minutos"
|
|
5466 |
msgid "second"
|
5467 |
msgstr "segundo"
|
5468 |
|
5469 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5470 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5471 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5472 |
msgid "seconds"
|
@@ -5943,38 +6008,44 @@ msgstr ""
|
|
5943 |
msgid "Your booking is confirmed."
|
5944 |
msgstr "Sua reserva foi confirmada."
|
5945 |
|
5946 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5947 |
msgid "A new booking is received."
|
5948 |
msgstr "Uma nova reserva foi recebida."
|
5949 |
|
5950 |
-
#: app/libraries/notifications.php:
|
5951 |
msgid "A new event is added."
|
5952 |
msgstr "Um novo evento foi adicionado."
|
5953 |
|
5954 |
-
#: app/libraries/notifications.php:
|
5955 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5956 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5957 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5958 |
msgid "All of the day"
|
5959 |
msgstr "Durante o dia todo"
|
5960 |
|
5961 |
-
#: app/libraries/notifications.php:
|
5962 |
msgid "to"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
-
#: app/libraries/notifications.php:
|
5966 |
msgid "+ Add to Google Calendar"
|
5967 |
msgstr "+ Adicionar ao Calendário do Google"
|
5968 |
|
5969 |
-
#: app/libraries/notifications.php:
|
5970 |
msgid "+ iCal export"
|
5971 |
msgstr "+ Exportar para iCal"
|
5972 |
|
5973 |
-
#: app/libraries/notifications.php:
|
5974 |
msgid "Yes"
|
5975 |
msgstr ""
|
5976 |
|
5977 |
-
#: app/libraries/notifications.php:
|
5978 |
msgid "No"
|
5979 |
msgstr ""
|
5980 |
|
@@ -6187,15 +6258,15 @@ msgstr "Lista"
|
|
6187 |
msgid "All"
|
6188 |
msgstr ""
|
6189 |
|
6190 |
-
#: app/skins/monthly_view/calendar.php:
|
6191 |
-
#: app/skins/monthly_view/calendar.php:
|
6192 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6193 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6194 |
#, php-format
|
6195 |
msgid "Events for %s"
|
6196 |
msgstr "Eventos para %s"
|
6197 |
|
6198 |
-
#: app/skins/monthly_view/calendar.php:
|
6199 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6200 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6201 |
msgid "No Events"
|
@@ -6205,19 +6276,19 @@ msgstr "Sem Eventos"
|
|
6205 |
msgid "Home"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
-
#: app/skins/single.php:
|
6209 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6210 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6211 |
msgid "Phone"
|
6212 |
msgstr "Fone"
|
6213 |
|
6214 |
-
#: app/skins/single.php:
|
6215 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6216 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6217 |
msgid "Website"
|
6218 |
msgstr "Website"
|
6219 |
|
6220 |
-
#: app/skins/single.php:
|
6221 |
#, fuzzy
|
6222 |
#| msgid "No Search Options"
|
6223 |
msgid "Speakers:"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-06-10 15:05+0430\n"
|
6 |
+
"PO-Revision-Date: 2019-06-10 15:05+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:348
|
35 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
67 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
68 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
69 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
268 |
msgid "Event"
|
269 |
msgstr "Evento"
|
270 |
|
271 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
272 |
msgid "Add Event"
|
273 |
msgstr "Adicionar Evento"
|
274 |
|
316 |
msgstr "Categoria"
|
317 |
|
318 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
319 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
320 |
#: app/libraries/main.php:4375
|
321 |
msgid "Categories"
|
322 |
msgstr "Categorias"
|
415 |
#: app/features/events.php:410 app/features/events.php:1682
|
416 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
417 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
418 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
429 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
430 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
431 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
432 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
433 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
434 |
#: app/skins/single/modern.php:48
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
555 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
556 |
+
#: app/features/mec/notifications.php:170
|
557 |
+
#: app/features/mec/notifications.php:228
|
558 |
+
#: app/features/mec/notifications.php:280
|
559 |
+
#: app/features/mec/notifications.php:339
|
560 |
+
#: app/features/mec/notifications.php:406
|
561 |
+
#: app/features/mec/notifications.php:469
|
562 |
+
#: app/features/mec/notifications.php:480
|
563 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
564 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
565 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
566 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
771 |
msgstr ""
|
772 |
|
773 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
774 |
+
#: app/skins/single.php:379
|
775 |
msgid "Hourly Schedule"
|
776 |
msgstr "Horários da Programação"
|
777 |
|
843 |
|
844 |
#: app/features/events.php:913 app/features/events.php:933
|
845 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
846 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
847 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
848 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
849 |
msgid "Speakers"
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1248 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1249 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1250 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1251 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1252 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1253 |
msgid "Location"
|
1419 |
msgstr "Remover Imagem"
|
1420 |
|
1421 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1422 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1423 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1424 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1425 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1426 |
msgid "Labels"
|
1427 |
msgstr "Etiquetas"
|
1428 |
|
1429 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1430 |
#: app/features/mec/meta_boxes/filter.php:138
|
1431 |
msgid "Tags"
|
1432 |
msgstr "Tags"
|
1462 |
|
1463 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1464 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1465 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1466 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1467 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1468 |
msgid "Import / Export"
|
1746 |
#: app/features/ix/export_g_calendar.php:72
|
1747 |
#: app/features/ix/export_g_calendar.php:147
|
1748 |
#: app/features/ix/export_g_calendar.php:164
|
1749 |
+
#: app/features/mec/notifications.php:207
|
1750 |
+
#: app/features/mec/notifications.php:260
|
1751 |
+
#: app/features/mec/notifications.php:313
|
1752 |
+
#: app/features/mec/notifications.php:513
|
1753 |
msgid "Add to Google Calendar"
|
1754 |
msgstr "Adicionar ao Calendário do Google"
|
1755 |
|
1756 |
#: app/features/ix/export_g_calendar.php:90
|
1757 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1758 |
msgid "Checking ..."
|
1759 |
msgstr "Verificando ...."
|
1760 |
|
2010 |
|
2011 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2012 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2013 |
+
#: app/features/mec/notifications.php:457
|
2014 |
#, fuzzy
|
2015 |
msgid "Important Note"
|
2016 |
msgstr "Importar / Exportar"
|
2141 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2142 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2143 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2144 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2145 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2146 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2147 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2157 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2158 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2159 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2160 |
+
#: app/skins/monthly_view/calendar.php:86
|
2161 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2162 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2163 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2185 |
msgid "Event %s"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2189 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2190 |
#: app/libraries/main.php:4379
|
2191 |
msgid "Locations"
|
2305 |
"You can select extra locations in addition to main location if you like."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: app/features/mec.php:153
|
2309 |
msgid ""
|
2310 |
"Activation faild. Please check your purchase code or license type."
|
2311 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: app/features/mec.php:153
|
2315 |
msgid "Troubleshooting"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: app/features/mec.php:193
|
2319 |
msgid ""
|
2320 |
"Your options is not in JSON format. Please insert correct options in this "
|
2321 |
"field and try again."
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: app/features/mec.php:200
|
2325 |
#, fuzzy
|
2326 |
#| msgid "Your booking cannot verify!"
|
2327 |
msgid "Your options field can not be empty!"
|
2328 |
msgstr "Sua reserva não pôde ser verificada!"
|
2329 |
|
2330 |
+
#: app/features/mec.php:206
|
2331 |
#, fuzzy
|
2332 |
#| msgid "Your booking successfully verified."
|
2333 |
msgid "Your options imported successfuly."
|
2334 |
msgstr "Sua reserva foi verificada com sucesso."
|
2335 |
|
2336 |
+
#: app/features/mec.php:299
|
2337 |
#, fuzzy
|
2338 |
#| msgid "Support"
|
2339 |
msgid "MEC - Support"
|
2340 |
msgstr "Suporte"
|
2341 |
|
2342 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2343 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2344 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2345 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2346 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2347 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2348 |
msgid "Support"
|
2349 |
msgstr "Suporte"
|
2350 |
|
2351 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2352 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2353 |
#: app/libraries/main.php:4381
|
2354 |
msgid "Organizers"
|
2355 |
msgstr "Organizadores"
|
2356 |
|
2357 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2358 |
#: app/features/mec/dashboard.php:194
|
2359 |
msgid "Shortcodes"
|
2360 |
msgstr "Códigos Curtos"
|
2361 |
|
2362 |
+
#: app/features/mec.php:329
|
2363 |
msgid "MEC - Settings"
|
2364 |
msgstr "CEM - Configurações"
|
2365 |
|
2366 |
+
#: app/features/mec.php:330
|
2367 |
#, fuzzy
|
2368 |
#| msgid "MEC - Settings"
|
2369 |
msgid "MEC - Addons"
|
2370 |
msgstr "CEM - Configurações"
|
2371 |
|
2372 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2373 |
msgid "Addons"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: app/features/mec.php:349
|
2377 |
msgid "Add Shortcode"
|
2378 |
msgstr "Adicionar Código Curto"
|
2379 |
|
2380 |
+
#: app/features/mec.php:350
|
2381 |
msgid "Add New Shortcode"
|
2382 |
msgstr "Adicionar Novo Código Curto"
|
2383 |
|
2384 |
+
#: app/features/mec.php:351
|
2385 |
msgid "No shortcodes found!"
|
2386 |
msgstr "Nenhum código curto encontrado!"
|
2387 |
|
2388 |
+
#: app/features/mec.php:352
|
2389 |
msgid "All Shortcodes"
|
2390 |
msgstr "Todos os Códigos Curtos"
|
2391 |
|
2392 |
+
#: app/features/mec.php:353
|
2393 |
msgid "Edit shortcodes"
|
2394 |
msgstr "Editar códigos curtos"
|
2395 |
|
2396 |
+
#: app/features/mec.php:354
|
2397 |
msgid "No shortcodes found in Trash!"
|
2398 |
msgstr "Nenhum código curto encontrado na Lixeira!"
|
2399 |
|
2400 |
+
#: app/features/mec.php:402
|
2401 |
msgid "Display Options"
|
2402 |
msgstr "Opções de Exibição"
|
2403 |
|
2404 |
+
#: app/features/mec.php:403
|
2405 |
msgid "Filter Options"
|
2406 |
msgstr "Opções de Filtro"
|
2407 |
|
2408 |
+
#: app/features/mec.php:405
|
2409 |
msgid "Search Form"
|
2410 |
msgstr "Formulário de Pesquisa"
|
2411 |
|
2412 |
+
#: app/features/mec.php:755
|
2413 |
msgid "Display content's images as Popup"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: app/features/mec.php:768
|
2417 |
msgid "Single Event Display Method"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: app/features/mec.php:773
|
2421 |
msgid "Separate Window"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: app/features/mec.php:774
|
2425 |
msgid "Modal 1"
|
2426 |
msgstr ""
|
2427 |
|
2582 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2583 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2584 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2585 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2586 |
+
#: app/features/mec/notifications.php:581
|
2587 |
+
#: app/features/mec/notifications.php:680
|
2588 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2589 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2590 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2591 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2600 |
msgstr "Salvar Alterações"
|
2601 |
|
2602 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2603 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2604 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2605 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2606 |
#: app/features/mec/support.php:52
|
2608 |
msgstr "Opções de Estilo"
|
2609 |
|
2610 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2611 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2612 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2613 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2614 |
#: app/features/mec/support.php:59
|
2617 |
|
2618 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2619 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2620 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2621 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2622 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2623 |
msgid "Messages"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2627 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2628 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2629 |
#: app/features/mec/styling.php:375
|
2630 |
msgid "Saved"
|
2631 |
msgstr "Salvo"
|
2632 |
|
2633 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2634 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2635 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2636 |
#: app/features/mec/styling.php:376
|
2637 |
msgid "Settings Saved!"
|
3464 |
msgid "No Search Options"
|
3465 |
msgstr "Sem Opções de Pesquisa"
|
3466 |
|
3467 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3468 |
msgid "Booking Notification"
|
3469 |
msgstr "Notificação de Reserva"
|
3470 |
|
3471 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3472 |
msgid "Booking Verification"
|
3473 |
msgstr "Verificação de Reserva"
|
3474 |
|
3475 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3476 |
#: app/features/mec/settings.php:1409
|
3477 |
msgid "Booking Confirmation"
|
3478 |
msgstr "Confirmação de Reserva"
|
3479 |
|
3480 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3481 |
+
#, fuzzy
|
3482 |
+
#| msgid "Booking cancellation link."
|
3483 |
+
msgid "Booking Cancellation"
|
3484 |
+
msgstr "Link de cancelamento da reserva."
|
3485 |
+
|
3486 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3487 |
msgid "Admin Notification"
|
3488 |
msgstr "Notificação do Administrador"
|
3489 |
|
3490 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3491 |
+
#: app/libraries/notifications.php:354
|
3492 |
msgid "Booking Reminder"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3496 |
#: app/features/mec/support-page.php:80
|
3497 |
msgid "New Event"
|
3498 |
msgstr "Novo Evento"
|
3499 |
|
3500 |
+
#: app/features/mec/notifications.php:155
|
3501 |
msgid "Enable booking notification"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: app/features/mec/notifications.php:159
|
3505 |
msgid "It sends to attendee after booking for notifying him/her."
|
3506 |
msgstr "Ele envia ao participante após a reserva para notificá-lo."
|
3507 |
|
3508 |
+
#: app/features/mec/notifications.php:161
|
3509 |
+
#: app/features/mec/notifications.php:219
|
3510 |
+
#: app/features/mec/notifications.php:271
|
3511 |
+
#: app/features/mec/notifications.php:330
|
3512 |
+
#: app/features/mec/notifications.php:397
|
3513 |
+
#: app/features/mec/notifications.php:460
|
3514 |
+
#: app/features/mec/notifications.php:532
|
3515 |
msgid "Email Subject"
|
3516 |
msgstr "Assunto do E-mail"
|
3517 |
|
3518 |
+
#: app/features/mec/notifications.php:165
|
3519 |
+
#: app/features/mec/notifications.php:169
|
3520 |
+
#: app/features/mec/notifications.php:223
|
3521 |
+
#: app/features/mec/notifications.php:227
|
3522 |
+
#: app/features/mec/notifications.php:275
|
3523 |
+
#: app/features/mec/notifications.php:279
|
3524 |
+
#: app/features/mec/notifications.php:334
|
3525 |
+
#: app/features/mec/notifications.php:338
|
3526 |
+
#: app/features/mec/notifications.php:401
|
3527 |
+
#: app/features/mec/notifications.php:405
|
3528 |
+
#: app/features/mec/notifications.php:464
|
3529 |
+
#: app/features/mec/notifications.php:468
|
3530 |
+
#: app/features/mec/notifications.php:479
|
3531 |
+
#: app/features/mec/notifications.php:536
|
3532 |
+
#: app/features/mec/notifications.php:540
|
3533 |
msgid "Custom Recipients"
|
3534 |
msgstr "Personalizar Recipientes"
|
3535 |
|
3536 |
+
#: app/features/mec/notifications.php:170
|
3537 |
+
#: app/features/mec/notifications.php:228
|
3538 |
+
#: app/features/mec/notifications.php:280
|
3539 |
+
#: app/features/mec/notifications.php:339
|
3540 |
+
#: app/features/mec/notifications.php:406
|
3541 |
+
#: app/features/mec/notifications.php:469
|
3542 |
+
#: app/features/mec/notifications.php:480
|
3543 |
+
#: app/features/mec/notifications.php:541
|
3544 |
msgid "Insert comma separated emails for multiple recipients."
|
3545 |
msgstr "Insira e-mails separados por vírgula para vários destinatários."
|
3546 |
|
3547 |
+
#: app/features/mec/notifications.php:177
|
3548 |
+
#: app/features/mec/notifications.php:350
|
3549 |
+
#: app/features/mec/notifications.php:413
|
3550 |
msgid "Send the email to event organizer"
|
3551 |
msgstr "Envie o e-mail para organizador do evento"
|
3552 |
|
3553 |
+
#: app/features/mec/notifications.php:180
|
3554 |
+
#: app/features/mec/notifications.php:234
|
3555 |
+
#: app/features/mec/notifications.php:286
|
3556 |
+
#: app/features/mec/notifications.php:357
|
3557 |
+
#: app/features/mec/notifications.php:416
|
3558 |
+
#: app/features/mec/notifications.php:486
|
3559 |
+
#: app/features/mec/notifications.php:547
|
3560 |
msgid "Email Content"
|
3561 |
msgstr "Conteúdo do E-mail"
|
3562 |
|
3563 |
+
#: app/features/mec/notifications.php:183
|
3564 |
+
#: app/features/mec/notifications.php:237
|
3565 |
+
#: app/features/mec/notifications.php:289
|
3566 |
+
#: app/features/mec/notifications.php:360
|
3567 |
+
#: app/features/mec/notifications.php:419
|
3568 |
+
#: app/features/mec/notifications.php:489
|
3569 |
+
#: app/features/mec/notifications.php:550
|
3570 |
msgid "You can use following placeholders"
|
3571 |
msgstr "Você pode usar os seguintes espaços reservados"
|
3572 |
|
3573 |
+
#: app/features/mec/notifications.php:185
|
3574 |
+
#: app/features/mec/notifications.php:239
|
3575 |
+
#: app/features/mec/notifications.php:291
|
3576 |
+
#: app/features/mec/notifications.php:362
|
3577 |
+
#: app/features/mec/notifications.php:421
|
3578 |
+
#: app/features/mec/notifications.php:491
|
3579 |
msgid "First name of attendee"
|
3580 |
msgstr "Primeiro nome do participante"
|
3581 |
|
3582 |
+
#: app/features/mec/notifications.php:186
|
3583 |
+
#: app/features/mec/notifications.php:240
|
3584 |
+
#: app/features/mec/notifications.php:292
|
3585 |
+
#: app/features/mec/notifications.php:363
|
3586 |
+
#: app/features/mec/notifications.php:422
|
3587 |
+
#: app/features/mec/notifications.php:492
|
3588 |
msgid "Last name of attendee"
|
3589 |
msgstr "Último nome do participante"
|
3590 |
|
3591 |
+
#: app/features/mec/notifications.php:187
|
3592 |
+
#: app/features/mec/notifications.php:241
|
3593 |
+
#: app/features/mec/notifications.php:293
|
3594 |
+
#: app/features/mec/notifications.php:364
|
3595 |
+
#: app/features/mec/notifications.php:423
|
3596 |
+
#: app/features/mec/notifications.php:493
|
3597 |
msgid "Email of attendee"
|
3598 |
msgstr "E-mail do participante"
|
3599 |
|
3600 |
+
#: app/features/mec/notifications.php:188
|
3601 |
+
#: app/features/mec/notifications.php:242
|
3602 |
+
#: app/features/mec/notifications.php:294
|
3603 |
+
#: app/features/mec/notifications.php:365
|
3604 |
+
#: app/features/mec/notifications.php:424
|
3605 |
+
#: app/features/mec/notifications.php:494
|
3606 |
msgid "Booked date of event"
|
3607 |
msgstr "Data do evento reservado"
|
3608 |
|
3609 |
+
#: app/features/mec/notifications.php:189
|
3610 |
+
#: app/features/mec/notifications.php:243
|
3611 |
+
#: app/features/mec/notifications.php:295
|
3612 |
+
#: app/features/mec/notifications.php:366
|
3613 |
+
#: app/features/mec/notifications.php:425
|
3614 |
+
#: app/features/mec/notifications.php:495
|
3615 |
#, fuzzy
|
3616 |
#| msgid "Booked date of event"
|
3617 |
msgid "Booked time of event"
|
3618 |
msgstr "Data do evento reservado"
|
3619 |
|
3620 |
+
#: app/features/mec/notifications.php:190
|
3621 |
+
#: app/features/mec/notifications.php:244
|
3622 |
+
#: app/features/mec/notifications.php:296
|
3623 |
+
#: app/features/mec/notifications.php:367
|
3624 |
+
#: app/features/mec/notifications.php:426
|
3625 |
+
#: app/features/mec/notifications.php:496
|
3626 |
msgid "Booking Price"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: app/features/mec/notifications.php:191
|
3630 |
+
#: app/features/mec/notifications.php:245
|
3631 |
+
#: app/features/mec/notifications.php:297
|
3632 |
+
#: app/features/mec/notifications.php:368
|
3633 |
+
#: app/features/mec/notifications.php:427
|
3634 |
+
#: app/features/mec/notifications.php:497
|
3635 |
+
#: app/features/mec/notifications.php:556
|
3636 |
msgid "Your website title"
|
3637 |
msgstr "Título do seu site"
|
3638 |
|
3639 |
+
#: app/features/mec/notifications.php:192
|
3640 |
+
#: app/features/mec/notifications.php:246
|
3641 |
+
#: app/features/mec/notifications.php:298
|
3642 |
+
#: app/features/mec/notifications.php:369
|
3643 |
+
#: app/features/mec/notifications.php:428
|
3644 |
+
#: app/features/mec/notifications.php:498
|
3645 |
+
#: app/features/mec/notifications.php:557
|
3646 |
msgid "Your website URL"
|
3647 |
msgstr "URL do seu site"
|
3648 |
|
3649 |
+
#: app/features/mec/notifications.php:193
|
3650 |
+
#: app/features/mec/notifications.php:247
|
3651 |
+
#: app/features/mec/notifications.php:299
|
3652 |
+
#: app/features/mec/notifications.php:370
|
3653 |
+
#: app/features/mec/notifications.php:429
|
3654 |
+
#: app/features/mec/notifications.php:499
|
3655 |
+
#: app/features/mec/notifications.php:558
|
3656 |
msgid "Your website description"
|
3657 |
msgstr "Descrição do seu site"
|
3658 |
|
3659 |
+
#: app/features/mec/notifications.php:194
|
3660 |
+
#: app/features/mec/notifications.php:248
|
3661 |
+
#: app/features/mec/notifications.php:300
|
3662 |
+
#: app/features/mec/notifications.php:371
|
3663 |
+
#: app/features/mec/notifications.php:430
|
3664 |
+
#: app/features/mec/notifications.php:500
|
3665 |
msgid "Event title"
|
3666 |
msgstr "Título do evento"
|
3667 |
|
3668 |
+
#: app/features/mec/notifications.php:195
|
3669 |
+
#: app/features/mec/notifications.php:249
|
3670 |
+
#: app/features/mec/notifications.php:301
|
3671 |
+
#: app/features/mec/notifications.php:372
|
3672 |
+
#: app/features/mec/notifications.php:431
|
3673 |
+
#: app/features/mec/notifications.php:501
|
3674 |
#, fuzzy
|
3675 |
#| msgid "Event Link"
|
3676 |
msgid "Event link"
|
3677 |
msgstr "Link do Evento"
|
3678 |
|
3679 |
+
#: app/features/mec/notifications.php:196
|
3680 |
+
#: app/features/mec/notifications.php:250
|
3681 |
+
#: app/features/mec/notifications.php:302
|
3682 |
+
#: app/features/mec/notifications.php:373
|
3683 |
+
#: app/features/mec/notifications.php:432
|
3684 |
+
#: app/features/mec/notifications.php:502
|
3685 |
msgid "Organizer name of booked event"
|
3686 |
msgstr "Nome do organizador do evento reservado"
|
3687 |
|
3688 |
+
#: app/features/mec/notifications.php:197
|
3689 |
+
#: app/features/mec/notifications.php:251
|
3690 |
+
#: app/features/mec/notifications.php:303
|
3691 |
+
#: app/features/mec/notifications.php:374
|
3692 |
+
#: app/features/mec/notifications.php:433
|
3693 |
+
#: app/features/mec/notifications.php:503
|
3694 |
msgid "Organizer tel of booked event"
|
3695 |
msgstr "Telefone do organizador do evento reservado"
|
3696 |
|
3697 |
+
#: app/features/mec/notifications.php:198
|
3698 |
+
#: app/features/mec/notifications.php:252
|
3699 |
+
#: app/features/mec/notifications.php:304
|
3700 |
+
#: app/features/mec/notifications.php:375
|
3701 |
+
#: app/features/mec/notifications.php:434
|
3702 |
+
#: app/features/mec/notifications.php:504
|
3703 |
msgid "Organizer email of booked event"
|
3704 |
msgstr "E-mail do organizador do evento reservado"
|
3705 |
|
3706 |
+
#: app/features/mec/notifications.php:199
|
3707 |
+
#: app/features/mec/notifications.php:253
|
3708 |
+
#: app/features/mec/notifications.php:305
|
3709 |
+
#: app/features/mec/notifications.php:376
|
3710 |
+
#: app/features/mec/notifications.php:435
|
3711 |
+
#: app/features/mec/notifications.php:505
|
3712 |
msgid "Location name of booked event"
|
3713 |
msgstr "Nome da localização do evento reservado"
|
3714 |
|
3715 |
+
#: app/features/mec/notifications.php:200
|
3716 |
+
#: app/features/mec/notifications.php:254
|
3717 |
+
#: app/features/mec/notifications.php:306
|
3718 |
+
#: app/features/mec/notifications.php:377
|
3719 |
+
#: app/features/mec/notifications.php:436
|
3720 |
+
#: app/features/mec/notifications.php:506
|
3721 |
msgid "Location address of booked event"
|
3722 |
msgstr "Endereço da localização do evento reservado"
|
3723 |
|
3724 |
+
#: app/features/mec/notifications.php:201
|
3725 |
+
#: app/features/mec/notifications.php:379
|
3726 |
+
#: app/features/mec/notifications.php:438
|
3727 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3728 |
msgstr ""
|
3729 |
"Informação completa do participante, tais como dados do formulário de "
|
3730 |
"reserva, nome, e-mail etc."
|
3731 |
|
3732 |
+
#: app/features/mec/notifications.php:202
|
3733 |
+
#: app/features/mec/notifications.php:308
|
3734 |
+
#: app/features/mec/notifications.php:508
|
3735 |
msgid "Invoice Link"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: app/features/mec/notifications.php:203
|
3739 |
+
#: app/features/mec/notifications.php:256
|
3740 |
+
#: app/features/mec/notifications.php:309
|
3741 |
+
#: app/features/mec/notifications.php:380
|
3742 |
+
#: app/features/mec/notifications.php:439
|
3743 |
+
#: app/features/mec/notifications.php:509
|
3744 |
msgid "Total Attendees"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: app/features/mec/notifications.php:204
|
3748 |
+
#: app/features/mec/notifications.php:257
|
3749 |
+
#: app/features/mec/notifications.php:310
|
3750 |
+
#: app/features/mec/notifications.php:510
|
3751 |
#, fuzzy
|
3752 |
#| msgid "Ticket Name"
|
3753 |
msgid "Ticket name"
|
3754 |
msgstr "Nome do Bilhete"
|
3755 |
|
3756 |
+
#: app/features/mec/notifications.php:205
|
3757 |
+
#: app/features/mec/notifications.php:258
|
3758 |
+
#: app/features/mec/notifications.php:311
|
3759 |
+
#: app/features/mec/notifications.php:511
|
3760 |
#, fuzzy
|
3761 |
#| msgid "Ticket Name"
|
3762 |
msgid "Ticket time"
|
3763 |
msgstr "Nome do Bilhete"
|
3764 |
|
3765 |
+
#: app/features/mec/notifications.php:206
|
3766 |
+
#: app/features/mec/notifications.php:259
|
3767 |
+
#: app/features/mec/notifications.php:312
|
3768 |
+
#: app/features/mec/notifications.php:512
|
3769 |
msgid "Download ICS file"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: app/features/mec/notifications.php:217
|
3773 |
msgid "It sends to attendee email for verifying their booking/email."
|
3774 |
msgstr ""
|
3775 |
"Ele envia para o e-mail do participante para verificar sua reserva por e-"
|
3776 |
"mail."
|
3777 |
|
3778 |
+
#: app/features/mec/notifications.php:255
|
3779 |
msgid "Email/Booking verification link."
|
3780 |
msgstr "Link do e-mail de confirmação de reserva."
|
3781 |
|
3782 |
+
#: app/features/mec/notifications.php:269
|
3783 |
msgid "It sends to attendee after confirming the booking by admin."
|
3784 |
msgstr ""
|
3785 |
"Ele envia para o participante depois de confirmar a reserva pelo "
|
3786 |
"administrador."
|
3787 |
|
3788 |
+
#: app/features/mec/notifications.php:307
|
3789 |
+
#: app/features/mec/notifications.php:507
|
3790 |
msgid "Booking cancellation link."
|
3791 |
msgstr "Link de cancelamento da reserva."
|
3792 |
|
3793 |
+
#: app/features/mec/notifications.php:324
|
3794 |
+
#, fuzzy
|
3795 |
+
#| msgid "Enable new event notification"
|
3796 |
+
msgid "Enable cancellation notification"
|
3797 |
+
msgstr "Habilitar notificação de novo evento"
|
3798 |
|
3799 |
+
#: app/features/mec/notifications.php:328
|
3800 |
+
#, fuzzy
|
3801 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3802 |
+
msgid ""
|
3803 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3804 |
+
"them."
|
3805 |
+
msgstr "Ele envia ao participante após a reserva para notificá-lo."
|
3806 |
+
|
3807 |
+
#: app/features/mec/notifications.php:346
|
3808 |
+
#, fuzzy
|
3809 |
+
#| msgid "Send the email to event organizer"
|
3810 |
+
msgid "Send the email to admin"
|
3811 |
+
msgstr "Envie o e-mail para organizador do evento"
|
3812 |
+
|
3813 |
+
#: app/features/mec/notifications.php:354
|
3814 |
+
#, fuzzy
|
3815 |
+
#| msgid "Send the email to event organizer"
|
3816 |
+
msgid "Send the email to booking user"
|
3817 |
+
msgstr "Envie o e-mail para organizador do evento"
|
3818 |
+
|
3819 |
+
#: app/features/mec/notifications.php:378
|
3820 |
+
#: app/features/mec/notifications.php:437
|
3821 |
msgid "Admin booking management link."
|
3822 |
msgstr "Gerenciamento do link da administração de reservas."
|
3823 |
|
3824 |
+
#: app/features/mec/notifications.php:391
|
3825 |
+
#, fuzzy
|
3826 |
+
#| msgid "Enable new event notification"
|
3827 |
+
msgid "Enable admin notification"
|
3828 |
+
msgstr "Habilitar notificação de novo evento"
|
3829 |
+
|
3830 |
+
#: app/features/mec/notifications.php:395
|
3831 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3832 |
+
msgstr ""
|
3833 |
+
"Ele envia para administrador para notificá-lo que recebeu uma nova reserva."
|
3834 |
+
|
3835 |
+
#: app/features/mec/notifications.php:451
|
3836 |
msgid "Enable booking reminder notification"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: app/features/mec/notifications.php:457
|
3840 |
#, php-format
|
3841 |
msgid ""
|
3842 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3844 |
"send the reminders multiple times."
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: app/features/mec/notifications.php:457
|
3848 |
msgid "only once per day"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: app/features/mec/notifications.php:475
|
3852 |
msgid "Days"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: app/features/mec/notifications.php:526
|
3856 |
msgid "Enable new event notification"
|
3857 |
msgstr "Habilitar notificação de novo evento"
|
3858 |
|
3859 |
+
#: app/features/mec/notifications.php:530
|
3860 |
msgid ""
|
3861 |
"It sends after adding a new event from frontend event submission or from "
|
3862 |
"website backend."
|
3864 |
"Ele envia depois de adicionar um novo evento a partir da submissão do evento "
|
3865 |
"no site ou a partir da administração do site."
|
3866 |
|
3867 |
+
#: app/features/mec/notifications.php:552
|
3868 |
msgid "Title of event"
|
3869 |
msgstr "Título do evento"
|
3870 |
|
3871 |
+
#: app/features/mec/notifications.php:553
|
3872 |
#, fuzzy
|
3873 |
#| msgid "Title of event"
|
3874 |
msgid "Link of event"
|
3875 |
msgstr "Título do evento"
|
3876 |
|
3877 |
+
#: app/features/mec/notifications.php:554
|
3878 |
msgid "Status of event"
|
3879 |
msgstr "Estado do evento"
|
3880 |
|
3881 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3882 |
#: app/features/mec/settings.php:1253
|
3883 |
msgid "Event Note"
|
3884 |
msgstr "Nota do Evento"
|
3885 |
|
3886 |
+
#: app/features/mec/notifications.php:559
|
3887 |
msgid "Admin events management link."
|
3888 |
msgstr "Link de gerenciamento da administração de eventos."
|
3889 |
|
3890 |
+
#: app/features/mec/notifications.php:661
|
3891 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3892 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3893 |
msgid "Verified"
|
3894 |
msgstr "Verificado"
|
3895 |
|
3896 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3897 |
msgid "Please Refresh Page"
|
3898 |
msgstr "Por favor, Atualize a Página"
|
3899 |
|
5357 |
msgstr "http://webnus.biz"
|
5358 |
|
5359 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5360 |
+
#: app/skins/single.php:295
|
5361 |
msgid "Other Organizers"
|
5362 |
msgstr ""
|
5363 |
|
5501 |
msgid "day"
|
5502 |
msgstr "dia"
|
5503 |
|
5504 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5505 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5506 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5507 |
msgid "days"
|
5511 |
msgid "hour"
|
5512 |
msgstr "hora"
|
5513 |
|
5514 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5515 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5516 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5517 |
msgid "hours"
|
5521 |
msgid "minute"
|
5522 |
msgstr "minuto"
|
5523 |
|
5524 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5525 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5526 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5527 |
msgid "minutes"
|
5531 |
msgid "second"
|
5532 |
msgstr "segundo"
|
5533 |
|
5534 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5535 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5536 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5537 |
msgid "seconds"
|
6008 |
msgid "Your booking is confirmed."
|
6009 |
msgstr "Sua reserva foi confirmada."
|
6010 |
|
6011 |
+
#: app/libraries/notifications.php:252
|
6012 |
+
#, fuzzy
|
6013 |
+
#| msgid "Your booking cannot be canceled."
|
6014 |
+
msgid "booking canceled."
|
6015 |
+
msgstr "Sua reserva não pôde ser cancelada."
|
6016 |
+
|
6017 |
+
#: app/libraries/notifications.php:296
|
6018 |
msgid "A new booking is received."
|
6019 |
msgstr "Uma nova reserva foi recebida."
|
6020 |
|
6021 |
+
#: app/libraries/notifications.php:425
|
6022 |
msgid "A new event is added."
|
6023 |
msgstr "Um novo evento foi adicionado."
|
6024 |
|
6025 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
6026 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
6027 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
6028 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
6029 |
msgid "All of the day"
|
6030 |
msgstr "Durante o dia todo"
|
6031 |
|
6032 |
+
#: app/libraries/notifications.php:605
|
6033 |
msgid "to"
|
6034 |
msgstr ""
|
6035 |
|
6036 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
6037 |
msgid "+ Add to Google Calendar"
|
6038 |
msgstr "+ Adicionar ao Calendário do Google"
|
6039 |
|
6040 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
6041 |
msgid "+ iCal export"
|
6042 |
msgstr "+ Exportar para iCal"
|
6043 |
|
6044 |
+
#: app/libraries/notifications.php:683
|
6045 |
msgid "Yes"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
+
#: app/libraries/notifications.php:683
|
6049 |
msgid "No"
|
6050 |
msgstr ""
|
6051 |
|
6258 |
msgid "All"
|
6259 |
msgstr ""
|
6260 |
|
6261 |
+
#: app/skins/monthly_view/calendar.php:68
|
6262 |
+
#: app/skins/monthly_view/calendar.php:154
|
6263 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6264 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6265 |
#, php-format
|
6266 |
msgid "Events for %s"
|
6267 |
msgstr "Eventos para %s"
|
6268 |
|
6269 |
+
#: app/skins/monthly_view/calendar.php:156
|
6270 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6271 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6272 |
msgid "No Events"
|
6276 |
msgid "Home"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6280 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6281 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6282 |
msgid "Phone"
|
6283 |
msgstr "Fone"
|
6284 |
|
6285 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6286 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6287 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6288 |
msgid "Website"
|
6289 |
msgstr "Website"
|
6290 |
|
6291 |
+
#: app/skins/single.php:393
|
6292 |
#, fuzzy
|
6293 |
#| msgid "No Search Options"
|
6294 |
msgid "Speakers:"
|
languages/modern-events-calendar-lite-ru_RU.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-ru_RU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
66 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
67 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -266,7 +266,7 @@ msgstr "События"
|
|
266 |
msgid "Event"
|
267 |
msgstr "Событие"
|
268 |
|
269 |
-
#: app/features/events.php:136 app/features/mec.php:
|
270 |
msgid "Add Event"
|
271 |
msgstr "Добавить событие"
|
272 |
|
@@ -314,7 +314,7 @@ msgid "Category"
|
|
314 |
msgstr "Категория"
|
315 |
|
316 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
317 |
-
#: app/features/mec.php:
|
318 |
#: app/libraries/main.php:4375
|
319 |
msgid "Categories"
|
320 |
msgstr "Категории"
|
@@ -413,7 +413,7 @@ msgstr ""
|
|
413 |
#: app/features/events.php:410 app/features/events.php:1682
|
414 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
415 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +425,8 @@ msgstr "Имя"
|
|
425 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
426 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
427 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
428 |
-
#: app/libraries/notifications.php:
|
429 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
430 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
431 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
432 |
#: app/skins/single/modern.php:48
|
@@ -551,13 +551,14 @@ msgstr ""
|
|
551 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
554 |
-
#: app/features/mec/notifications.php:
|
555 |
-
#: app/features/mec/notifications.php:
|
556 |
-
#: app/features/mec/notifications.php:
|
557 |
-
#: app/features/mec/notifications.php:
|
558 |
-
#: app/features/mec/notifications.php:
|
559 |
-
#: app/features/mec/notifications.php:
|
560 |
-
#: app/features/mec/notifications.php:
|
|
|
561 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
562 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
563 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -766,7 +767,7 @@ msgid "Day 1"
|
|
766 |
msgstr ""
|
767 |
|
768 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
769 |
-
#: app/skins/single.php:
|
770 |
msgid "Hourly Schedule"
|
771 |
msgstr "Часовое расписание"
|
772 |
|
@@ -838,7 +839,7 @@ msgstr "Описание"
|
|
838 |
|
839 |
#: app/features/events.php:913 app/features/events.php:933
|
840 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
841 |
-
#: app/features/mec.php:
|
842 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
843 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
844 |
msgid "Speakers"
|
@@ -1242,7 +1243,7 @@ msgstr ""
|
|
1242 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1243 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1244 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1245 |
-
#: app/skins/single.php:
|
1246 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1247 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1248 |
msgid "Location"
|
@@ -1414,14 +1415,14 @@ msgid "Remove Image"
|
|
1414 |
msgstr "Удалить изображение"
|
1415 |
|
1416 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1417 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1418 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1419 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1420 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1421 |
msgid "Labels"
|
1422 |
msgstr "Метки"
|
1423 |
|
1424 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1425 |
#: app/features/mec/meta_boxes/filter.php:138
|
1426 |
msgid "Tags"
|
1427 |
msgstr "Теги"
|
@@ -1457,7 +1458,7 @@ msgstr ""
|
|
1457 |
|
1458 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1459 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1460 |
-
#: app/features/mec/notifications.php:
|
1461 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1462 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1463 |
msgid "Import / Export"
|
@@ -1718,15 +1719,15 @@ msgstr ""
|
|
1718 |
#: app/features/ix/export_g_calendar.php:72
|
1719 |
#: app/features/ix/export_g_calendar.php:147
|
1720 |
#: app/features/ix/export_g_calendar.php:164
|
1721 |
-
#: app/features/mec/notifications.php:
|
1722 |
-
#: app/features/mec/notifications.php:
|
1723 |
-
#: app/features/mec/notifications.php:
|
1724 |
-
#: app/features/mec/notifications.php:
|
1725 |
msgid "Add to Google Calendar"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
#: app/features/ix/export_g_calendar.php:90
|
1729 |
-
#: app/features/mec/notifications.php:
|
1730 |
msgid "Checking ..."
|
1731 |
msgstr ""
|
1732 |
|
@@ -1956,7 +1957,7 @@ msgstr ""
|
|
1956 |
|
1957 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1958 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1959 |
-
#: app/features/mec/notifications.php:
|
1960 |
msgid "Important Note"
|
1961 |
msgstr ""
|
1962 |
|
@@ -2083,7 +2084,7 @@ msgstr ""
|
|
2083 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2084 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2085 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2086 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2087 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2088 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2089 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2099,7 +2100,7 @@ msgstr "Избранное изображение"
|
|
2099 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2100 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2101 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2102 |
-
#: app/skins/monthly_view/calendar.php:
|
2103 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2104 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2105 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2127,7 +2128,7 @@ msgstr "Slug"
|
|
2127 |
msgid "Event %s"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2131 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2132 |
#: app/libraries/main.php:4379
|
2133 |
msgid "Locations"
|
@@ -2247,123 +2248,123 @@ msgid ""
|
|
2247 |
"You can select extra locations in addition to main location if you like."
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: app/features/mec.php:
|
2251 |
msgid ""
|
2252 |
"Activation faild. Please check your purchase code or license type."
|
2253 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: app/features/mec.php:
|
2257 |
msgid "Troubleshooting"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: app/features/mec.php:
|
2261 |
msgid ""
|
2262 |
"Your options is not in JSON format. Please insert correct options in this "
|
2263 |
"field and try again."
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: app/features/mec.php:
|
2267 |
#, fuzzy
|
2268 |
#| msgid "Your booking cannot verify!"
|
2269 |
msgid "Your options field can not be empty!"
|
2270 |
msgstr "Ваше бронирование не может быть верифицировано!"
|
2271 |
|
2272 |
-
#: app/features/mec.php:
|
2273 |
#, fuzzy
|
2274 |
#| msgid "Your booking successfully verified."
|
2275 |
msgid "Your options imported successfuly."
|
2276 |
msgstr "Ваше бронирование успешно верифицировано."
|
2277 |
|
2278 |
-
#: app/features/mec.php:
|
2279 |
#, fuzzy
|
2280 |
#| msgid "Support"
|
2281 |
msgid "MEC - Support"
|
2282 |
msgstr "Поддержка"
|
2283 |
|
2284 |
-
#: app/features/mec.php:
|
2285 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2286 |
-
#: app/features/mec/notifications.php:
|
2287 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2288 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2289 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2290 |
msgid "Support"
|
2291 |
msgstr "Поддержка"
|
2292 |
|
2293 |
-
#: app/features/mec.php:
|
2294 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2295 |
#: app/libraries/main.php:4381
|
2296 |
msgid "Organizers"
|
2297 |
msgstr "Оранизаторы"
|
2298 |
|
2299 |
-
#: app/features/mec.php:
|
2300 |
#: app/features/mec/dashboard.php:194
|
2301 |
msgid "Shortcodes"
|
2302 |
msgstr "Шорткоды"
|
2303 |
|
2304 |
-
#: app/features/mec.php:
|
2305 |
msgid "MEC - Settings"
|
2306 |
msgstr "MEC - Настройки"
|
2307 |
|
2308 |
-
#: app/features/mec.php:
|
2309 |
#, fuzzy
|
2310 |
#| msgid "MEC - Settings"
|
2311 |
msgid "MEC - Addons"
|
2312 |
msgstr "MEC - Настройки"
|
2313 |
|
2314 |
-
#: app/features/mec.php:
|
2315 |
msgid "Addons"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: app/features/mec.php:
|
2319 |
msgid "Add Shortcode"
|
2320 |
msgstr "Добавить шорткод"
|
2321 |
|
2322 |
-
#: app/features/mec.php:
|
2323 |
msgid "Add New Shortcode"
|
2324 |
msgstr "Добавить новый Шорткод"
|
2325 |
|
2326 |
-
#: app/features/mec.php:
|
2327 |
msgid "No shortcodes found!"
|
2328 |
msgstr "Не найдено ни одного шорткода!"
|
2329 |
|
2330 |
-
#: app/features/mec.php:
|
2331 |
msgid "All Shortcodes"
|
2332 |
msgstr "Все шорткоды"
|
2333 |
|
2334 |
-
#: app/features/mec.php:
|
2335 |
msgid "Edit shortcodes"
|
2336 |
msgstr "Редактировать шорткод"
|
2337 |
|
2338 |
-
#: app/features/mec.php:
|
2339 |
msgid "No shortcodes found in Trash!"
|
2340 |
msgstr "В корзине не найдено ни одного шорткода!"
|
2341 |
|
2342 |
-
#: app/features/mec.php:
|
2343 |
msgid "Display Options"
|
2344 |
msgstr "Опции отображения"
|
2345 |
|
2346 |
-
#: app/features/mec.php:
|
2347 |
msgid "Filter Options"
|
2348 |
msgstr "Опции фильтра"
|
2349 |
|
2350 |
-
#: app/features/mec.php:
|
2351 |
msgid "Search Form"
|
2352 |
msgstr "Форма поиска"
|
2353 |
|
2354 |
-
#: app/features/mec.php:
|
2355 |
msgid "Display content's images as Popup"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: app/features/mec.php:
|
2359 |
msgid "Single Event Display Method"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: app/features/mec.php:
|
2363 |
msgid "Separate Window"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: app/features/mec.php:
|
2367 |
msgid "Modal 1"
|
2368 |
msgstr ""
|
2369 |
|
@@ -2524,10 +2525,10 @@ msgstr "История изменений"
|
|
2524 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2525 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2526 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2527 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2528 |
-
#: app/features/mec/notifications.php:
|
2529 |
-
#: app/features/mec/notifications.php:
|
2530 |
-
#: app/features/mec/notifications.php:
|
2531 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2532 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2533 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2542,7 +2543,7 @@ msgid "Save Changes"
|
|
2542 |
msgstr "Сохранить изменения"
|
2543 |
|
2544 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2545 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2546 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2547 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2548 |
#: app/features/mec/support.php:52
|
@@ -2550,7 +2551,7 @@ msgid "Styling Options"
|
|
2550 |
msgstr "Опции отображения"
|
2551 |
|
2552 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2553 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2554 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2555 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2556 |
#: app/features/mec/support.php:59
|
@@ -2559,21 +2560,21 @@ msgstr "Собственные стили CSS"
|
|
2559 |
|
2560 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2561 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2562 |
-
#: app/features/mec/notifications.php:
|
2563 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2564 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2565 |
msgid "Messages"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2569 |
-
#: app/features/mec/notifications.php:
|
2570 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2571 |
#: app/features/mec/styling.php:375
|
2572 |
msgid "Saved"
|
2573 |
msgstr "Сохранено"
|
2574 |
|
2575 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2576 |
-
#: app/features/mec/notifications.php:
|
2577 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2578 |
#: app/features/mec/styling.php:376
|
2579 |
msgid "Settings Saved!"
|
@@ -3406,312 +3407,372 @@ msgstr "Текстовый ввод"
|
|
3406 |
msgid "No Search Options"
|
3407 |
msgstr "Опции поиска отсутствуют"
|
3408 |
|
3409 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3410 |
msgid "Booking Notification"
|
3411 |
msgstr "Уведомления о бронировании"
|
3412 |
|
3413 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3414 |
msgid "Booking Verification"
|
3415 |
msgstr "Верификация бронирования"
|
3416 |
|
3417 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3418 |
#: app/features/mec/settings.php:1409
|
3419 |
msgid "Booking Confirmation"
|
3420 |
msgstr "Подтверждение бронирования"
|
3421 |
|
3422 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3423 |
msgid "Admin Notification"
|
3424 |
msgstr "Уведомление для администратора"
|
3425 |
|
3426 |
-
#: app/features/mec/notifications.php:
|
3427 |
-
#: app/libraries/notifications.php:
|
3428 |
msgid "Booking Reminder"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#: app/features/mec/notifications.php:
|
3432 |
#: app/features/mec/support-page.php:80
|
3433 |
msgid "New Event"
|
3434 |
msgstr "Новое событие"
|
3435 |
|
3436 |
-
#: app/features/mec/notifications.php:
|
3437 |
msgid "Enable booking notification"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: app/features/mec/notifications.php:
|
3441 |
msgid "It sends to attendee after booking for notifying him/her."
|
3442 |
msgstr "Отправляется участнику после бронирования."
|
3443 |
|
3444 |
-
#: app/features/mec/notifications.php:
|
3445 |
-
#: app/features/mec/notifications.php:
|
3446 |
-
#: app/features/mec/notifications.php:
|
3447 |
-
#: app/features/mec/notifications.php:
|
3448 |
-
#: app/features/mec/notifications.php:
|
3449 |
-
#: app/features/mec/notifications.php:
|
|
|
3450 |
msgid "Email Subject"
|
3451 |
msgstr "Тема сообщения"
|
3452 |
|
3453 |
-
#: app/features/mec/notifications.php:
|
3454 |
-
#: app/features/mec/notifications.php:
|
3455 |
-
#: app/features/mec/notifications.php:
|
3456 |
-
#: app/features/mec/notifications.php:
|
3457 |
-
#: app/features/mec/notifications.php:
|
3458 |
-
#: app/features/mec/notifications.php:
|
3459 |
-
#: app/features/mec/notifications.php:
|
3460 |
-
#: app/features/mec/notifications.php:
|
3461 |
-
#: app/features/mec/notifications.php:
|
3462 |
-
#: app/features/mec/notifications.php:
|
3463 |
-
#: app/features/mec/notifications.php:
|
3464 |
-
#: app/features/mec/notifications.php:
|
3465 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3466 |
msgid "Custom Recipients"
|
3467 |
msgstr "Получатели"
|
3468 |
|
3469 |
-
#: app/features/mec/notifications.php:
|
3470 |
-
#: app/features/mec/notifications.php:
|
3471 |
-
#: app/features/mec/notifications.php:
|
3472 |
-
#: app/features/mec/notifications.php:
|
3473 |
-
#: app/features/mec/notifications.php:
|
3474 |
-
#: app/features/mec/notifications.php:
|
3475 |
-
#: app/features/mec/notifications.php:
|
|
|
3476 |
msgid "Insert comma separated emails for multiple recipients."
|
3477 |
msgstr ""
|
3478 |
"Вставьте электронную почт людей, используя в качестве разделителя запятую."
|
3479 |
|
3480 |
-
#: app/features/mec/notifications.php:
|
3481 |
-
#: app/features/mec/notifications.php:
|
|
|
3482 |
msgid "Send the email to event organizer"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: app/features/mec/notifications.php:
|
3486 |
-
#: app/features/mec/notifications.php:
|
3487 |
-
#: app/features/mec/notifications.php:
|
3488 |
-
#: app/features/mec/notifications.php:
|
3489 |
-
#: app/features/mec/notifications.php:
|
3490 |
-
#: app/features/mec/notifications.php:
|
|
|
3491 |
msgid "Email Content"
|
3492 |
msgstr "Содержимое эл. письма"
|
3493 |
|
3494 |
-
#: app/features/mec/notifications.php:
|
3495 |
-
#: app/features/mec/notifications.php:
|
3496 |
-
#: app/features/mec/notifications.php:
|
3497 |
-
#: app/features/mec/notifications.php:
|
3498 |
-
#: app/features/mec/notifications.php:
|
3499 |
-
#: app/features/mec/notifications.php:
|
|
|
3500 |
msgid "You can use following placeholders"
|
3501 |
msgstr "Вы можете использовать следующие метки"
|
3502 |
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
#: app/features/mec/notifications.php:
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
3507 |
-
#: app/features/mec/notifications.php:
|
|
|
3508 |
msgid "First name of attendee"
|
3509 |
msgstr "Имя участника"
|
3510 |
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
#: app/features/mec/notifications.php:
|
3513 |
-
#: app/features/mec/notifications.php:
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
-
#: app/features/mec/notifications.php:
|
|
|
3516 |
msgid "Last name of attendee"
|
3517 |
msgstr "Фамилия участника"
|
3518 |
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
3523 |
-
#: app/features/mec/notifications.php:
|
|
|
3524 |
msgid "Email of attendee"
|
3525 |
msgstr "Эл. почта участника"
|
3526 |
|
3527 |
-
#: app/features/mec/notifications.php:
|
3528 |
-
#: app/features/mec/notifications.php:
|
3529 |
-
#: app/features/mec/notifications.php:
|
3530 |
-
#: app/features/mec/notifications.php:
|
3531 |
-
#: app/features/mec/notifications.php:
|
|
|
3532 |
msgid "Booked date of event"
|
3533 |
msgstr "Дата бронирования события"
|
3534 |
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
3537 |
-
#: app/features/mec/notifications.php:
|
3538 |
-
#: app/features/mec/notifications.php:
|
3539 |
-
#: app/features/mec/notifications.php:
|
|
|
3540 |
#, fuzzy
|
3541 |
#| msgid "Booked date of event"
|
3542 |
msgid "Booked time of event"
|
3543 |
msgstr "Дата бронирования события"
|
3544 |
|
3545 |
-
#: app/features/mec/notifications.php:
|
3546 |
-
#: app/features/mec/notifications.php:
|
3547 |
-
#: app/features/mec/notifications.php:
|
3548 |
-
#: app/features/mec/notifications.php:
|
3549 |
-
#: app/features/mec/notifications.php:
|
|
|
3550 |
msgid "Booking Price"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
-
#: app/features/mec/notifications.php:
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
#: app/features/mec/notifications.php:
|
3556 |
-
#: app/features/mec/notifications.php:
|
3557 |
-
#: app/features/mec/notifications.php:
|
3558 |
-
#: app/features/mec/notifications.php:
|
|
|
3559 |
msgid "Your website title"
|
3560 |
msgstr "Заголовок вашего сайта"
|
3561 |
|
3562 |
-
#: app/features/mec/notifications.php:
|
3563 |
-
#: app/features/mec/notifications.php:
|
3564 |
-
#: app/features/mec/notifications.php:
|
3565 |
-
#: app/features/mec/notifications.php:
|
3566 |
-
#: app/features/mec/notifications.php:
|
3567 |
-
#: app/features/mec/notifications.php:
|
|
|
3568 |
msgid "Your website URL"
|
3569 |
msgstr "Адрес ссылки вашего сайта"
|
3570 |
|
3571 |
-
#: app/features/mec/notifications.php:
|
3572 |
-
#: app/features/mec/notifications.php:
|
3573 |
-
#: app/features/mec/notifications.php:
|
3574 |
-
#: app/features/mec/notifications.php:
|
3575 |
-
#: app/features/mec/notifications.php:
|
3576 |
-
#: app/features/mec/notifications.php:
|
|
|
3577 |
msgid "Your website description"
|
3578 |
msgstr "Описание вашего сайта"
|
3579 |
|
3580 |
-
#: app/features/mec/notifications.php:
|
3581 |
-
#: app/features/mec/notifications.php:
|
3582 |
-
#: app/features/mec/notifications.php:
|
3583 |
-
#: app/features/mec/notifications.php:
|
3584 |
-
#: app/features/mec/notifications.php:
|
|
|
3585 |
msgid "Event title"
|
3586 |
msgstr "Заголовок события"
|
3587 |
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
-
#: app/features/mec/notifications.php:
|
3590 |
-
#: app/features/mec/notifications.php:
|
3591 |
-
#: app/features/mec/notifications.php:
|
3592 |
-
#: app/features/mec/notifications.php:
|
|
|
3593 |
#, fuzzy
|
3594 |
#| msgid "Event Link"
|
3595 |
msgid "Event link"
|
3596 |
msgstr "Ссылка события"
|
3597 |
|
3598 |
-
#: app/features/mec/notifications.php:
|
3599 |
-
#: app/features/mec/notifications.php:
|
3600 |
-
#: app/features/mec/notifications.php:
|
3601 |
-
#: app/features/mec/notifications.php:
|
3602 |
-
#: app/features/mec/notifications.php:
|
|
|
3603 |
msgid "Organizer name of booked event"
|
3604 |
msgstr "Имя организатора на забронированное мероприятие"
|
3605 |
|
3606 |
-
#: app/features/mec/notifications.php:
|
3607 |
-
#: app/features/mec/notifications.php:
|
3608 |
-
#: app/features/mec/notifications.php:
|
3609 |
-
#: app/features/mec/notifications.php:
|
3610 |
-
#: app/features/mec/notifications.php:
|
|
|
3611 |
msgid "Organizer tel of booked event"
|
3612 |
msgstr "Телефон организатора на забронированное мероприятие"
|
3613 |
|
3614 |
-
#: app/features/mec/notifications.php:
|
3615 |
-
#: app/features/mec/notifications.php:
|
3616 |
-
#: app/features/mec/notifications.php:
|
3617 |
-
#: app/features/mec/notifications.php:
|
3618 |
-
#: app/features/mec/notifications.php:
|
|
|
3619 |
msgid "Organizer email of booked event"
|
3620 |
msgstr "Эл. почта организатора на забронированное мероприятие"
|
3621 |
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
3624 |
-
#: app/features/mec/notifications.php:
|
3625 |
-
#: app/features/mec/notifications.php:
|
3626 |
-
#: app/features/mec/notifications.php:
|
|
|
3627 |
msgid "Location name of booked event"
|
3628 |
msgstr "Имя места забронированного мероприятия"
|
3629 |
|
3630 |
-
#: app/features/mec/notifications.php:
|
3631 |
-
#: app/features/mec/notifications.php:
|
3632 |
-
#: app/features/mec/notifications.php:
|
3633 |
-
#: app/features/mec/notifications.php:
|
3634 |
-
#: app/features/mec/notifications.php:
|
|
|
3635 |
msgid "Location address of booked event"
|
3636 |
msgstr "Адрес забронированного мероприятия"
|
3637 |
|
3638 |
-
#: app/features/mec/notifications.php:
|
3639 |
-
#: app/features/mec/notifications.php:
|
|
|
3640 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3641 |
msgstr ""
|
3642 |
"Полная информация об участнике, данные из формы бронирования, дата, имя, эл. "
|
3643 |
"почта и т. д."
|
3644 |
|
3645 |
-
#: app/features/mec/notifications.php:
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
-
#: app/features/mec/notifications.php:
|
3648 |
msgid "Invoice Link"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
-
#: app/features/mec/notifications.php:
|
3652 |
-
#: app/features/mec/notifications.php:
|
3653 |
-
#: app/features/mec/notifications.php:
|
3654 |
-
#: app/features/mec/notifications.php:
|
3655 |
-
#: app/features/mec/notifications.php:
|
|
|
3656 |
msgid "Total Attendees"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
-
#: app/features/mec/notifications.php:
|
3660 |
-
#: app/features/mec/notifications.php:
|
3661 |
-
#: app/features/mec/notifications.php:
|
3662 |
-
#: app/features/mec/notifications.php:
|
3663 |
#, fuzzy
|
3664 |
#| msgid "Ticket Name"
|
3665 |
msgid "Ticket name"
|
3666 |
msgstr "Имя билета"
|
3667 |
|
3668 |
-
#: app/features/mec/notifications.php:
|
3669 |
-
#: app/features/mec/notifications.php:
|
3670 |
-
#: app/features/mec/notifications.php:
|
3671 |
-
#: app/features/mec/notifications.php:
|
3672 |
#, fuzzy
|
3673 |
#| msgid "Ticket Name"
|
3674 |
msgid "Ticket time"
|
3675 |
msgstr "Имя билета"
|
3676 |
|
3677 |
-
#: app/features/mec/notifications.php:
|
3678 |
-
#: app/features/mec/notifications.php:
|
3679 |
-
#: app/features/mec/notifications.php:
|
3680 |
-
#: app/features/mec/notifications.php:
|
3681 |
msgid "Download ICS file"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: app/features/mec/notifications.php:
|
3685 |
msgid "It sends to attendee email for verifying their booking/email."
|
3686 |
msgstr "Будет отправлено эл. письмо для проверки валидности адреса эл. почты."
|
3687 |
|
3688 |
-
#: app/features/mec/notifications.php:
|
3689 |
msgid "Email/Booking verification link."
|
3690 |
msgstr "Email/Ссылка для подтверждения бронирования."
|
3691 |
|
3692 |
-
#: app/features/mec/notifications.php:
|
3693 |
msgid "It sends to attendee after confirming the booking by admin."
|
3694 |
msgstr ""
|
3695 |
"Будет отправлена участнику после подтверждения бронирования администратором."
|
3696 |
|
3697 |
-
#: app/features/mec/notifications.php:
|
3698 |
-
#: app/features/mec/notifications.php:
|
3699 |
msgid "Booking cancellation link."
|
3700 |
msgstr "Отмена бронирования."
|
3701 |
|
3702 |
-
#: app/features/mec/notifications.php:
|
3703 |
-
|
3704 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3705 |
|
3706 |
-
#: app/features/mec/notifications.php:
|
|
|
3707 |
msgid "Admin booking management link."
|
3708 |
msgstr "Ссылка управления бронированием для администратора."
|
3709 |
|
3710 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3711 |
msgid "Enable booking reminder notification"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: app/features/mec/notifications.php:
|
3715 |
#, php-format
|
3716 |
msgid ""
|
3717 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3719,19 +3780,19 @@ msgid ""
|
|
3719 |
"send the reminders multiple times."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: app/features/mec/notifications.php:
|
3723 |
msgid "only once per day"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: app/features/mec/notifications.php:
|
3727 |
msgid "Days"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: app/features/mec/notifications.php:
|
3731 |
msgid "Enable new event notification"
|
3732 |
msgstr "Включить уведомление о новом событии"
|
3733 |
|
3734 |
-
#: app/features/mec/notifications.php:
|
3735 |
msgid ""
|
3736 |
"It sends after adding a new event from frontend event submission or from "
|
3737 |
"website backend."
|
@@ -3739,36 +3800,36 @@ msgstr ""
|
|
3739 |
"Будет отправлено после добавления нового события на странице сайта, либо из "
|
3740 |
"административной панели."
|
3741 |
|
3742 |
-
#: app/features/mec/notifications.php:
|
3743 |
msgid "Title of event"
|
3744 |
msgstr "Заголовок события"
|
3745 |
|
3746 |
-
#: app/features/mec/notifications.php:
|
3747 |
#, fuzzy
|
3748 |
#| msgid "Title of event"
|
3749 |
msgid "Link of event"
|
3750 |
msgstr "Заголовок события"
|
3751 |
|
3752 |
-
#: app/features/mec/notifications.php:
|
3753 |
msgid "Status of event"
|
3754 |
msgstr "Статус события"
|
3755 |
|
3756 |
-
#: app/features/mec/notifications.php:
|
3757 |
#: app/features/mec/settings.php:1253
|
3758 |
msgid "Event Note"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: app/features/mec/notifications.php:
|
3762 |
msgid "Admin events management link."
|
3763 |
msgstr "Ссылка управления событиями для администратора."
|
3764 |
|
3765 |
-
#: app/features/mec/notifications.php:
|
3766 |
-
#: app/features/mec/notifications.php:
|
3767 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3768 |
msgid "Verified"
|
3769 |
msgstr "Проверено"
|
3770 |
|
3771 |
-
#: app/features/mec/notifications.php:
|
3772 |
msgid "Please Refresh Page"
|
3773 |
msgstr ""
|
3774 |
|
@@ -5202,7 +5263,7 @@ msgid "eg. https://webnus.net"
|
|
5202 |
msgstr ""
|
5203 |
|
5204 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5205 |
-
#: app/skins/single.php:
|
5206 |
msgid "Other Organizers"
|
5207 |
msgstr ""
|
5208 |
|
@@ -5344,7 +5405,7 @@ msgstr ""
|
|
5344 |
msgid "day"
|
5345 |
msgstr "день"
|
5346 |
|
5347 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5348 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5349 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5350 |
msgid "days"
|
@@ -5354,7 +5415,7 @@ msgstr "дни"
|
|
5354 |
msgid "hour"
|
5355 |
msgstr "час"
|
5356 |
|
5357 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5358 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5359 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5360 |
msgid "hours"
|
@@ -5364,7 +5425,7 @@ msgstr "часы"
|
|
5364 |
msgid "minute"
|
5365 |
msgstr "минута"
|
5366 |
|
5367 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5368 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5369 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5370 |
msgid "minutes"
|
@@ -5374,7 +5435,7 @@ msgstr "минуты"
|
|
5374 |
msgid "second"
|
5375 |
msgstr "секунда"
|
5376 |
|
5377 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5378 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5379 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5380 |
msgid "seconds"
|
@@ -5851,38 +5912,44 @@ msgstr ""
|
|
5851 |
msgid "Your booking is confirmed."
|
5852 |
msgstr "Ваше бронирование подтверждено."
|
5853 |
|
5854 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5855 |
msgid "A new booking is received."
|
5856 |
msgstr "Получено новое бронирование."
|
5857 |
|
5858 |
-
#: app/libraries/notifications.php:
|
5859 |
msgid "A new event is added."
|
5860 |
msgstr "Новое событие добавлено."
|
5861 |
|
5862 |
-
#: app/libraries/notifications.php:
|
5863 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5864 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5865 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5866 |
msgid "All of the day"
|
5867 |
msgstr "На весь день"
|
5868 |
|
5869 |
-
#: app/libraries/notifications.php:
|
5870 |
msgid "to"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: app/libraries/notifications.php:
|
5874 |
msgid "+ Add to Google Calendar"
|
5875 |
msgstr "+ Добавить в Google Calendar"
|
5876 |
|
5877 |
-
#: app/libraries/notifications.php:
|
5878 |
msgid "+ iCal export"
|
5879 |
msgstr "+ iCal экспорт"
|
5880 |
|
5881 |
-
#: app/libraries/notifications.php:
|
5882 |
msgid "Yes"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: app/libraries/notifications.php:
|
5886 |
msgid "No"
|
5887 |
msgstr ""
|
5888 |
|
@@ -6095,15 +6162,15 @@ msgstr "Список"
|
|
6095 |
msgid "All"
|
6096 |
msgstr ""
|
6097 |
|
6098 |
-
#: app/skins/monthly_view/calendar.php:
|
6099 |
-
#: app/skins/monthly_view/calendar.php:
|
6100 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6101 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6102 |
#, php-format
|
6103 |
msgid "Events for %s"
|
6104 |
msgstr "События для %s"
|
6105 |
|
6106 |
-
#: app/skins/monthly_view/calendar.php:
|
6107 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6108 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6109 |
msgid "No Events"
|
@@ -6113,19 +6180,19 @@ msgstr "События отсутствуют"
|
|
6113 |
msgid "Home"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: app/skins/single.php:
|
6117 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6118 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6119 |
msgid "Phone"
|
6120 |
msgstr "Телефон"
|
6121 |
|
6122 |
-
#: app/skins/single.php:
|
6123 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6124 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6125 |
msgid "Website"
|
6126 |
msgstr "Веб сайт"
|
6127 |
|
6128 |
-
#: app/skins/single.php:
|
6129 |
#, fuzzy
|
6130 |
#| msgid "No Search Options"
|
6131 |
msgid "Speakers:"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:05+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:05+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:348
|
35 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Шорткод"
|
38 |
|
61 |
msgid "Event Color"
|
62 |
msgstr "Цвет события"
|
63 |
|
64 |
+
#: app/features/contextual.php:55 app/features/mec.php:329
|
65 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
66 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
67 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
266 |
msgid "Event"
|
267 |
msgstr "Событие"
|
268 |
|
269 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
270 |
msgid "Add Event"
|
271 |
msgstr "Добавить событие"
|
272 |
|
314 |
msgstr "Категория"
|
315 |
|
316 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
317 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
318 |
#: app/libraries/main.php:4375
|
319 |
msgid "Categories"
|
320 |
msgstr "Категории"
|
413 |
#: app/features/events.php:410 app/features/events.php:1682
|
414 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
415 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
416 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
427 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
428 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
429 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
430 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
431 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
432 |
#: app/skins/single/modern.php:48
|
551 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
554 |
+
#: app/features/mec/notifications.php:170
|
555 |
+
#: app/features/mec/notifications.php:228
|
556 |
+
#: app/features/mec/notifications.php:280
|
557 |
+
#: app/features/mec/notifications.php:339
|
558 |
+
#: app/features/mec/notifications.php:406
|
559 |
+
#: app/features/mec/notifications.php:469
|
560 |
+
#: app/features/mec/notifications.php:480
|
561 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
562 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
563 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
564 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
767 |
msgstr ""
|
768 |
|
769 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
770 |
+
#: app/skins/single.php:379
|
771 |
msgid "Hourly Schedule"
|
772 |
msgstr "Часовое расписание"
|
773 |
|
839 |
|
840 |
#: app/features/events.php:913 app/features/events.php:933
|
841 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
842 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
843 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
844 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
845 |
msgid "Speakers"
|
1243 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1244 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1245 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1246 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1247 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1248 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1249 |
msgid "Location"
|
1415 |
msgstr "Удалить изображение"
|
1416 |
|
1417 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1418 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1419 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1420 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1421 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1422 |
msgid "Labels"
|
1423 |
msgstr "Метки"
|
1424 |
|
1425 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1426 |
#: app/features/mec/meta_boxes/filter.php:138
|
1427 |
msgid "Tags"
|
1428 |
msgstr "Теги"
|
1458 |
|
1459 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1460 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1461 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1462 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1463 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1464 |
msgid "Import / Export"
|
1719 |
#: app/features/ix/export_g_calendar.php:72
|
1720 |
#: app/features/ix/export_g_calendar.php:147
|
1721 |
#: app/features/ix/export_g_calendar.php:164
|
1722 |
+
#: app/features/mec/notifications.php:207
|
1723 |
+
#: app/features/mec/notifications.php:260
|
1724 |
+
#: app/features/mec/notifications.php:313
|
1725 |
+
#: app/features/mec/notifications.php:513
|
1726 |
msgid "Add to Google Calendar"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
#: app/features/ix/export_g_calendar.php:90
|
1730 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1731 |
msgid "Checking ..."
|
1732 |
msgstr ""
|
1733 |
|
1957 |
|
1958 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1959 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1960 |
+
#: app/features/mec/notifications.php:457
|
1961 |
msgid "Important Note"
|
1962 |
msgstr ""
|
1963 |
|
2084 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2085 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2086 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2087 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2088 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2089 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2090 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2100 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2101 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2102 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2103 |
+
#: app/skins/monthly_view/calendar.php:86
|
2104 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2105 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2106 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2128 |
msgid "Event %s"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2132 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2133 |
#: app/libraries/main.php:4379
|
2134 |
msgid "Locations"
|
2248 |
"You can select extra locations in addition to main location if you like."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: app/features/mec.php:153
|
2252 |
msgid ""
|
2253 |
"Activation faild. Please check your purchase code or license type."
|
2254 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: app/features/mec.php:153
|
2258 |
msgid "Troubleshooting"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: app/features/mec.php:193
|
2262 |
msgid ""
|
2263 |
"Your options is not in JSON format. Please insert correct options in this "
|
2264 |
"field and try again."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: app/features/mec.php:200
|
2268 |
#, fuzzy
|
2269 |
#| msgid "Your booking cannot verify!"
|
2270 |
msgid "Your options field can not be empty!"
|
2271 |
msgstr "Ваше бронирование не может быть верифицировано!"
|
2272 |
|
2273 |
+
#: app/features/mec.php:206
|
2274 |
#, fuzzy
|
2275 |
#| msgid "Your booking successfully verified."
|
2276 |
msgid "Your options imported successfuly."
|
2277 |
msgstr "Ваше бронирование успешно верифицировано."
|
2278 |
|
2279 |
+
#: app/features/mec.php:299
|
2280 |
#, fuzzy
|
2281 |
#| msgid "Support"
|
2282 |
msgid "MEC - Support"
|
2283 |
msgstr "Поддержка"
|
2284 |
|
2285 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2286 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2287 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2288 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2289 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2290 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2291 |
msgid "Support"
|
2292 |
msgstr "Поддержка"
|
2293 |
|
2294 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2295 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2296 |
#: app/libraries/main.php:4381
|
2297 |
msgid "Organizers"
|
2298 |
msgstr "Оранизаторы"
|
2299 |
|
2300 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2301 |
#: app/features/mec/dashboard.php:194
|
2302 |
msgid "Shortcodes"
|
2303 |
msgstr "Шорткоды"
|
2304 |
|
2305 |
+
#: app/features/mec.php:329
|
2306 |
msgid "MEC - Settings"
|
2307 |
msgstr "MEC - Настройки"
|
2308 |
|
2309 |
+
#: app/features/mec.php:330
|
2310 |
#, fuzzy
|
2311 |
#| msgid "MEC - Settings"
|
2312 |
msgid "MEC - Addons"
|
2313 |
msgstr "MEC - Настройки"
|
2314 |
|
2315 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2316 |
msgid "Addons"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: app/features/mec.php:349
|
2320 |
msgid "Add Shortcode"
|
2321 |
msgstr "Добавить шорткод"
|
2322 |
|
2323 |
+
#: app/features/mec.php:350
|
2324 |
msgid "Add New Shortcode"
|
2325 |
msgstr "Добавить новый Шорткод"
|
2326 |
|
2327 |
+
#: app/features/mec.php:351
|
2328 |
msgid "No shortcodes found!"
|
2329 |
msgstr "Не найдено ни одного шорткода!"
|
2330 |
|
2331 |
+
#: app/features/mec.php:352
|
2332 |
msgid "All Shortcodes"
|
2333 |
msgstr "Все шорткоды"
|
2334 |
|
2335 |
+
#: app/features/mec.php:353
|
2336 |
msgid "Edit shortcodes"
|
2337 |
msgstr "Редактировать шорткод"
|
2338 |
|
2339 |
+
#: app/features/mec.php:354
|
2340 |
msgid "No shortcodes found in Trash!"
|
2341 |
msgstr "В корзине не найдено ни одного шорткода!"
|
2342 |
|
2343 |
+
#: app/features/mec.php:402
|
2344 |
msgid "Display Options"
|
2345 |
msgstr "Опции отображения"
|
2346 |
|
2347 |
+
#: app/features/mec.php:403
|
2348 |
msgid "Filter Options"
|
2349 |
msgstr "Опции фильтра"
|
2350 |
|
2351 |
+
#: app/features/mec.php:405
|
2352 |
msgid "Search Form"
|
2353 |
msgstr "Форма поиска"
|
2354 |
|
2355 |
+
#: app/features/mec.php:755
|
2356 |
msgid "Display content's images as Popup"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: app/features/mec.php:768
|
2360 |
msgid "Single Event Display Method"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: app/features/mec.php:773
|
2364 |
msgid "Separate Window"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: app/features/mec.php:774
|
2368 |
msgid "Modal 1"
|
2369 |
msgstr ""
|
2370 |
|
2525 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2526 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2527 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2528 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2529 |
+
#: app/features/mec/notifications.php:581
|
2530 |
+
#: app/features/mec/notifications.php:680
|
2531 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2532 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2533 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2534 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2543 |
msgstr "Сохранить изменения"
|
2544 |
|
2545 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2546 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2547 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2548 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2549 |
#: app/features/mec/support.php:52
|
2551 |
msgstr "Опции отображения"
|
2552 |
|
2553 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2554 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2555 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2556 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2557 |
#: app/features/mec/support.php:59
|
2560 |
|
2561 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2562 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2563 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2564 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2565 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2566 |
msgid "Messages"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2570 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2571 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2572 |
#: app/features/mec/styling.php:375
|
2573 |
msgid "Saved"
|
2574 |
msgstr "Сохранено"
|
2575 |
|
2576 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2577 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2578 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2579 |
#: app/features/mec/styling.php:376
|
2580 |
msgid "Settings Saved!"
|
3407 |
msgid "No Search Options"
|
3408 |
msgstr "Опции поиска отсутствуют"
|
3409 |
|
3410 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3411 |
msgid "Booking Notification"
|
3412 |
msgstr "Уведомления о бронировании"
|
3413 |
|
3414 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3415 |
msgid "Booking Verification"
|
3416 |
msgstr "Верификация бронирования"
|
3417 |
|
3418 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3419 |
#: app/features/mec/settings.php:1409
|
3420 |
msgid "Booking Confirmation"
|
3421 |
msgstr "Подтверждение бронирования"
|
3422 |
|
3423 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3424 |
+
#, fuzzy
|
3425 |
+
#| msgid "Booking cancellation link."
|
3426 |
+
msgid "Booking Cancellation"
|
3427 |
+
msgstr "Отмена бронирования."
|
3428 |
+
|
3429 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3430 |
msgid "Admin Notification"
|
3431 |
msgstr "Уведомление для администратора"
|
3432 |
|
3433 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3434 |
+
#: app/libraries/notifications.php:354
|
3435 |
msgid "Booking Reminder"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3439 |
#: app/features/mec/support-page.php:80
|
3440 |
msgid "New Event"
|
3441 |
msgstr "Новое событие"
|
3442 |
|
3443 |
+
#: app/features/mec/notifications.php:155
|
3444 |
msgid "Enable booking notification"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: app/features/mec/notifications.php:159
|
3448 |
msgid "It sends to attendee after booking for notifying him/her."
|
3449 |
msgstr "Отправляется участнику после бронирования."
|
3450 |
|
3451 |
+
#: app/features/mec/notifications.php:161
|
3452 |
+
#: app/features/mec/notifications.php:219
|
3453 |
+
#: app/features/mec/notifications.php:271
|
3454 |
+
#: app/features/mec/notifications.php:330
|
3455 |
+
#: app/features/mec/notifications.php:397
|
3456 |
+
#: app/features/mec/notifications.php:460
|
3457 |
+
#: app/features/mec/notifications.php:532
|
3458 |
msgid "Email Subject"
|
3459 |
msgstr "Тема сообщения"
|
3460 |
|
3461 |
+
#: app/features/mec/notifications.php:165
|
3462 |
+
#: app/features/mec/notifications.php:169
|
3463 |
+
#: app/features/mec/notifications.php:223
|
3464 |
+
#: app/features/mec/notifications.php:227
|
3465 |
+
#: app/features/mec/notifications.php:275
|
3466 |
+
#: app/features/mec/notifications.php:279
|
3467 |
+
#: app/features/mec/notifications.php:334
|
3468 |
+
#: app/features/mec/notifications.php:338
|
3469 |
+
#: app/features/mec/notifications.php:401
|
3470 |
+
#: app/features/mec/notifications.php:405
|
3471 |
+
#: app/features/mec/notifications.php:464
|
3472 |
+
#: app/features/mec/notifications.php:468
|
3473 |
+
#: app/features/mec/notifications.php:479
|
3474 |
+
#: app/features/mec/notifications.php:536
|
3475 |
+
#: app/features/mec/notifications.php:540
|
3476 |
msgid "Custom Recipients"
|
3477 |
msgstr "Получатели"
|
3478 |
|
3479 |
+
#: app/features/mec/notifications.php:170
|
3480 |
+
#: app/features/mec/notifications.php:228
|
3481 |
+
#: app/features/mec/notifications.php:280
|
3482 |
+
#: app/features/mec/notifications.php:339
|
3483 |
+
#: app/features/mec/notifications.php:406
|
3484 |
+
#: app/features/mec/notifications.php:469
|
3485 |
+
#: app/features/mec/notifications.php:480
|
3486 |
+
#: app/features/mec/notifications.php:541
|
3487 |
msgid "Insert comma separated emails for multiple recipients."
|
3488 |
msgstr ""
|
3489 |
"Вставьте электронную почт людей, используя в качестве разделителя запятую."
|
3490 |
|
3491 |
+
#: app/features/mec/notifications.php:177
|
3492 |
+
#: app/features/mec/notifications.php:350
|
3493 |
+
#: app/features/mec/notifications.php:413
|
3494 |
msgid "Send the email to event organizer"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: app/features/mec/notifications.php:180
|
3498 |
+
#: app/features/mec/notifications.php:234
|
3499 |
+
#: app/features/mec/notifications.php:286
|
3500 |
+
#: app/features/mec/notifications.php:357
|
3501 |
+
#: app/features/mec/notifications.php:416
|
3502 |
+
#: app/features/mec/notifications.php:486
|
3503 |
+
#: app/features/mec/notifications.php:547
|
3504 |
msgid "Email Content"
|
3505 |
msgstr "Содержимое эл. письма"
|
3506 |
|
3507 |
+
#: app/features/mec/notifications.php:183
|
3508 |
+
#: app/features/mec/notifications.php:237
|
3509 |
+
#: app/features/mec/notifications.php:289
|
3510 |
+
#: app/features/mec/notifications.php:360
|
3511 |
+
#: app/features/mec/notifications.php:419
|
3512 |
+
#: app/features/mec/notifications.php:489
|
3513 |
+
#: app/features/mec/notifications.php:550
|
3514 |
msgid "You can use following placeholders"
|
3515 |
msgstr "Вы можете использовать следующие метки"
|
3516 |
|
3517 |
+
#: app/features/mec/notifications.php:185
|
3518 |
+
#: app/features/mec/notifications.php:239
|
3519 |
+
#: app/features/mec/notifications.php:291
|
3520 |
+
#: app/features/mec/notifications.php:362
|
3521 |
+
#: app/features/mec/notifications.php:421
|
3522 |
+
#: app/features/mec/notifications.php:491
|
3523 |
msgid "First name of attendee"
|
3524 |
msgstr "Имя участника"
|
3525 |
|
3526 |
+
#: app/features/mec/notifications.php:186
|
3527 |
+
#: app/features/mec/notifications.php:240
|
3528 |
+
#: app/features/mec/notifications.php:292
|
3529 |
+
#: app/features/mec/notifications.php:363
|
3530 |
+
#: app/features/mec/notifications.php:422
|
3531 |
+
#: app/features/mec/notifications.php:492
|
3532 |
msgid "Last name of attendee"
|
3533 |
msgstr "Фамилия участника"
|
3534 |
|
3535 |
+
#: app/features/mec/notifications.php:187
|
3536 |
+
#: app/features/mec/notifications.php:241
|
3537 |
+
#: app/features/mec/notifications.php:293
|
3538 |
+
#: app/features/mec/notifications.php:364
|
3539 |
+
#: app/features/mec/notifications.php:423
|
3540 |
+
#: app/features/mec/notifications.php:493
|
3541 |
msgid "Email of attendee"
|
3542 |
msgstr "Эл. почта участника"
|
3543 |
|
3544 |
+
#: app/features/mec/notifications.php:188
|
3545 |
+
#: app/features/mec/notifications.php:242
|
3546 |
+
#: app/features/mec/notifications.php:294
|
3547 |
+
#: app/features/mec/notifications.php:365
|
3548 |
+
#: app/features/mec/notifications.php:424
|
3549 |
+
#: app/features/mec/notifications.php:494
|
3550 |
msgid "Booked date of event"
|
3551 |
msgstr "Дата бронирования события"
|
3552 |
|
3553 |
+
#: app/features/mec/notifications.php:189
|
3554 |
+
#: app/features/mec/notifications.php:243
|
3555 |
+
#: app/features/mec/notifications.php:295
|
3556 |
+
#: app/features/mec/notifications.php:366
|
3557 |
+
#: app/features/mec/notifications.php:425
|
3558 |
+
#: app/features/mec/notifications.php:495
|
3559 |
#, fuzzy
|
3560 |
#| msgid "Booked date of event"
|
3561 |
msgid "Booked time of event"
|
3562 |
msgstr "Дата бронирования события"
|
3563 |
|
3564 |
+
#: app/features/mec/notifications.php:190
|
3565 |
+
#: app/features/mec/notifications.php:244
|
3566 |
+
#: app/features/mec/notifications.php:296
|
3567 |
+
#: app/features/mec/notifications.php:367
|
3568 |
+
#: app/features/mec/notifications.php:426
|
3569 |
+
#: app/features/mec/notifications.php:496
|
3570 |
msgid "Booking Price"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: app/features/mec/notifications.php:191
|
3574 |
+
#: app/features/mec/notifications.php:245
|
3575 |
+
#: app/features/mec/notifications.php:297
|
3576 |
+
#: app/features/mec/notifications.php:368
|
3577 |
+
#: app/features/mec/notifications.php:427
|
3578 |
+
#: app/features/mec/notifications.php:497
|
3579 |
+
#: app/features/mec/notifications.php:556
|
3580 |
msgid "Your website title"
|
3581 |
msgstr "Заголовок вашего сайта"
|
3582 |
|
3583 |
+
#: app/features/mec/notifications.php:192
|
3584 |
+
#: app/features/mec/notifications.php:246
|
3585 |
+
#: app/features/mec/notifications.php:298
|
3586 |
+
#: app/features/mec/notifications.php:369
|
3587 |
+
#: app/features/mec/notifications.php:428
|
3588 |
+
#: app/features/mec/notifications.php:498
|
3589 |
+
#: app/features/mec/notifications.php:557
|
3590 |
msgid "Your website URL"
|
3591 |
msgstr "Адрес ссылки вашего сайта"
|
3592 |
|
3593 |
+
#: app/features/mec/notifications.php:193
|
3594 |
+
#: app/features/mec/notifications.php:247
|
3595 |
+
#: app/features/mec/notifications.php:299
|
3596 |
+
#: app/features/mec/notifications.php:370
|
3597 |
+
#: app/features/mec/notifications.php:429
|
3598 |
+
#: app/features/mec/notifications.php:499
|
3599 |
+
#: app/features/mec/notifications.php:558
|
3600 |
msgid "Your website description"
|
3601 |
msgstr "Описание вашего сайта"
|
3602 |
|
3603 |
+
#: app/features/mec/notifications.php:194
|
3604 |
+
#: app/features/mec/notifications.php:248
|
3605 |
+
#: app/features/mec/notifications.php:300
|
3606 |
+
#: app/features/mec/notifications.php:371
|
3607 |
+
#: app/features/mec/notifications.php:430
|
3608 |
+
#: app/features/mec/notifications.php:500
|
3609 |
msgid "Event title"
|
3610 |
msgstr "Заголовок события"
|
3611 |
|
3612 |
+
#: app/features/mec/notifications.php:195
|
3613 |
+
#: app/features/mec/notifications.php:249
|
3614 |
+
#: app/features/mec/notifications.php:301
|
3615 |
+
#: app/features/mec/notifications.php:372
|
3616 |
+
#: app/features/mec/notifications.php:431
|
3617 |
+
#: app/features/mec/notifications.php:501
|
3618 |
#, fuzzy
|
3619 |
#| msgid "Event Link"
|
3620 |
msgid "Event link"
|
3621 |
msgstr "Ссылка события"
|
3622 |
|
3623 |
+
#: app/features/mec/notifications.php:196
|
3624 |
+
#: app/features/mec/notifications.php:250
|
3625 |
+
#: app/features/mec/notifications.php:302
|
3626 |
+
#: app/features/mec/notifications.php:373
|
3627 |
+
#: app/features/mec/notifications.php:432
|
3628 |
+
#: app/features/mec/notifications.php:502
|
3629 |
msgid "Organizer name of booked event"
|
3630 |
msgstr "Имя организатора на забронированное мероприятие"
|
3631 |
|
3632 |
+
#: app/features/mec/notifications.php:197
|
3633 |
+
#: app/features/mec/notifications.php:251
|
3634 |
+
#: app/features/mec/notifications.php:303
|
3635 |
+
#: app/features/mec/notifications.php:374
|
3636 |
+
#: app/features/mec/notifications.php:433
|
3637 |
+
#: app/features/mec/notifications.php:503
|
3638 |
msgid "Organizer tel of booked event"
|
3639 |
msgstr "Телефон организатора на забронированное мероприятие"
|
3640 |
|
3641 |
+
#: app/features/mec/notifications.php:198
|
3642 |
+
#: app/features/mec/notifications.php:252
|
3643 |
+
#: app/features/mec/notifications.php:304
|
3644 |
+
#: app/features/mec/notifications.php:375
|
3645 |
+
#: app/features/mec/notifications.php:434
|
3646 |
+
#: app/features/mec/notifications.php:504
|
3647 |
msgid "Organizer email of booked event"
|
3648 |
msgstr "Эл. почта организатора на забронированное мероприятие"
|
3649 |
|
3650 |
+
#: app/features/mec/notifications.php:199
|
3651 |
+
#: app/features/mec/notifications.php:253
|
3652 |
+
#: app/features/mec/notifications.php:305
|
3653 |
+
#: app/features/mec/notifications.php:376
|
3654 |
+
#: app/features/mec/notifications.php:435
|
3655 |
+
#: app/features/mec/notifications.php:505
|
3656 |
msgid "Location name of booked event"
|
3657 |
msgstr "Имя места забронированного мероприятия"
|
3658 |
|
3659 |
+
#: app/features/mec/notifications.php:200
|
3660 |
+
#: app/features/mec/notifications.php:254
|
3661 |
+
#: app/features/mec/notifications.php:306
|
3662 |
+
#: app/features/mec/notifications.php:377
|
3663 |
+
#: app/features/mec/notifications.php:436
|
3664 |
+
#: app/features/mec/notifications.php:506
|
3665 |
msgid "Location address of booked event"
|
3666 |
msgstr "Адрес забронированного мероприятия"
|
3667 |
|
3668 |
+
#: app/features/mec/notifications.php:201
|
3669 |
+
#: app/features/mec/notifications.php:379
|
3670 |
+
#: app/features/mec/notifications.php:438
|
3671 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3672 |
msgstr ""
|
3673 |
"Полная информация об участнике, данные из формы бронирования, дата, имя, эл. "
|
3674 |
"почта и т. д."
|
3675 |
|
3676 |
+
#: app/features/mec/notifications.php:202
|
3677 |
+
#: app/features/mec/notifications.php:308
|
3678 |
+
#: app/features/mec/notifications.php:508
|
3679 |
msgid "Invoice Link"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: app/features/mec/notifications.php:203
|
3683 |
+
#: app/features/mec/notifications.php:256
|
3684 |
+
#: app/features/mec/notifications.php:309
|
3685 |
+
#: app/features/mec/notifications.php:380
|
3686 |
+
#: app/features/mec/notifications.php:439
|
3687 |
+
#: app/features/mec/notifications.php:509
|
3688 |
msgid "Total Attendees"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: app/features/mec/notifications.php:204
|
3692 |
+
#: app/features/mec/notifications.php:257
|
3693 |
+
#: app/features/mec/notifications.php:310
|
3694 |
+
#: app/features/mec/notifications.php:510
|
3695 |
#, fuzzy
|
3696 |
#| msgid "Ticket Name"
|
3697 |
msgid "Ticket name"
|
3698 |
msgstr "Имя билета"
|
3699 |
|
3700 |
+
#: app/features/mec/notifications.php:205
|
3701 |
+
#: app/features/mec/notifications.php:258
|
3702 |
+
#: app/features/mec/notifications.php:311
|
3703 |
+
#: app/features/mec/notifications.php:511
|
3704 |
#, fuzzy
|
3705 |
#| msgid "Ticket Name"
|
3706 |
msgid "Ticket time"
|
3707 |
msgstr "Имя билета"
|
3708 |
|
3709 |
+
#: app/features/mec/notifications.php:206
|
3710 |
+
#: app/features/mec/notifications.php:259
|
3711 |
+
#: app/features/mec/notifications.php:312
|
3712 |
+
#: app/features/mec/notifications.php:512
|
3713 |
msgid "Download ICS file"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: app/features/mec/notifications.php:217
|
3717 |
msgid "It sends to attendee email for verifying their booking/email."
|
3718 |
msgstr "Будет отправлено эл. письмо для проверки валидности адреса эл. почты."
|
3719 |
|
3720 |
+
#: app/features/mec/notifications.php:255
|
3721 |
msgid "Email/Booking verification link."
|
3722 |
msgstr "Email/Ссылка для подтверждения бронирования."
|
3723 |
|
3724 |
+
#: app/features/mec/notifications.php:269
|
3725 |
msgid "It sends to attendee after confirming the booking by admin."
|
3726 |
msgstr ""
|
3727 |
"Будет отправлена участнику после подтверждения бронирования администратором."
|
3728 |
|
3729 |
+
#: app/features/mec/notifications.php:307
|
3730 |
+
#: app/features/mec/notifications.php:507
|
3731 |
msgid "Booking cancellation link."
|
3732 |
msgstr "Отмена бронирования."
|
3733 |
|
3734 |
+
#: app/features/mec/notifications.php:324
|
3735 |
+
#, fuzzy
|
3736 |
+
#| msgid "Enable new event notification"
|
3737 |
+
msgid "Enable cancellation notification"
|
3738 |
+
msgstr "Включить уведомление о новом событии"
|
3739 |
+
|
3740 |
+
#: app/features/mec/notifications.php:328
|
3741 |
+
#, fuzzy
|
3742 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3743 |
+
msgid ""
|
3744 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3745 |
+
"them."
|
3746 |
+
msgstr "Отправляется участнику после бронирования."
|
3747 |
+
|
3748 |
+
#: app/features/mec/notifications.php:346
|
3749 |
+
msgid "Send the email to admin"
|
3750 |
+
msgstr ""
|
3751 |
+
|
3752 |
+
#: app/features/mec/notifications.php:354
|
3753 |
+
msgid "Send the email to booking user"
|
3754 |
+
msgstr ""
|
3755 |
|
3756 |
+
#: app/features/mec/notifications.php:378
|
3757 |
+
#: app/features/mec/notifications.php:437
|
3758 |
msgid "Admin booking management link."
|
3759 |
msgstr "Ссылка управления бронированием для администратора."
|
3760 |
|
3761 |
+
#: app/features/mec/notifications.php:391
|
3762 |
+
#, fuzzy
|
3763 |
+
#| msgid "Enable new event notification"
|
3764 |
+
msgid "Enable admin notification"
|
3765 |
+
msgstr "Включить уведомление о новом событии"
|
3766 |
+
|
3767 |
+
#: app/features/mec/notifications.php:395
|
3768 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3769 |
+
msgstr "Будет отправлено администратору для уведомления о новом бронировании."
|
3770 |
+
|
3771 |
+
#: app/features/mec/notifications.php:451
|
3772 |
msgid "Enable booking reminder notification"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: app/features/mec/notifications.php:457
|
3776 |
#, php-format
|
3777 |
msgid ""
|
3778 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3780 |
"send the reminders multiple times."
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: app/features/mec/notifications.php:457
|
3784 |
msgid "only once per day"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: app/features/mec/notifications.php:475
|
3788 |
msgid "Days"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: app/features/mec/notifications.php:526
|
3792 |
msgid "Enable new event notification"
|
3793 |
msgstr "Включить уведомление о новом событии"
|
3794 |
|
3795 |
+
#: app/features/mec/notifications.php:530
|
3796 |
msgid ""
|
3797 |
"It sends after adding a new event from frontend event submission or from "
|
3798 |
"website backend."
|
3800 |
"Будет отправлено после добавления нового события на странице сайта, либо из "
|
3801 |
"административной панели."
|
3802 |
|
3803 |
+
#: app/features/mec/notifications.php:552
|
3804 |
msgid "Title of event"
|
3805 |
msgstr "Заголовок события"
|
3806 |
|
3807 |
+
#: app/features/mec/notifications.php:553
|
3808 |
#, fuzzy
|
3809 |
#| msgid "Title of event"
|
3810 |
msgid "Link of event"
|
3811 |
msgstr "Заголовок события"
|
3812 |
|
3813 |
+
#: app/features/mec/notifications.php:554
|
3814 |
msgid "Status of event"
|
3815 |
msgstr "Статус события"
|
3816 |
|
3817 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3818 |
#: app/features/mec/settings.php:1253
|
3819 |
msgid "Event Note"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: app/features/mec/notifications.php:559
|
3823 |
msgid "Admin events management link."
|
3824 |
msgstr "Ссылка управления событиями для администратора."
|
3825 |
|
3826 |
+
#: app/features/mec/notifications.php:661
|
3827 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3828 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3829 |
msgid "Verified"
|
3830 |
msgstr "Проверено"
|
3831 |
|
3832 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3833 |
msgid "Please Refresh Page"
|
3834 |
msgstr ""
|
3835 |
|
5263 |
msgstr ""
|
5264 |
|
5265 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5266 |
+
#: app/skins/single.php:295
|
5267 |
msgid "Other Organizers"
|
5268 |
msgstr ""
|
5269 |
|
5405 |
msgid "day"
|
5406 |
msgstr "день"
|
5407 |
|
5408 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5409 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5410 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5411 |
msgid "days"
|
5415 |
msgid "hour"
|
5416 |
msgstr "час"
|
5417 |
|
5418 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5419 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5420 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5421 |
msgid "hours"
|
5425 |
msgid "minute"
|
5426 |
msgstr "минута"
|
5427 |
|
5428 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5429 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5430 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5431 |
msgid "minutes"
|
5435 |
msgid "second"
|
5436 |
msgstr "секунда"
|
5437 |
|
5438 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5439 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5440 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5441 |
msgid "seconds"
|
5912 |
msgid "Your booking is confirmed."
|
5913 |
msgstr "Ваше бронирование подтверждено."
|
5914 |
|
5915 |
+
#: app/libraries/notifications.php:252
|
5916 |
+
#, fuzzy
|
5917 |
+
#| msgid "Your booking cannot be canceled."
|
5918 |
+
msgid "booking canceled."
|
5919 |
+
msgstr "Ваше бронирование не может быть отменено."
|
5920 |
+
|
5921 |
+
#: app/libraries/notifications.php:296
|
5922 |
msgid "A new booking is received."
|
5923 |
msgstr "Получено новое бронирование."
|
5924 |
|
5925 |
+
#: app/libraries/notifications.php:425
|
5926 |
msgid "A new event is added."
|
5927 |
msgstr "Новое событие добавлено."
|
5928 |
|
5929 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
5930 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5931 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5932 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5933 |
msgid "All of the day"
|
5934 |
msgstr "На весь день"
|
5935 |
|
5936 |
+
#: app/libraries/notifications.php:605
|
5937 |
msgid "to"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
5941 |
msgid "+ Add to Google Calendar"
|
5942 |
msgstr "+ Добавить в Google Calendar"
|
5943 |
|
5944 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
5945 |
msgid "+ iCal export"
|
5946 |
msgstr "+ iCal экспорт"
|
5947 |
|
5948 |
+
#: app/libraries/notifications.php:683
|
5949 |
msgid "Yes"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: app/libraries/notifications.php:683
|
5953 |
msgid "No"
|
5954 |
msgstr ""
|
5955 |
|
6162 |
msgid "All"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
+
#: app/skins/monthly_view/calendar.php:68
|
6166 |
+
#: app/skins/monthly_view/calendar.php:154
|
6167 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6168 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6169 |
#, php-format
|
6170 |
msgid "Events for %s"
|
6171 |
msgstr "События для %s"
|
6172 |
|
6173 |
+
#: app/skins/monthly_view/calendar.php:156
|
6174 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6175 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6176 |
msgid "No Events"
|
6180 |
msgid "Home"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6184 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6185 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6186 |
msgid "Phone"
|
6187 |
msgstr "Телефон"
|
6188 |
|
6189 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6190 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6191 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6192 |
msgid "Website"
|
6193 |
msgstr "Веб сайт"
|
6194 |
|
6195 |
+
#: app/skins/single.php:393
|
6196 |
#, fuzzy
|
6197 |
#| msgid "No Search Options"
|
6198 |
msgid "Speakers:"
|
languages/modern-events-calendar-lite-sv_SE.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-sv_SE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
67 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
68 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -267,7 +267,7 @@ msgstr "Evenemang"
|
|
267 |
msgid "Event"
|
268 |
msgstr "Evenemang"
|
269 |
|
270 |
-
#: app/features/events.php:136 app/features/mec.php:
|
271 |
msgid "Add Event"
|
272 |
msgstr "Lägg till evenemang"
|
273 |
|
@@ -315,7 +315,7 @@ msgid "Category"
|
|
315 |
msgstr "Kategori"
|
316 |
|
317 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
318 |
-
#: app/features/mec.php:
|
319 |
#: app/libraries/main.php:4375
|
320 |
msgid "Categories"
|
321 |
msgstr "Kategorier"
|
@@ -414,7 +414,7 @@ msgstr "Gäst-data"
|
|
414 |
#: app/features/events.php:410 app/features/events.php:1682
|
415 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +426,8 @@ msgstr "Namn"
|
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
428 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
429 |
-
#: app/libraries/notifications.php:
|
430 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
431 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
433 |
#: app/skins/single/modern.php:48
|
@@ -552,13 +552,14 @@ msgstr ""
|
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
555 |
-
#: app/features/mec/notifications.php:
|
556 |
-
#: app/features/mec/notifications.php:
|
557 |
-
#: app/features/mec/notifications.php:
|
558 |
-
#: app/features/mec/notifications.php:
|
559 |
-
#: app/features/mec/notifications.php:
|
560 |
-
#: app/features/mec/notifications.php:
|
561 |
-
#: app/features/mec/notifications.php:
|
|
|
562 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
563 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
564 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -769,7 +770,7 @@ msgid "Day 1"
|
|
769 |
msgstr ""
|
770 |
|
771 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
772 |
-
#: app/skins/single.php:
|
773 |
msgid "Hourly Schedule"
|
774 |
msgstr "Timme-schema"
|
775 |
|
@@ -841,7 +842,7 @@ msgstr "Beskrivning"
|
|
841 |
|
842 |
#: app/features/events.php:913 app/features/events.php:933
|
843 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
844 |
-
#: app/features/mec.php:
|
845 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
846 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
847 |
msgid "Speakers"
|
@@ -1245,7 +1246,7 @@ msgstr "arrangörer"
|
|
1245 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1246 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1247 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1248 |
-
#: app/skins/single.php:
|
1249 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1250 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1251 |
msgid "Location"
|
@@ -1417,14 +1418,14 @@ msgid "Remove Image"
|
|
1417 |
msgstr "Ta bort bild"
|
1418 |
|
1419 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1420 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1421 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1422 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1423 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1424 |
msgid "Labels"
|
1425 |
msgstr "Etiketter"
|
1426 |
|
1427 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1428 |
#: app/features/mec/meta_boxes/filter.php:138
|
1429 |
msgid "Tags"
|
1430 |
msgstr "Taggar"
|
@@ -1460,7 +1461,7 @@ msgstr "MEC - Import / Export"
|
|
1460 |
|
1461 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1462 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1463 |
-
#: app/features/mec/notifications.php:
|
1464 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1465 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1466 |
msgid "Import / Export"
|
@@ -1735,15 +1736,15 @@ msgstr "Växla"
|
|
1735 |
#: app/features/ix/export_g_calendar.php:72
|
1736 |
#: app/features/ix/export_g_calendar.php:147
|
1737 |
#: app/features/ix/export_g_calendar.php:164
|
1738 |
-
#: app/features/mec/notifications.php:
|
1739 |
-
#: app/features/mec/notifications.php:
|
1740 |
-
#: app/features/mec/notifications.php:
|
1741 |
-
#: app/features/mec/notifications.php:
|
1742 |
msgid "Add to Google Calendar"
|
1743 |
msgstr "Lägg till i Google Kalender"
|
1744 |
|
1745 |
#: app/features/ix/export_g_calendar.php:90
|
1746 |
-
#: app/features/mec/notifications.php:
|
1747 |
msgid "Checking ..."
|
1748 |
msgstr "Kontrollerar..."
|
1749 |
|
@@ -1987,7 +1988,7 @@ msgstr "Google auto-import"
|
|
1987 |
|
1988 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1989 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1990 |
-
#: app/features/mec/notifications.php:
|
1991 |
msgid "Important Note"
|
1992 |
msgstr "Viktig information"
|
1993 |
|
@@ -2126,7 +2127,7 @@ msgstr ""
|
|
2126 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2127 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2128 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2129 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2130 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2131 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2132 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2142,7 +2143,7 @@ msgstr "Utvald bild"
|
|
2142 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2143 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2144 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2145 |
-
#: app/skins/monthly_view/calendar.php:
|
2146 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2147 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2148 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2170,7 +2171,7 @@ msgstr "Slug"
|
|
2170 |
msgid "Event %s"
|
2171 |
msgstr "Evenemang %s"
|
2172 |
|
2173 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2174 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2175 |
#: app/libraries/main.php:4379
|
2176 |
msgid "Locations"
|
@@ -2290,123 +2291,123 @@ msgid ""
|
|
2290 |
"You can select extra locations in addition to main location if you like."
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: app/features/mec.php:
|
2294 |
msgid ""
|
2295 |
"Activation faild. Please check your purchase code or license type."
|
2296 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: app/features/mec.php:
|
2300 |
msgid "Troubleshooting"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: app/features/mec.php:
|
2304 |
msgid ""
|
2305 |
"Your options is not in JSON format. Please insert correct options in this "
|
2306 |
"field and try again."
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: app/features/mec.php:
|
2310 |
#, fuzzy
|
2311 |
#| msgid "Your booking cannot verify!"
|
2312 |
msgid "Your options field can not be empty!"
|
2313 |
msgstr "Din bokning kan inte verifieras!"
|
2314 |
|
2315 |
-
#: app/features/mec.php:
|
2316 |
#, fuzzy
|
2317 |
#| msgid "Your booking successfully verified."
|
2318 |
msgid "Your options imported successfuly."
|
2319 |
msgstr "Din bokning är bekräftad."
|
2320 |
|
2321 |
-
#: app/features/mec.php:
|
2322 |
#, fuzzy
|
2323 |
#| msgid "Support"
|
2324 |
msgid "MEC - Support"
|
2325 |
msgstr "Support"
|
2326 |
|
2327 |
-
#: app/features/mec.php:
|
2328 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2329 |
-
#: app/features/mec/notifications.php:
|
2330 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2331 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2332 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2333 |
msgid "Support"
|
2334 |
msgstr "Support"
|
2335 |
|
2336 |
-
#: app/features/mec.php:
|
2337 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2338 |
#: app/libraries/main.php:4381
|
2339 |
msgid "Organizers"
|
2340 |
msgstr "Arrangörer"
|
2341 |
|
2342 |
-
#: app/features/mec.php:
|
2343 |
#: app/features/mec/dashboard.php:194
|
2344 |
msgid "Shortcodes"
|
2345 |
msgstr "Shortcodes"
|
2346 |
|
2347 |
-
#: app/features/mec.php:
|
2348 |
msgid "MEC - Settings"
|
2349 |
msgstr "MEC - Inställningar"
|
2350 |
|
2351 |
-
#: app/features/mec.php:
|
2352 |
#, fuzzy
|
2353 |
#| msgid "MEC - Settings"
|
2354 |
msgid "MEC - Addons"
|
2355 |
msgstr "MEC - Inställningar"
|
2356 |
|
2357 |
-
#: app/features/mec.php:
|
2358 |
msgid "Addons"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: app/features/mec.php:
|
2362 |
msgid "Add Shortcode"
|
2363 |
msgstr "Lägg till shortcode"
|
2364 |
|
2365 |
-
#: app/features/mec.php:
|
2366 |
msgid "Add New Shortcode"
|
2367 |
msgstr "Lägg till en ny shortcode"
|
2368 |
|
2369 |
-
#: app/features/mec.php:
|
2370 |
msgid "No shortcodes found!"
|
2371 |
msgstr "Inga shortcodes hittades!"
|
2372 |
|
2373 |
-
#: app/features/mec.php:
|
2374 |
msgid "All Shortcodes"
|
2375 |
msgstr "Alla shortcodes"
|
2376 |
|
2377 |
-
#: app/features/mec.php:
|
2378 |
msgid "Edit shortcodes"
|
2379 |
msgstr "Redigera shortcodes"
|
2380 |
|
2381 |
-
#: app/features/mec.php:
|
2382 |
msgid "No shortcodes found in Trash!"
|
2383 |
msgstr "Inga raderade shortcodes hittades!"
|
2384 |
|
2385 |
-
#: app/features/mec.php:
|
2386 |
msgid "Display Options"
|
2387 |
msgstr "Visningsalternativ"
|
2388 |
|
2389 |
-
#: app/features/mec.php:
|
2390 |
msgid "Filter Options"
|
2391 |
msgstr "Filteralternativ"
|
2392 |
|
2393 |
-
#: app/features/mec.php:
|
2394 |
msgid "Search Form"
|
2395 |
msgstr "Sökformulär"
|
2396 |
|
2397 |
-
#: app/features/mec.php:
|
2398 |
msgid "Display content's images as Popup"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: app/features/mec.php:
|
2402 |
msgid "Single Event Display Method"
|
2403 |
msgstr "Enstaka evenemangs visnings-format"
|
2404 |
|
2405 |
-
#: app/features/mec.php:
|
2406 |
msgid "Separate Window"
|
2407 |
msgstr "Separat fönster"
|
2408 |
|
2409 |
-
#: app/features/mec.php:
|
2410 |
msgid "Modal 1"
|
2411 |
msgstr "Stil 1"
|
2412 |
|
@@ -2567,10 +2568,10 @@ msgstr "Ändringslogg"
|
|
2567 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2568 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2569 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2570 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2571 |
-
#: app/features/mec/notifications.php:
|
2572 |
-
#: app/features/mec/notifications.php:
|
2573 |
-
#: app/features/mec/notifications.php:
|
2574 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2575 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2576 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2585,7 +2586,7 @@ msgid "Save Changes"
|
|
2585 |
msgstr "Spara ändringar"
|
2586 |
|
2587 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2588 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2589 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2590 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2591 |
#: app/features/mec/support.php:52
|
@@ -2593,7 +2594,7 @@ msgid "Styling Options"
|
|
2593 |
msgstr "Formgivningsalternativ"
|
2594 |
|
2595 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2596 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2597 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2598 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2599 |
#: app/features/mec/support.php:59
|
@@ -2602,21 +2603,21 @@ msgstr "Anpassad CSS"
|
|
2602 |
|
2603 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2604 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2605 |
-
#: app/features/mec/notifications.php:
|
2606 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2607 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2608 |
msgid "Messages"
|
2609 |
msgstr "Meddelanden"
|
2610 |
|
2611 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2612 |
-
#: app/features/mec/notifications.php:
|
2613 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2614 |
#: app/features/mec/styling.php:375
|
2615 |
msgid "Saved"
|
2616 |
msgstr "Sparad"
|
2617 |
|
2618 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2619 |
-
#: app/features/mec/notifications.php:
|
2620 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2621 |
#: app/features/mec/styling.php:376
|
2622 |
msgid "Settings Saved!"
|
@@ -3456,309 +3457,373 @@ msgstr "Textinmatning"
|
|
3456 |
msgid "No Search Options"
|
3457 |
msgstr "Ingen sökalternativ"
|
3458 |
|
3459 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3460 |
msgid "Booking Notification"
|
3461 |
msgstr "Bokningsmeddelande"
|
3462 |
|
3463 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3464 |
msgid "Booking Verification"
|
3465 |
msgstr "Boknings-verifikation"
|
3466 |
|
3467 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3468 |
#: app/features/mec/settings.php:1409
|
3469 |
msgid "Booking Confirmation"
|
3470 |
msgstr "Bokningsbekräftelse"
|
3471 |
|
3472 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3473 |
msgid "Admin Notification"
|
3474 |
msgstr "Administratörsmeddelande"
|
3475 |
|
3476 |
-
#: app/features/mec/notifications.php:
|
3477 |
-
#: app/libraries/notifications.php:
|
3478 |
msgid "Booking Reminder"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: app/features/mec/notifications.php:
|
3482 |
#: app/features/mec/support-page.php:80
|
3483 |
msgid "New Event"
|
3484 |
msgstr "Nytt evenemang"
|
3485 |
|
3486 |
-
#: app/features/mec/notifications.php:
|
3487 |
msgid "Enable booking notification"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: app/features/mec/notifications.php:
|
3491 |
msgid "It sends to attendee after booking for notifying him/her."
|
3492 |
msgstr "Skickas till deltagare efter bokning för att meddela honom/henne."
|
3493 |
|
3494 |
-
#: app/features/mec/notifications.php:
|
3495 |
-
#: app/features/mec/notifications.php:
|
3496 |
-
#: app/features/mec/notifications.php:
|
3497 |
-
#: app/features/mec/notifications.php:
|
3498 |
-
#: app/features/mec/notifications.php:
|
3499 |
-
#: app/features/mec/notifications.php:
|
|
|
3500 |
msgid "Email Subject"
|
3501 |
msgstr "E-postämne"
|
3502 |
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
#: app/features/mec/notifications.php:
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
3507 |
-
#: app/features/mec/notifications.php:
|
3508 |
-
#: app/features/mec/notifications.php:
|
3509 |
-
#: app/features/mec/notifications.php:
|
3510 |
-
#: app/features/mec/notifications.php:
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
#: app/features/mec/notifications.php:
|
3513 |
-
#: app/features/mec/notifications.php:
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3516 |
msgid "Custom Recipients"
|
3517 |
msgstr "Anpassade mottagare"
|
3518 |
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
3523 |
-
#: app/features/mec/notifications.php:
|
3524 |
-
#: app/features/mec/notifications.php:
|
3525 |
-
#: app/features/mec/notifications.php:
|
|
|
3526 |
msgid "Insert comma separated emails for multiple recipients."
|
3527 |
msgstr "Fyll i komma-separerade e-postadresser för flera mottagare."
|
3528 |
|
3529 |
-
#: app/features/mec/notifications.php:
|
3530 |
-
#: app/features/mec/notifications.php:
|
|
|
3531 |
msgid "Send the email to event organizer"
|
3532 |
msgstr "Skicka e-post till arrangören"
|
3533 |
|
3534 |
-
#: app/features/mec/notifications.php:
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
3537 |
-
#: app/features/mec/notifications.php:
|
3538 |
-
#: app/features/mec/notifications.php:
|
3539 |
-
#: app/features/mec/notifications.php:
|
|
|
3540 |
msgid "Email Content"
|
3541 |
msgstr "E-postinnehåll"
|
3542 |
|
3543 |
-
#: app/features/mec/notifications.php:
|
3544 |
-
#: app/features/mec/notifications.php:
|
3545 |
-
#: app/features/mec/notifications.php:
|
3546 |
-
#: app/features/mec/notifications.php:
|
3547 |
-
#: app/features/mec/notifications.php:
|
3548 |
-
#: app/features/mec/notifications.php:
|
|
|
3549 |
msgid "You can use following placeholders"
|
3550 |
msgstr "Du kan använda följande platshållare"
|
3551 |
|
3552 |
-
#: app/features/mec/notifications.php:
|
3553 |
-
#: app/features/mec/notifications.php:
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
#: app/features/mec/notifications.php:
|
3556 |
-
#: app/features/mec/notifications.php:
|
|
|
3557 |
msgid "First name of attendee"
|
3558 |
msgstr "Deltagares förnamn"
|
3559 |
|
3560 |
-
#: app/features/mec/notifications.php:
|
3561 |
-
#: app/features/mec/notifications.php:
|
3562 |
-
#: app/features/mec/notifications.php:
|
3563 |
-
#: app/features/mec/notifications.php:
|
3564 |
-
#: app/features/mec/notifications.php:
|
|
|
3565 |
msgid "Last name of attendee"
|
3566 |
msgstr "Deltagares efternamn"
|
3567 |
|
3568 |
-
#: app/features/mec/notifications.php:
|
3569 |
-
#: app/features/mec/notifications.php:
|
3570 |
-
#: app/features/mec/notifications.php:
|
3571 |
-
#: app/features/mec/notifications.php:
|
3572 |
-
#: app/features/mec/notifications.php:
|
|
|
3573 |
msgid "Email of attendee"
|
3574 |
msgstr "Deltagares e-posadress"
|
3575 |
|
3576 |
-
#: app/features/mec/notifications.php:
|
3577 |
-
#: app/features/mec/notifications.php:
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
-
#: app/features/mec/notifications.php:
|
3580 |
-
#: app/features/mec/notifications.php:
|
|
|
3581 |
msgid "Booked date of event"
|
3582 |
msgstr "Bokat datum för evenemanget"
|
3583 |
|
3584 |
-
#: app/features/mec/notifications.php:
|
3585 |
-
#: app/features/mec/notifications.php:
|
3586 |
-
#: app/features/mec/notifications.php:
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
-
#: app/features/mec/notifications.php:
|
|
|
3589 |
#, fuzzy
|
3590 |
#| msgid "Booked date of event"
|
3591 |
msgid "Booked time of event"
|
3592 |
msgstr "Bokat datum för evenemanget"
|
3593 |
|
3594 |
-
#: app/features/mec/notifications.php:
|
3595 |
-
#: app/features/mec/notifications.php:
|
3596 |
-
#: app/features/mec/notifications.php:
|
3597 |
-
#: app/features/mec/notifications.php:
|
3598 |
-
#: app/features/mec/notifications.php:
|
|
|
3599 |
msgid "Booking Price"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: app/features/mec/notifications.php:
|
3603 |
-
#: app/features/mec/notifications.php:
|
3604 |
-
#: app/features/mec/notifications.php:
|
3605 |
-
#: app/features/mec/notifications.php:
|
3606 |
-
#: app/features/mec/notifications.php:
|
3607 |
-
#: app/features/mec/notifications.php:
|
|
|
3608 |
msgid "Your website title"
|
3609 |
msgstr "Webbplats-titel"
|
3610 |
|
3611 |
-
#: app/features/mec/notifications.php:
|
3612 |
-
#: app/features/mec/notifications.php:
|
3613 |
-
#: app/features/mec/notifications.php:
|
3614 |
-
#: app/features/mec/notifications.php:
|
3615 |
-
#: app/features/mec/notifications.php:
|
3616 |
-
#: app/features/mec/notifications.php:
|
|
|
3617 |
msgid "Your website URL"
|
3618 |
msgstr "Webbplats-URL"
|
3619 |
|
3620 |
-
#: app/features/mec/notifications.php:
|
3621 |
-
#: app/features/mec/notifications.php:
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
3624 |
-
#: app/features/mec/notifications.php:
|
3625 |
-
#: app/features/mec/notifications.php:
|
|
|
3626 |
msgid "Your website description"
|
3627 |
msgstr "Webbplats-beskrivning"
|
3628 |
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
-
#: app/features/mec/notifications.php:
|
3631 |
-
#: app/features/mec/notifications.php:
|
3632 |
-
#: app/features/mec/notifications.php:
|
3633 |
-
#: app/features/mec/notifications.php:
|
|
|
3634 |
msgid "Event title"
|
3635 |
msgstr "Evenemangs-titel"
|
3636 |
|
3637 |
-
#: app/features/mec/notifications.php:
|
3638 |
-
#: app/features/mec/notifications.php:
|
3639 |
-
#: app/features/mec/notifications.php:
|
3640 |
-
#: app/features/mec/notifications.php:
|
3641 |
-
#: app/features/mec/notifications.php:
|
|
|
3642 |
#, fuzzy
|
3643 |
#| msgid "Event Link"
|
3644 |
msgid "Event link"
|
3645 |
msgstr "Evenemangs-länk"
|
3646 |
|
3647 |
-
#: app/features/mec/notifications.php:
|
3648 |
-
#: app/features/mec/notifications.php:
|
3649 |
-
#: app/features/mec/notifications.php:
|
3650 |
-
#: app/features/mec/notifications.php:
|
3651 |
-
#: app/features/mec/notifications.php:
|
|
|
3652 |
msgid "Organizer name of booked event"
|
3653 |
msgstr "Arrangörens namn"
|
3654 |
|
3655 |
-
#: app/features/mec/notifications.php:
|
3656 |
-
#: app/features/mec/notifications.php:
|
3657 |
-
#: app/features/mec/notifications.php:
|
3658 |
-
#: app/features/mec/notifications.php:
|
3659 |
-
#: app/features/mec/notifications.php:
|
|
|
3660 |
msgid "Organizer tel of booked event"
|
3661 |
msgstr "Arrangörens telefon"
|
3662 |
|
3663 |
-
#: app/features/mec/notifications.php:
|
3664 |
-
#: app/features/mec/notifications.php:
|
3665 |
-
#: app/features/mec/notifications.php:
|
3666 |
-
#: app/features/mec/notifications.php:
|
3667 |
-
#: app/features/mec/notifications.php:
|
|
|
3668 |
msgid "Organizer email of booked event"
|
3669 |
msgstr "Arrangörens e-postadress"
|
3670 |
|
3671 |
-
#: app/features/mec/notifications.php:
|
3672 |
-
#: app/features/mec/notifications.php:
|
3673 |
-
#: app/features/mec/notifications.php:
|
3674 |
-
#: app/features/mec/notifications.php:
|
3675 |
-
#: app/features/mec/notifications.php:
|
|
|
3676 |
msgid "Location name of booked event"
|
3677 |
msgstr "Platsnamn för bokat evenemang"
|
3678 |
|
3679 |
-
#: app/features/mec/notifications.php:
|
3680 |
-
#: app/features/mec/notifications.php:
|
3681 |
-
#: app/features/mec/notifications.php:
|
3682 |
-
#: app/features/mec/notifications.php:
|
3683 |
-
#: app/features/mec/notifications.php:
|
|
|
3684 |
msgid "Location address of booked event"
|
3685 |
msgstr "Platsadress för bokat evenemang"
|
3686 |
|
3687 |
-
#: app/features/mec/notifications.php:
|
3688 |
-
#: app/features/mec/notifications.php:
|
|
|
3689 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3690 |
msgstr ""
|
3691 |
"Full deltagarinformation såsom bokningsformulär-data, namn, e-post etc."
|
3692 |
|
3693 |
-
#: app/features/mec/notifications.php:
|
3694 |
-
#: app/features/mec/notifications.php:
|
3695 |
-
#: app/features/mec/notifications.php:
|
3696 |
msgid "Invoice Link"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: app/features/mec/notifications.php:
|
3700 |
-
#: app/features/mec/notifications.php:
|
3701 |
-
#: app/features/mec/notifications.php:
|
3702 |
-
#: app/features/mec/notifications.php:
|
3703 |
-
#: app/features/mec/notifications.php:
|
|
|
3704 |
msgid "Total Attendees"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: app/features/mec/notifications.php:
|
3708 |
-
#: app/features/mec/notifications.php:
|
3709 |
-
#: app/features/mec/notifications.php:
|
3710 |
-
#: app/features/mec/notifications.php:
|
3711 |
#, fuzzy
|
3712 |
#| msgid "Ticket Name"
|
3713 |
msgid "Ticket name"
|
3714 |
msgstr "Biljettnamn"
|
3715 |
|
3716 |
-
#: app/features/mec/notifications.php:
|
3717 |
-
#: app/features/mec/notifications.php:
|
3718 |
-
#: app/features/mec/notifications.php:
|
3719 |
-
#: app/features/mec/notifications.php:
|
3720 |
#, fuzzy
|
3721 |
#| msgid "Ticket Name"
|
3722 |
msgid "Ticket time"
|
3723 |
msgstr "Biljettnamn"
|
3724 |
|
3725 |
-
#: app/features/mec/notifications.php:
|
3726 |
-
#: app/features/mec/notifications.php:
|
3727 |
-
#: app/features/mec/notifications.php:
|
3728 |
-
#: app/features/mec/notifications.php:
|
3729 |
msgid "Download ICS file"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
-
#: app/features/mec/notifications.php:
|
3733 |
msgid "It sends to attendee email for verifying their booking/email."
|
3734 |
msgstr "Skickas till deltagares e-post för att verifiera bokning/e-post."
|
3735 |
|
3736 |
-
#: app/features/mec/notifications.php:
|
3737 |
msgid "Email/Booking verification link."
|
3738 |
msgstr "E-post/Bokning verifikationslänk"
|
3739 |
|
3740 |
-
#: app/features/mec/notifications.php:
|
3741 |
msgid "It sends to attendee after confirming the booking by admin."
|
3742 |
msgstr "Skickas till deltagare efter att bokningen bekräftats av admin."
|
3743 |
|
3744 |
-
#: app/features/mec/notifications.php:
|
3745 |
-
#: app/features/mec/notifications.php:
|
3746 |
msgid "Booking cancellation link."
|
3747 |
msgstr "Avbokningslänk"
|
3748 |
|
3749 |
-
#: app/features/mec/notifications.php:
|
3750 |
-
|
3751 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3752 |
|
3753 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3754 |
msgid "Admin booking management link."
|
3755 |
msgstr "Admin hanterings-länk för bokning."
|
3756 |
|
3757 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3758 |
msgid "Enable booking reminder notification"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: app/features/mec/notifications.php:
|
3762 |
#, php-format
|
3763 |
msgid ""
|
3764 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3766,19 +3831,19 @@ msgid ""
|
|
3766 |
"send the reminders multiple times."
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: app/features/mec/notifications.php:
|
3770 |
msgid "only once per day"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: app/features/mec/notifications.php:
|
3774 |
msgid "Days"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: app/features/mec/notifications.php:
|
3778 |
msgid "Enable new event notification"
|
3779 |
msgstr "Aktivera nytt evenemangs-meddelande"
|
3780 |
|
3781 |
-
#: app/features/mec/notifications.php:
|
3782 |
msgid ""
|
3783 |
"It sends after adding a new event from frontend event submission or from "
|
3784 |
"website backend."
|
@@ -3786,36 +3851,36 @@ msgstr ""
|
|
3786 |
"Skickas efter att ett nytt evenemang lagts till från \"Frontend Event "
|
3787 |
"Submission\" eller från webbsidans \"backend\"."
|
3788 |
|
3789 |
-
#: app/features/mec/notifications.php:
|
3790 |
msgid "Title of event"
|
3791 |
msgstr "Titel för evenemang"
|
3792 |
|
3793 |
-
#: app/features/mec/notifications.php:
|
3794 |
#, fuzzy
|
3795 |
#| msgid "Title of event"
|
3796 |
msgid "Link of event"
|
3797 |
msgstr "Titel för evenemang"
|
3798 |
|
3799 |
-
#: app/features/mec/notifications.php:
|
3800 |
msgid "Status of event"
|
3801 |
msgstr "Status för evenemang"
|
3802 |
|
3803 |
-
#: app/features/mec/notifications.php:
|
3804 |
#: app/features/mec/settings.php:1253
|
3805 |
msgid "Event Note"
|
3806 |
msgstr "Evenemangs-not"
|
3807 |
|
3808 |
-
#: app/features/mec/notifications.php:
|
3809 |
msgid "Admin events management link."
|
3810 |
msgstr "Admin hanteringslänk för evenemang."
|
3811 |
|
3812 |
-
#: app/features/mec/notifications.php:
|
3813 |
-
#: app/features/mec/notifications.php:
|
3814 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3815 |
msgid "Verified"
|
3816 |
msgstr "Verifierad"
|
3817 |
|
3818 |
-
#: app/features/mec/notifications.php:
|
3819 |
msgid "Please Refresh Page"
|
3820 |
msgstr "Var vänlig ladda om sidan"
|
3821 |
|
@@ -5288,7 +5353,7 @@ msgid "eg. https://webnus.net"
|
|
5288 |
msgstr "http://webnus.biz"
|
5289 |
|
5290 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5291 |
-
#: app/skins/single.php:
|
5292 |
msgid "Other Organizers"
|
5293 |
msgstr ""
|
5294 |
|
@@ -5432,7 +5497,7 @@ msgstr ""
|
|
5432 |
msgid "day"
|
5433 |
msgstr "dag"
|
5434 |
|
5435 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5436 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5437 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5438 |
msgid "days"
|
@@ -5442,7 +5507,7 @@ msgstr "dagar"
|
|
5442 |
msgid "hour"
|
5443 |
msgstr "timme"
|
5444 |
|
5445 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5446 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5447 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5448 |
msgid "hours"
|
@@ -5452,7 +5517,7 @@ msgstr "timmar"
|
|
5452 |
msgid "minute"
|
5453 |
msgstr "minut"
|
5454 |
|
5455 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5456 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5457 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5458 |
msgid "minutes"
|
@@ -5462,7 +5527,7 @@ msgstr "minuter"
|
|
5462 |
msgid "second"
|
5463 |
msgstr "andra"
|
5464 |
|
5465 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5466 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5467 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5468 |
msgid "seconds"
|
@@ -5939,38 +6004,44 @@ msgstr ""
|
|
5939 |
msgid "Your booking is confirmed."
|
5940 |
msgstr "Din bokning är bekräftad."
|
5941 |
|
5942 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5943 |
msgid "A new booking is received."
|
5944 |
msgstr "En ny bokning är mottagen."
|
5945 |
|
5946 |
-
#: app/libraries/notifications.php:
|
5947 |
msgid "A new event is added."
|
5948 |
msgstr "Ett nytt evenemang läggs till."
|
5949 |
|
5950 |
-
#: app/libraries/notifications.php:
|
5951 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5952 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5953 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5954 |
msgid "All of the day"
|
5955 |
msgstr "Hela dagen"
|
5956 |
|
5957 |
-
#: app/libraries/notifications.php:
|
5958 |
msgid "to"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
-
#: app/libraries/notifications.php:
|
5962 |
msgid "+ Add to Google Calendar"
|
5963 |
msgstr "+ Lägg till i Google Kalender"
|
5964 |
|
5965 |
-
#: app/libraries/notifications.php:
|
5966 |
msgid "+ iCal export"
|
5967 |
msgstr "+ iCal-export"
|
5968 |
|
5969 |
-
#: app/libraries/notifications.php:
|
5970 |
msgid "Yes"
|
5971 |
msgstr ""
|
5972 |
|
5973 |
-
#: app/libraries/notifications.php:
|
5974 |
msgid "No"
|
5975 |
msgstr ""
|
5976 |
|
@@ -6183,15 +6254,15 @@ msgstr "Lista"
|
|
6183 |
msgid "All"
|
6184 |
msgstr ""
|
6185 |
|
6186 |
-
#: app/skins/monthly_view/calendar.php:
|
6187 |
-
#: app/skins/monthly_view/calendar.php:
|
6188 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6189 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6190 |
#, php-format
|
6191 |
msgid "Events for %s"
|
6192 |
msgstr "Evenemang under %s"
|
6193 |
|
6194 |
-
#: app/skins/monthly_view/calendar.php:
|
6195 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6196 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6197 |
msgid "No Events"
|
@@ -6201,19 +6272,19 @@ msgstr "Inga evenemang"
|
|
6201 |
msgid "Home"
|
6202 |
msgstr ""
|
6203 |
|
6204 |
-
#: app/skins/single.php:
|
6205 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6206 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6207 |
msgid "Phone"
|
6208 |
msgstr "Telefon"
|
6209 |
|
6210 |
-
#: app/skins/single.php:
|
6211 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6212 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6213 |
msgid "Website"
|
6214 |
msgstr "Webbplats"
|
6215 |
|
6216 |
-
#: app/skins/single.php:
|
6217 |
#, fuzzy
|
6218 |
#| msgid "No Search Options"
|
6219 |
msgid "Speakers:"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:05+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:05+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:348
|
34 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
66 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
67 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
68 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
267 |
msgid "Event"
|
268 |
msgstr "Evenemang"
|
269 |
|
270 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
271 |
msgid "Add Event"
|
272 |
msgstr "Lägg till evenemang"
|
273 |
|
315 |
msgstr "Kategori"
|
316 |
|
317 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
318 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
319 |
#: app/libraries/main.php:4375
|
320 |
msgid "Categories"
|
321 |
msgstr "Kategorier"
|
414 |
#: app/features/events.php:410 app/features/events.php:1682
|
415 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
417 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
428 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
429 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
430 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
431 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
433 |
#: app/skins/single/modern.php:48
|
552 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
553 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
554 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
555 |
+
#: app/features/mec/notifications.php:170
|
556 |
+
#: app/features/mec/notifications.php:228
|
557 |
+
#: app/features/mec/notifications.php:280
|
558 |
+
#: app/features/mec/notifications.php:339
|
559 |
+
#: app/features/mec/notifications.php:406
|
560 |
+
#: app/features/mec/notifications.php:469
|
561 |
+
#: app/features/mec/notifications.php:480
|
562 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
563 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
564 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
565 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
770 |
msgstr ""
|
771 |
|
772 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
773 |
+
#: app/skins/single.php:379
|
774 |
msgid "Hourly Schedule"
|
775 |
msgstr "Timme-schema"
|
776 |
|
842 |
|
843 |
#: app/features/events.php:913 app/features/events.php:933
|
844 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
845 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
846 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
847 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
848 |
msgid "Speakers"
|
1246 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1248 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1249 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1250 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1251 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1252 |
msgid "Location"
|
1418 |
msgstr "Ta bort bild"
|
1419 |
|
1420 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1421 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1422 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1423 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1424 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1425 |
msgid "Labels"
|
1426 |
msgstr "Etiketter"
|
1427 |
|
1428 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1429 |
#: app/features/mec/meta_boxes/filter.php:138
|
1430 |
msgid "Tags"
|
1431 |
msgstr "Taggar"
|
1461 |
|
1462 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1463 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1464 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1465 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1466 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1467 |
msgid "Import / Export"
|
1736 |
#: app/features/ix/export_g_calendar.php:72
|
1737 |
#: app/features/ix/export_g_calendar.php:147
|
1738 |
#: app/features/ix/export_g_calendar.php:164
|
1739 |
+
#: app/features/mec/notifications.php:207
|
1740 |
+
#: app/features/mec/notifications.php:260
|
1741 |
+
#: app/features/mec/notifications.php:313
|
1742 |
+
#: app/features/mec/notifications.php:513
|
1743 |
msgid "Add to Google Calendar"
|
1744 |
msgstr "Lägg till i Google Kalender"
|
1745 |
|
1746 |
#: app/features/ix/export_g_calendar.php:90
|
1747 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1748 |
msgid "Checking ..."
|
1749 |
msgstr "Kontrollerar..."
|
1750 |
|
1988 |
|
1989 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1990 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1991 |
+
#: app/features/mec/notifications.php:457
|
1992 |
msgid "Important Note"
|
1993 |
msgstr "Viktig information"
|
1994 |
|
2127 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2128 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2129 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2130 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2131 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2132 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2133 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2143 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2144 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2145 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2146 |
+
#: app/skins/monthly_view/calendar.php:86
|
2147 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2148 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2149 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2171 |
msgid "Event %s"
|
2172 |
msgstr "Evenemang %s"
|
2173 |
|
2174 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2175 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2176 |
#: app/libraries/main.php:4379
|
2177 |
msgid "Locations"
|
2291 |
"You can select extra locations in addition to main location if you like."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: app/features/mec.php:153
|
2295 |
msgid ""
|
2296 |
"Activation faild. Please check your purchase code or license type."
|
2297 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: app/features/mec.php:153
|
2301 |
msgid "Troubleshooting"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: app/features/mec.php:193
|
2305 |
msgid ""
|
2306 |
"Your options is not in JSON format. Please insert correct options in this "
|
2307 |
"field and try again."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: app/features/mec.php:200
|
2311 |
#, fuzzy
|
2312 |
#| msgid "Your booking cannot verify!"
|
2313 |
msgid "Your options field can not be empty!"
|
2314 |
msgstr "Din bokning kan inte verifieras!"
|
2315 |
|
2316 |
+
#: app/features/mec.php:206
|
2317 |
#, fuzzy
|
2318 |
#| msgid "Your booking successfully verified."
|
2319 |
msgid "Your options imported successfuly."
|
2320 |
msgstr "Din bokning är bekräftad."
|
2321 |
|
2322 |
+
#: app/features/mec.php:299
|
2323 |
#, fuzzy
|
2324 |
#| msgid "Support"
|
2325 |
msgid "MEC - Support"
|
2326 |
msgstr "Support"
|
2327 |
|
2328 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2329 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2330 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2331 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2332 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2333 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2334 |
msgid "Support"
|
2335 |
msgstr "Support"
|
2336 |
|
2337 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2338 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2339 |
#: app/libraries/main.php:4381
|
2340 |
msgid "Organizers"
|
2341 |
msgstr "Arrangörer"
|
2342 |
|
2343 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2344 |
#: app/features/mec/dashboard.php:194
|
2345 |
msgid "Shortcodes"
|
2346 |
msgstr "Shortcodes"
|
2347 |
|
2348 |
+
#: app/features/mec.php:329
|
2349 |
msgid "MEC - Settings"
|
2350 |
msgstr "MEC - Inställningar"
|
2351 |
|
2352 |
+
#: app/features/mec.php:330
|
2353 |
#, fuzzy
|
2354 |
#| msgid "MEC - Settings"
|
2355 |
msgid "MEC - Addons"
|
2356 |
msgstr "MEC - Inställningar"
|
2357 |
|
2358 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2359 |
msgid "Addons"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: app/features/mec.php:349
|
2363 |
msgid "Add Shortcode"
|
2364 |
msgstr "Lägg till shortcode"
|
2365 |
|
2366 |
+
#: app/features/mec.php:350
|
2367 |
msgid "Add New Shortcode"
|
2368 |
msgstr "Lägg till en ny shortcode"
|
2369 |
|
2370 |
+
#: app/features/mec.php:351
|
2371 |
msgid "No shortcodes found!"
|
2372 |
msgstr "Inga shortcodes hittades!"
|
2373 |
|
2374 |
+
#: app/features/mec.php:352
|
2375 |
msgid "All Shortcodes"
|
2376 |
msgstr "Alla shortcodes"
|
2377 |
|
2378 |
+
#: app/features/mec.php:353
|
2379 |
msgid "Edit shortcodes"
|
2380 |
msgstr "Redigera shortcodes"
|
2381 |
|
2382 |
+
#: app/features/mec.php:354
|
2383 |
msgid "No shortcodes found in Trash!"
|
2384 |
msgstr "Inga raderade shortcodes hittades!"
|
2385 |
|
2386 |
+
#: app/features/mec.php:402
|
2387 |
msgid "Display Options"
|
2388 |
msgstr "Visningsalternativ"
|
2389 |
|
2390 |
+
#: app/features/mec.php:403
|
2391 |
msgid "Filter Options"
|
2392 |
msgstr "Filteralternativ"
|
2393 |
|
2394 |
+
#: app/features/mec.php:405
|
2395 |
msgid "Search Form"
|
2396 |
msgstr "Sökformulär"
|
2397 |
|
2398 |
+
#: app/features/mec.php:755
|
2399 |
msgid "Display content's images as Popup"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: app/features/mec.php:768
|
2403 |
msgid "Single Event Display Method"
|
2404 |
msgstr "Enstaka evenemangs visnings-format"
|
2405 |
|
2406 |
+
#: app/features/mec.php:773
|
2407 |
msgid "Separate Window"
|
2408 |
msgstr "Separat fönster"
|
2409 |
|
2410 |
+
#: app/features/mec.php:774
|
2411 |
msgid "Modal 1"
|
2412 |
msgstr "Stil 1"
|
2413 |
|
2568 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2569 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2570 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2571 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2572 |
+
#: app/features/mec/notifications.php:581
|
2573 |
+
#: app/features/mec/notifications.php:680
|
2574 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2575 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2576 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2577 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2586 |
msgstr "Spara ändringar"
|
2587 |
|
2588 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2589 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2590 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2591 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2592 |
#: app/features/mec/support.php:52
|
2594 |
msgstr "Formgivningsalternativ"
|
2595 |
|
2596 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2597 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2598 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2599 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2600 |
#: app/features/mec/support.php:59
|
2603 |
|
2604 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2605 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2606 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2607 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2608 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2609 |
msgid "Messages"
|
2610 |
msgstr "Meddelanden"
|
2611 |
|
2612 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2613 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2614 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2615 |
#: app/features/mec/styling.php:375
|
2616 |
msgid "Saved"
|
2617 |
msgstr "Sparad"
|
2618 |
|
2619 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2620 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2621 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2622 |
#: app/features/mec/styling.php:376
|
2623 |
msgid "Settings Saved!"
|
3457 |
msgid "No Search Options"
|
3458 |
msgstr "Ingen sökalternativ"
|
3459 |
|
3460 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3461 |
msgid "Booking Notification"
|
3462 |
msgstr "Bokningsmeddelande"
|
3463 |
|
3464 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3465 |
msgid "Booking Verification"
|
3466 |
msgstr "Boknings-verifikation"
|
3467 |
|
3468 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3469 |
#: app/features/mec/settings.php:1409
|
3470 |
msgid "Booking Confirmation"
|
3471 |
msgstr "Bokningsbekräftelse"
|
3472 |
|
3473 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3474 |
+
#, fuzzy
|
3475 |
+
#| msgid "Booking cancellation link."
|
3476 |
+
msgid "Booking Cancellation"
|
3477 |
+
msgstr "Avbokningslänk"
|
3478 |
+
|
3479 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3480 |
msgid "Admin Notification"
|
3481 |
msgstr "Administratörsmeddelande"
|
3482 |
|
3483 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3484 |
+
#: app/libraries/notifications.php:354
|
3485 |
msgid "Booking Reminder"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3489 |
#: app/features/mec/support-page.php:80
|
3490 |
msgid "New Event"
|
3491 |
msgstr "Nytt evenemang"
|
3492 |
|
3493 |
+
#: app/features/mec/notifications.php:155
|
3494 |
msgid "Enable booking notification"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: app/features/mec/notifications.php:159
|
3498 |
msgid "It sends to attendee after booking for notifying him/her."
|
3499 |
msgstr "Skickas till deltagare efter bokning för att meddela honom/henne."
|
3500 |
|
3501 |
+
#: app/features/mec/notifications.php:161
|
3502 |
+
#: app/features/mec/notifications.php:219
|
3503 |
+
#: app/features/mec/notifications.php:271
|
3504 |
+
#: app/features/mec/notifications.php:330
|
3505 |
+
#: app/features/mec/notifications.php:397
|
3506 |
+
#: app/features/mec/notifications.php:460
|
3507 |
+
#: app/features/mec/notifications.php:532
|
3508 |
msgid "Email Subject"
|
3509 |
msgstr "E-postämne"
|
3510 |
|
3511 |
+
#: app/features/mec/notifications.php:165
|
3512 |
+
#: app/features/mec/notifications.php:169
|
3513 |
+
#: app/features/mec/notifications.php:223
|
3514 |
+
#: app/features/mec/notifications.php:227
|
3515 |
+
#: app/features/mec/notifications.php:275
|
3516 |
+
#: app/features/mec/notifications.php:279
|
3517 |
+
#: app/features/mec/notifications.php:334
|
3518 |
+
#: app/features/mec/notifications.php:338
|
3519 |
+
#: app/features/mec/notifications.php:401
|
3520 |
+
#: app/features/mec/notifications.php:405
|
3521 |
+
#: app/features/mec/notifications.php:464
|
3522 |
+
#: app/features/mec/notifications.php:468
|
3523 |
+
#: app/features/mec/notifications.php:479
|
3524 |
+
#: app/features/mec/notifications.php:536
|
3525 |
+
#: app/features/mec/notifications.php:540
|
3526 |
msgid "Custom Recipients"
|
3527 |
msgstr "Anpassade mottagare"
|
3528 |
|
3529 |
+
#: app/features/mec/notifications.php:170
|
3530 |
+
#: app/features/mec/notifications.php:228
|
3531 |
+
#: app/features/mec/notifications.php:280
|
3532 |
+
#: app/features/mec/notifications.php:339
|
3533 |
+
#: app/features/mec/notifications.php:406
|
3534 |
+
#: app/features/mec/notifications.php:469
|
3535 |
+
#: app/features/mec/notifications.php:480
|
3536 |
+
#: app/features/mec/notifications.php:541
|
3537 |
msgid "Insert comma separated emails for multiple recipients."
|
3538 |
msgstr "Fyll i komma-separerade e-postadresser för flera mottagare."
|
3539 |
|
3540 |
+
#: app/features/mec/notifications.php:177
|
3541 |
+
#: app/features/mec/notifications.php:350
|
3542 |
+
#: app/features/mec/notifications.php:413
|
3543 |
msgid "Send the email to event organizer"
|
3544 |
msgstr "Skicka e-post till arrangören"
|
3545 |
|
3546 |
+
#: app/features/mec/notifications.php:180
|
3547 |
+
#: app/features/mec/notifications.php:234
|
3548 |
+
#: app/features/mec/notifications.php:286
|
3549 |
+
#: app/features/mec/notifications.php:357
|
3550 |
+
#: app/features/mec/notifications.php:416
|
3551 |
+
#: app/features/mec/notifications.php:486
|
3552 |
+
#: app/features/mec/notifications.php:547
|
3553 |
msgid "Email Content"
|
3554 |
msgstr "E-postinnehåll"
|
3555 |
|
3556 |
+
#: app/features/mec/notifications.php:183
|
3557 |
+
#: app/features/mec/notifications.php:237
|
3558 |
+
#: app/features/mec/notifications.php:289
|
3559 |
+
#: app/features/mec/notifications.php:360
|
3560 |
+
#: app/features/mec/notifications.php:419
|
3561 |
+
#: app/features/mec/notifications.php:489
|
3562 |
+
#: app/features/mec/notifications.php:550
|
3563 |
msgid "You can use following placeholders"
|
3564 |
msgstr "Du kan använda följande platshållare"
|
3565 |
|
3566 |
+
#: app/features/mec/notifications.php:185
|
3567 |
+
#: app/features/mec/notifications.php:239
|
3568 |
+
#: app/features/mec/notifications.php:291
|
3569 |
+
#: app/features/mec/notifications.php:362
|
3570 |
+
#: app/features/mec/notifications.php:421
|
3571 |
+
#: app/features/mec/notifications.php:491
|
3572 |
msgid "First name of attendee"
|
3573 |
msgstr "Deltagares förnamn"
|
3574 |
|
3575 |
+
#: app/features/mec/notifications.php:186
|
3576 |
+
#: app/features/mec/notifications.php:240
|
3577 |
+
#: app/features/mec/notifications.php:292
|
3578 |
+
#: app/features/mec/notifications.php:363
|
3579 |
+
#: app/features/mec/notifications.php:422
|
3580 |
+
#: app/features/mec/notifications.php:492
|
3581 |
msgid "Last name of attendee"
|
3582 |
msgstr "Deltagares efternamn"
|
3583 |
|
3584 |
+
#: app/features/mec/notifications.php:187
|
3585 |
+
#: app/features/mec/notifications.php:241
|
3586 |
+
#: app/features/mec/notifications.php:293
|
3587 |
+
#: app/features/mec/notifications.php:364
|
3588 |
+
#: app/features/mec/notifications.php:423
|
3589 |
+
#: app/features/mec/notifications.php:493
|
3590 |
msgid "Email of attendee"
|
3591 |
msgstr "Deltagares e-posadress"
|
3592 |
|
3593 |
+
#: app/features/mec/notifications.php:188
|
3594 |
+
#: app/features/mec/notifications.php:242
|
3595 |
+
#: app/features/mec/notifications.php:294
|
3596 |
+
#: app/features/mec/notifications.php:365
|
3597 |
+
#: app/features/mec/notifications.php:424
|
3598 |
+
#: app/features/mec/notifications.php:494
|
3599 |
msgid "Booked date of event"
|
3600 |
msgstr "Bokat datum för evenemanget"
|
3601 |
|
3602 |
+
#: app/features/mec/notifications.php:189
|
3603 |
+
#: app/features/mec/notifications.php:243
|
3604 |
+
#: app/features/mec/notifications.php:295
|
3605 |
+
#: app/features/mec/notifications.php:366
|
3606 |
+
#: app/features/mec/notifications.php:425
|
3607 |
+
#: app/features/mec/notifications.php:495
|
3608 |
#, fuzzy
|
3609 |
#| msgid "Booked date of event"
|
3610 |
msgid "Booked time of event"
|
3611 |
msgstr "Bokat datum för evenemanget"
|
3612 |
|
3613 |
+
#: app/features/mec/notifications.php:190
|
3614 |
+
#: app/features/mec/notifications.php:244
|
3615 |
+
#: app/features/mec/notifications.php:296
|
3616 |
+
#: app/features/mec/notifications.php:367
|
3617 |
+
#: app/features/mec/notifications.php:426
|
3618 |
+
#: app/features/mec/notifications.php:496
|
3619 |
msgid "Booking Price"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: app/features/mec/notifications.php:191
|
3623 |
+
#: app/features/mec/notifications.php:245
|
3624 |
+
#: app/features/mec/notifications.php:297
|
3625 |
+
#: app/features/mec/notifications.php:368
|
3626 |
+
#: app/features/mec/notifications.php:427
|
3627 |
+
#: app/features/mec/notifications.php:497
|
3628 |
+
#: app/features/mec/notifications.php:556
|
3629 |
msgid "Your website title"
|
3630 |
msgstr "Webbplats-titel"
|
3631 |
|
3632 |
+
#: app/features/mec/notifications.php:192
|
3633 |
+
#: app/features/mec/notifications.php:246
|
3634 |
+
#: app/features/mec/notifications.php:298
|
3635 |
+
#: app/features/mec/notifications.php:369
|
3636 |
+
#: app/features/mec/notifications.php:428
|
3637 |
+
#: app/features/mec/notifications.php:498
|
3638 |
+
#: app/features/mec/notifications.php:557
|
3639 |
msgid "Your website URL"
|
3640 |
msgstr "Webbplats-URL"
|
3641 |
|
3642 |
+
#: app/features/mec/notifications.php:193
|
3643 |
+
#: app/features/mec/notifications.php:247
|
3644 |
+
#: app/features/mec/notifications.php:299
|
3645 |
+
#: app/features/mec/notifications.php:370
|
3646 |
+
#: app/features/mec/notifications.php:429
|
3647 |
+
#: app/features/mec/notifications.php:499
|
3648 |
+
#: app/features/mec/notifications.php:558
|
3649 |
msgid "Your website description"
|
3650 |
msgstr "Webbplats-beskrivning"
|
3651 |
|
3652 |
+
#: app/features/mec/notifications.php:194
|
3653 |
+
#: app/features/mec/notifications.php:248
|
3654 |
+
#: app/features/mec/notifications.php:300
|
3655 |
+
#: app/features/mec/notifications.php:371
|
3656 |
+
#: app/features/mec/notifications.php:430
|
3657 |
+
#: app/features/mec/notifications.php:500
|
3658 |
msgid "Event title"
|
3659 |
msgstr "Evenemangs-titel"
|
3660 |
|
3661 |
+
#: app/features/mec/notifications.php:195
|
3662 |
+
#: app/features/mec/notifications.php:249
|
3663 |
+
#: app/features/mec/notifications.php:301
|
3664 |
+
#: app/features/mec/notifications.php:372
|
3665 |
+
#: app/features/mec/notifications.php:431
|
3666 |
+
#: app/features/mec/notifications.php:501
|
3667 |
#, fuzzy
|
3668 |
#| msgid "Event Link"
|
3669 |
msgid "Event link"
|
3670 |
msgstr "Evenemangs-länk"
|
3671 |
|
3672 |
+
#: app/features/mec/notifications.php:196
|
3673 |
+
#: app/features/mec/notifications.php:250
|
3674 |
+
#: app/features/mec/notifications.php:302
|
3675 |
+
#: app/features/mec/notifications.php:373
|
3676 |
+
#: app/features/mec/notifications.php:432
|
3677 |
+
#: app/features/mec/notifications.php:502
|
3678 |
msgid "Organizer name of booked event"
|
3679 |
msgstr "Arrangörens namn"
|
3680 |
|
3681 |
+
#: app/features/mec/notifications.php:197
|
3682 |
+
#: app/features/mec/notifications.php:251
|
3683 |
+
#: app/features/mec/notifications.php:303
|
3684 |
+
#: app/features/mec/notifications.php:374
|
3685 |
+
#: app/features/mec/notifications.php:433
|
3686 |
+
#: app/features/mec/notifications.php:503
|
3687 |
msgid "Organizer tel of booked event"
|
3688 |
msgstr "Arrangörens telefon"
|
3689 |
|
3690 |
+
#: app/features/mec/notifications.php:198
|
3691 |
+
#: app/features/mec/notifications.php:252
|
3692 |
+
#: app/features/mec/notifications.php:304
|
3693 |
+
#: app/features/mec/notifications.php:375
|
3694 |
+
#: app/features/mec/notifications.php:434
|
3695 |
+
#: app/features/mec/notifications.php:504
|
3696 |
msgid "Organizer email of booked event"
|
3697 |
msgstr "Arrangörens e-postadress"
|
3698 |
|
3699 |
+
#: app/features/mec/notifications.php:199
|
3700 |
+
#: app/features/mec/notifications.php:253
|
3701 |
+
#: app/features/mec/notifications.php:305
|
3702 |
+
#: app/features/mec/notifications.php:376
|
3703 |
+
#: app/features/mec/notifications.php:435
|
3704 |
+
#: app/features/mec/notifications.php:505
|
3705 |
msgid "Location name of booked event"
|
3706 |
msgstr "Platsnamn för bokat evenemang"
|
3707 |
|
3708 |
+
#: app/features/mec/notifications.php:200
|
3709 |
+
#: app/features/mec/notifications.php:254
|
3710 |
+
#: app/features/mec/notifications.php:306
|
3711 |
+
#: app/features/mec/notifications.php:377
|
3712 |
+
#: app/features/mec/notifications.php:436
|
3713 |
+
#: app/features/mec/notifications.php:506
|
3714 |
msgid "Location address of booked event"
|
3715 |
msgstr "Platsadress för bokat evenemang"
|
3716 |
|
3717 |
+
#: app/features/mec/notifications.php:201
|
3718 |
+
#: app/features/mec/notifications.php:379
|
3719 |
+
#: app/features/mec/notifications.php:438
|
3720 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3721 |
msgstr ""
|
3722 |
"Full deltagarinformation såsom bokningsformulär-data, namn, e-post etc."
|
3723 |
|
3724 |
+
#: app/features/mec/notifications.php:202
|
3725 |
+
#: app/features/mec/notifications.php:308
|
3726 |
+
#: app/features/mec/notifications.php:508
|
3727 |
msgid "Invoice Link"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: app/features/mec/notifications.php:203
|
3731 |
+
#: app/features/mec/notifications.php:256
|
3732 |
+
#: app/features/mec/notifications.php:309
|
3733 |
+
#: app/features/mec/notifications.php:380
|
3734 |
+
#: app/features/mec/notifications.php:439
|
3735 |
+
#: app/features/mec/notifications.php:509
|
3736 |
msgid "Total Attendees"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: app/features/mec/notifications.php:204
|
3740 |
+
#: app/features/mec/notifications.php:257
|
3741 |
+
#: app/features/mec/notifications.php:310
|
3742 |
+
#: app/features/mec/notifications.php:510
|
3743 |
#, fuzzy
|
3744 |
#| msgid "Ticket Name"
|
3745 |
msgid "Ticket name"
|
3746 |
msgstr "Biljettnamn"
|
3747 |
|
3748 |
+
#: app/features/mec/notifications.php:205
|
3749 |
+
#: app/features/mec/notifications.php:258
|
3750 |
+
#: app/features/mec/notifications.php:311
|
3751 |
+
#: app/features/mec/notifications.php:511
|
3752 |
#, fuzzy
|
3753 |
#| msgid "Ticket Name"
|
3754 |
msgid "Ticket time"
|
3755 |
msgstr "Biljettnamn"
|
3756 |
|
3757 |
+
#: app/features/mec/notifications.php:206
|
3758 |
+
#: app/features/mec/notifications.php:259
|
3759 |
+
#: app/features/mec/notifications.php:312
|
3760 |
+
#: app/features/mec/notifications.php:512
|
3761 |
msgid "Download ICS file"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: app/features/mec/notifications.php:217
|
3765 |
msgid "It sends to attendee email for verifying their booking/email."
|
3766 |
msgstr "Skickas till deltagares e-post för att verifiera bokning/e-post."
|
3767 |
|
3768 |
+
#: app/features/mec/notifications.php:255
|
3769 |
msgid "Email/Booking verification link."
|
3770 |
msgstr "E-post/Bokning verifikationslänk"
|
3771 |
|
3772 |
+
#: app/features/mec/notifications.php:269
|
3773 |
msgid "It sends to attendee after confirming the booking by admin."
|
3774 |
msgstr "Skickas till deltagare efter att bokningen bekräftats av admin."
|
3775 |
|
3776 |
+
#: app/features/mec/notifications.php:307
|
3777 |
+
#: app/features/mec/notifications.php:507
|
3778 |
msgid "Booking cancellation link."
|
3779 |
msgstr "Avbokningslänk"
|
3780 |
|
3781 |
+
#: app/features/mec/notifications.php:324
|
3782 |
+
#, fuzzy
|
3783 |
+
#| msgid "Enable new event notification"
|
3784 |
+
msgid "Enable cancellation notification"
|
3785 |
+
msgstr "Aktivera nytt evenemangs-meddelande"
|
3786 |
+
|
3787 |
+
#: app/features/mec/notifications.php:328
|
3788 |
+
#, fuzzy
|
3789 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3790 |
+
msgid ""
|
3791 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3792 |
+
"them."
|
3793 |
+
msgstr "Skickas till deltagare efter bokning för att meddela honom/henne."
|
3794 |
|
3795 |
+
#: app/features/mec/notifications.php:346
|
3796 |
+
#, fuzzy
|
3797 |
+
#| msgid "Send the email to event organizer"
|
3798 |
+
msgid "Send the email to admin"
|
3799 |
+
msgstr "Skicka e-post till arrangören"
|
3800 |
+
|
3801 |
+
#: app/features/mec/notifications.php:354
|
3802 |
+
#, fuzzy
|
3803 |
+
#| msgid "Send the email to event organizer"
|
3804 |
+
msgid "Send the email to booking user"
|
3805 |
+
msgstr "Skicka e-post till arrangören"
|
3806 |
+
|
3807 |
+
#: app/features/mec/notifications.php:378
|
3808 |
+
#: app/features/mec/notifications.php:437
|
3809 |
msgid "Admin booking management link."
|
3810 |
msgstr "Admin hanterings-länk för bokning."
|
3811 |
|
3812 |
+
#: app/features/mec/notifications.php:391
|
3813 |
+
#, fuzzy
|
3814 |
+
#| msgid "Enable new event notification"
|
3815 |
+
msgid "Enable admin notification"
|
3816 |
+
msgstr "Aktivera nytt evenemangs-meddelande"
|
3817 |
+
|
3818 |
+
#: app/features/mec/notifications.php:395
|
3819 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3820 |
+
msgstr "Skickas till admin för att meddela att en ny bokning inkommit."
|
3821 |
+
|
3822 |
+
#: app/features/mec/notifications.php:451
|
3823 |
msgid "Enable booking reminder notification"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: app/features/mec/notifications.php:457
|
3827 |
#, php-format
|
3828 |
msgid ""
|
3829 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3831 |
"send the reminders multiple times."
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: app/features/mec/notifications.php:457
|
3835 |
msgid "only once per day"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: app/features/mec/notifications.php:475
|
3839 |
msgid "Days"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: app/features/mec/notifications.php:526
|
3843 |
msgid "Enable new event notification"
|
3844 |
msgstr "Aktivera nytt evenemangs-meddelande"
|
3845 |
|
3846 |
+
#: app/features/mec/notifications.php:530
|
3847 |
msgid ""
|
3848 |
"It sends after adding a new event from frontend event submission or from "
|
3849 |
"website backend."
|
3851 |
"Skickas efter att ett nytt evenemang lagts till från \"Frontend Event "
|
3852 |
"Submission\" eller från webbsidans \"backend\"."
|
3853 |
|
3854 |
+
#: app/features/mec/notifications.php:552
|
3855 |
msgid "Title of event"
|
3856 |
msgstr "Titel för evenemang"
|
3857 |
|
3858 |
+
#: app/features/mec/notifications.php:553
|
3859 |
#, fuzzy
|
3860 |
#| msgid "Title of event"
|
3861 |
msgid "Link of event"
|
3862 |
msgstr "Titel för evenemang"
|
3863 |
|
3864 |
+
#: app/features/mec/notifications.php:554
|
3865 |
msgid "Status of event"
|
3866 |
msgstr "Status för evenemang"
|
3867 |
|
3868 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3869 |
#: app/features/mec/settings.php:1253
|
3870 |
msgid "Event Note"
|
3871 |
msgstr "Evenemangs-not"
|
3872 |
|
3873 |
+
#: app/features/mec/notifications.php:559
|
3874 |
msgid "Admin events management link."
|
3875 |
msgstr "Admin hanteringslänk för evenemang."
|
3876 |
|
3877 |
+
#: app/features/mec/notifications.php:661
|
3878 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3879 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3880 |
msgid "Verified"
|
3881 |
msgstr "Verifierad"
|
3882 |
|
3883 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3884 |
msgid "Please Refresh Page"
|
3885 |
msgstr "Var vänlig ladda om sidan"
|
3886 |
|
5353 |
msgstr "http://webnus.biz"
|
5354 |
|
5355 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5356 |
+
#: app/skins/single.php:295
|
5357 |
msgid "Other Organizers"
|
5358 |
msgstr ""
|
5359 |
|
5497 |
msgid "day"
|
5498 |
msgstr "dag"
|
5499 |
|
5500 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5501 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5502 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5503 |
msgid "days"
|
5507 |
msgid "hour"
|
5508 |
msgstr "timme"
|
5509 |
|
5510 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5511 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5512 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5513 |
msgid "hours"
|
5517 |
msgid "minute"
|
5518 |
msgstr "minut"
|
5519 |
|
5520 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5521 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5522 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5523 |
msgid "minutes"
|
5527 |
msgid "second"
|
5528 |
msgstr "andra"
|
5529 |
|
5530 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5531 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5532 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5533 |
msgid "seconds"
|
6004 |
msgid "Your booking is confirmed."
|
6005 |
msgstr "Din bokning är bekräftad."
|
6006 |
|
6007 |
+
#: app/libraries/notifications.php:252
|
6008 |
+
#, fuzzy
|
6009 |
+
#| msgid "Your booking cannot be canceled."
|
6010 |
+
msgid "booking canceled."
|
6011 |
+
msgstr "Din bokning kan inte avbrytas."
|
6012 |
+
|
6013 |
+
#: app/libraries/notifications.php:296
|
6014 |
msgid "A new booking is received."
|
6015 |
msgstr "En ny bokning är mottagen."
|
6016 |
|
6017 |
+
#: app/libraries/notifications.php:425
|
6018 |
msgid "A new event is added."
|
6019 |
msgstr "Ett nytt evenemang läggs till."
|
6020 |
|
6021 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
6022 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
6023 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
6024 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
6025 |
msgid "All of the day"
|
6026 |
msgstr "Hela dagen"
|
6027 |
|
6028 |
+
#: app/libraries/notifications.php:605
|
6029 |
msgid "to"
|
6030 |
msgstr ""
|
6031 |
|
6032 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
6033 |
msgid "+ Add to Google Calendar"
|
6034 |
msgstr "+ Lägg till i Google Kalender"
|
6035 |
|
6036 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
6037 |
msgid "+ iCal export"
|
6038 |
msgstr "+ iCal-export"
|
6039 |
|
6040 |
+
#: app/libraries/notifications.php:683
|
6041 |
msgid "Yes"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
+
#: app/libraries/notifications.php:683
|
6045 |
msgid "No"
|
6046 |
msgstr ""
|
6047 |
|
6254 |
msgid "All"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: app/skins/monthly_view/calendar.php:68
|
6258 |
+
#: app/skins/monthly_view/calendar.php:154
|
6259 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6260 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6261 |
#, php-format
|
6262 |
msgid "Events for %s"
|
6263 |
msgstr "Evenemang under %s"
|
6264 |
|
6265 |
+
#: app/skins/monthly_view/calendar.php:156
|
6266 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6267 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6268 |
msgid "No Events"
|
6272 |
msgid "Home"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6276 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6277 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6278 |
msgid "Phone"
|
6279 |
msgstr "Telefon"
|
6280 |
|
6281 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6282 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6283 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6284 |
msgid "Website"
|
6285 |
msgstr "Webbplats"
|
6286 |
|
6287 |
+
#: app/skins/single.php:393
|
6288 |
#, fuzzy
|
6289 |
#| msgid "No Search Options"
|
6290 |
msgid "Speakers:"
|
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-06-
|
5 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
65 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
66 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -272,7 +272,7 @@ msgstr ""
|
|
272 |
"#-#-#-#-# 3extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
273 |
"#-#-#-#-# 4extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
274 |
|
275 |
-
#: app/features/events.php:136 app/features/mec.php:
|
276 |
msgid "Add Event"
|
277 |
msgstr "Etkinlik Ekle"
|
278 |
|
@@ -320,7 +320,7 @@ msgid "Category"
|
|
320 |
msgstr "Kategori"
|
321 |
|
322 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
323 |
-
#: app/features/mec.php:
|
324 |
#: app/libraries/main.php:4375
|
325 |
msgid "Categories"
|
326 |
msgstr "Kategoriler"
|
@@ -419,7 +419,7 @@ msgstr ""
|
|
419 |
#: app/features/events.php:410 app/features/events.php:1682
|
420 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
421 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +431,8 @@ msgstr "İsim"
|
|
431 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
432 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
433 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
434 |
-
#: app/libraries/notifications.php:
|
435 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
436 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
437 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
438 |
#: app/skins/single/modern.php:48
|
@@ -557,13 +557,14 @@ msgstr ""
|
|
557 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
558 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
559 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
560 |
-
#: app/features/mec/notifications.php:
|
561 |
-
#: app/features/mec/notifications.php:
|
562 |
-
#: app/features/mec/notifications.php:
|
563 |
-
#: app/features/mec/notifications.php:
|
564 |
-
#: app/features/mec/notifications.php:
|
565 |
-
#: app/features/mec/notifications.php:
|
566 |
-
#: app/features/mec/notifications.php:
|
|
|
567 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
568 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
569 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -773,7 +774,7 @@ msgid "Day 1"
|
|
773 |
msgstr ""
|
774 |
|
775 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
776 |
-
#: app/skins/single.php:
|
777 |
msgid "Hourly Schedule"
|
778 |
msgstr "Saatlik Program"
|
779 |
|
@@ -845,7 +846,7 @@ msgstr "Açıklama"
|
|
845 |
|
846 |
#: app/features/events.php:913 app/features/events.php:933
|
847 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
848 |
-
#: app/features/mec.php:
|
849 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
850 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
851 |
msgid "Speakers"
|
@@ -1245,7 +1246,7 @@ msgstr ""
|
|
1245 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1246 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1247 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1248 |
-
#: app/skins/single.php:
|
1249 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1250 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1251 |
msgid "Location"
|
@@ -1415,14 +1416,14 @@ msgid "Remove Image"
|
|
1415 |
msgstr "Resmi Kaldır"
|
1416 |
|
1417 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1418 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1419 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1420 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1421 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1422 |
msgid "Labels"
|
1423 |
msgstr "Etiketler"
|
1424 |
|
1425 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1426 |
#: app/features/mec/meta_boxes/filter.php:138
|
1427 |
msgid "Tags"
|
1428 |
msgstr "Etiketler"
|
@@ -1458,7 +1459,7 @@ msgstr ""
|
|
1458 |
|
1459 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1460 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1461 |
-
#: app/features/mec/notifications.php:
|
1462 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1463 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1464 |
msgid "Import / Export"
|
@@ -1719,15 +1720,15 @@ msgstr ""
|
|
1719 |
#: app/features/ix/export_g_calendar.php:72
|
1720 |
#: app/features/ix/export_g_calendar.php:147
|
1721 |
#: app/features/ix/export_g_calendar.php:164
|
1722 |
-
#: app/features/mec/notifications.php:
|
1723 |
-
#: app/features/mec/notifications.php:
|
1724 |
-
#: app/features/mec/notifications.php:
|
1725 |
-
#: app/features/mec/notifications.php:
|
1726 |
msgid "Add to Google Calendar"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
#: app/features/ix/export_g_calendar.php:90
|
1730 |
-
#: app/features/mec/notifications.php:
|
1731 |
msgid "Checking ..."
|
1732 |
msgstr ""
|
1733 |
|
@@ -1957,7 +1958,7 @@ msgstr ""
|
|
1957 |
|
1958 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1959 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1960 |
-
#: app/features/mec/notifications.php:
|
1961 |
msgid "Important Note"
|
1962 |
msgstr ""
|
1963 |
|
@@ -2084,7 +2085,7 @@ msgstr ""
|
|
2084 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2085 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2086 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2087 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2088 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2089 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2090 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2100,7 +2101,7 @@ msgstr "Resim Seç"
|
|
2100 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2101 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2102 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2103 |
-
#: app/skins/monthly_view/calendar.php:
|
2104 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2105 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2106 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2128,7 +2129,7 @@ msgstr "Url Kısaltma"
|
|
2128 |
msgid "Event %s"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2132 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2133 |
#: app/libraries/main.php:4379
|
2134 |
msgid "Locations"
|
@@ -2249,123 +2250,123 @@ msgid ""
|
|
2249 |
"You can select extra locations in addition to main location if you like."
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: app/features/mec.php:
|
2253 |
msgid ""
|
2254 |
"Activation faild. Please check your purchase code or license type."
|
2255 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: app/features/mec.php:
|
2259 |
msgid "Troubleshooting"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: app/features/mec.php:
|
2263 |
msgid ""
|
2264 |
"Your options is not in JSON format. Please insert correct options in this "
|
2265 |
"field and try again."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: app/features/mec.php:
|
2269 |
#, fuzzy
|
2270 |
#| msgid "Your booking cannot verify!"
|
2271 |
msgid "Your options field can not be empty!"
|
2272 |
msgstr "Rezervasyonunuz doğrulayamıyor!"
|
2273 |
|
2274 |
-
#: app/features/mec.php:
|
2275 |
#, fuzzy
|
2276 |
#| msgid "Your booking successfully verified."
|
2277 |
msgid "Your options imported successfuly."
|
2278 |
msgstr "Rezervasyonunuz başarıyla doğrulandı."
|
2279 |
|
2280 |
-
#: app/features/mec.php:
|
2281 |
#, fuzzy
|
2282 |
#| msgid "Support"
|
2283 |
msgid "MEC - Support"
|
2284 |
msgstr "Destek"
|
2285 |
|
2286 |
-
#: app/features/mec.php:
|
2287 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2288 |
-
#: app/features/mec/notifications.php:
|
2289 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2290 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2291 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2292 |
msgid "Support"
|
2293 |
msgstr "Destek"
|
2294 |
|
2295 |
-
#: app/features/mec.php:
|
2296 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2297 |
#: app/libraries/main.php:4381
|
2298 |
msgid "Organizers"
|
2299 |
msgstr "Organizatörler"
|
2300 |
|
2301 |
-
#: app/features/mec.php:
|
2302 |
#: app/features/mec/dashboard.php:194
|
2303 |
msgid "Shortcodes"
|
2304 |
msgstr "Kısa Kodlar"
|
2305 |
|
2306 |
-
#: app/features/mec.php:
|
2307 |
msgid "MEC - Settings"
|
2308 |
msgstr "MEC - Ayarları"
|
2309 |
|
2310 |
-
#: app/features/mec.php:
|
2311 |
#, fuzzy
|
2312 |
#| msgid "MEC - Settings"
|
2313 |
msgid "MEC - Addons"
|
2314 |
msgstr "MEC - Ayarları"
|
2315 |
|
2316 |
-
#: app/features/mec.php:
|
2317 |
msgid "Addons"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: app/features/mec.php:
|
2321 |
msgid "Add Shortcode"
|
2322 |
msgstr "Kısa Kod Ekle"
|
2323 |
|
2324 |
-
#: app/features/mec.php:
|
2325 |
msgid "Add New Shortcode"
|
2326 |
msgstr "Yeni Kısa Kod Ekle"
|
2327 |
|
2328 |
-
#: app/features/mec.php:
|
2329 |
msgid "No shortcodes found!"
|
2330 |
msgstr "Hiçbir kısa kod bulunamadı!"
|
2331 |
|
2332 |
-
#: app/features/mec.php:
|
2333 |
msgid "All Shortcodes"
|
2334 |
msgstr "Tüm Kısa Kodlar"
|
2335 |
|
2336 |
-
#: app/features/mec.php:
|
2337 |
msgid "Edit shortcodes"
|
2338 |
msgstr "Kısa kodları düzenle"
|
2339 |
|
2340 |
-
#: app/features/mec.php:
|
2341 |
msgid "No shortcodes found in Trash!"
|
2342 |
msgstr "Çöp Kutusunda kısa kod bulunamadı!"
|
2343 |
|
2344 |
-
#: app/features/mec.php:
|
2345 |
msgid "Display Options"
|
2346 |
msgstr "Görüntüleme Seçenekleri"
|
2347 |
|
2348 |
-
#: app/features/mec.php:
|
2349 |
msgid "Filter Options"
|
2350 |
msgstr "Filtre Seçenekleri"
|
2351 |
|
2352 |
-
#: app/features/mec.php:
|
2353 |
msgid "Search Form"
|
2354 |
msgstr "Arama Formu"
|
2355 |
|
2356 |
-
#: app/features/mec.php:
|
2357 |
msgid "Display content's images as Popup"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: app/features/mec.php:
|
2361 |
msgid "Single Event Display Method"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: app/features/mec.php:
|
2365 |
msgid "Separate Window"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: app/features/mec.php:
|
2369 |
msgid "Modal 1"
|
2370 |
msgstr ""
|
2371 |
|
@@ -2526,10 +2527,10 @@ msgstr "Günlüğü Değiştir"
|
|
2526 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2527 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2528 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2529 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2530 |
-
#: app/features/mec/notifications.php:
|
2531 |
-
#: app/features/mec/notifications.php:
|
2532 |
-
#: app/features/mec/notifications.php:
|
2533 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2534 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2535 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2544,7 +2545,7 @@ msgid "Save Changes"
|
|
2544 |
msgstr "Değişiklikleri Kaydet"
|
2545 |
|
2546 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2547 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2548 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2549 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2550 |
#: app/features/mec/support.php:52
|
@@ -2552,7 +2553,7 @@ msgid "Styling Options"
|
|
2552 |
msgstr "Şekillendirme Seçenekleri"
|
2553 |
|
2554 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2555 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2556 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2557 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2558 |
#: app/features/mec/support.php:59
|
@@ -2561,21 +2562,21 @@ msgstr "Özel CSS"
|
|
2561 |
|
2562 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2563 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2564 |
-
#: app/features/mec/notifications.php:
|
2565 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2566 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2567 |
msgid "Messages"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2571 |
-
#: app/features/mec/notifications.php:
|
2572 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2573 |
#: app/features/mec/styling.php:375
|
2574 |
msgid "Saved"
|
2575 |
msgstr "Kaydedildi"
|
2576 |
|
2577 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2578 |
-
#: app/features/mec/notifications.php:
|
2579 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2580 |
#: app/features/mec/styling.php:376
|
2581 |
msgid "Settings Saved!"
|
@@ -3423,310 +3424,370 @@ msgstr "Metin Girişi"
|
|
3423 |
msgid "No Search Options"
|
3424 |
msgstr "Arama Seçenekleri Yok"
|
3425 |
|
3426 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3427 |
msgid "Booking Notification"
|
3428 |
msgstr "Rezervasyon Bildirimi"
|
3429 |
|
3430 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3431 |
msgid "Booking Verification"
|
3432 |
msgstr "Rezervasyon Doğrulaması"
|
3433 |
|
3434 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3435 |
#: app/features/mec/settings.php:1409
|
3436 |
msgid "Booking Confirmation"
|
3437 |
msgstr "Rezervasyon Onayı"
|
3438 |
|
3439 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3440 |
msgid "Admin Notification"
|
3441 |
msgstr "Yönetici Bildirimi"
|
3442 |
|
3443 |
-
#: app/features/mec/notifications.php:
|
3444 |
-
#: app/libraries/notifications.php:
|
3445 |
msgid "Booking Reminder"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: app/features/mec/notifications.php:
|
3449 |
#: app/features/mec/support-page.php:80
|
3450 |
msgid "New Event"
|
3451 |
msgstr "Yeni Etkinlik"
|
3452 |
|
3453 |
-
#: app/features/mec/notifications.php:
|
3454 |
msgid "Enable booking notification"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: app/features/mec/notifications.php:
|
3458 |
msgid "It sends to attendee after booking for notifying him/her."
|
3459 |
msgstr "Rezervasyon yaptıktan sonra katılımcıya bildirim gönder."
|
3460 |
|
3461 |
-
#: app/features/mec/notifications.php:
|
3462 |
-
#: app/features/mec/notifications.php:
|
3463 |
-
#: app/features/mec/notifications.php:
|
3464 |
-
#: app/features/mec/notifications.php:
|
3465 |
-
#: app/features/mec/notifications.php:
|
3466 |
-
#: app/features/mec/notifications.php:
|
|
|
3467 |
msgid "Email Subject"
|
3468 |
msgstr "E-posta Konusu"
|
3469 |
|
3470 |
-
#: app/features/mec/notifications.php:
|
3471 |
-
#: app/features/mec/notifications.php:
|
3472 |
-
#: app/features/mec/notifications.php:
|
3473 |
-
#: app/features/mec/notifications.php:
|
3474 |
-
#: app/features/mec/notifications.php:
|
3475 |
-
#: app/features/mec/notifications.php:
|
3476 |
-
#: app/features/mec/notifications.php:
|
3477 |
-
#: app/features/mec/notifications.php:
|
3478 |
-
#: app/features/mec/notifications.php:
|
3479 |
-
#: app/features/mec/notifications.php:
|
3480 |
-
#: app/features/mec/notifications.php:
|
3481 |
-
#: app/features/mec/notifications.php:
|
3482 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
3483 |
msgid "Custom Recipients"
|
3484 |
msgstr "Özel Alıcılar"
|
3485 |
|
3486 |
-
#: app/features/mec/notifications.php:
|
3487 |
-
#: app/features/mec/notifications.php:
|
3488 |
-
#: app/features/mec/notifications.php:
|
3489 |
-
#: app/features/mec/notifications.php:
|
3490 |
-
#: app/features/mec/notifications.php:
|
3491 |
-
#: app/features/mec/notifications.php:
|
3492 |
-
#: app/features/mec/notifications.php:
|
|
|
3493 |
msgid "Insert comma separated emails for multiple recipients."
|
3494 |
msgstr "Birden fazla alıcıya virgülle ayrılmış e-postalar ekleyin."
|
3495 |
|
3496 |
-
#: app/features/mec/notifications.php:
|
3497 |
-
#: app/features/mec/notifications.php:
|
|
|
3498 |
msgid "Send the email to event organizer"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: app/features/mec/notifications.php:
|
3502 |
-
#: app/features/mec/notifications.php:
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
#: app/features/mec/notifications.php:
|
3505 |
-
#: app/features/mec/notifications.php:
|
3506 |
-
#: app/features/mec/notifications.php:
|
|
|
3507 |
msgid "Email Content"
|
3508 |
msgstr "E-posta İçeriği"
|
3509 |
|
3510 |
-
#: app/features/mec/notifications.php:
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
#: app/features/mec/notifications.php:
|
3513 |
-
#: app/features/mec/notifications.php:
|
3514 |
-
#: app/features/mec/notifications.php:
|
3515 |
-
#: app/features/mec/notifications.php:
|
|
|
3516 |
msgid "You can use following placeholders"
|
3517 |
msgstr "Aşağıdaki yer tutucularını kullanabilirsiniz"
|
3518 |
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
#: app/features/mec/notifications.php:
|
3522 |
-
#: app/features/mec/notifications.php:
|
3523 |
-
#: app/features/mec/notifications.php:
|
|
|
3524 |
msgid "First name of attendee"
|
3525 |
msgstr "Katılımcının adı"
|
3526 |
|
3527 |
-
#: app/features/mec/notifications.php:
|
3528 |
-
#: app/features/mec/notifications.php:
|
3529 |
-
#: app/features/mec/notifications.php:
|
3530 |
-
#: app/features/mec/notifications.php:
|
3531 |
-
#: app/features/mec/notifications.php:
|
|
|
3532 |
msgid "Last name of attendee"
|
3533 |
msgstr "Katılımcının Soyadı"
|
3534 |
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
3537 |
-
#: app/features/mec/notifications.php:
|
3538 |
-
#: app/features/mec/notifications.php:
|
3539 |
-
#: app/features/mec/notifications.php:
|
|
|
3540 |
msgid "Email of attendee"
|
3541 |
msgstr "Katılımcının E-postası"
|
3542 |
|
3543 |
-
#: app/features/mec/notifications.php:
|
3544 |
-
#: app/features/mec/notifications.php:
|
3545 |
-
#: app/features/mec/notifications.php:
|
3546 |
-
#: app/features/mec/notifications.php:
|
3547 |
-
#: app/features/mec/notifications.php:
|
|
|
3548 |
msgid "Booked date of event"
|
3549 |
msgstr "Etkinlik tarihi ayarlandı."
|
3550 |
|
3551 |
-
#: app/features/mec/notifications.php:
|
3552 |
-
#: app/features/mec/notifications.php:
|
3553 |
-
#: app/features/mec/notifications.php:
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
#: app/features/mec/notifications.php:
|
|
|
3556 |
#, fuzzy
|
3557 |
#| msgid "Booked date of event"
|
3558 |
msgid "Booked time of event"
|
3559 |
msgstr "Etkinlik tarihi ayarlandı."
|
3560 |
|
3561 |
-
#: app/features/mec/notifications.php:
|
3562 |
-
#: app/features/mec/notifications.php:
|
3563 |
-
#: app/features/mec/notifications.php:
|
3564 |
-
#: app/features/mec/notifications.php:
|
3565 |
-
#: app/features/mec/notifications.php:
|
|
|
3566 |
msgid "Booking Price"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
-
#: app/features/mec/notifications.php:
|
3570 |
-
#: app/features/mec/notifications.php:
|
3571 |
-
#: app/features/mec/notifications.php:
|
3572 |
-
#: app/features/mec/notifications.php:
|
3573 |
-
#: app/features/mec/notifications.php:
|
3574 |
-
#: app/features/mec/notifications.php:
|
|
|
3575 |
msgid "Your website title"
|
3576 |
msgstr "Web sitenizin başlığı"
|
3577 |
|
3578 |
-
#: app/features/mec/notifications.php:
|
3579 |
-
#: app/features/mec/notifications.php:
|
3580 |
-
#: app/features/mec/notifications.php:
|
3581 |
-
#: app/features/mec/notifications.php:
|
3582 |
-
#: app/features/mec/notifications.php:
|
3583 |
-
#: app/features/mec/notifications.php:
|
|
|
3584 |
msgid "Your website URL"
|
3585 |
msgstr "Web sitenizin URL'si"
|
3586 |
|
3587 |
-
#: app/features/mec/notifications.php:
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
-
#: app/features/mec/notifications.php:
|
3590 |
-
#: app/features/mec/notifications.php:
|
3591 |
-
#: app/features/mec/notifications.php:
|
3592 |
-
#: app/features/mec/notifications.php:
|
|
|
3593 |
msgid "Your website description"
|
3594 |
msgstr "Web sitenizin açıklaması"
|
3595 |
|
3596 |
-
#: app/features/mec/notifications.php:
|
3597 |
-
#: app/features/mec/notifications.php:
|
3598 |
-
#: app/features/mec/notifications.php:
|
3599 |
-
#: app/features/mec/notifications.php:
|
3600 |
-
#: app/features/mec/notifications.php:
|
|
|
3601 |
msgid "Event title"
|
3602 |
msgstr "Etkinlik başlığı"
|
3603 |
|
3604 |
-
#: app/features/mec/notifications.php:
|
3605 |
-
#: app/features/mec/notifications.php:
|
3606 |
-
#: app/features/mec/notifications.php:
|
3607 |
-
#: app/features/mec/notifications.php:
|
3608 |
-
#: app/features/mec/notifications.php:
|
|
|
3609 |
#, fuzzy
|
3610 |
#| msgid "Event Link"
|
3611 |
msgid "Event link"
|
3612 |
msgstr "Etkinlik Bağlantısı"
|
3613 |
|
3614 |
-
#: app/features/mec/notifications.php:
|
3615 |
-
#: app/features/mec/notifications.php:
|
3616 |
-
#: app/features/mec/notifications.php:
|
3617 |
-
#: app/features/mec/notifications.php:
|
3618 |
-
#: app/features/mec/notifications.php:
|
|
|
3619 |
msgid "Organizer name of booked event"
|
3620 |
msgstr "Etkinliği düzenleyen organizatörün adı."
|
3621 |
|
3622 |
-
#: app/features/mec/notifications.php:
|
3623 |
-
#: app/features/mec/notifications.php:
|
3624 |
-
#: app/features/mec/notifications.php:
|
3625 |
-
#: app/features/mec/notifications.php:
|
3626 |
-
#: app/features/mec/notifications.php:
|
|
|
3627 |
msgid "Organizer tel of booked event"
|
3628 |
msgstr "Etkinliği düzenleyen organizatörün numarası."
|
3629 |
|
3630 |
-
#: app/features/mec/notifications.php:
|
3631 |
-
#: app/features/mec/notifications.php:
|
3632 |
-
#: app/features/mec/notifications.php:
|
3633 |
-
#: app/features/mec/notifications.php:
|
3634 |
-
#: app/features/mec/notifications.php:
|
|
|
3635 |
msgid "Organizer email of booked event"
|
3636 |
msgstr "Etkinliği düzenleyen organizatörün E-postası."
|
3637 |
|
3638 |
-
#: app/features/mec/notifications.php:
|
3639 |
-
#: app/features/mec/notifications.php:
|
3640 |
-
#: app/features/mec/notifications.php:
|
3641 |
-
#: app/features/mec/notifications.php:
|
3642 |
-
#: app/features/mec/notifications.php:
|
|
|
3643 |
msgid "Location name of booked event"
|
3644 |
msgstr "Rezervasyon etkinliğinin konum adı."
|
3645 |
|
3646 |
-
#: app/features/mec/notifications.php:
|
3647 |
-
#: app/features/mec/notifications.php:
|
3648 |
-
#: app/features/mec/notifications.php:
|
3649 |
-
#: app/features/mec/notifications.php:
|
3650 |
-
#: app/features/mec/notifications.php:
|
|
|
3651 |
msgid "Location address of booked event"
|
3652 |
msgstr "Etkinlik Adresi"
|
3653 |
|
3654 |
-
#: app/features/mec/notifications.php:
|
3655 |
-
#: app/features/mec/notifications.php:
|
|
|
3656 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3657 |
msgstr ""
|
3658 |
"Tam katılımcı bilgileri form verileri, ad, e-posta vb. Gibi rezervasyon "
|
3659 |
"yapabilir."
|
3660 |
|
3661 |
-
#: app/features/mec/notifications.php:
|
3662 |
-
#: app/features/mec/notifications.php:
|
3663 |
-
#: app/features/mec/notifications.php:
|
3664 |
msgid "Invoice Link"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
-
#: app/features/mec/notifications.php:
|
3668 |
-
#: app/features/mec/notifications.php:
|
3669 |
-
#: app/features/mec/notifications.php:
|
3670 |
-
#: app/features/mec/notifications.php:
|
3671 |
-
#: app/features/mec/notifications.php:
|
|
|
3672 |
msgid "Total Attendees"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: app/features/mec/notifications.php:
|
3676 |
-
#: app/features/mec/notifications.php:
|
3677 |
-
#: app/features/mec/notifications.php:
|
3678 |
-
#: app/features/mec/notifications.php:
|
3679 |
#, fuzzy
|
3680 |
#| msgid "Ticket Name"
|
3681 |
msgid "Ticket name"
|
3682 |
msgstr "Bilet Adı"
|
3683 |
|
3684 |
-
#: app/features/mec/notifications.php:
|
3685 |
-
#: app/features/mec/notifications.php:
|
3686 |
-
#: app/features/mec/notifications.php:
|
3687 |
-
#: app/features/mec/notifications.php:
|
3688 |
#, fuzzy
|
3689 |
#| msgid "Ticket Name"
|
3690 |
msgid "Ticket time"
|
3691 |
msgstr "Bilet Adı"
|
3692 |
|
3693 |
-
#: app/features/mec/notifications.php:
|
3694 |
-
#: app/features/mec/notifications.php:
|
3695 |
-
#: app/features/mec/notifications.php:
|
3696 |
-
#: app/features/mec/notifications.php:
|
3697 |
msgid "Download ICS file"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
-
#: app/features/mec/notifications.php:
|
3701 |
msgid "It sends to attendee email for verifying their booking/email."
|
3702 |
msgstr "Rezervasyon doğrulamak için katılımcıya e-postaya gönder."
|
3703 |
|
3704 |
-
#: app/features/mec/notifications.php:
|
3705 |
msgid "Email/Booking verification link."
|
3706 |
msgstr "E-posta Rezervasyon doğrulama bağlantısı."
|
3707 |
|
3708 |
-
#: app/features/mec/notifications.php:
|
3709 |
msgid "It sends to attendee after confirming the booking by admin."
|
3710 |
msgstr "Rezervasyon onaylandıktan sonra katılımcıya bildirim gönder."
|
3711 |
|
3712 |
-
#: app/features/mec/notifications.php:
|
3713 |
-
#: app/features/mec/notifications.php:
|
3714 |
msgid "Booking cancellation link."
|
3715 |
msgstr "Rezervasyon iptali bağlantısı."
|
3716 |
|
3717 |
-
#: app/features/mec/notifications.php:
|
3718 |
-
|
3719 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3720 |
|
3721 |
-
#: app/features/mec/notifications.php:
|
|
|
3722 |
msgid "Admin booking management link."
|
3723 |
msgstr "Yönetici rezervasyon yönetimi bağlantısı."
|
3724 |
|
3725 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3726 |
msgid "Enable booking reminder notification"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: app/features/mec/notifications.php:
|
3730 |
#, php-format
|
3731 |
msgid ""
|
3732 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3734,19 +3795,19 @@ msgid ""
|
|
3734 |
"send the reminders multiple times."
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: app/features/mec/notifications.php:
|
3738 |
msgid "only once per day"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: app/features/mec/notifications.php:
|
3742 |
msgid "Days"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: app/features/mec/notifications.php:
|
3746 |
msgid "Enable new event notification"
|
3747 |
msgstr "Yeni etkinlik bildirimini etkinleştir"
|
3748 |
|
3749 |
-
#: app/features/mec/notifications.php:
|
3750 |
msgid ""
|
3751 |
"It sends after adding a new event from frontend event submission or from "
|
3752 |
"website backend."
|
@@ -3754,36 +3815,36 @@ msgstr ""
|
|
3754 |
"Etkinlik gönderiminden veya web sitesinden yeni bir etkinlik ekledikten "
|
3755 |
"sonra gönderir."
|
3756 |
|
3757 |
-
#: app/features/mec/notifications.php:
|
3758 |
msgid "Title of event"
|
3759 |
msgstr "Etkinlik başlığı"
|
3760 |
|
3761 |
-
#: app/features/mec/notifications.php:
|
3762 |
#, fuzzy
|
3763 |
#| msgid "Title of event"
|
3764 |
msgid "Link of event"
|
3765 |
msgstr "Etkinlik başlığı"
|
3766 |
|
3767 |
-
#: app/features/mec/notifications.php:
|
3768 |
msgid "Status of event"
|
3769 |
msgstr "Etkinlik durumu"
|
3770 |
|
3771 |
-
#: app/features/mec/notifications.php:
|
3772 |
#: app/features/mec/settings.php:1253
|
3773 |
msgid "Event Note"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
-
#: app/features/mec/notifications.php:
|
3777 |
msgid "Admin events management link."
|
3778 |
msgstr "Yönetici etkinlikleri yönetimi bağlantısı."
|
3779 |
|
3780 |
-
#: app/features/mec/notifications.php:
|
3781 |
-
#: app/features/mec/notifications.php:
|
3782 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3783 |
msgid "Verified"
|
3784 |
msgstr "Doğrulanmış"
|
3785 |
|
3786 |
-
#: app/features/mec/notifications.php:
|
3787 |
msgid "Please Refresh Page"
|
3788 |
msgstr ""
|
3789 |
|
@@ -5214,7 +5275,7 @@ msgid "eg. https://webnus.net"
|
|
5214 |
msgstr "http://viseraturkiye.com"
|
5215 |
|
5216 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5217 |
-
#: app/skins/single.php:
|
5218 |
msgid "Other Organizers"
|
5219 |
msgstr ""
|
5220 |
|
@@ -5356,7 +5417,7 @@ msgstr ""
|
|
5356 |
msgid "day"
|
5357 |
msgstr "gün"
|
5358 |
|
5359 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5360 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5361 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5362 |
msgid "days"
|
@@ -5366,7 +5427,7 @@ msgstr "günler"
|
|
5366 |
msgid "hour"
|
5367 |
msgstr "saat"
|
5368 |
|
5369 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5370 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5371 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5372 |
msgid "hours"
|
@@ -5376,7 +5437,7 @@ msgstr "saatler"
|
|
5376 |
msgid "minute"
|
5377 |
msgstr "dakika"
|
5378 |
|
5379 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5380 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5381 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5382 |
msgid "minutes"
|
@@ -5386,7 +5447,7 @@ msgstr "dakikalar"
|
|
5386 |
msgid "second"
|
5387 |
msgstr "saniye"
|
5388 |
|
5389 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5390 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5391 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5392 |
msgid "seconds"
|
@@ -5866,38 +5927,44 @@ msgstr ""
|
|
5866 |
msgid "Your booking is confirmed."
|
5867 |
msgstr "Rezervasyonunuz teyit edildi."
|
5868 |
|
5869 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5870 |
msgid "A new booking is received."
|
5871 |
msgstr "Yeni bir rezervasyon alındı."
|
5872 |
|
5873 |
-
#: app/libraries/notifications.php:
|
5874 |
msgid "A new event is added."
|
5875 |
msgstr "Yeni bir etkinlik eklendi."
|
5876 |
|
5877 |
-
#: app/libraries/notifications.php:
|
5878 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5879 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5880 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5881 |
msgid "All of the day"
|
5882 |
msgstr "Bütün gün"
|
5883 |
|
5884 |
-
#: app/libraries/notifications.php:
|
5885 |
msgid "to"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
-
#: app/libraries/notifications.php:
|
5889 |
msgid "+ Add to Google Calendar"
|
5890 |
msgstr "Google Takvim'e ekle"
|
5891 |
|
5892 |
-
#: app/libraries/notifications.php:
|
5893 |
msgid "+ iCal export"
|
5894 |
msgstr "iCal Çıktısı"
|
5895 |
|
5896 |
-
#: app/libraries/notifications.php:
|
5897 |
msgid "Yes"
|
5898 |
msgstr ""
|
5899 |
|
5900 |
-
#: app/libraries/notifications.php:
|
5901 |
msgid "No"
|
5902 |
msgstr ""
|
5903 |
|
@@ -6110,15 +6177,15 @@ msgstr "Liste"
|
|
6110 |
msgid "All"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: app/skins/monthly_view/calendar.php:
|
6114 |
-
#: app/skins/monthly_view/calendar.php:
|
6115 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6116 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6117 |
#, php-format
|
6118 |
msgid "Events for %s"
|
6119 |
msgstr "Etkinlikler için %s"
|
6120 |
|
6121 |
-
#: app/skins/monthly_view/calendar.php:
|
6122 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6123 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6124 |
msgid "No Events"
|
@@ -6128,19 +6195,19 @@ msgstr "Etkinlik Yok"
|
|
6128 |
msgid "Home"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
-
#: app/skins/single.php:
|
6132 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6133 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6134 |
msgid "Phone"
|
6135 |
msgstr "Telefon"
|
6136 |
|
6137 |
-
#: app/skins/single.php:
|
6138 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6139 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6140 |
msgid "Website"
|
6141 |
msgstr "Web sitesi"
|
6142 |
|
6143 |
-
#: app/skins/single.php:
|
6144 |
#, fuzzy
|
6145 |
#| msgid "No Search Options"
|
6146 |
msgid "Speakers:"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-06-10 15:05+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-06-10 15:05+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:348
|
34 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
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:329
|
64 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
65 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
66 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
272 |
"#-#-#-#-# 3extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
273 |
"#-#-#-#-# 4extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
274 |
|
275 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
276 |
msgid "Add Event"
|
277 |
msgstr "Etkinlik Ekle"
|
278 |
|
320 |
msgstr "Kategori"
|
321 |
|
322 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
323 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
324 |
#: app/libraries/main.php:4375
|
325 |
msgid "Categories"
|
326 |
msgstr "Kategoriler"
|
419 |
#: app/features/events.php:410 app/features/events.php:1682
|
420 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
421 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
422 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
433 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
434 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
435 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
436 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
437 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
438 |
#: app/skins/single/modern.php:48
|
557 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
558 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
559 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
560 |
+
#: app/features/mec/notifications.php:170
|
561 |
+
#: app/features/mec/notifications.php:228
|
562 |
+
#: app/features/mec/notifications.php:280
|
563 |
+
#: app/features/mec/notifications.php:339
|
564 |
+
#: app/features/mec/notifications.php:406
|
565 |
+
#: app/features/mec/notifications.php:469
|
566 |
+
#: app/features/mec/notifications.php:480
|
567 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
568 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
569 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
570 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
774 |
msgstr ""
|
775 |
|
776 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
777 |
+
#: app/skins/single.php:379
|
778 |
msgid "Hourly Schedule"
|
779 |
msgstr "Saatlik Program"
|
780 |
|
846 |
|
847 |
#: app/features/events.php:913 app/features/events.php:933
|
848 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
849 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
850 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
851 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
852 |
msgid "Speakers"
|
1246 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1248 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1249 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1250 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1251 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1252 |
msgid "Location"
|
1416 |
msgstr "Resmi Kaldır"
|
1417 |
|
1418 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1419 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1420 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1421 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1422 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1423 |
msgid "Labels"
|
1424 |
msgstr "Etiketler"
|
1425 |
|
1426 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1427 |
#: app/features/mec/meta_boxes/filter.php:138
|
1428 |
msgid "Tags"
|
1429 |
msgstr "Etiketler"
|
1459 |
|
1460 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1461 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1462 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1463 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1464 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1465 |
msgid "Import / Export"
|
1720 |
#: app/features/ix/export_g_calendar.php:72
|
1721 |
#: app/features/ix/export_g_calendar.php:147
|
1722 |
#: app/features/ix/export_g_calendar.php:164
|
1723 |
+
#: app/features/mec/notifications.php:207
|
1724 |
+
#: app/features/mec/notifications.php:260
|
1725 |
+
#: app/features/mec/notifications.php:313
|
1726 |
+
#: app/features/mec/notifications.php:513
|
1727 |
msgid "Add to Google Calendar"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
#: app/features/ix/export_g_calendar.php:90
|
1731 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1732 |
msgid "Checking ..."
|
1733 |
msgstr ""
|
1734 |
|
1958 |
|
1959 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1960 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1961 |
+
#: app/features/mec/notifications.php:457
|
1962 |
msgid "Important Note"
|
1963 |
msgstr ""
|
1964 |
|
2085 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2086 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2087 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2088 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2089 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2090 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2091 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2101 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2102 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2103 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2104 |
+
#: app/skins/monthly_view/calendar.php:86
|
2105 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2106 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2107 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2129 |
msgid "Event %s"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2133 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2134 |
#: app/libraries/main.php:4379
|
2135 |
msgid "Locations"
|
2250 |
"You can select extra locations in addition to main location if you like."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: app/features/mec.php:153
|
2254 |
msgid ""
|
2255 |
"Activation faild. Please check your purchase code or license type."
|
2256 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: app/features/mec.php:153
|
2260 |
msgid "Troubleshooting"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: app/features/mec.php:193
|
2264 |
msgid ""
|
2265 |
"Your options is not in JSON format. Please insert correct options in this "
|
2266 |
"field and try again."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: app/features/mec.php:200
|
2270 |
#, fuzzy
|
2271 |
#| msgid "Your booking cannot verify!"
|
2272 |
msgid "Your options field can not be empty!"
|
2273 |
msgstr "Rezervasyonunuz doğrulayamıyor!"
|
2274 |
|
2275 |
+
#: app/features/mec.php:206
|
2276 |
#, fuzzy
|
2277 |
#| msgid "Your booking successfully verified."
|
2278 |
msgid "Your options imported successfuly."
|
2279 |
msgstr "Rezervasyonunuz başarıyla doğrulandı."
|
2280 |
|
2281 |
+
#: app/features/mec.php:299
|
2282 |
#, fuzzy
|
2283 |
#| msgid "Support"
|
2284 |
msgid "MEC - Support"
|
2285 |
msgstr "Destek"
|
2286 |
|
2287 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2288 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2289 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2290 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2291 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2292 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2293 |
msgid "Support"
|
2294 |
msgstr "Destek"
|
2295 |
|
2296 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2297 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2298 |
#: app/libraries/main.php:4381
|
2299 |
msgid "Organizers"
|
2300 |
msgstr "Organizatörler"
|
2301 |
|
2302 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2303 |
#: app/features/mec/dashboard.php:194
|
2304 |
msgid "Shortcodes"
|
2305 |
msgstr "Kısa Kodlar"
|
2306 |
|
2307 |
+
#: app/features/mec.php:329
|
2308 |
msgid "MEC - Settings"
|
2309 |
msgstr "MEC - Ayarları"
|
2310 |
|
2311 |
+
#: app/features/mec.php:330
|
2312 |
#, fuzzy
|
2313 |
#| msgid "MEC - Settings"
|
2314 |
msgid "MEC - Addons"
|
2315 |
msgstr "MEC - Ayarları"
|
2316 |
|
2317 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2318 |
msgid "Addons"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: app/features/mec.php:349
|
2322 |
msgid "Add Shortcode"
|
2323 |
msgstr "Kısa Kod Ekle"
|
2324 |
|
2325 |
+
#: app/features/mec.php:350
|
2326 |
msgid "Add New Shortcode"
|
2327 |
msgstr "Yeni Kısa Kod Ekle"
|
2328 |
|
2329 |
+
#: app/features/mec.php:351
|
2330 |
msgid "No shortcodes found!"
|
2331 |
msgstr "Hiçbir kısa kod bulunamadı!"
|
2332 |
|
2333 |
+
#: app/features/mec.php:352
|
2334 |
msgid "All Shortcodes"
|
2335 |
msgstr "Tüm Kısa Kodlar"
|
2336 |
|
2337 |
+
#: app/features/mec.php:353
|
2338 |
msgid "Edit shortcodes"
|
2339 |
msgstr "Kısa kodları düzenle"
|
2340 |
|
2341 |
+
#: app/features/mec.php:354
|
2342 |
msgid "No shortcodes found in Trash!"
|
2343 |
msgstr "Çöp Kutusunda kısa kod bulunamadı!"
|
2344 |
|
2345 |
+
#: app/features/mec.php:402
|
2346 |
msgid "Display Options"
|
2347 |
msgstr "Görüntüleme Seçenekleri"
|
2348 |
|
2349 |
+
#: app/features/mec.php:403
|
2350 |
msgid "Filter Options"
|
2351 |
msgstr "Filtre Seçenekleri"
|
2352 |
|
2353 |
+
#: app/features/mec.php:405
|
2354 |
msgid "Search Form"
|
2355 |
msgstr "Arama Formu"
|
2356 |
|
2357 |
+
#: app/features/mec.php:755
|
2358 |
msgid "Display content's images as Popup"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: app/features/mec.php:768
|
2362 |
msgid "Single Event Display Method"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: app/features/mec.php:773
|
2366 |
msgid "Separate Window"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: app/features/mec.php:774
|
2370 |
msgid "Modal 1"
|
2371 |
msgstr ""
|
2372 |
|
2527 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2528 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2529 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2530 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2531 |
+
#: app/features/mec/notifications.php:581
|
2532 |
+
#: app/features/mec/notifications.php:680
|
2533 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2534 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2535 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2536 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2545 |
msgstr "Değişiklikleri Kaydet"
|
2546 |
|
2547 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2548 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2549 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2550 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2551 |
#: app/features/mec/support.php:52
|
2553 |
msgstr "Şekillendirme Seçenekleri"
|
2554 |
|
2555 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2556 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2557 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2558 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2559 |
#: app/features/mec/support.php:59
|
2562 |
|
2563 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2564 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2565 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2566 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2567 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2568 |
msgid "Messages"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2572 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2573 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2574 |
#: app/features/mec/styling.php:375
|
2575 |
msgid "Saved"
|
2576 |
msgstr "Kaydedildi"
|
2577 |
|
2578 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2579 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2580 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2581 |
#: app/features/mec/styling.php:376
|
2582 |
msgid "Settings Saved!"
|
3424 |
msgid "No Search Options"
|
3425 |
msgstr "Arama Seçenekleri Yok"
|
3426 |
|
3427 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3428 |
msgid "Booking Notification"
|
3429 |
msgstr "Rezervasyon Bildirimi"
|
3430 |
|
3431 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3432 |
msgid "Booking Verification"
|
3433 |
msgstr "Rezervasyon Doğrulaması"
|
3434 |
|
3435 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3436 |
#: app/features/mec/settings.php:1409
|
3437 |
msgid "Booking Confirmation"
|
3438 |
msgstr "Rezervasyon Onayı"
|
3439 |
|
3440 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3441 |
+
#, fuzzy
|
3442 |
+
#| msgid "Booking cancellation link."
|
3443 |
+
msgid "Booking Cancellation"
|
3444 |
+
msgstr "Rezervasyon iptali bağlantısı."
|
3445 |
+
|
3446 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3447 |
msgid "Admin Notification"
|
3448 |
msgstr "Yönetici Bildirimi"
|
3449 |
|
3450 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3451 |
+
#: app/libraries/notifications.php:354
|
3452 |
msgid "Booking Reminder"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3456 |
#: app/features/mec/support-page.php:80
|
3457 |
msgid "New Event"
|
3458 |
msgstr "Yeni Etkinlik"
|
3459 |
|
3460 |
+
#: app/features/mec/notifications.php:155
|
3461 |
msgid "Enable booking notification"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: app/features/mec/notifications.php:159
|
3465 |
msgid "It sends to attendee after booking for notifying him/her."
|
3466 |
msgstr "Rezervasyon yaptıktan sonra katılımcıya bildirim gönder."
|
3467 |
|
3468 |
+
#: app/features/mec/notifications.php:161
|
3469 |
+
#: app/features/mec/notifications.php:219
|
3470 |
+
#: app/features/mec/notifications.php:271
|
3471 |
+
#: app/features/mec/notifications.php:330
|
3472 |
+
#: app/features/mec/notifications.php:397
|
3473 |
+
#: app/features/mec/notifications.php:460
|
3474 |
+
#: app/features/mec/notifications.php:532
|
3475 |
msgid "Email Subject"
|
3476 |
msgstr "E-posta Konusu"
|
3477 |
|
3478 |
+
#: app/features/mec/notifications.php:165
|
3479 |
+
#: app/features/mec/notifications.php:169
|
3480 |
+
#: app/features/mec/notifications.php:223
|
3481 |
+
#: app/features/mec/notifications.php:227
|
3482 |
+
#: app/features/mec/notifications.php:275
|
3483 |
+
#: app/features/mec/notifications.php:279
|
3484 |
+
#: app/features/mec/notifications.php:334
|
3485 |
+
#: app/features/mec/notifications.php:338
|
3486 |
+
#: app/features/mec/notifications.php:401
|
3487 |
+
#: app/features/mec/notifications.php:405
|
3488 |
+
#: app/features/mec/notifications.php:464
|
3489 |
+
#: app/features/mec/notifications.php:468
|
3490 |
+
#: app/features/mec/notifications.php:479
|
3491 |
+
#: app/features/mec/notifications.php:536
|
3492 |
+
#: app/features/mec/notifications.php:540
|
3493 |
msgid "Custom Recipients"
|
3494 |
msgstr "Özel Alıcılar"
|
3495 |
|
3496 |
+
#: app/features/mec/notifications.php:170
|
3497 |
+
#: app/features/mec/notifications.php:228
|
3498 |
+
#: app/features/mec/notifications.php:280
|
3499 |
+
#: app/features/mec/notifications.php:339
|
3500 |
+
#: app/features/mec/notifications.php:406
|
3501 |
+
#: app/features/mec/notifications.php:469
|
3502 |
+
#: app/features/mec/notifications.php:480
|
3503 |
+
#: app/features/mec/notifications.php:541
|
3504 |
msgid "Insert comma separated emails for multiple recipients."
|
3505 |
msgstr "Birden fazla alıcıya virgülle ayrılmış e-postalar ekleyin."
|
3506 |
|
3507 |
+
#: app/features/mec/notifications.php:177
|
3508 |
+
#: app/features/mec/notifications.php:350
|
3509 |
+
#: app/features/mec/notifications.php:413
|
3510 |
msgid "Send the email to event organizer"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: app/features/mec/notifications.php:180
|
3514 |
+
#: app/features/mec/notifications.php:234
|
3515 |
+
#: app/features/mec/notifications.php:286
|
3516 |
+
#: app/features/mec/notifications.php:357
|
3517 |
+
#: app/features/mec/notifications.php:416
|
3518 |
+
#: app/features/mec/notifications.php:486
|
3519 |
+
#: app/features/mec/notifications.php:547
|
3520 |
msgid "Email Content"
|
3521 |
msgstr "E-posta İçeriği"
|
3522 |
|
3523 |
+
#: app/features/mec/notifications.php:183
|
3524 |
+
#: app/features/mec/notifications.php:237
|
3525 |
+
#: app/features/mec/notifications.php:289
|
3526 |
+
#: app/features/mec/notifications.php:360
|
3527 |
+
#: app/features/mec/notifications.php:419
|
3528 |
+
#: app/features/mec/notifications.php:489
|
3529 |
+
#: app/features/mec/notifications.php:550
|
3530 |
msgid "You can use following placeholders"
|
3531 |
msgstr "Aşağıdaki yer tutucularını kullanabilirsiniz"
|
3532 |
|
3533 |
+
#: app/features/mec/notifications.php:185
|
3534 |
+
#: app/features/mec/notifications.php:239
|
3535 |
+
#: app/features/mec/notifications.php:291
|
3536 |
+
#: app/features/mec/notifications.php:362
|
3537 |
+
#: app/features/mec/notifications.php:421
|
3538 |
+
#: app/features/mec/notifications.php:491
|
3539 |
msgid "First name of attendee"
|
3540 |
msgstr "Katılımcının adı"
|
3541 |
|
3542 |
+
#: app/features/mec/notifications.php:186
|
3543 |
+
#: app/features/mec/notifications.php:240
|
3544 |
+
#: app/features/mec/notifications.php:292
|
3545 |
+
#: app/features/mec/notifications.php:363
|
3546 |
+
#: app/features/mec/notifications.php:422
|
3547 |
+
#: app/features/mec/notifications.php:492
|
3548 |
msgid "Last name of attendee"
|
3549 |
msgstr "Katılımcının Soyadı"
|
3550 |
|
3551 |
+
#: app/features/mec/notifications.php:187
|
3552 |
+
#: app/features/mec/notifications.php:241
|
3553 |
+
#: app/features/mec/notifications.php:293
|
3554 |
+
#: app/features/mec/notifications.php:364
|
3555 |
+
#: app/features/mec/notifications.php:423
|
3556 |
+
#: app/features/mec/notifications.php:493
|
3557 |
msgid "Email of attendee"
|
3558 |
msgstr "Katılımcının E-postası"
|
3559 |
|
3560 |
+
#: app/features/mec/notifications.php:188
|
3561 |
+
#: app/features/mec/notifications.php:242
|
3562 |
+
#: app/features/mec/notifications.php:294
|
3563 |
+
#: app/features/mec/notifications.php:365
|
3564 |
+
#: app/features/mec/notifications.php:424
|
3565 |
+
#: app/features/mec/notifications.php:494
|
3566 |
msgid "Booked date of event"
|
3567 |
msgstr "Etkinlik tarihi ayarlandı."
|
3568 |
|
3569 |
+
#: app/features/mec/notifications.php:189
|
3570 |
+
#: app/features/mec/notifications.php:243
|
3571 |
+
#: app/features/mec/notifications.php:295
|
3572 |
+
#: app/features/mec/notifications.php:366
|
3573 |
+
#: app/features/mec/notifications.php:425
|
3574 |
+
#: app/features/mec/notifications.php:495
|
3575 |
#, fuzzy
|
3576 |
#| msgid "Booked date of event"
|
3577 |
msgid "Booked time of event"
|
3578 |
msgstr "Etkinlik tarihi ayarlandı."
|
3579 |
|
3580 |
+
#: app/features/mec/notifications.php:190
|
3581 |
+
#: app/features/mec/notifications.php:244
|
3582 |
+
#: app/features/mec/notifications.php:296
|
3583 |
+
#: app/features/mec/notifications.php:367
|
3584 |
+
#: app/features/mec/notifications.php:426
|
3585 |
+
#: app/features/mec/notifications.php:496
|
3586 |
msgid "Booking Price"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: app/features/mec/notifications.php:191
|
3590 |
+
#: app/features/mec/notifications.php:245
|
3591 |
+
#: app/features/mec/notifications.php:297
|
3592 |
+
#: app/features/mec/notifications.php:368
|
3593 |
+
#: app/features/mec/notifications.php:427
|
3594 |
+
#: app/features/mec/notifications.php:497
|
3595 |
+
#: app/features/mec/notifications.php:556
|
3596 |
msgid "Your website title"
|
3597 |
msgstr "Web sitenizin başlığı"
|
3598 |
|
3599 |
+
#: app/features/mec/notifications.php:192
|
3600 |
+
#: app/features/mec/notifications.php:246
|
3601 |
+
#: app/features/mec/notifications.php:298
|
3602 |
+
#: app/features/mec/notifications.php:369
|
3603 |
+
#: app/features/mec/notifications.php:428
|
3604 |
+
#: app/features/mec/notifications.php:498
|
3605 |
+
#: app/features/mec/notifications.php:557
|
3606 |
msgid "Your website URL"
|
3607 |
msgstr "Web sitenizin URL'si"
|
3608 |
|
3609 |
+
#: app/features/mec/notifications.php:193
|
3610 |
+
#: app/features/mec/notifications.php:247
|
3611 |
+
#: app/features/mec/notifications.php:299
|
3612 |
+
#: app/features/mec/notifications.php:370
|
3613 |
+
#: app/features/mec/notifications.php:429
|
3614 |
+
#: app/features/mec/notifications.php:499
|
3615 |
+
#: app/features/mec/notifications.php:558
|
3616 |
msgid "Your website description"
|
3617 |
msgstr "Web sitenizin açıklaması"
|
3618 |
|
3619 |
+
#: app/features/mec/notifications.php:194
|
3620 |
+
#: app/features/mec/notifications.php:248
|
3621 |
+
#: app/features/mec/notifications.php:300
|
3622 |
+
#: app/features/mec/notifications.php:371
|
3623 |
+
#: app/features/mec/notifications.php:430
|
3624 |
+
#: app/features/mec/notifications.php:500
|
3625 |
msgid "Event title"
|
3626 |
msgstr "Etkinlik başlığı"
|
3627 |
|
3628 |
+
#: app/features/mec/notifications.php:195
|
3629 |
+
#: app/features/mec/notifications.php:249
|
3630 |
+
#: app/features/mec/notifications.php:301
|
3631 |
+
#: app/features/mec/notifications.php:372
|
3632 |
+
#: app/features/mec/notifications.php:431
|
3633 |
+
#: app/features/mec/notifications.php:501
|
3634 |
#, fuzzy
|
3635 |
#| msgid "Event Link"
|
3636 |
msgid "Event link"
|
3637 |
msgstr "Etkinlik Bağlantısı"
|
3638 |
|
3639 |
+
#: app/features/mec/notifications.php:196
|
3640 |
+
#: app/features/mec/notifications.php:250
|
3641 |
+
#: app/features/mec/notifications.php:302
|
3642 |
+
#: app/features/mec/notifications.php:373
|
3643 |
+
#: app/features/mec/notifications.php:432
|
3644 |
+
#: app/features/mec/notifications.php:502
|
3645 |
msgid "Organizer name of booked event"
|
3646 |
msgstr "Etkinliği düzenleyen organizatörün adı."
|
3647 |
|
3648 |
+
#: app/features/mec/notifications.php:197
|
3649 |
+
#: app/features/mec/notifications.php:251
|
3650 |
+
#: app/features/mec/notifications.php:303
|
3651 |
+
#: app/features/mec/notifications.php:374
|
3652 |
+
#: app/features/mec/notifications.php:433
|
3653 |
+
#: app/features/mec/notifications.php:503
|
3654 |
msgid "Organizer tel of booked event"
|
3655 |
msgstr "Etkinliği düzenleyen organizatörün numarası."
|
3656 |
|
3657 |
+
#: app/features/mec/notifications.php:198
|
3658 |
+
#: app/features/mec/notifications.php:252
|
3659 |
+
#: app/features/mec/notifications.php:304
|
3660 |
+
#: app/features/mec/notifications.php:375
|
3661 |
+
#: app/features/mec/notifications.php:434
|
3662 |
+
#: app/features/mec/notifications.php:504
|
3663 |
msgid "Organizer email of booked event"
|
3664 |
msgstr "Etkinliği düzenleyen organizatörün E-postası."
|
3665 |
|
3666 |
+
#: app/features/mec/notifications.php:199
|
3667 |
+
#: app/features/mec/notifications.php:253
|
3668 |
+
#: app/features/mec/notifications.php:305
|
3669 |
+
#: app/features/mec/notifications.php:376
|
3670 |
+
#: app/features/mec/notifications.php:435
|
3671 |
+
#: app/features/mec/notifications.php:505
|
3672 |
msgid "Location name of booked event"
|
3673 |
msgstr "Rezervasyon etkinliğinin konum adı."
|
3674 |
|
3675 |
+
#: app/features/mec/notifications.php:200
|
3676 |
+
#: app/features/mec/notifications.php:254
|
3677 |
+
#: app/features/mec/notifications.php:306
|
3678 |
+
#: app/features/mec/notifications.php:377
|
3679 |
+
#: app/features/mec/notifications.php:436
|
3680 |
+
#: app/features/mec/notifications.php:506
|
3681 |
msgid "Location address of booked event"
|
3682 |
msgstr "Etkinlik Adresi"
|
3683 |
|
3684 |
+
#: app/features/mec/notifications.php:201
|
3685 |
+
#: app/features/mec/notifications.php:379
|
3686 |
+
#: app/features/mec/notifications.php:438
|
3687 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
3688 |
msgstr ""
|
3689 |
"Tam katılımcı bilgileri form verileri, ad, e-posta vb. Gibi rezervasyon "
|
3690 |
"yapabilir."
|
3691 |
|
3692 |
+
#: app/features/mec/notifications.php:202
|
3693 |
+
#: app/features/mec/notifications.php:308
|
3694 |
+
#: app/features/mec/notifications.php:508
|
3695 |
msgid "Invoice Link"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: app/features/mec/notifications.php:203
|
3699 |
+
#: app/features/mec/notifications.php:256
|
3700 |
+
#: app/features/mec/notifications.php:309
|
3701 |
+
#: app/features/mec/notifications.php:380
|
3702 |
+
#: app/features/mec/notifications.php:439
|
3703 |
+
#: app/features/mec/notifications.php:509
|
3704 |
msgid "Total Attendees"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: app/features/mec/notifications.php:204
|
3708 |
+
#: app/features/mec/notifications.php:257
|
3709 |
+
#: app/features/mec/notifications.php:310
|
3710 |
+
#: app/features/mec/notifications.php:510
|
3711 |
#, fuzzy
|
3712 |
#| msgid "Ticket Name"
|
3713 |
msgid "Ticket name"
|
3714 |
msgstr "Bilet Adı"
|
3715 |
|
3716 |
+
#: app/features/mec/notifications.php:205
|
3717 |
+
#: app/features/mec/notifications.php:258
|
3718 |
+
#: app/features/mec/notifications.php:311
|
3719 |
+
#: app/features/mec/notifications.php:511
|
3720 |
#, fuzzy
|
3721 |
#| msgid "Ticket Name"
|
3722 |
msgid "Ticket time"
|
3723 |
msgstr "Bilet Adı"
|
3724 |
|
3725 |
+
#: app/features/mec/notifications.php:206
|
3726 |
+
#: app/features/mec/notifications.php:259
|
3727 |
+
#: app/features/mec/notifications.php:312
|
3728 |
+
#: app/features/mec/notifications.php:512
|
3729 |
msgid "Download ICS file"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: app/features/mec/notifications.php:217
|
3733 |
msgid "It sends to attendee email for verifying their booking/email."
|
3734 |
msgstr "Rezervasyon doğrulamak için katılımcıya e-postaya gönder."
|
3735 |
|
3736 |
+
#: app/features/mec/notifications.php:255
|
3737 |
msgid "Email/Booking verification link."
|
3738 |
msgstr "E-posta Rezervasyon doğrulama bağlantısı."
|
3739 |
|
3740 |
+
#: app/features/mec/notifications.php:269
|
3741 |
msgid "It sends to attendee after confirming the booking by admin."
|
3742 |
msgstr "Rezervasyon onaylandıktan sonra katılımcıya bildirim gönder."
|
3743 |
|
3744 |
+
#: app/features/mec/notifications.php:307
|
3745 |
+
#: app/features/mec/notifications.php:507
|
3746 |
msgid "Booking cancellation link."
|
3747 |
msgstr "Rezervasyon iptali bağlantısı."
|
3748 |
|
3749 |
+
#: app/features/mec/notifications.php:324
|
3750 |
+
#, fuzzy
|
3751 |
+
#| msgid "Enable new event notification"
|
3752 |
+
msgid "Enable cancellation notification"
|
3753 |
+
msgstr "Yeni etkinlik bildirimini etkinleştir"
|
3754 |
+
|
3755 |
+
#: app/features/mec/notifications.php:328
|
3756 |
+
#, fuzzy
|
3757 |
+
#| msgid "It sends to attendee after booking for notifying him/her."
|
3758 |
+
msgid ""
|
3759 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3760 |
+
"them."
|
3761 |
+
msgstr "Rezervasyon yaptıktan sonra katılımcıya bildirim gönder."
|
3762 |
+
|
3763 |
+
#: app/features/mec/notifications.php:346
|
3764 |
+
msgid "Send the email to admin"
|
3765 |
+
msgstr ""
|
3766 |
+
|
3767 |
+
#: app/features/mec/notifications.php:354
|
3768 |
+
msgid "Send the email to booking user"
|
3769 |
+
msgstr ""
|
3770 |
|
3771 |
+
#: app/features/mec/notifications.php:378
|
3772 |
+
#: app/features/mec/notifications.php:437
|
3773 |
msgid "Admin booking management link."
|
3774 |
msgstr "Yönetici rezervasyon yönetimi bağlantısı."
|
3775 |
|
3776 |
+
#: app/features/mec/notifications.php:391
|
3777 |
+
#, fuzzy
|
3778 |
+
#| msgid "Enable new event notification"
|
3779 |
+
msgid "Enable admin notification"
|
3780 |
+
msgstr "Yeni etkinlik bildirimini etkinleştir"
|
3781 |
+
|
3782 |
+
#: app/features/mec/notifications.php:395
|
3783 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3784 |
+
msgstr "Yeni bir rezervasyon alındığında yöneticiye bildirim gönder."
|
3785 |
+
|
3786 |
+
#: app/features/mec/notifications.php:451
|
3787 |
msgid "Enable booking reminder notification"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: app/features/mec/notifications.php:457
|
3791 |
#, php-format
|
3792 |
msgid ""
|
3793 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3795 |
"send the reminders multiple times."
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: app/features/mec/notifications.php:457
|
3799 |
msgid "only once per day"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: app/features/mec/notifications.php:475
|
3803 |
msgid "Days"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: app/features/mec/notifications.php:526
|
3807 |
msgid "Enable new event notification"
|
3808 |
msgstr "Yeni etkinlik bildirimini etkinleştir"
|
3809 |
|
3810 |
+
#: app/features/mec/notifications.php:530
|
3811 |
msgid ""
|
3812 |
"It sends after adding a new event from frontend event submission or from "
|
3813 |
"website backend."
|
3815 |
"Etkinlik gönderiminden veya web sitesinden yeni bir etkinlik ekledikten "
|
3816 |
"sonra gönderir."
|
3817 |
|
3818 |
+
#: app/features/mec/notifications.php:552
|
3819 |
msgid "Title of event"
|
3820 |
msgstr "Etkinlik başlığı"
|
3821 |
|
3822 |
+
#: app/features/mec/notifications.php:553
|
3823 |
#, fuzzy
|
3824 |
#| msgid "Title of event"
|
3825 |
msgid "Link of event"
|
3826 |
msgstr "Etkinlik başlığı"
|
3827 |
|
3828 |
+
#: app/features/mec/notifications.php:554
|
3829 |
msgid "Status of event"
|
3830 |
msgstr "Etkinlik durumu"
|
3831 |
|
3832 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3833 |
#: app/features/mec/settings.php:1253
|
3834 |
msgid "Event Note"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
+
#: app/features/mec/notifications.php:559
|
3838 |
msgid "Admin events management link."
|
3839 |
msgstr "Yönetici etkinlikleri yönetimi bağlantısı."
|
3840 |
|
3841 |
+
#: app/features/mec/notifications.php:661
|
3842 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3843 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3844 |
msgid "Verified"
|
3845 |
msgstr "Doğrulanmış"
|
3846 |
|
3847 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3848 |
msgid "Please Refresh Page"
|
3849 |
msgstr ""
|
3850 |
|
5275 |
msgstr "http://viseraturkiye.com"
|
5276 |
|
5277 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5278 |
+
#: app/skins/single.php:295
|
5279 |
msgid "Other Organizers"
|
5280 |
msgstr ""
|
5281 |
|
5417 |
msgid "day"
|
5418 |
msgstr "gün"
|
5419 |
|
5420 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5421 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5422 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5423 |
msgid "days"
|
5427 |
msgid "hour"
|
5428 |
msgstr "saat"
|
5429 |
|
5430 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5431 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5432 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5433 |
msgid "hours"
|
5437 |
msgid "minute"
|
5438 |
msgstr "dakika"
|
5439 |
|
5440 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5441 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5442 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5443 |
msgid "minutes"
|
5447 |
msgid "second"
|
5448 |
msgstr "saniye"
|
5449 |
|
5450 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5451 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5452 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5453 |
msgid "seconds"
|
5927 |
msgid "Your booking is confirmed."
|
5928 |
msgstr "Rezervasyonunuz teyit edildi."
|
5929 |
|
5930 |
+
#: app/libraries/notifications.php:252
|
5931 |
+
#, fuzzy
|
5932 |
+
#| msgid "Your booking cannot be canceled."
|
5933 |
+
msgid "booking canceled."
|
5934 |
+
msgstr "Rezervasyonunuz iptal edilemez."
|
5935 |
+
|
5936 |
+
#: app/libraries/notifications.php:296
|
5937 |
msgid "A new booking is received."
|
5938 |
msgstr "Yeni bir rezervasyon alındı."
|
5939 |
|
5940 |
+
#: app/libraries/notifications.php:425
|
5941 |
msgid "A new event is added."
|
5942 |
msgstr "Yeni bir etkinlik eklendi."
|
5943 |
|
5944 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
5945 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5946 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5947 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5948 |
msgid "All of the day"
|
5949 |
msgstr "Bütün gün"
|
5950 |
|
5951 |
+
#: app/libraries/notifications.php:605
|
5952 |
msgid "to"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
5956 |
msgid "+ Add to Google Calendar"
|
5957 |
msgstr "Google Takvim'e ekle"
|
5958 |
|
5959 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
5960 |
msgid "+ iCal export"
|
5961 |
msgstr "iCal Çıktısı"
|
5962 |
|
5963 |
+
#: app/libraries/notifications.php:683
|
5964 |
msgid "Yes"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
+
#: app/libraries/notifications.php:683
|
5968 |
msgid "No"
|
5969 |
msgstr ""
|
5970 |
|
6177 |
msgid "All"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
+
#: app/skins/monthly_view/calendar.php:68
|
6181 |
+
#: app/skins/monthly_view/calendar.php:154
|
6182 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6183 |
#: app/skins/monthly_view/calendar_clean.php:153
|
6184 |
#, php-format
|
6185 |
msgid "Events for %s"
|
6186 |
msgstr "Etkinlikler için %s"
|
6187 |
|
6188 |
+
#: app/skins/monthly_view/calendar.php:156
|
6189 |
#: app/skins/monthly_view/calendar_clean.php:155
|
6190 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6191 |
msgid "No Events"
|
6195 |
msgid "Home"
|
6196 |
msgstr ""
|
6197 |
|
6198 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
6199 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
6200 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
6201 |
msgid "Phone"
|
6202 |
msgstr "Telefon"
|
6203 |
|
6204 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
6205 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
6206 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
6207 |
msgid "Website"
|
6208 |
msgstr "Web sitesi"
|
6209 |
|
6210 |
+
#: app/skins/single.php:393
|
6211 |
#, fuzzy
|
6212 |
#| msgid "No Search Options"
|
6213 |
msgid "Speakers:"
|
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-06-
|
7 |
-
"PO-Revision-Date: 2019-06-
|
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/dashboard.php:107 app/features/mec/gateways.php:24
|
62 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
63 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
@@ -262,7 +262,7 @@ msgstr ""
|
|
262 |
msgid "Event"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: app/features/events.php:136 app/features/mec.php:
|
266 |
msgid "Add Event"
|
267 |
msgstr ""
|
268 |
|
@@ -310,7 +310,7 @@ msgid "Category"
|
|
310 |
msgstr ""
|
311 |
|
312 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
313 |
-
#: app/features/mec.php:
|
314 |
#: app/libraries/main.php:4375
|
315 |
msgid "Categories"
|
316 |
msgstr ""
|
@@ -409,7 +409,7 @@ msgstr ""
|
|
409 |
#: app/features/events.php:410 app/features/events.php:1682
|
410 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
411 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
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,8 +421,8 @@ msgstr ""
|
|
421 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
422 |
#: app/features/speakers.php:179 app/libraries/main.php:1087
|
423 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
424 |
-
#: app/libraries/notifications.php:
|
425 |
-
#: app/modules/booking/steps/form.php:80 app/skins/single.php:
|
426 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
427 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
428 |
#: app/skins/single/modern.php:48
|
@@ -541,13 +541,14 @@ msgstr ""
|
|
541 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
542 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
543 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
544 |
-
#: app/features/mec/notifications.php:
|
545 |
-
#: app/features/mec/notifications.php:
|
546 |
-
#: app/features/mec/notifications.php:
|
547 |
-
#: app/features/mec/notifications.php:
|
548 |
-
#: app/features/mec/notifications.php:
|
549 |
-
#: app/features/mec/notifications.php:
|
550 |
-
#: app/features/mec/notifications.php:
|
|
|
551 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
552 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
553 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
@@ -752,7 +753,7 @@ msgid "Day 1"
|
|
752 |
msgstr ""
|
753 |
|
754 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
755 |
-
#: app/skins/single.php:
|
756 |
msgid "Hourly Schedule"
|
757 |
msgstr ""
|
758 |
|
@@ -824,7 +825,7 @@ msgstr ""
|
|
824 |
|
825 |
#: app/features/events.php:913 app/features/events.php:933
|
826 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
827 |
-
#: app/features/mec.php:
|
828 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
829 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
830 |
msgid "Speakers"
|
@@ -1204,7 +1205,7 @@ msgstr ""
|
|
1204 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1205 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1206 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1207 |
-
#: app/skins/single.php:
|
1208 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1209 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1210 |
msgid "Location"
|
@@ -1374,14 +1375,14 @@ msgid "Remove Image"
|
|
1374 |
msgstr ""
|
1375 |
|
1376 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1377 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1378 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1379 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1380 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1381 |
msgid "Labels"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: app/features/fes/form.php:589 app/features/mec.php:
|
1385 |
#: app/features/mec/meta_boxes/filter.php:138
|
1386 |
msgid "Tags"
|
1387 |
msgstr ""
|
@@ -1417,7 +1418,7 @@ msgstr ""
|
|
1417 |
|
1418 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1419 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1420 |
-
#: app/features/mec/notifications.php:
|
1421 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1422 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1423 |
msgid "Import / Export"
|
@@ -1676,15 +1677,15 @@ msgstr ""
|
|
1676 |
#: app/features/ix/export_g_calendar.php:72
|
1677 |
#: app/features/ix/export_g_calendar.php:147
|
1678 |
#: app/features/ix/export_g_calendar.php:164
|
1679 |
-
#: app/features/mec/notifications.php:
|
1680 |
-
#: app/features/mec/notifications.php:
|
1681 |
-
#: app/features/mec/notifications.php:
|
1682 |
-
#: app/features/mec/notifications.php:
|
1683 |
msgid "Add to Google Calendar"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
#: app/features/ix/export_g_calendar.php:90
|
1687 |
-
#: app/features/mec/notifications.php:
|
1688 |
msgid "Checking ..."
|
1689 |
msgstr ""
|
1690 |
|
@@ -1908,7 +1909,7 @@ msgstr ""
|
|
1908 |
|
1909 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1910 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1911 |
-
#: app/features/mec/notifications.php:
|
1912 |
msgid "Important Note"
|
1913 |
msgstr ""
|
1914 |
|
@@ -2034,7 +2035,7 @@ msgstr ""
|
|
2034 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2035 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2036 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2037 |
-
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:
|
2038 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2039 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2040 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
@@ -2048,7 +2049,7 @@ msgstr ""
|
|
2048 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2049 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2050 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2051 |
-
#: app/skins/monthly_view/calendar.php:
|
2052 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2053 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2054 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
@@ -2076,7 +2077,7 @@ msgstr ""
|
|
2076 |
msgid "Event %s"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2080 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2081 |
#: app/libraries/main.php:4379
|
2082 |
msgid "Locations"
|
@@ -2192,115 +2193,115 @@ msgid ""
|
|
2192 |
"You can select extra locations in addition to main location if you like."
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: app/features/mec.php:
|
2196 |
msgid ""
|
2197 |
"Activation faild. Please check your purchase code or license type."
|
2198 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: app/features/mec.php:
|
2202 |
msgid "Troubleshooting"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: app/features/mec.php:
|
2206 |
msgid ""
|
2207 |
"Your options is not in JSON format. Please insert correct options in this "
|
2208 |
"field and try again."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: app/features/mec.php:
|
2212 |
msgid "Your options field can not be empty!"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: app/features/mec.php:
|
2216 |
msgid "Your options imported successfuly."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: app/features/mec.php:
|
2220 |
msgid "MEC - Support"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: app/features/mec.php:
|
2224 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2225 |
-
#: app/features/mec/notifications.php:
|
2226 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2227 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2228 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2229 |
msgid "Support"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: app/features/mec.php:
|
2233 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2234 |
#: app/libraries/main.php:4381
|
2235 |
msgid "Organizers"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: app/features/mec.php:
|
2239 |
#: app/features/mec/dashboard.php:194
|
2240 |
msgid "Shortcodes"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: app/features/mec.php:
|
2244 |
msgid "MEC - Settings"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: app/features/mec.php:
|
2248 |
msgid "MEC - Addons"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: app/features/mec.php:
|
2252 |
msgid "Addons"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: app/features/mec.php:
|
2256 |
msgid "Add Shortcode"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: app/features/mec.php:
|
2260 |
msgid "Add New Shortcode"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: app/features/mec.php:
|
2264 |
msgid "No shortcodes found!"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: app/features/mec.php:
|
2268 |
msgid "All Shortcodes"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: app/features/mec.php:
|
2272 |
msgid "Edit shortcodes"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: app/features/mec.php:
|
2276 |
msgid "No shortcodes found in Trash!"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: app/features/mec.php:
|
2280 |
msgid "Display Options"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: app/features/mec.php:
|
2284 |
msgid "Filter Options"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: app/features/mec.php:
|
2288 |
msgid "Search Form"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: app/features/mec.php:
|
2292 |
msgid "Display content's images as Popup"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: app/features/mec.php:
|
2296 |
msgid "Single Event Display Method"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: app/features/mec.php:
|
2300 |
msgid "Separate Window"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: app/features/mec.php:
|
2304 |
msgid "Modal 1"
|
2305 |
msgstr ""
|
2306 |
|
@@ -2451,10 +2452,10 @@ msgstr ""
|
|
2451 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2452 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2453 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2454 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2455 |
-
#: app/features/mec/notifications.php:
|
2456 |
-
#: app/features/mec/notifications.php:
|
2457 |
-
#: app/features/mec/notifications.php:
|
2458 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2459 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2460 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
@@ -2469,7 +2470,7 @@ msgid "Save Changes"
|
|
2469 |
msgstr ""
|
2470 |
|
2471 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2472 |
-
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:
|
2473 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2474 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2475 |
#: app/features/mec/support.php:52
|
@@ -2477,7 +2478,7 @@ msgid "Styling Options"
|
|
2477 |
msgstr ""
|
2478 |
|
2479 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2480 |
-
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:
|
2481 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2482 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2483 |
#: app/features/mec/support.php:59
|
@@ -2486,21 +2487,21 @@ msgstr ""
|
|
2486 |
|
2487 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2488 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2489 |
-
#: app/features/mec/notifications.php:
|
2490 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2491 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2492 |
msgid "Messages"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2496 |
-
#: app/features/mec/notifications.php:
|
2497 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2498 |
#: app/features/mec/styling.php:375
|
2499 |
msgid "Saved"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2503 |
-
#: app/features/mec/notifications.php:
|
2504 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2505 |
#: app/features/mec/styling.php:376
|
2506 |
msgid "Settings Saved!"
|
@@ -3313,300 +3314,352 @@ msgstr ""
|
|
3313 |
msgid "No Search Options"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:
|
3317 |
msgid "Booking Notification"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:
|
3321 |
msgid "Booking Verification"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:
|
3325 |
#: app/features/mec/settings.php:1409
|
3326 |
msgid "Booking Confirmation"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
3330 |
msgid "Admin Notification"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: app/features/mec/notifications.php:
|
3334 |
-
#: app/libraries/notifications.php:
|
3335 |
msgid "Booking Reminder"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: app/features/mec/notifications.php:
|
3339 |
#: app/features/mec/support-page.php:80
|
3340 |
msgid "New Event"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: app/features/mec/notifications.php:
|
3344 |
msgid "Enable booking notification"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: app/features/mec/notifications.php:
|
3348 |
msgid "It sends to attendee after booking for notifying him/her."
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: app/features/mec/notifications.php:
|
3352 |
-
#: app/features/mec/notifications.php:
|
3353 |
-
#: app/features/mec/notifications.php:
|
3354 |
-
#: app/features/mec/notifications.php:
|
3355 |
-
#: app/features/mec/notifications.php:
|
3356 |
-
#: app/features/mec/notifications.php:
|
|
|
3357 |
msgid "Email Subject"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: app/features/mec/notifications.php:
|
3361 |
-
#: app/features/mec/notifications.php:
|
3362 |
-
#: app/features/mec/notifications.php:
|
3363 |
-
#: app/features/mec/notifications.php:
|
3364 |
-
#: app/features/mec/notifications.php:
|
3365 |
-
#: app/features/mec/notifications.php:
|
3366 |
-
#: app/features/mec/notifications.php:322
|
3367 |
-
#: app/features/mec/notifications.php:326
|
3368 |
-
#: app/features/mec/notifications.php:385
|
3369 |
-
#: app/features/mec/notifications.php:389
|
3370 |
-
#: app/features/mec/notifications.php:400
|
3371 |
-
#: app/features/mec/notifications.php:457
|
3372 |
-
#: app/features/mec/notifications.php:461
|
3373 |
-
msgid "Custom Recipients"
|
3374 |
-
msgstr ""
|
3375 |
-
|
3376 |
-
#: app/features/mec/notifications.php:164
|
3377 |
-
#: app/features/mec/notifications.php:222
|
3378 |
-
#: app/features/mec/notifications.php:274
|
3379 |
-
#: app/features/mec/notifications.php:327
|
3380 |
-
#: app/features/mec/notifications.php:390
|
3381 |
-
#: app/features/mec/notifications.php:401
|
3382 |
-
#: app/features/mec/notifications.php:462
|
3383 |
-
msgid "Insert comma separated emails for multiple recipients."
|
3384 |
-
msgstr ""
|
3385 |
-
|
3386 |
-
#: app/features/mec/notifications.php:171
|
3387 |
#: app/features/mec/notifications.php:334
|
3388 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: app/features/mec/notifications.php:
|
3392 |
#: app/features/mec/notifications.php:228
|
3393 |
#: app/features/mec/notifications.php:280
|
3394 |
-
#: app/features/mec/notifications.php:
|
3395 |
-
#: app/features/mec/notifications.php:
|
3396 |
-
#: app/features/mec/notifications.php:
|
3397 |
-
|
|
|
|
|
3398 |
msgstr ""
|
3399 |
|
3400 |
#: app/features/mec/notifications.php:177
|
3401 |
-
#: app/features/mec/notifications.php:
|
3402 |
-
#: app/features/mec/notifications.php:
|
3403 |
-
|
3404 |
-
#: app/features/mec/notifications.php:410
|
3405 |
-
#: app/features/mec/notifications.php:471
|
3406 |
-
msgid "You can use following placeholders"
|
3407 |
-
msgstr ""
|
3408 |
-
|
3409 |
-
#: app/features/mec/notifications.php:179
|
3410 |
-
#: app/features/mec/notifications.php:233
|
3411 |
-
#: app/features/mec/notifications.php:285
|
3412 |
-
#: app/features/mec/notifications.php:342
|
3413 |
-
#: app/features/mec/notifications.php:412
|
3414 |
-
msgid "First name of attendee"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
#: app/features/mec/notifications.php:180
|
3418 |
#: app/features/mec/notifications.php:234
|
3419 |
#: app/features/mec/notifications.php:286
|
3420 |
-
#: app/features/mec/notifications.php:
|
3421 |
-
#: app/features/mec/notifications.php:
|
3422 |
-
|
3423 |
-
|
3424 |
-
|
3425 |
-
#: app/features/mec/notifications.php:181
|
3426 |
-
#: app/features/mec/notifications.php:235
|
3427 |
-
#: app/features/mec/notifications.php:287
|
3428 |
-
#: app/features/mec/notifications.php:344
|
3429 |
-
#: app/features/mec/notifications.php:414
|
3430 |
-
msgid "Email of attendee"
|
3431 |
-
msgstr ""
|
3432 |
-
|
3433 |
-
#: app/features/mec/notifications.php:182
|
3434 |
-
#: app/features/mec/notifications.php:236
|
3435 |
-
#: app/features/mec/notifications.php:288
|
3436 |
-
#: app/features/mec/notifications.php:345
|
3437 |
-
#: app/features/mec/notifications.php:415
|
3438 |
-
msgid "Booked date of event"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
#: app/features/mec/notifications.php:183
|
3442 |
#: app/features/mec/notifications.php:237
|
3443 |
#: app/features/mec/notifications.php:289
|
3444 |
-
#: app/features/mec/notifications.php:
|
3445 |
-
#: app/features/mec/notifications.php:
|
3446 |
-
|
3447 |
-
|
3448 |
-
|
3449 |
-
#: app/features/mec/notifications.php:184
|
3450 |
-
#: app/features/mec/notifications.php:238
|
3451 |
-
#: app/features/mec/notifications.php:290
|
3452 |
-
#: app/features/mec/notifications.php:347
|
3453 |
-
#: app/features/mec/notifications.php:417
|
3454 |
-
msgid "Booking Price"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
#: app/features/mec/notifications.php:185
|
3458 |
#: app/features/mec/notifications.php:239
|
3459 |
#: app/features/mec/notifications.php:291
|
3460 |
-
#: app/features/mec/notifications.php:
|
3461 |
-
#: app/features/mec/notifications.php:
|
3462 |
-
#: app/features/mec/notifications.php:
|
3463 |
-
msgid "
|
3464 |
msgstr ""
|
3465 |
|
3466 |
#: app/features/mec/notifications.php:186
|
3467 |
#: app/features/mec/notifications.php:240
|
3468 |
#: app/features/mec/notifications.php:292
|
3469 |
-
#: app/features/mec/notifications.php:
|
3470 |
-
#: app/features/mec/notifications.php:
|
3471 |
-
#: app/features/mec/notifications.php:
|
3472 |
-
msgid "
|
3473 |
msgstr ""
|
3474 |
|
3475 |
#: app/features/mec/notifications.php:187
|
3476 |
#: app/features/mec/notifications.php:241
|
3477 |
#: app/features/mec/notifications.php:293
|
3478 |
-
#: app/features/mec/notifications.php:
|
3479 |
-
#: app/features/mec/notifications.php:
|
3480 |
-
#: app/features/mec/notifications.php:
|
3481 |
-
msgid "
|
3482 |
msgstr ""
|
3483 |
|
3484 |
#: app/features/mec/notifications.php:188
|
3485 |
#: app/features/mec/notifications.php:242
|
3486 |
#: app/features/mec/notifications.php:294
|
3487 |
-
#: app/features/mec/notifications.php:
|
3488 |
-
#: app/features/mec/notifications.php:
|
3489 |
-
|
|
|
3490 |
msgstr ""
|
3491 |
|
3492 |
#: app/features/mec/notifications.php:189
|
3493 |
#: app/features/mec/notifications.php:243
|
3494 |
#: app/features/mec/notifications.php:295
|
3495 |
-
#: app/features/mec/notifications.php:
|
3496 |
-
#: app/features/mec/notifications.php:
|
3497 |
-
|
|
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: app/features/mec/notifications.php:190
|
3501 |
#: app/features/mec/notifications.php:244
|
3502 |
#: app/features/mec/notifications.php:296
|
3503 |
-
#: app/features/mec/notifications.php:
|
3504 |
-
#: app/features/mec/notifications.php:
|
3505 |
-
|
|
|
3506 |
msgstr ""
|
3507 |
|
3508 |
#: app/features/mec/notifications.php:191
|
3509 |
#: app/features/mec/notifications.php:245
|
3510 |
#: app/features/mec/notifications.php:297
|
3511 |
-
#: app/features/mec/notifications.php:
|
3512 |
-
#: app/features/mec/notifications.php:
|
3513 |
-
|
|
|
|
|
3514 |
msgstr ""
|
3515 |
|
3516 |
#: app/features/mec/notifications.php:192
|
3517 |
#: app/features/mec/notifications.php:246
|
3518 |
#: app/features/mec/notifications.php:298
|
3519 |
-
#: app/features/mec/notifications.php:
|
3520 |
-
#: app/features/mec/notifications.php:
|
3521 |
-
|
|
|
|
|
3522 |
msgstr ""
|
3523 |
|
3524 |
#: app/features/mec/notifications.php:193
|
3525 |
#: app/features/mec/notifications.php:247
|
3526 |
#: app/features/mec/notifications.php:299
|
3527 |
-
#: app/features/mec/notifications.php:
|
3528 |
-
#: app/features/mec/notifications.php:
|
3529 |
-
|
|
|
|
|
3530 |
msgstr ""
|
3531 |
|
3532 |
#: app/features/mec/notifications.php:194
|
3533 |
#: app/features/mec/notifications.php:248
|
3534 |
#: app/features/mec/notifications.php:300
|
3535 |
-
#: app/features/mec/notifications.php:
|
3536 |
-
#: app/features/mec/notifications.php:
|
3537 |
-
|
|
|
3538 |
msgstr ""
|
3539 |
|
3540 |
#: app/features/mec/notifications.php:195
|
3541 |
-
#: app/features/mec/notifications.php:
|
3542 |
-
|
|
|
|
|
|
|
|
|
3543 |
msgstr ""
|
3544 |
|
3545 |
#: app/features/mec/notifications.php:196
|
|
|
3546 |
#: app/features/mec/notifications.php:302
|
3547 |
-
#: app/features/mec/notifications.php:
|
3548 |
-
|
|
|
|
|
3549 |
msgstr ""
|
3550 |
|
3551 |
#: app/features/mec/notifications.php:197
|
3552 |
-
#: app/features/mec/notifications.php:
|
3553 |
#: app/features/mec/notifications.php:303
|
3554 |
-
#: app/features/mec/notifications.php:
|
3555 |
-
#: app/features/mec/notifications.php:
|
3556 |
-
|
|
|
3557 |
msgstr ""
|
3558 |
|
3559 |
#: app/features/mec/notifications.php:198
|
3560 |
-
#: app/features/mec/notifications.php:
|
3561 |
#: app/features/mec/notifications.php:304
|
3562 |
-
#: app/features/mec/notifications.php:
|
3563 |
-
|
|
|
|
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: app/features/mec/notifications.php:199
|
3567 |
-
#: app/features/mec/notifications.php:
|
3568 |
#: app/features/mec/notifications.php:305
|
3569 |
-
#: app/features/mec/notifications.php:
|
3570 |
-
|
|
|
|
|
3571 |
msgstr ""
|
3572 |
|
3573 |
#: app/features/mec/notifications.php:200
|
3574 |
-
#: app/features/mec/notifications.php:
|
3575 |
#: app/features/mec/notifications.php:306
|
3576 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3577 |
msgid "Download ICS file"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: app/features/mec/notifications.php:
|
3581 |
msgid "It sends to attendee email for verifying their booking/email."
|
3582 |
msgstr ""
|
3583 |
|
3584 |
-
#: app/features/mec/notifications.php:
|
3585 |
msgid "Email/Booking verification link."
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: app/features/mec/notifications.php:
|
3589 |
msgid "It sends to attendee after confirming the booking by admin."
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: app/features/mec/notifications.php:
|
3593 |
-
#: app/features/mec/notifications.php:
|
3594 |
msgid "Booking cancellation link."
|
3595 |
msgstr ""
|
3596 |
|
3597 |
-
#: app/features/mec/notifications.php:
|
3598 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3602 |
msgid "Admin booking management link."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
-
#: app/features/mec/notifications.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3606 |
msgid "Enable booking reminder notification"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
-
#: app/features/mec/notifications.php:
|
3610 |
#, php-format
|
3611 |
msgid ""
|
3612 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -3614,52 +3667,52 @@ msgid ""
|
|
3614 |
"send the reminders multiple times."
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: app/features/mec/notifications.php:
|
3618 |
msgid "only once per day"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
-
#: app/features/mec/notifications.php:
|
3622 |
msgid "Days"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
-
#: app/features/mec/notifications.php:
|
3626 |
msgid "Enable new event notification"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
-
#: app/features/mec/notifications.php:
|
3630 |
msgid ""
|
3631 |
"It sends after adding a new event from frontend event submission or from "
|
3632 |
"website backend."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: app/features/mec/notifications.php:
|
3636 |
msgid "Title of event"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
-
#: app/features/mec/notifications.php:
|
3640 |
msgid "Link of event"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
-
#: app/features/mec/notifications.php:
|
3644 |
msgid "Status of event"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
-
#: app/features/mec/notifications.php:
|
3648 |
#: app/features/mec/settings.php:1253
|
3649 |
msgid "Event Note"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: app/features/mec/notifications.php:
|
3653 |
msgid "Admin events management link."
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: app/features/mec/notifications.php:
|
3657 |
-
#: app/features/mec/notifications.php:
|
3658 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3659 |
msgid "Verified"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: app/features/mec/notifications.php:
|
3663 |
msgid "Please Refresh Page"
|
3664 |
msgstr ""
|
3665 |
|
@@ -4961,7 +5014,7 @@ msgid "eg. https://webnus.net"
|
|
4961 |
msgstr ""
|
4962 |
|
4963 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
4964 |
-
#: app/skins/single.php:
|
4965 |
msgid "Other Organizers"
|
4966 |
msgstr ""
|
4967 |
|
@@ -5088,7 +5141,7 @@ msgstr ""
|
|
5088 |
msgid "day"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: app/libraries/factory.php:308 app/modules/countdown/details.php:
|
5092 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5093 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5094 |
msgid "days"
|
@@ -5098,7 +5151,7 @@ msgstr ""
|
|
5098 |
msgid "hour"
|
5099 |
msgstr ""
|
5100 |
|
5101 |
-
#: app/libraries/factory.php:310 app/modules/countdown/details.php:
|
5102 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5103 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5104 |
msgid "hours"
|
@@ -5108,7 +5161,7 @@ msgstr ""
|
|
5108 |
msgid "minute"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: app/libraries/factory.php:312 app/modules/countdown/details.php:
|
5112 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5113 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5114 |
msgid "minutes"
|
@@ -5118,7 +5171,7 @@ msgstr ""
|
|
5118 |
msgid "second"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: app/libraries/factory.php:314 app/modules/countdown/details.php:
|
5122 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5123 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5124 |
msgid "seconds"
|
@@ -5585,38 +5638,42 @@ msgstr ""
|
|
5585 |
msgid "Your booking is confirmed."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: app/libraries/notifications.php:
|
|
|
|
|
|
|
|
|
5589 |
msgid "A new booking is received."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: app/libraries/notifications.php:
|
5593 |
msgid "A new event is added."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: app/libraries/notifications.php:
|
5597 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5598 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5599 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5600 |
msgid "All of the day"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: app/libraries/notifications.php:
|
5604 |
msgid "to"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#: app/libraries/notifications.php:
|
5608 |
msgid "+ Add to Google Calendar"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#: app/libraries/notifications.php:
|
5612 |
msgid "+ iCal export"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#: app/libraries/notifications.php:
|
5616 |
msgid "Yes"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
-
#: app/libraries/notifications.php:
|
5620 |
msgid "No"
|
5621 |
msgstr ""
|
5622 |
|
@@ -5827,15 +5884,15 @@ msgstr ""
|
|
5827 |
msgid "All"
|
5828 |
msgstr ""
|
5829 |
|
5830 |
-
#: app/skins/monthly_view/calendar.php:
|
5831 |
-
#: app/skins/monthly_view/calendar.php:
|
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 ""
|
5837 |
|
5838 |
-
#: app/skins/monthly_view/calendar.php:
|
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"
|
@@ -5845,19 +5902,19 @@ msgstr ""
|
|
5845 |
msgid "Home"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#: app/skins/single.php:
|
5849 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
5850 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
5851 |
msgid "Phone"
|
5852 |
msgstr ""
|
5853 |
|
5854 |
-
#: app/skins/single.php:
|
5855 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
5856 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
5857 |
msgid "Website"
|
5858 |
msgstr ""
|
5859 |
|
5860 |
-
#: app/skins/single.php:
|
5861 |
msgid "Speakers:"
|
5862 |
msgstr ""
|
5863 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
6 |
+
"POT-Creation-Date: 2019-06-10 15:02+0430\n"
|
7 |
+
"PO-Revision-Date: 2019-06-10 15:02+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:348
|
35 |
+
#: app/features/mec.php:378 app/features/mec.php:404
|
36 |
msgid "Shortcode"
|
37 |
msgstr ""
|
38 |
|
57 |
msgid "Event Color"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: app/features/contextual.php:55 app/features/mec.php:329
|
61 |
#: app/features/mec/dashboard.php:107 app/features/mec/gateways.php:24
|
62 |
#: app/features/mec/ie.php:20 app/features/mec/messages.php:24
|
63 |
#: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
|
262 |
msgid "Event"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: app/features/events.php:136 app/features/mec.php:315
|
266 |
msgid "Add Event"
|
267 |
msgstr ""
|
268 |
|
310 |
msgstr ""
|
311 |
|
312 |
#: app/features/events.php:160 app/features/fes/form.php:519
|
313 |
+
#: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
|
314 |
#: app/libraries/main.php:4375
|
315 |
msgid "Categories"
|
316 |
msgstr ""
|
409 |
#: app/features/events.php:410 app/features/events.php:1682
|
410 |
#: app/features/fes/form.php:442 app/features/labels.php:177
|
411 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
412 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:667
|
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:1087
|
423 |
#: app/libraries/main.php:1168 app/libraries/main.php:2199
|
424 |
+
#: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
|
425 |
+
#: app/modules/booking/steps/form.php:80 app/skins/single.php:317
|
426 |
#: app/skins/single/default.php:209 app/skins/single/default.php:420
|
427 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
428 |
#: app/skins/single/modern.php:48
|
541 |
#: app/features/mec/meta_boxes/display_options.php:1087
|
542 |
#: app/features/mec/meta_boxes/display_options.php:1100
|
543 |
#: app/features/mec/meta_boxes/display_options.php:1113
|
544 |
+
#: app/features/mec/notifications.php:170
|
545 |
+
#: app/features/mec/notifications.php:228
|
546 |
+
#: app/features/mec/notifications.php:280
|
547 |
+
#: app/features/mec/notifications.php:339
|
548 |
+
#: app/features/mec/notifications.php:406
|
549 |
+
#: app/features/mec/notifications.php:469
|
550 |
+
#: app/features/mec/notifications.php:480
|
551 |
+
#: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
|
552 |
#: app/features/mec/settings.php:318 app/features/mec/settings.php:345
|
553 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:386
|
554 |
#: app/features/mec/settings.php:406 app/features/mec/settings.php:483
|
753 |
msgstr ""
|
754 |
|
755 |
#: app/features/events.php:876 app/features/mec/settings.php:1225
|
756 |
+
#: app/skins/single.php:379
|
757 |
msgid "Hourly Schedule"
|
758 |
msgstr ""
|
759 |
|
825 |
|
826 |
#: app/features/events.php:913 app/features/events.php:933
|
827 |
#: app/features/events.php:974 app/features/fes/form.php:612
|
828 |
+
#: app/features/mec.php:325 app/features/mec/settings.php:78
|
829 |
#: app/features/mec/settings.php:1219 app/features/speakers.php:57
|
830 |
#: app/libraries/main.php:4383 app/modules/speakers/details.php:18
|
831 |
msgid "Speakers"
|
1205 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1206 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
|
1207 |
#: app/libraries/main.php:4380 app/libraries/skins.php:801
|
1208 |
+
#: app/skins/single.php:356 app/skins/single/default.php:151
|
1209 |
#: app/skins/single/default.php:362 app/skins/single/m1.php:155
|
1210 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1211 |
msgid "Location"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
#: app/features/fes/form.php:544 app/features/labels.php:61
|
1378 |
+
#: app/features/labels.php:220 app/features/mec.php:318
|
1379 |
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
|
1380 |
#: app/skins/single/default.php:130 app/skins/single/default.php:341
|
1381 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:213
|
1382 |
msgid "Labels"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: app/features/fes/form.php:589 app/features/mec.php:316
|
1386 |
#: app/features/mec/meta_boxes/filter.php:138
|
1387 |
msgid "Tags"
|
1388 |
msgstr ""
|
1418 |
|
1419 |
#: app/features/ix.php:107 app/features/mec/gateways.php:77
|
1420 |
#: app/features/mec/ie.php:73 app/features/mec/messages.php:77
|
1421 |
+
#: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
|
1422 |
#: app/features/mec/settings.php:261 app/features/mec/styles.php:77
|
1423 |
#: app/features/mec/styling.php:99 app/features/mec/support.php:73
|
1424 |
msgid "Import / Export"
|
1677 |
#: app/features/ix/export_g_calendar.php:72
|
1678 |
#: app/features/ix/export_g_calendar.php:147
|
1679 |
#: app/features/ix/export_g_calendar.php:164
|
1680 |
+
#: app/features/mec/notifications.php:207
|
1681 |
+
#: app/features/mec/notifications.php:260
|
1682 |
+
#: app/features/mec/notifications.php:313
|
1683 |
+
#: app/features/mec/notifications.php:513
|
1684 |
msgid "Add to Google Calendar"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
#: app/features/ix/export_g_calendar.php:90
|
1688 |
+
#: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
|
1689 |
msgid "Checking ..."
|
1690 |
msgstr ""
|
1691 |
|
1909 |
|
1910 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
1911 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
1912 |
+
#: app/features/mec/notifications.php:457
|
1913 |
msgid "Important Note"
|
1914 |
msgstr ""
|
1915 |
|
2035 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2036 |
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
|
2037 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2038 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
|
2039 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2040 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2041 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2049 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2050 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2051 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2052 |
+
#: app/skins/monthly_view/calendar.php:86
|
2053 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2054 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2055 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2077 |
msgid "Event %s"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: app/features/locations.php:59 app/features/mec.php:319
|
2081 |
#: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
|
2082 |
#: app/libraries/main.php:4379
|
2083 |
msgid "Locations"
|
2193 |
"You can select extra locations in addition to main location if you like."
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: app/features/mec.php:153
|
2197 |
msgid ""
|
2198 |
"Activation faild. Please check your purchase code or license type."
|
2199 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: app/features/mec.php:153
|
2203 |
msgid "Troubleshooting"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: app/features/mec.php:193
|
2207 |
msgid ""
|
2208 |
"Your options is not in JSON format. Please insert correct options in this "
|
2209 |
"field and try again."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: app/features/mec.php:200
|
2213 |
msgid "Your options field can not be empty!"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: app/features/mec.php:206
|
2217 |
msgid "Your options imported successfuly."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: app/features/mec.php:299
|
2221 |
msgid "MEC - Support"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: app/features/mec.php:299 app/features/mec/gateways.php:84
|
2225 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2226 |
+
#: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
|
2227 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2228 |
#: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
|
2229 |
#: app/features/mec/support.php:80 app/features/mec/support.php:93
|
2230 |
msgid "Support"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: app/features/mec.php:320 app/features/mec/dashboard.php:208
|
2234 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2235 |
#: app/libraries/main.php:4381
|
2236 |
msgid "Organizers"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: app/features/mec.php:328 app/features/mec.php:347
|
2240 |
#: app/features/mec/dashboard.php:194
|
2241 |
msgid "Shortcodes"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: app/features/mec.php:329
|
2245 |
msgid "MEC - Settings"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: app/features/mec.php:330
|
2249 |
msgid "MEC - Addons"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: app/features/mec.php:330 app/features/mec/addons.php:22
|
2253 |
msgid "Addons"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: app/features/mec.php:349
|
2257 |
msgid "Add Shortcode"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: app/features/mec.php:350
|
2261 |
msgid "Add New Shortcode"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: app/features/mec.php:351
|
2265 |
msgid "No shortcodes found!"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: app/features/mec.php:352
|
2269 |
msgid "All Shortcodes"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: app/features/mec.php:353
|
2273 |
msgid "Edit shortcodes"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: app/features/mec.php:354
|
2277 |
msgid "No shortcodes found in Trash!"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: app/features/mec.php:402
|
2281 |
msgid "Display Options"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: app/features/mec.php:403
|
2285 |
msgid "Filter Options"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: app/features/mec.php:405
|
2289 |
msgid "Search Form"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: app/features/mec.php:755
|
2293 |
msgid "Display content's images as Popup"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: app/features/mec.php:768
|
2297 |
msgid "Single Event Display Method"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: app/features/mec.php:773
|
2301 |
msgid "Separate Window"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: app/features/mec.php:774
|
2305 |
msgid "Modal 1"
|
2306 |
msgstr ""
|
2307 |
|
2452 |
#: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
|
2453 |
#: app/features/mec/messages.php:118 app/features/mec/messages.php:127
|
2454 |
#: app/features/mec/messages.php:161 app/features/mec/messages.php:170
|
2455 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
|
2456 |
+
#: app/features/mec/notifications.php:581
|
2457 |
+
#: app/features/mec/notifications.php:680
|
2458 |
+
#: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
|
2459 |
#: app/features/mec/regform.php:198 app/features/mec/regform.php:253
|
2460 |
#: app/features/mec/regform.php:289 app/features/mec/regform.php:298
|
2461 |
#: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
|
2470 |
msgstr ""
|
2471 |
|
2472 |
#: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
|
2473 |
+
#: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
|
2474 |
#: app/features/mec/regform.php:90 app/features/mec/settings.php:240
|
2475 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2476 |
#: app/features/mec/support.php:52
|
2478 |
msgstr ""
|
2479 |
|
2480 |
#: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
|
2481 |
+
#: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
|
2482 |
#: app/features/mec/regform.php:97 app/features/mec/settings.php:247
|
2483 |
#: app/features/mec/styles.php:63 app/features/mec/styling.php:85
|
2484 |
#: app/features/mec/support.php:59
|
2487 |
|
2488 |
#: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
|
2489 |
#: app/features/mec/messages.php:70 app/features/mec/messages.php:97
|
2490 |
+
#: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
|
2491 |
#: app/features/mec/settings.php:254 app/features/mec/styles.php:70
|
2492 |
#: app/features/mec/styling.php:92 app/features/mec/support.php:66
|
2493 |
msgid "Messages"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
#: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
|
2497 |
+
#: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
|
2498 |
#: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
|
2499 |
#: app/features/mec/styling.php:375
|
2500 |
msgid "Saved"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
#: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
|
2504 |
+
#: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
|
2505 |
#: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
|
2506 |
#: app/features/mec/styling.php:376
|
2507 |
msgid "Settings Saved!"
|
3314 |
msgid "No Search Options"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
|
3318 |
msgid "Booking Notification"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
|
3322 |
msgid "Booking Verification"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
|
3326 |
#: app/features/mec/settings.php:1409
|
3327 |
msgid "Booking Confirmation"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
|
3331 |
+
msgid "Booking Cancellation"
|
3332 |
+
msgstr ""
|
3333 |
+
|
3334 |
+
#: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
|
3335 |
msgid "Admin Notification"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
|
3339 |
+
#: app/libraries/notifications.php:354
|
3340 |
msgid "Booking Reminder"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
|
3344 |
#: app/features/mec/support-page.php:80
|
3345 |
msgid "New Event"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: app/features/mec/notifications.php:155
|
3349 |
msgid "Enable booking notification"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: app/features/mec/notifications.php:159
|
3353 |
msgid "It sends to attendee after booking for notifying him/her."
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: app/features/mec/notifications.php:161
|
3357 |
+
#: app/features/mec/notifications.php:219
|
3358 |
+
#: app/features/mec/notifications.php:271
|
3359 |
+
#: app/features/mec/notifications.php:330
|
3360 |
+
#: app/features/mec/notifications.php:397
|
3361 |
+
#: app/features/mec/notifications.php:460
|
3362 |
+
#: app/features/mec/notifications.php:532
|
3363 |
msgid "Email Subject"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: app/features/mec/notifications.php:165
|
3367 |
+
#: app/features/mec/notifications.php:169
|
3368 |
+
#: app/features/mec/notifications.php:223
|
3369 |
+
#: app/features/mec/notifications.php:227
|
3370 |
+
#: app/features/mec/notifications.php:275
|
3371 |
+
#: app/features/mec/notifications.php:279
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3372 |
#: app/features/mec/notifications.php:334
|
3373 |
+
#: app/features/mec/notifications.php:338
|
3374 |
+
#: app/features/mec/notifications.php:401
|
3375 |
+
#: app/features/mec/notifications.php:405
|
3376 |
+
#: app/features/mec/notifications.php:464
|
3377 |
+
#: app/features/mec/notifications.php:468
|
3378 |
+
#: app/features/mec/notifications.php:479
|
3379 |
+
#: app/features/mec/notifications.php:536
|
3380 |
+
#: app/features/mec/notifications.php:540
|
3381 |
+
msgid "Custom Recipients"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: app/features/mec/notifications.php:170
|
3385 |
#: app/features/mec/notifications.php:228
|
3386 |
#: app/features/mec/notifications.php:280
|
3387 |
+
#: app/features/mec/notifications.php:339
|
3388 |
+
#: app/features/mec/notifications.php:406
|
3389 |
+
#: app/features/mec/notifications.php:469
|
3390 |
+
#: app/features/mec/notifications.php:480
|
3391 |
+
#: app/features/mec/notifications.php:541
|
3392 |
+
msgid "Insert comma separated emails for multiple recipients."
|
3393 |
msgstr ""
|
3394 |
|
3395 |
#: app/features/mec/notifications.php:177
|
3396 |
+
#: app/features/mec/notifications.php:350
|
3397 |
+
#: app/features/mec/notifications.php:413
|
3398 |
+
msgid "Send the email to event organizer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3399 |
msgstr ""
|
3400 |
|
3401 |
#: app/features/mec/notifications.php:180
|
3402 |
#: app/features/mec/notifications.php:234
|
3403 |
#: app/features/mec/notifications.php:286
|
3404 |
+
#: app/features/mec/notifications.php:357
|
3405 |
+
#: app/features/mec/notifications.php:416
|
3406 |
+
#: app/features/mec/notifications.php:486
|
3407 |
+
#: app/features/mec/notifications.php:547
|
3408 |
+
msgid "Email Content"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3409 |
msgstr ""
|
3410 |
|
3411 |
#: app/features/mec/notifications.php:183
|
3412 |
#: app/features/mec/notifications.php:237
|
3413 |
#: app/features/mec/notifications.php:289
|
3414 |
+
#: app/features/mec/notifications.php:360
|
3415 |
+
#: app/features/mec/notifications.php:419
|
3416 |
+
#: app/features/mec/notifications.php:489
|
3417 |
+
#: app/features/mec/notifications.php:550
|
3418 |
+
msgid "You can use following placeholders"
|
|
|
|
|
|
|
|
|
|
|
|
|
3419 |
msgstr ""
|
3420 |
|
3421 |
#: app/features/mec/notifications.php:185
|
3422 |
#: app/features/mec/notifications.php:239
|
3423 |
#: app/features/mec/notifications.php:291
|
3424 |
+
#: app/features/mec/notifications.php:362
|
3425 |
+
#: app/features/mec/notifications.php:421
|
3426 |
+
#: app/features/mec/notifications.php:491
|
3427 |
+
msgid "First name of attendee"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
#: app/features/mec/notifications.php:186
|
3431 |
#: app/features/mec/notifications.php:240
|
3432 |
#: app/features/mec/notifications.php:292
|
3433 |
+
#: app/features/mec/notifications.php:363
|
3434 |
+
#: app/features/mec/notifications.php:422
|
3435 |
+
#: app/features/mec/notifications.php:492
|
3436 |
+
msgid "Last name of attendee"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
#: app/features/mec/notifications.php:187
|
3440 |
#: app/features/mec/notifications.php:241
|
3441 |
#: app/features/mec/notifications.php:293
|
3442 |
+
#: app/features/mec/notifications.php:364
|
3443 |
+
#: app/features/mec/notifications.php:423
|
3444 |
+
#: app/features/mec/notifications.php:493
|
3445 |
+
msgid "Email of attendee"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
#: app/features/mec/notifications.php:188
|
3449 |
#: app/features/mec/notifications.php:242
|
3450 |
#: app/features/mec/notifications.php:294
|
3451 |
+
#: app/features/mec/notifications.php:365
|
3452 |
+
#: app/features/mec/notifications.php:424
|
3453 |
+
#: app/features/mec/notifications.php:494
|
3454 |
+
msgid "Booked date of event"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
#: app/features/mec/notifications.php:189
|
3458 |
#: app/features/mec/notifications.php:243
|
3459 |
#: app/features/mec/notifications.php:295
|
3460 |
+
#: app/features/mec/notifications.php:366
|
3461 |
+
#: app/features/mec/notifications.php:425
|
3462 |
+
#: app/features/mec/notifications.php:495
|
3463 |
+
msgid "Booked time of event"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
#: app/features/mec/notifications.php:190
|
3467 |
#: app/features/mec/notifications.php:244
|
3468 |
#: app/features/mec/notifications.php:296
|
3469 |
+
#: app/features/mec/notifications.php:367
|
3470 |
+
#: app/features/mec/notifications.php:426
|
3471 |
+
#: app/features/mec/notifications.php:496
|
3472 |
+
msgid "Booking Price"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
#: app/features/mec/notifications.php:191
|
3476 |
#: app/features/mec/notifications.php:245
|
3477 |
#: app/features/mec/notifications.php:297
|
3478 |
+
#: app/features/mec/notifications.php:368
|
3479 |
+
#: app/features/mec/notifications.php:427
|
3480 |
+
#: app/features/mec/notifications.php:497
|
3481 |
+
#: app/features/mec/notifications.php:556
|
3482 |
+
msgid "Your website title"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
#: app/features/mec/notifications.php:192
|
3486 |
#: app/features/mec/notifications.php:246
|
3487 |
#: app/features/mec/notifications.php:298
|
3488 |
+
#: app/features/mec/notifications.php:369
|
3489 |
+
#: app/features/mec/notifications.php:428
|
3490 |
+
#: app/features/mec/notifications.php:498
|
3491 |
+
#: app/features/mec/notifications.php:557
|
3492 |
+
msgid "Your website URL"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
#: app/features/mec/notifications.php:193
|
3496 |
#: app/features/mec/notifications.php:247
|
3497 |
#: app/features/mec/notifications.php:299
|
3498 |
+
#: app/features/mec/notifications.php:370
|
3499 |
+
#: app/features/mec/notifications.php:429
|
3500 |
+
#: app/features/mec/notifications.php:499
|
3501 |
+
#: app/features/mec/notifications.php:558
|
3502 |
+
msgid "Your website description"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
#: app/features/mec/notifications.php:194
|
3506 |
#: app/features/mec/notifications.php:248
|
3507 |
#: app/features/mec/notifications.php:300
|
3508 |
+
#: app/features/mec/notifications.php:371
|
3509 |
+
#: app/features/mec/notifications.php:430
|
3510 |
+
#: app/features/mec/notifications.php:500
|
3511 |
+
msgid "Event title"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
#: app/features/mec/notifications.php:195
|
3515 |
+
#: app/features/mec/notifications.php:249
|
3516 |
+
#: app/features/mec/notifications.php:301
|
3517 |
+
#: app/features/mec/notifications.php:372
|
3518 |
+
#: app/features/mec/notifications.php:431
|
3519 |
+
#: app/features/mec/notifications.php:501
|
3520 |
+
msgid "Event link"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
#: app/features/mec/notifications.php:196
|
3524 |
+
#: app/features/mec/notifications.php:250
|
3525 |
#: app/features/mec/notifications.php:302
|
3526 |
+
#: app/features/mec/notifications.php:373
|
3527 |
+
#: app/features/mec/notifications.php:432
|
3528 |
+
#: app/features/mec/notifications.php:502
|
3529 |
+
msgid "Organizer name of booked event"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
#: app/features/mec/notifications.php:197
|
3533 |
+
#: app/features/mec/notifications.php:251
|
3534 |
#: app/features/mec/notifications.php:303
|
3535 |
+
#: app/features/mec/notifications.php:374
|
3536 |
+
#: app/features/mec/notifications.php:433
|
3537 |
+
#: app/features/mec/notifications.php:503
|
3538 |
+
msgid "Organizer tel of booked event"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
#: app/features/mec/notifications.php:198
|
3542 |
+
#: app/features/mec/notifications.php:252
|
3543 |
#: app/features/mec/notifications.php:304
|
3544 |
+
#: app/features/mec/notifications.php:375
|
3545 |
+
#: app/features/mec/notifications.php:434
|
3546 |
+
#: app/features/mec/notifications.php:504
|
3547 |
+
msgid "Organizer email of booked event"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
#: app/features/mec/notifications.php:199
|
3551 |
+
#: app/features/mec/notifications.php:253
|
3552 |
#: app/features/mec/notifications.php:305
|
3553 |
+
#: app/features/mec/notifications.php:376
|
3554 |
+
#: app/features/mec/notifications.php:435
|
3555 |
+
#: app/features/mec/notifications.php:505
|
3556 |
+
msgid "Location name of booked event"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
#: app/features/mec/notifications.php:200
|
3560 |
+
#: app/features/mec/notifications.php:254
|
3561 |
#: app/features/mec/notifications.php:306
|
3562 |
+
#: app/features/mec/notifications.php:377
|
3563 |
+
#: app/features/mec/notifications.php:436
|
3564 |
+
#: app/features/mec/notifications.php:506
|
3565 |
+
msgid "Location address of booked event"
|
3566 |
+
msgstr ""
|
3567 |
+
|
3568 |
+
#: app/features/mec/notifications.php:201
|
3569 |
+
#: app/features/mec/notifications.php:379
|
3570 |
+
#: app/features/mec/notifications.php:438
|
3571 |
+
msgid "Full Attendee info such as booking form data, name, email etc."
|
3572 |
+
msgstr ""
|
3573 |
+
|
3574 |
+
#: app/features/mec/notifications.php:202
|
3575 |
+
#: app/features/mec/notifications.php:308
|
3576 |
+
#: app/features/mec/notifications.php:508
|
3577 |
+
msgid "Invoice Link"
|
3578 |
+
msgstr ""
|
3579 |
+
|
3580 |
+
#: app/features/mec/notifications.php:203
|
3581 |
+
#: app/features/mec/notifications.php:256
|
3582 |
+
#: app/features/mec/notifications.php:309
|
3583 |
+
#: app/features/mec/notifications.php:380
|
3584 |
+
#: app/features/mec/notifications.php:439
|
3585 |
+
#: app/features/mec/notifications.php:509
|
3586 |
+
msgid "Total Attendees"
|
3587 |
+
msgstr ""
|
3588 |
+
|
3589 |
+
#: app/features/mec/notifications.php:204
|
3590 |
+
#: app/features/mec/notifications.php:257
|
3591 |
+
#: app/features/mec/notifications.php:310
|
3592 |
+
#: app/features/mec/notifications.php:510
|
3593 |
+
msgid "Ticket name"
|
3594 |
+
msgstr ""
|
3595 |
+
|
3596 |
+
#: app/features/mec/notifications.php:205
|
3597 |
+
#: app/features/mec/notifications.php:258
|
3598 |
+
#: app/features/mec/notifications.php:311
|
3599 |
+
#: app/features/mec/notifications.php:511
|
3600 |
+
msgid "Ticket time"
|
3601 |
+
msgstr ""
|
3602 |
+
|
3603 |
+
#: app/features/mec/notifications.php:206
|
3604 |
+
#: app/features/mec/notifications.php:259
|
3605 |
+
#: app/features/mec/notifications.php:312
|
3606 |
+
#: app/features/mec/notifications.php:512
|
3607 |
msgid "Download ICS file"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
+
#: app/features/mec/notifications.php:217
|
3611 |
msgid "It sends to attendee email for verifying their booking/email."
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: app/features/mec/notifications.php:255
|
3615 |
msgid "Email/Booking verification link."
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: app/features/mec/notifications.php:269
|
3619 |
msgid "It sends to attendee after confirming the booking by admin."
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: app/features/mec/notifications.php:307
|
3623 |
+
#: app/features/mec/notifications.php:507
|
3624 |
msgid "Booking cancellation link."
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: app/features/mec/notifications.php:324
|
3628 |
+
msgid "Enable cancellation notification"
|
3629 |
+
msgstr ""
|
3630 |
+
|
3631 |
+
#: app/features/mec/notifications.php:328
|
3632 |
+
msgid ""
|
3633 |
+
"It sends to selected recipients after booking cancellation for notifying "
|
3634 |
+
"them."
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: app/features/mec/notifications.php:346
|
3638 |
+
msgid "Send the email to admin"
|
3639 |
+
msgstr ""
|
3640 |
+
|
3641 |
+
#: app/features/mec/notifications.php:354
|
3642 |
+
msgid "Send the email to booking user"
|
3643 |
+
msgstr ""
|
3644 |
+
|
3645 |
+
#: app/features/mec/notifications.php:378
|
3646 |
+
#: app/features/mec/notifications.php:437
|
3647 |
msgid "Admin booking management link."
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: app/features/mec/notifications.php:391
|
3651 |
+
msgid "Enable admin notification"
|
3652 |
+
msgstr ""
|
3653 |
+
|
3654 |
+
#: app/features/mec/notifications.php:395
|
3655 |
+
msgid "It sends to admin to notify him/her that a new booking received."
|
3656 |
+
msgstr ""
|
3657 |
+
|
3658 |
+
#: app/features/mec/notifications.php:451
|
3659 |
msgid "Enable booking reminder notification"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: app/features/mec/notifications.php:457
|
3663 |
#, php-format
|
3664 |
msgid ""
|
3665 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
3667 |
"send the reminders multiple times."
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: app/features/mec/notifications.php:457
|
3671 |
msgid "only once per day"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: app/features/mec/notifications.php:475
|
3675 |
msgid "Days"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: app/features/mec/notifications.php:526
|
3679 |
msgid "Enable new event notification"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: app/features/mec/notifications.php:530
|
3683 |
msgid ""
|
3684 |
"It sends after adding a new event from frontend event submission or from "
|
3685 |
"website backend."
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: app/features/mec/notifications.php:552
|
3689 |
msgid "Title of event"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: app/features/mec/notifications.php:553
|
3693 |
msgid "Link of event"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: app/features/mec/notifications.php:554
|
3697 |
msgid "Status of event"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
|
3701 |
#: app/features/mec/settings.php:1253
|
3702 |
msgid "Event Note"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
+
#: app/features/mec/notifications.php:559
|
3706 |
msgid "Admin events management link."
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: app/features/mec/notifications.php:661
|
3710 |
+
#: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
|
3711 |
#: app/features/mec/settings.php:1808 app/libraries/main.php:4570
|
3712 |
msgid "Verified"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
|
3716 |
msgid "Please Refresh Page"
|
3717 |
msgstr ""
|
3718 |
|
5014 |
msgstr ""
|
5015 |
|
5016 |
#: app/features/organizers.php:306 app/libraries/main.php:4412
|
5017 |
+
#: app/skins/single.php:295
|
5018 |
msgid "Other Organizers"
|
5019 |
msgstr ""
|
5020 |
|
5141 |
msgid "day"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
+
#: app/libraries/factory.php:308 app/modules/countdown/details.php:121
|
5145 |
#: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
|
5146 |
#: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
|
5147 |
msgid "days"
|
5151 |
msgid "hour"
|
5152 |
msgstr ""
|
5153 |
|
5154 |
+
#: app/libraries/factory.php:310 app/modules/countdown/details.php:128
|
5155 |
#: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
|
5156 |
#: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
|
5157 |
msgid "hours"
|
5161 |
msgid "minute"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: app/libraries/factory.php:312 app/modules/countdown/details.php:135
|
5165 |
#: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
|
5166 |
#: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
|
5167 |
msgid "minutes"
|
5171 |
msgid "second"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: app/libraries/factory.php:314 app/modules/countdown/details.php:142
|
5175 |
#: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
|
5176 |
#: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
|
5177 |
msgid "seconds"
|
5638 |
msgid "Your booking is confirmed."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: app/libraries/notifications.php:252
|
5642 |
+
msgid "booking canceled."
|
5643 |
+
msgstr ""
|
5644 |
+
|
5645 |
+
#: app/libraries/notifications.php:296
|
5646 |
msgid "A new booking is received."
|
5647 |
msgstr ""
|
5648 |
|
5649 |
+
#: app/libraries/notifications.php:425
|
5650 |
msgid "A new event is added."
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:436
|
5654 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
|
5655 |
#: app/skins/single/default.php:83 app/skins/single/default.php:294
|
5656 |
#: app/skins/single/m1.php:34 app/skins/single/modern.php:183
|
5657 |
msgid "All of the day"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: app/libraries/notifications.php:605
|
5661 |
msgid "to"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
+
#: app/libraries/notifications.php:618 app/modules/export/details.php:27
|
5665 |
msgid "+ Add to Google Calendar"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
+
#: app/libraries/notifications.php:619 app/modules/export/details.php:28
|
5669 |
msgid "+ iCal export"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: app/libraries/notifications.php:683
|
5673 |
msgid "Yes"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: app/libraries/notifications.php:683
|
5677 |
msgid "No"
|
5678 |
msgstr ""
|
5679 |
|
5884 |
msgid "All"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: app/skins/monthly_view/calendar.php:68
|
5888 |
+
#: app/skins/monthly_view/calendar.php:154
|
5889 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5890 |
#: app/skins/monthly_view/calendar_clean.php:153
|
5891 |
#, php-format
|
5892 |
msgid "Events for %s"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: app/skins/monthly_view/calendar.php:156
|
5896 |
#: app/skins/monthly_view/calendar_clean.php:155
|
5897 |
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5898 |
msgid "No Events"
|
5902 |
msgid "Home"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
+
#: app/skins/single.php:310 app/skins/single/default.php:202
|
5906 |
#: app/skins/single/default.php:413 app/skins/single/m1.php:100
|
5907 |
#: app/skins/single/m2.php:32 app/skins/single/modern.php:41
|
5908 |
msgid "Phone"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: app/skins/single.php:324 app/skins/single/default.php:216
|
5912 |
#: app/skins/single/default.php:427 app/skins/single/m1.php:114
|
5913 |
#: app/skins/single/m2.php:46 app/skins/single/modern.php:55
|
5914 |
msgid "Website"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
+
#: app/skins/single.php:393
|
5918 |
msgid "Speakers:"
|
5919 |
msgstr ""
|
5920 |
|
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.
|
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.
|
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.3.0
|
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.3.0');
|
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.1
|
7 |
-
Stable tag: 4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -202,6 +202,14 @@ You can see [plugin documentation here](https://webnus.net/dox/modern-events-cal
|
|
202 |
|
203 |
== Changelog ==
|
204 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
= 4.2.5 =
|
206 |
- Improved: Tooltip notifications in the admin panel
|
207 |
- Improved: Notifications tab in settings
|
4 |
Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 5.2.1
|
7 |
+
Stable tag: 4.3.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
202 |
|
203 |
== Changelog ==
|
204 |
|
205 |
+
= 4.3.0 =
|
206 |
+
- Added: Booking cancellation notification
|
207 |
+
- Added: New feature to disable admin notification
|
208 |
+
- Fixed: Not showing the event when it is on current day and it is not started yet
|
209 |
+
- Fixed: Issue in booking module regarding dates
|
210 |
+
- Fixed: Issue regarding showing day title when only 1 day is added
|
211 |
+
- Fixed: Some PHP notices
|
212 |
+
|
213 |
= 4.2.5 =
|
214 |
- Improved: Tooltip notifications in the admin panel
|
215 |
- Improved: Notifications tab in settings
|