Version Description
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.15.0 |
Comparing to | |
See all releases |
Code changes from version 5.14.0 to 5.15.0
- app/api/Google/Http/REST.php +1 -1
- app/api/Google/Utils.php +1 -1
- app/features/events.php +48 -26
- app/features/ix.php +2 -0
- app/features/locations.php +7 -2
- app/features/mec.php +3 -4
- app/features/mec/meta_boxes/search_form.php +9 -6
- app/features/mec/settings.php +72 -1
- app/features/update.php +1 -1
- app/features/userevents.php +80 -0
- app/libraries/factory.php +6 -2
- app/libraries/main.php +21 -6
- app/libraries/notifications.php +2 -2
- app/libraries/qrcode.php +17 -17
- app/libraries/render.php +43 -7
- app/libraries/skins.php +33 -1
- app/modules/booking/steps/form.php +1 -6
- app/modules/booking/steps/tickets.php +1 -1
- app/skins/grid/render.php +7 -7
- app/skins/list/render.php +3 -3
- assets/css/backend.css +31 -0
- assets/css/backend.min.css +1 -1
- assets/js/events.js +30 -1
- assets/js/frontend.js +10 -2
- changelog.txt +20 -1
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +1243 -1185
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +1240 -1187
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +1220 -1181
- languages/modern-events-calendar-lite-es_ES.mo +0 -0
- languages/modern-events-calendar-lite-es_ES.po +1240 -1187
- languages/modern-events-calendar-lite-fi_FI.mo +0 -0
- languages/modern-events-calendar-lite-fi_FI.po +556 -566
app/api/Google/Http/REST.php
CHANGED
@@ -170,7 +170,7 @@ class Google_Http_REST
|
|
170 |
}
|
171 |
|
172 |
if (count($queryVars)) {
|
173 |
-
$requestUrl .= '?' . implode(
|
174 |
}
|
175 |
|
176 |
return $requestUrl;
|
170 |
}
|
171 |
|
172 |
if (count($queryVars)) {
|
173 |
+
$requestUrl .= '?' . implode('&', $queryVars);
|
174 |
}
|
175 |
|
176 |
return $requestUrl;
|
app/api/Google/Utils.php
CHANGED
@@ -62,7 +62,7 @@ class Google_Utils
|
|
62 |
$strlenVar = strlen($str);
|
63 |
$d = $ret = 0;
|
64 |
for ($count = 0; $count < $strlenVar; ++ $count) {
|
65 |
-
$ordinalValue = ord($str
|
66 |
switch (true) {
|
67 |
case (($ordinalValue >= 0x20) && ($ordinalValue <= 0x7F)):
|
68 |
// characters U-00000000 - U-0000007F (same as ASCII)
|
62 |
$strlenVar = strlen($str);
|
63 |
$d = $ret = 0;
|
64 |
for ($count = 0; $count < $strlenVar; ++ $count) {
|
65 |
+
$ordinalValue = ord($str[$ret]);
|
66 |
switch (true) {
|
67 |
case (($ordinalValue >= 0x20) && ($ordinalValue <= 0x7F)):
|
68 |
// characters U-00000000 - U-0000007F (same as ASCII)
|
app/features/events.php
CHANGED
@@ -100,12 +100,13 @@ class MEC_feature_events extends MEC_base
|
|
100 |
$this->factory->action('mec_metabox_booking', array($this, 'meta_box_regform'), 20);
|
101 |
|
102 |
// Booking Options for FES
|
103 |
-
if(!isset($this->settings['fes_section_booking']) or (isset($this->settings['fes_section_booking']) and $this->settings['fes_section_booking']))
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
|
|
109 |
}
|
110 |
|
111 |
// Show fees meta box only if fees module is enabled
|
@@ -570,7 +571,7 @@ class MEC_feature_events extends MEC_base
|
|
570 |
}
|
571 |
?>
|
572 |
type="checkbox" name="mec[date][allday]" id="mec_allday" value="1"
|
573 |
-
onchange="jQuery('.mec-time-picker').toggle();"/><label
|
574 |
for="mec_allday"><?php _e('All-day Event', 'modern-events-calendar-lite'); ?></label>
|
575 |
</div>
|
576 |
<div class="mec-form-row">
|
@@ -754,7 +755,7 @@ class MEC_feature_events extends MEC_base
|
|
754 |
<div class="mec-col-4">
|
755 |
<input type="text" id="mec_exceptions_in_days_start_date" value="" placeholder="<?php _e('Start', 'modern-events-calendar-lite'); ?>" title="<?php _e('Start', 'modern-events-calendar-lite'); ?>" class="mec_date_picker_dynamic_format widefat" autocomplete="off"/>
|
756 |
</div>
|
757 |
-
<div class="mec-col-3">
|
758 |
<?php $this->main->timepicker(array(
|
759 |
'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
|
760 |
'time_hour' => $start_time_hour,
|
@@ -765,7 +766,7 @@ class MEC_feature_events extends MEC_base
|
|
765 |
)); ?>
|
766 |
</div>
|
767 |
<div class="mec-col-5">
|
768 |
-
<button class="button" type="button" id="mec_add_in_days"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
|
769 |
<span class="mec-tooltip">
|
770 |
<div class="box top">
|
771 |
<h5 class="title"><?php _e('Custom Days Repeating', 'modern-events-calendar-lite'); ?></h5>
|
@@ -784,7 +785,7 @@ class MEC_feature_events extends MEC_base
|
|
784 |
<div class="mec-col-4">
|
785 |
<input type="text" id="mec_exceptions_in_days_end_date" value="" placeholder="<?php _e('End', 'modern-events-calendar-lite'); ?>" title="<?php _e('End', 'modern-events-calendar-lite'); ?>" class="mec_date_picker_dynamic_format" autocomplete="off"/>
|
786 |
</div>
|
787 |
-
<div class="mec-col-8">
|
788 |
<?php $this->main->timepicker(array(
|
789 |
'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
|
790 |
'time_hour' => $end_time_hour,
|
@@ -837,7 +838,7 @@ class MEC_feature_events extends MEC_base
|
|
837 |
}
|
838 |
|
839 |
$in_day = $first_date . ':' . $second_date.(trim($in_day_start_time) ? ':'.$in_day_start_time : '').(trim($in_day_end_time) ? ':'.$in_day_end_time : '');
|
840 |
-
$in_day_label = $first_date. (trim($in_day_start_time_label) ? ' '.$in_day_start_time_label : '') . ' - ' . $second_date. (trim($in_day_end_time_label) ? ' '.$in_day_end_time_label : '');
|
841 |
?>
|
842 |
<div class="mec-form-row" id="mec_in_days_row<?php echo $i; ?>">
|
843 |
<input type="hidden" name="mec[in_days][<?php echo $i; ?>]" value="<?php echo $in_day; ?>"/>
|
@@ -1130,16 +1131,16 @@ class MEC_feature_events extends MEC_base
|
|
1130 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
1131 |
</span>
|
1132 |
</div>
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
</div>
|
1144 |
</div>
|
1145 |
</div>
|
@@ -1478,6 +1479,8 @@ class MEC_feature_events extends MEC_base
|
|
1478 |
*/
|
1479 |
public function meta_box_booking_options($post)
|
1480 |
{
|
|
|
|
|
1481 |
$booking_options = get_post_meta($post->ID, 'mec_booking', true);
|
1482 |
if(!is_array($booking_options)) $booking_options = array();
|
1483 |
|
@@ -1504,6 +1507,8 @@ class MEC_feature_events extends MEC_base
|
|
1504 |
?>
|
1505 |
<div id="mec-booking">
|
1506 |
<div class="mec-meta-box-fields mec-booking-tab-content mec-tab-active" id="mec_meta_box_booking_options_form_1">
|
|
|
|
|
1507 |
<h4 class="mec-title"><label for="mec_bookings_limit"><?php _e('Total booking limit', 'modern-events-calendar-lite'); ?></label></h4>
|
1508 |
<div class="mec-form-row">
|
1509 |
<label class="mec-col-4" for="mec_bookings_limit_unlimited" id="mec_bookings_limit_unlimited_label">
|
@@ -1533,6 +1538,9 @@ class MEC_feature_events extends MEC_base
|
|
1533 |
<input class="mec-col-4 <?php echo ($bookings_limit_unlimited == 1) ? 'mec-util-hidden' : ''; ?>" type="text" name="mec[booking][bookings_limit]" id="mec_bookings_limit"
|
1534 |
value="<?php echo esc_attr($bookings_limit); ?>" placeholder="<?php _e('100', 'modern-events-calendar-lite'); ?>"/>
|
1535 |
</div>
|
|
|
|
|
|
|
1536 |
<h4 class="mec-title"><?php _e('Discount per user roles', 'modern-events-calendar-lite'); ?></h4>
|
1537 |
<?php foreach($roles as $role_key => $role_name): $role_discount = isset($booking_options['roles_discount_'.$role_key]) ? $booking_options['roles_discount_'.$role_key] : $loggedin_discount; ?>
|
1538 |
<div class="mec-form-row">
|
@@ -1542,6 +1550,9 @@ class MEC_feature_events extends MEC_base
|
|
1542 |
<input class="mec-col-4" type="text" name="mec[booking][roles_discount_<?php echo $role_key; ?>]" id="mec_bookings_roles_discount_<?php echo $role_key; ?>" value="<?php echo esc_attr($role_discount); ?>" placeholder="<?php _e('5', 'modern-events-calendar-lite'); ?>">
|
1543 |
</div>
|
1544 |
<?php endforeach; ?>
|
|
|
|
|
|
|
1545 |
<h4 class="mec-title"><?php _e('Book All Occurrences', 'modern-events-calendar-lite'); ?></h4>
|
1546 |
<div class="mec-form-row">
|
1547 |
<label class="mec-col-4" for="mec_bookings_all_occurrences">
|
@@ -1567,6 +1578,9 @@ class MEC_feature_events extends MEC_base
|
|
1567 |
</span>
|
1568 |
</label>
|
1569 |
</div>
|
|
|
|
|
|
|
1570 |
<h4 class="mec-title"><?php _e('Interval Options', 'modern-events-calendar-lite'); ?></h4>
|
1571 |
<div class="mec-form-row">
|
1572 |
<label class="mec-col-4" for="mec_booking_show_booking_form_interval"><?php _e('Show Booking Form Interval', 'modern-events-calendar-lite'); ?></label>
|
@@ -1581,6 +1595,9 @@ class MEC_feature_events extends MEC_base
|
|
1581 |
</span>
|
1582 |
</div>
|
1583 |
</div>
|
|
|
|
|
|
|
1584 |
<h4><?php _e('Automatic Approval', 'modern-events-calendar-lite'); ?></h4>
|
1585 |
<div class="mec-form-row">
|
1586 |
<label class="mec-col-4" for="mec_booking_auto_verify"><?php _e('Email Verification', 'modern-events-calendar-lite'); ?></label>
|
@@ -1602,9 +1619,13 @@ class MEC_feature_events extends MEC_base
|
|
1602 |
</select>
|
1603 |
</div>
|
1604 |
</div>
|
|
|
|
|
1605 |
</div>
|
|
|
|
|
1606 |
<div class="mec-meta-box-fields mec-booking-tab-content" id="mec_meta_box_booking_options_form_2">
|
1607 |
-
<h4 class="mec-title"><label for="mec_bookings_user_limit"><?php _e('Total
|
1608 |
<div class="mec-form-row">
|
1609 |
<label class="mec-col-4" for="mec_bookings_user_limit_unlimited" id="mec_bookings_user_limit_unlimited_label">
|
1610 |
<input type="hidden" name="mec[booking][bookings_user_limit_unlimited]" value="0"/>
|
@@ -1621,6 +1642,7 @@ class MEC_feature_events extends MEC_base
|
|
1621 |
value="<?php echo esc_attr($bookings_user_limit); ?>" placeholder="<?php _e('12', 'modern-events-calendar-lite'); ?>"/>
|
1622 |
</div>
|
1623 |
</div>
|
|
|
1624 |
|
1625 |
<?php if(isset($gateway_settings['gateways_per_event']) and $gateway_settings['gateways_per_event']): ?>
|
1626 |
<div class="mec-meta-box-fields mec-booking-tab-content" id="mec_meta_box_booking_options_form_gateways_per_event">
|
@@ -1822,11 +1844,11 @@ class MEC_feature_events extends MEC_base
|
|
1822 |
<div class="mec-form-row">
|
1823 |
<input class="mec-col-3 mec_date_picker_dynamic_format" type="text"
|
1824 |
name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][start]"
|
1825 |
-
value="<?php echo isset($price_date['start']) ? $this->main->standardize_format(
|
1826 |
placeholder="<?php esc_attr_e('Start', 'modern-events-calendar-lite'); ?>"/>
|
1827 |
<input class="mec-col-3 mec_date_picker_dynamic_format" type="text"
|
1828 |
name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][end]"
|
1829 |
-
value="<?php echo isset($price_date['end']) ? $this->main->standardize_format(
|
1830 |
placeholder="<?php esc_attr_e('End', 'modern-events-calendar-lite'); ?>"/>
|
1831 |
<input class="mec-col-3" type="number"
|
1832 |
name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][price]"
|
@@ -2588,8 +2610,8 @@ class MEC_feature_events extends MEC_base
|
|
2588 |
// Get Modern Events Calendar Data
|
2589 |
$_mec = isset($_POST['mec']) ? $_POST['mec'] : array();
|
2590 |
|
2591 |
-
$start_date = (isset($_mec['date']['start']['date']) and trim($_mec['date']['start']['date'])) ? $this->main->standardize_format(
|
2592 |
-
$end_date = (isset($_mec['date']['end']['date']) and trim($_mec['date']['end']['date'])) ? $this->main->standardize_format(
|
2593 |
|
2594 |
$event = $this->db->select("SELECT * FROM `#__mec_events` WHERE `post_id` = {$post_id}", 'loadAssoc');
|
2595 |
if(!is_array($event)) $event = array();
|
100 |
$this->factory->action('mec_metabox_booking', array($this, 'meta_box_regform'), 20);
|
101 |
|
102 |
// Booking Options for FES
|
103 |
+
if(!isset($this->settings['fes_section_booking']) or (isset($this->settings['fes_section_booking']) and $this->settings['fes_section_booking'])) $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_booking_options'), 35);
|
104 |
+
|
105 |
+
// Ticket Options for FES
|
106 |
+
if(!isset($this->settings['fes_section_tickets']) or (isset($this->settings['fes_section_tickets']) and $this->settings['fes_section_tickets'])) $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_tickets'), 40);
|
107 |
+
|
108 |
+
// Registration Form for FES
|
109 |
+
if(!isset($this->settings['fes_section_reg_form']) or (isset($this->settings['fes_section_reg_form']) and $this->settings['fes_section_reg_form'])) $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_regform'), 45);
|
110 |
}
|
111 |
|
112 |
// Show fees meta box only if fees module is enabled
|
571 |
}
|
572 |
?>
|
573 |
type="checkbox" name="mec[date][allday]" id="mec_allday" value="1"
|
574 |
+
onchange="jQuery('.mec-time-picker, .mec-time-picker-label').toggle(); jQuery('#mec_add_in_days').data('allday', (jQuery(this).is(':checked') ? 1 : 0));"/><label
|
575 |
for="mec_allday"><?php _e('All-day Event', 'modern-events-calendar-lite'); ?></label>
|
576 |
</div>
|
577 |
<div class="mec-form-row">
|
755 |
<div class="mec-col-4">
|
756 |
<input type="text" id="mec_exceptions_in_days_start_date" value="" placeholder="<?php _e('Start', 'modern-events-calendar-lite'); ?>" title="<?php _e('Start', 'modern-events-calendar-lite'); ?>" class="mec_date_picker_dynamic_format widefat" autocomplete="off"/>
|
757 |
</div>
|
758 |
+
<div class="mec-col-3 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
|
759 |
<?php $this->main->timepicker(array(
|
760 |
'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
|
761 |
'time_hour' => $start_time_hour,
|
766 |
)); ?>
|
767 |
</div>
|
768 |
<div class="mec-col-5">
|
769 |
+
<button class="button" type="button" id="mec_add_in_days" data-allday="<?php echo $allday; ?>"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
|
770 |
<span class="mec-tooltip">
|
771 |
<div class="box top">
|
772 |
<h5 class="title"><?php _e('Custom Days Repeating', 'modern-events-calendar-lite'); ?></h5>
|
785 |
<div class="mec-col-4">
|
786 |
<input type="text" id="mec_exceptions_in_days_end_date" value="" placeholder="<?php _e('End', 'modern-events-calendar-lite'); ?>" title="<?php _e('End', 'modern-events-calendar-lite'); ?>" class="mec_date_picker_dynamic_format" autocomplete="off"/>
|
787 |
</div>
|
788 |
+
<div class="mec-col-8 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
|
789 |
<?php $this->main->timepicker(array(
|
790 |
'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
|
791 |
'time_hour' => $end_time_hour,
|
838 |
}
|
839 |
|
840 |
$in_day = $first_date . ':' . $second_date.(trim($in_day_start_time) ? ':'.$in_day_start_time : '').(trim($in_day_end_time) ? ':'.$in_day_end_time : '');
|
841 |
+
$in_day_label = $first_date. (trim($in_day_start_time_label) ? ' <span class="mec-time-picker-label '.($allday ? 'mec-util-hidden' : '').'">'.$in_day_start_time_label.'</span>' : '') . ' - ' . $second_date. (trim($in_day_end_time_label) ? ' <span class="mec-time-picker-label '.($allday ? 'mec-util-hidden' : '').'">'.$in_day_end_time_label.'</span>' : '');
|
842 |
?>
|
843 |
<div class="mec-form-row" id="mec_in_days_row<?php echo $i; ?>">
|
844 |
<input type="hidden" name="mec[in_days][<?php echo $i; ?>]" value="<?php echo $in_day; ?>"/>
|
1131 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
1132 |
</span>
|
1133 |
</div>
|
1134 |
+
</div>
|
1135 |
+
<div class="mec-form-row">
|
1136 |
+
<input
|
1137 |
+
<?php
|
1138 |
+
if ($one_occurrence == '1') {
|
1139 |
+
echo 'checked="checked"';
|
1140 |
+
}
|
1141 |
+
?>
|
1142 |
+
type="checkbox" name="mec[date][one_occurrence]" id="mec-one-occurrence" value="1"/><label
|
1143 |
+
for="mec-one-occurrence"><?php _e('Show only one occurrence of this event', 'modern-events-calendar-lite'); ?></label>
|
1144 |
</div>
|
1145 |
</div>
|
1146 |
</div>
|
1479 |
*/
|
1480 |
public function meta_box_booking_options($post)
|
1481 |
{
|
1482 |
+
$FES = (boolean) !is_admin();
|
1483 |
+
|
1484 |
$booking_options = get_post_meta($post->ID, 'mec_booking', true);
|
1485 |
if(!is_array($booking_options)) $booking_options = array();
|
1486 |
|
1507 |
?>
|
1508 |
<div id="mec-booking">
|
1509 |
<div class="mec-meta-box-fields mec-booking-tab-content mec-tab-active" id="mec_meta_box_booking_options_form_1">
|
1510 |
+
|
1511 |
+
<?php if(!$FES or ($FES and (!isset($this->settings['fes_section_booking_tbl']) or (isset($this->settings['fes_section_booking_tbl']) and $this->settings['fes_section_booking_tbl'])))): ?>
|
1512 |
<h4 class="mec-title"><label for="mec_bookings_limit"><?php _e('Total booking limit', 'modern-events-calendar-lite'); ?></label></h4>
|
1513 |
<div class="mec-form-row">
|
1514 |
<label class="mec-col-4" for="mec_bookings_limit_unlimited" id="mec_bookings_limit_unlimited_label">
|
1538 |
<input class="mec-col-4 <?php echo ($bookings_limit_unlimited == 1) ? 'mec-util-hidden' : ''; ?>" type="text" name="mec[booking][bookings_limit]" id="mec_bookings_limit"
|
1539 |
value="<?php echo esc_attr($bookings_limit); ?>" placeholder="<?php _e('100', 'modern-events-calendar-lite'); ?>"/>
|
1540 |
</div>
|
1541 |
+
<?php endif; ?>
|
1542 |
+
|
1543 |
+
<?php if(!$FES or ($FES and (!isset($this->settings['fes_section_booking_dpur']) or (isset($this->settings['fes_section_booking_dpur']) and $this->settings['fes_section_booking_dpur'])))): ?>
|
1544 |
<h4 class="mec-title"><?php _e('Discount per user roles', 'modern-events-calendar-lite'); ?></h4>
|
1545 |
<?php foreach($roles as $role_key => $role_name): $role_discount = isset($booking_options['roles_discount_'.$role_key]) ? $booking_options['roles_discount_'.$role_key] : $loggedin_discount; ?>
|
1546 |
<div class="mec-form-row">
|
1550 |
<input class="mec-col-4" type="text" name="mec[booking][roles_discount_<?php echo $role_key; ?>]" id="mec_bookings_roles_discount_<?php echo $role_key; ?>" value="<?php echo esc_attr($role_discount); ?>" placeholder="<?php _e('5', 'modern-events-calendar-lite'); ?>">
|
1551 |
</div>
|
1552 |
<?php endforeach; ?>
|
1553 |
+
<?php endif; ?>
|
1554 |
+
|
1555 |
+
<?php if(!$FES or ($FES and (!isset($this->settings['fes_section_booking_bao']) or (isset($this->settings['fes_section_booking_bao']) and $this->settings['fes_section_booking_bao'])))): ?>
|
1556 |
<h4 class="mec-title"><?php _e('Book All Occurrences', 'modern-events-calendar-lite'); ?></h4>
|
1557 |
<div class="mec-form-row">
|
1558 |
<label class="mec-col-4" for="mec_bookings_all_occurrences">
|
1578 |
</span>
|
1579 |
</label>
|
1580 |
</div>
|
1581 |
+
<?php endif; ?>
|
1582 |
+
|
1583 |
+
<?php if(!$FES or ($FES and (!isset($this->settings['fes_section_booking_io']) or (isset($this->settings['fes_section_booking_io']) and $this->settings['fes_section_booking_io'])))): ?>
|
1584 |
<h4 class="mec-title"><?php _e('Interval Options', 'modern-events-calendar-lite'); ?></h4>
|
1585 |
<div class="mec-form-row">
|
1586 |
<label class="mec-col-4" for="mec_booking_show_booking_form_interval"><?php _e('Show Booking Form Interval', 'modern-events-calendar-lite'); ?></label>
|
1595 |
</span>
|
1596 |
</div>
|
1597 |
</div>
|
1598 |
+
<?php endif; ?>
|
1599 |
+
|
1600 |
+
<?php if(!$FES or ($FES and (!isset($this->settings['fes_section_booking_aa']) or (isset($this->settings['fes_section_booking_aa']) and $this->settings['fes_section_booking_aa'])))): ?>
|
1601 |
<h4><?php _e('Automatic Approval', 'modern-events-calendar-lite'); ?></h4>
|
1602 |
<div class="mec-form-row">
|
1603 |
<label class="mec-col-4" for="mec_booking_auto_verify"><?php _e('Email Verification', 'modern-events-calendar-lite'); ?></label>
|
1619 |
</select>
|
1620 |
</div>
|
1621 |
</div>
|
1622 |
+
<?php endif; ?>
|
1623 |
+
|
1624 |
</div>
|
1625 |
+
|
1626 |
+
<?php if(!$FES or ($FES and (!isset($this->settings['fes_section_booking_tubl']) or (isset($this->settings['fes_section_booking_tubl']) and $this->settings['fes_section_booking_tubl'])))): ?>
|
1627 |
<div class="mec-meta-box-fields mec-booking-tab-content" id="mec_meta_box_booking_options_form_2">
|
1628 |
+
<h4 class="mec-title"><label for="mec_bookings_user_limit"><?php _e('Total User Booking Limits', 'modern-events-calendar-lite'); ?></label></h4>
|
1629 |
<div class="mec-form-row">
|
1630 |
<label class="mec-col-4" for="mec_bookings_user_limit_unlimited" id="mec_bookings_user_limit_unlimited_label">
|
1631 |
<input type="hidden" name="mec[booking][bookings_user_limit_unlimited]" value="0"/>
|
1642 |
value="<?php echo esc_attr($bookings_user_limit); ?>" placeholder="<?php _e('12', 'modern-events-calendar-lite'); ?>"/>
|
1643 |
</div>
|
1644 |
</div>
|
1645 |
+
<?php endif; ?>
|
1646 |
|
1647 |
<?php if(isset($gateway_settings['gateways_per_event']) and $gateway_settings['gateways_per_event']): ?>
|
1648 |
<div class="mec-meta-box-fields mec-booking-tab-content" id="mec_meta_box_booking_options_form_gateways_per_event">
|
1844 |
<div class="mec-form-row">
|
1845 |
<input class="mec-col-3 mec_date_picker_dynamic_format" type="text"
|
1846 |
name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][start]"
|
1847 |
+
value="<?php echo isset($price_date['start']) ? $this->main->standardize_format($price_date['start'], $datepicker_format) : $this->main->standardize_format(date('Y-m-d'), $datepicker_format); ?>"
|
1848 |
placeholder="<?php esc_attr_e('Start', 'modern-events-calendar-lite'); ?>"/>
|
1849 |
<input class="mec-col-3 mec_date_picker_dynamic_format" type="text"
|
1850 |
name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][end]"
|
1851 |
+
value="<?php echo isset($price_date['end']) ? $this->main->standardize_format($price_date['end'], $datepicker_format) : $this->main->standardize_format(date('Y-m-d', strtotime( '+10 days')), $datepicker_format); ?>"
|
1852 |
placeholder="<?php esc_attr_e('End', 'modern-events-calendar-lite'); ?>"/>
|
1853 |
<input class="mec-col-3" type="number"
|
1854 |
name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][price]"
|
2610 |
// Get Modern Events Calendar Data
|
2611 |
$_mec = isset($_POST['mec']) ? $_POST['mec'] : array();
|
2612 |
|
2613 |
+
$start_date = (isset($_mec['date']['start']['date']) and trim($_mec['date']['start']['date'])) ? $this->main->standardize_format($_mec['date']['start']['date']) : date('Y-m-d');
|
2614 |
+
$end_date = (isset($_mec['date']['end']['date']) and trim($_mec['date']['end']['date'])) ? $this->main->standardize_format($_mec['date']['end']['date']) : date('Y-m-d');
|
2615 |
|
2616 |
$event = $this->db->select("SELECT * FROM `#__mec_events` WHERE `post_id` = {$post_id}", 'loadAssoc');
|
2617 |
if(!is_array($event)) $event = array();
|
app/features/ix.php
CHANGED
@@ -440,6 +440,8 @@ class MEC_feature_ix extends MEC_base
|
|
440 |
@ini_set('memory_limit', '1024M');
|
441 |
@ini_set('max_execution_time', 300);
|
442 |
|
|
|
|
|
443 |
$file = $this->getFile();
|
444 |
$extension = $file->getExt($feed);
|
445 |
|
440 |
@ini_set('memory_limit', '1024M');
|
441 |
@ini_set('max_execution_time', 300);
|
442 |
|
443 |
+
do_action('mec_custom_max_execution');
|
444 |
+
|
445 |
$file = $this->getFile();
|
446 |
$extension = $file->getExt($feed);
|
447 |
|
app/features/locations.php
CHANGED
@@ -304,7 +304,6 @@ class MEC_feature_locations extends MEC_base
|
|
304 |
*/
|
305 |
public function meta_box_location($post)
|
306 |
{
|
307 |
-
$settings = $this->main->get_settings();
|
308 |
$this->main->load_map_assets();
|
309 |
|
310 |
$locations = get_terms('mec_location', array('orderby'=>'name', 'hide_empty'=>'0'));
|
@@ -353,7 +352,13 @@ class MEC_feature_locations extends MEC_base
|
|
353 |
{
|
354 |
if(typeof google !== 'undefined')
|
355 |
{
|
356 |
-
new google.maps.places.Autocomplete(document.getElementById('mec_location_address'));
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
}
|
358 |
});
|
359 |
</script>
|
304 |
*/
|
305 |
public function meta_box_location($post)
|
306 |
{
|
|
|
307 |
$this->main->load_map_assets();
|
308 |
|
309 |
$locations = get_terms('mec_location', array('orderby'=>'name', 'hide_empty'=>'0'));
|
352 |
{
|
353 |
if(typeof google !== 'undefined')
|
354 |
{
|
355 |
+
var location_autocomplete = new google.maps.places.Autocomplete(document.getElementById('mec_location_address'));
|
356 |
+
google.maps.event.addListener(location_autocomplete, 'place_changed', function()
|
357 |
+
{
|
358 |
+
var place = location_autocomplete.getPlace();
|
359 |
+
jQuery('#mec_location_latitude').val(place.geometry.location.lat());
|
360 |
+
jQuery('#mec_location_longitude').val(place.geometry.location.lng());
|
361 |
+
});
|
362 |
}
|
363 |
});
|
364 |
</script>
|
app/features/mec.php
CHANGED
@@ -631,6 +631,9 @@ class MEC_feature_mec extends MEC_base
|
|
631 |
// Enable "Show Past Events" option since the start date is past
|
632 |
elseif(in_array($start_date_type, array('yesterday', 'start_last_year', 'start_last_month', 'start_last_week'))) $mec['show_past_events'] = 1;
|
633 |
|
|
|
|
|
|
|
634 |
foreach($mec as $key=>$value) update_post_meta($post_id, $key, $value);
|
635 |
}
|
636 |
|
@@ -1370,28 +1373,24 @@ class MEC_feature_mec extends MEC_base
|
|
1370 |
'start' => date('Y-m-01'),
|
1371 |
'end' => date('Y-m-t'),
|
1372 |
'type' => 'daily',
|
1373 |
-
'chart' => $chart,
|
1374 |
)); ?>"><?php _e('This Month', 'modern-events-calendar-lite'); ?></a></li>
|
1375 |
<li class="mec-chart-last-month"><a href="<?php echo add_query_arg(array(
|
1376 |
'sort' => 'last_month',
|
1377 |
'start' => date('Y-m-01', strtotime('-1 Month')),
|
1378 |
'end' => date('Y-m-t', strtotime('-1 Month')),
|
1379 |
'type' => 'daily',
|
1380 |
-
'chart' => $chart,
|
1381 |
)); ?>"><?php _e('Last Month', 'modern-events-calendar-lite'); ?></a></li>
|
1382 |
<li class="mec-chart-this-year"><a href="<?php echo add_query_arg(array(
|
1383 |
'sort' => 'this_year',
|
1384 |
'start' => date('Y-01-01'),
|
1385 |
'end' => date('Y-12-31'),
|
1386 |
'type' => 'monthly',
|
1387 |
-
'chart' => $chart,
|
1388 |
)); ?>"><?php _e('This Year', 'modern-events-calendar-lite'); ?></a></li>
|
1389 |
<li class="mec-chart-last-year"><a href="<?php echo add_query_arg(array(
|
1390 |
'sort' => 'last_year',
|
1391 |
'start' => date('Y-01-01', strtotime('-1 Year')),
|
1392 |
'end' => date('Y-12-31', strtotime('-1 Year')),
|
1393 |
'type' => 'monthly',
|
1394 |
-
'chart' => $chart,
|
1395 |
)); ?>"><?php _e('Last Year', 'modern-events-calendar-lite'); ?></a></li>
|
1396 |
</ul>
|
1397 |
<script>
|
631 |
// Enable "Show Past Events" option since the start date is past
|
632 |
elseif(in_array($start_date_type, array('yesterday', 'start_last_year', 'start_last_month', 'start_last_week'))) $mec['show_past_events'] = 1;
|
633 |
|
634 |
+
// Set date filter type to dropdown because of skin
|
635 |
+
if(!in_array($skin, array('list', 'grid', 'agenda', 'timeline'))) $mec['sf-options'][$skin]['month_filter'] = 'dropdown';
|
636 |
+
|
637 |
foreach($mec as $key=>$value) update_post_meta($post_id, $key, $value);
|
638 |
}
|
639 |
|
1373 |
'start' => date('Y-m-01'),
|
1374 |
'end' => date('Y-m-t'),
|
1375 |
'type' => 'daily',
|
|
|
1376 |
)); ?>"><?php _e('This Month', 'modern-events-calendar-lite'); ?></a></li>
|
1377 |
<li class="mec-chart-last-month"><a href="<?php echo add_query_arg(array(
|
1378 |
'sort' => 'last_month',
|
1379 |
'start' => date('Y-m-01', strtotime('-1 Month')),
|
1380 |
'end' => date('Y-m-t', strtotime('-1 Month')),
|
1381 |
'type' => 'daily',
|
|
|
1382 |
)); ?>"><?php _e('Last Month', 'modern-events-calendar-lite'); ?></a></li>
|
1383 |
<li class="mec-chart-this-year"><a href="<?php echo add_query_arg(array(
|
1384 |
'sort' => 'this_year',
|
1385 |
'start' => date('Y-01-01'),
|
1386 |
'end' => date('Y-12-31'),
|
1387 |
'type' => 'monthly',
|
|
|
1388 |
)); ?>"><?php _e('This Year', 'modern-events-calendar-lite'); ?></a></li>
|
1389 |
<li class="mec-chart-last-year"><a href="<?php echo add_query_arg(array(
|
1390 |
'sort' => 'last_year',
|
1391 |
'start' => date('Y-01-01', strtotime('-1 Year')),
|
1392 |
'end' => date('Y-12-31', strtotime('-1 Year')),
|
1393 |
'type' => 'monthly',
|
|
|
1394 |
)); ?>"><?php _e('Last Year', 'modern-events-calendar-lite'); ?></a></li>
|
1395 |
</ul>
|
1396 |
<script>
|
app/features/mec/meta_boxes/search_form.php
CHANGED
@@ -78,10 +78,11 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
78 |
</select>
|
79 |
</div>
|
80 |
<div class="mec-form-row">
|
81 |
-
<label class="mec-col-12" for="mec_sf_list_month_filter"><?php _e('
|
82 |
<select class="mec-col-12" name="mec[sf-options][list][month_filter][type]" id="mec_sf_list_month_filter">
|
83 |
<option value="0" <?php if(isset($sf_options_list['month_filter']) and isset($sf_options_list['month_filter']['type']) and $sf_options_list['month_filter']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
84 |
-
<option value="dropdown" <?php if(isset($sf_options_list['month_filter']) and isset($sf_options_list['month_filter']['type']) and $sf_options_list['month_filter']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
|
|
85 |
</select>
|
86 |
</div>
|
87 |
<div class="mec-form-row">
|
@@ -148,10 +149,11 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
148 |
</select>
|
149 |
</div>
|
150 |
<div class="mec-form-row">
|
151 |
-
<label class="mec-col-12" for="mec_sf_grid_month_filter"><?php _e('
|
152 |
<select class="mec-col-12" name="mec[sf-options][grid][month_filter][type]" id="mec_sf_grid_month_filter">
|
153 |
<option value="0" <?php if(isset($sf_options_grid['month_filter']) and isset($sf_options_grid['month_filter']['type']) and $sf_options_grid['month_filter']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
154 |
-
<option value="dropdown" <?php if(isset($sf_options_grid['month_filter']) and isset($sf_options_grid['month_filter']['type']) and $sf_options_grid['month_filter']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
|
|
155 |
</select>
|
156 |
</div>
|
157 |
<div class="mec-form-row">
|
@@ -218,10 +220,11 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
218 |
</select>
|
219 |
</div>
|
220 |
<div class="mec-form-row">
|
221 |
-
<label class="mec-col-12" for="mec_sf_agenda_month_filter"><?php _e('
|
222 |
<select class="mec-col-12" name="mec[sf-options][agenda][month_filter][type]" id="mec_sf_agenda_month_filter">
|
223 |
<option value="0" <?php if(isset($sf_options_agenda['month_filter']) and isset($sf_options_agenda['month_filter']['type']) and $sf_options_agenda['month_filter']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
224 |
-
<option value="dropdown" <?php if(isset($sf_options_agenda['month_filter']) and isset($sf_options_agenda['month_filter']['type']) and $sf_options_agenda['month_filter']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
|
|
|
225 |
</select>
|
226 |
</div>
|
227 |
<div class="mec-form-row">
|
78 |
</select>
|
79 |
</div>
|
80 |
<div class="mec-form-row">
|
81 |
+
<label class="mec-col-12" for="mec_sf_list_month_filter"><?php _e('Date Filter', 'modern-events-calendar-lite'); ?></label>
|
82 |
<select class="mec-col-12" name="mec[sf-options][list][month_filter][type]" id="mec_sf_list_month_filter">
|
83 |
<option value="0" <?php if(isset($sf_options_list['month_filter']) and isset($sf_options_list['month_filter']['type']) and $sf_options_list['month_filter']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
84 |
+
<option value="dropdown" <?php if(isset($sf_options_list['month_filter']) and isset($sf_options_list['month_filter']['type']) and $sf_options_list['month_filter']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Year & Month Dropdown', 'modern-events-calendar-lite'); ?></option>
|
85 |
+
<option value="date-range-picker" <?php if(isset($sf_options_list['month_filter']) and isset($sf_options_list['month_filter']['type']) and $sf_options_list['month_filter']['type'] == 'date-range-picker') echo 'selected="selected"'; ?>><?php _e('Date Picker', 'modern-events-calendar-lite'); ?></option>
|
86 |
</select>
|
87 |
</div>
|
88 |
<div class="mec-form-row">
|
149 |
</select>
|
150 |
</div>
|
151 |
<div class="mec-form-row">
|
152 |
+
<label class="mec-col-12" for="mec_sf_grid_month_filter"><?php _e('Date Filter', 'modern-events-calendar-lite'); ?></label>
|
153 |
<select class="mec-col-12" name="mec[sf-options][grid][month_filter][type]" id="mec_sf_grid_month_filter">
|
154 |
<option value="0" <?php if(isset($sf_options_grid['month_filter']) and isset($sf_options_grid['month_filter']['type']) and $sf_options_grid['month_filter']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
155 |
+
<option value="dropdown" <?php if(isset($sf_options_grid['month_filter']) and isset($sf_options_grid['month_filter']['type']) and $sf_options_grid['month_filter']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Year & Month Dropdown', 'modern-events-calendar-lite'); ?></option>
|
156 |
+
<option value="date-range-picker" <?php if(isset($sf_options_grid['month_filter']) and isset($sf_options_grid['month_filter']['type']) and $sf_options_grid['month_filter']['type'] == 'date-range-picker') echo 'selected="selected"'; ?>><?php _e('Date Picker', 'modern-events-calendar-lite'); ?></option>
|
157 |
</select>
|
158 |
</div>
|
159 |
<div class="mec-form-row">
|
220 |
</select>
|
221 |
</div>
|
222 |
<div class="mec-form-row">
|
223 |
+
<label class="mec-col-12" for="mec_sf_agenda_month_filter"><?php _e('Date Filter', 'modern-events-calendar-lite'); ?></label>
|
224 |
<select class="mec-col-12" name="mec[sf-options][agenda][month_filter][type]" id="mec_sf_agenda_month_filter">
|
225 |
<option value="0" <?php if(isset($sf_options_agenda['month_filter']) and isset($sf_options_agenda['month_filter']['type']) and $sf_options_agenda['month_filter']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
|
226 |
+
<option value="dropdown" <?php if(isset($sf_options_agenda['month_filter']) and isset($sf_options_agenda['month_filter']['type']) and $sf_options_agenda['month_filter']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Year & Month Dropdown', 'modern-events-calendar-lite'); ?></option>
|
227 |
+
<option value="date-range-picker" <?php if(isset($sf_options_agenda['month_filter']) and isset($sf_options_agenda['month_filter']['type']) and $sf_options_agenda['month_filter']['type'] == 'date-range-picker') echo 'selected="selected"'; ?>><?php _e('Date Picker', 'modern-events-calendar-lite'); ?></option>
|
228 |
</select>
|
229 |
</div>
|
230 |
<div class="mec-form-row">
|
app/features/mec/settings.php
CHANGED
@@ -32,6 +32,13 @@ echo $this->main->mec_custom_msg('', '');
|
|
32 |
|
33 |
// Display Addons Notification
|
34 |
$get_n_option = get_option('mec_addons_notification_option');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
?>
|
36 |
<div class="wns-be-container wns-be-container-sticky">
|
37 |
<div id="wns-be-infobar">
|
@@ -822,7 +829,57 @@ $get_n_option = get_option('mec_addons_notification_option');
|
|
822 |
<div class="mec-form-row">
|
823 |
<label>
|
824 |
<input type="hidden" name="mec[settings][fes_section_booking]" value="0" />
|
825 |
-
<input value="1" type="checkbox" name="mec[settings][fes_section_booking]" <?php if(!isset($settings['fes_section_booking']) or (isset($settings['fes_section_booking']) and $settings['fes_section_booking'])) echo 'checked="checked"'; ?> /> <?php _e('Booking Options', 'modern-events-calendar-lite'); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
</label>
|
827 |
</div>
|
828 |
<div class="mec-form-row">
|
@@ -946,6 +1003,20 @@ $get_n_option = get_option('mec_addons_notification_option');
|
|
946 |
</div>
|
947 |
</div>
|
948 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
<div id="search_bar_options" class="mec-options-fields">
|
950 |
<h4 class="mec-form-subtitle"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></h4>
|
951 |
<div class="mec-form-row">
|
32 |
|
33 |
// Display Addons Notification
|
34 |
$get_n_option = get_option('mec_addons_notification_option');
|
35 |
+
|
36 |
+
$shortcodes = get_posts(array(
|
37 |
+
'post_type' => 'mec_calendars',
|
38 |
+
'post_status' => 'publish',
|
39 |
+
'posts_per_page' => -1,
|
40 |
+
'order' => 'DESC'
|
41 |
+
));
|
42 |
?>
|
43 |
<div class="wns-be-container wns-be-container-sticky">
|
44 |
<div id="wns-be-infobar">
|
829 |
<div class="mec-form-row">
|
830 |
<label>
|
831 |
<input type="hidden" name="mec[settings][fes_section_booking]" value="0" />
|
832 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_booking]" <?php if(!isset($settings['fes_section_booking']) or (isset($settings['fes_section_booking']) and $settings['fes_section_booking'])) echo 'checked="checked"'; ?> onchange="jQuery('#mec_fes_booking_section_options').toggle();" /> <?php _e('Booking Options', 'modern-events-calendar-lite'); ?>
|
833 |
+
</label>
|
834 |
+
</div>
|
835 |
+
<div id="mec_fes_booking_section_options" style="margin: 20px 0; padding: 20px 20px 4px; border: 1px solid #ddd;" class="<?php echo ((!isset($settings['fes_section_booking']) or (isset($settings['fes_section_booking']) and $settings['fes_section_booking'])) ? '' : 'mec-util-hidden'); ?>">
|
836 |
+
<div class="mec-form-row">
|
837 |
+
<label>
|
838 |
+
<input type="hidden" name="mec[settings][fes_section_booking_tbl]" value="0" />
|
839 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_booking_tbl]" <?php if(!isset($settings['fes_section_booking_tbl']) or (isset($settings['fes_section_booking_tbl']) and $settings['fes_section_booking_tbl'])) echo 'checked="checked"'; ?> /> <?php _e('Total Booking Limit', 'modern-events-calendar-lite'); ?>
|
840 |
+
</label>
|
841 |
+
</div>
|
842 |
+
<div class="mec-form-row">
|
843 |
+
<label>
|
844 |
+
<input type="hidden" name="mec[settings][fes_section_booking_dpur]" value="0" />
|
845 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_booking_dpur]" <?php if(!isset($settings['fes_section_booking_dpur']) or (isset($settings['fes_section_booking_dpur']) and $settings['fes_section_booking_dpur'])) echo 'checked="checked"'; ?> /> <?php _e('Discount Per User Roles', 'modern-events-calendar-lite'); ?>
|
846 |
+
</label>
|
847 |
+
</div>
|
848 |
+
<div class="mec-form-row">
|
849 |
+
<label>
|
850 |
+
<input type="hidden" name="mec[settings][fes_section_booking_bao]" value="0" />
|
851 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_booking_bao]" <?php if(!isset($settings['fes_section_booking_bao']) or (isset($settings['fes_section_booking_bao']) and $settings['fes_section_booking_bao'])) echo 'checked="checked"'; ?> /> <?php _e('Book All Occurrences', 'modern-events-calendar-lite'); ?>
|
852 |
+
</label>
|
853 |
+
</div>
|
854 |
+
<div class="mec-form-row">
|
855 |
+
<label>
|
856 |
+
<input type="hidden" name="mec[settings][fes_section_booking_io]" value="0" />
|
857 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_booking_io]" <?php if(!isset($settings['fes_section_booking_io']) or (isset($settings['fes_section_booking_io']) and $settings['fes_section_booking_io'])) echo 'checked="checked"'; ?> /> <?php _e('Interval Options', 'modern-events-calendar-lite'); ?>
|
858 |
+
</label>
|
859 |
+
</div>
|
860 |
+
<div class="mec-form-row">
|
861 |
+
<label>
|
862 |
+
<input type="hidden" name="mec[settings][fes_section_booking_aa]" value="0" />
|
863 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_booking_aa]" <?php if(!isset($settings['fes_section_booking_aa']) or (isset($settings['fes_section_booking_aa']) and $settings['fes_section_booking_aa'])) echo 'checked="checked"'; ?> /> <?php _e('Automatic Approval', 'modern-events-calendar-lite'); ?>
|
864 |
+
</label>
|
865 |
+
</div>
|
866 |
+
<div class="mec-form-row">
|
867 |
+
<label>
|
868 |
+
<input type="hidden" name="mec[settings][fes_section_booking_tubl]" value="0" />
|
869 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_booking_tubl]" <?php if(!isset($settings['fes_section_booking_tubl']) or (isset($settings['fes_section_booking_tubl']) and $settings['fes_section_booking_tubl'])) echo 'checked="checked"'; ?> /> <?php _e('Total User Booking Limits', 'modern-events-calendar-lite'); ?>
|
870 |
+
</label>
|
871 |
+
</div>
|
872 |
+
</div>
|
873 |
+
<div class="mec-form-row">
|
874 |
+
<label>
|
875 |
+
<input type="hidden" name="mec[settings][fes_section_tickets]" value="0" />
|
876 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_tickets]" <?php if(!isset($settings['fes_section_tickets']) or (isset($settings['fes_section_tickets']) and $settings['fes_section_tickets'])) echo 'checked="checked"'; ?> /> <?php _e('Ticket Options', 'modern-events-calendar-lite'); ?>
|
877 |
+
</label>
|
878 |
+
</div>
|
879 |
+
<div class="mec-form-row">
|
880 |
+
<label>
|
881 |
+
<input type="hidden" name="mec[settings][fes_section_reg_form]" value="0" />
|
882 |
+
<input value="1" type="checkbox" name="mec[settings][fes_section_reg_form]" <?php if(!isset($settings['fes_section_reg_form']) or (isset($settings['fes_section_reg_form']) and $settings['fes_section_reg_form'])) echo 'checked="checked"'; ?> /> <?php _e('Booking Form', 'modern-events-calendar-lite'); ?>
|
883 |
</label>
|
884 |
</div>
|
885 |
<div class="mec-form-row">
|
1003 |
</div>
|
1004 |
</div>
|
1005 |
|
1006 |
+
<div id="user_events_options" class="mec-options-fields">
|
1007 |
+
<h4 class="mec-form-subtitle"><?php _e('User Events', 'modern-events-calendar-lite'); ?></h4>
|
1008 |
+
<div class="mec-form-row">
|
1009 |
+
<p><?php echo sprintf(__('Put %s shortcode into your desired page. Then users are able to see the their own events.', 'modern-events-calendar-lite'), '<code>[MEC_userevents]</code>'); ?></p>
|
1010 |
+
</div>
|
1011 |
+
<div class="mec-form-row">
|
1012 |
+
<select name="mec[settings][userevents_shortcode]" id="mec_settings_userevents_shortcode">
|
1013 |
+
<?php foreach($shortcodes as $shortcode): $skin = get_post_meta($shortcode->ID, 'skin', true); if(!in_array($skin, array('monthly_view', 'daily_view', 'weekly_view', 'list', 'grid', 'agenda'))) continue; ?>
|
1014 |
+
<option value="<?php echo $shortcode->ID; ?>" <?php echo ((isset($settings['userevents_shortcode']) and $settings['userevents_shortcode'] == $shortcode->ID) ? 'selected="selected"' : ''); ?>><?php echo $shortcode->post_title; ?></option>
|
1015 |
+
<?php endforeach; ?>
|
1016 |
+
</select>
|
1017 |
+
</div>
|
1018 |
+
</div>
|
1019 |
+
|
1020 |
<div id="search_bar_options" class="mec-options-fields">
|
1021 |
<h4 class="mec-form-subtitle"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></h4>
|
1022 |
<div class="mec-form-row">
|
app/features/update.php
CHANGED
@@ -69,7 +69,7 @@ class MEC_feature_update extends MEC_base
|
|
69 |
if(version_compare($version, '5.12.6', '<')) $this->version5126();
|
70 |
if(version_compare($version, '5.13.5', '<')) $this->version5135();
|
71 |
if(version_compare($version, '5.14.0', '<')) $this->version5140();
|
72 |
-
|
73 |
// Update to latest version to prevent running the code twice
|
74 |
update_option('mec_version', $this->main->get_version());
|
75 |
}
|
69 |
if(version_compare($version, '5.12.6', '<')) $this->version5126();
|
70 |
if(version_compare($version, '5.13.5', '<')) $this->version5135();
|
71 |
if(version_compare($version, '5.14.0', '<')) $this->version5140();
|
72 |
+
|
73 |
// Update to latest version to prevent running the code twice
|
74 |
update_option('mec_version', $this->main->get_version());
|
75 |
}
|
app/features/userevents.php
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Webnus MEC User Events class.
|
7 |
+
* @author Webnus <info@webnus.biz>
|
8 |
+
*/
|
9 |
+
class MEC_feature_userevents extends MEC_base
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* @var MEC_factory
|
13 |
+
*/
|
14 |
+
public $factory;
|
15 |
+
|
16 |
+
/**
|
17 |
+
* @var MEC_main
|
18 |
+
*/
|
19 |
+
public $main;
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Constructor method
|
23 |
+
* @author Webnus <info@webnus.biz>
|
24 |
+
*/
|
25 |
+
public function __construct()
|
26 |
+
{
|
27 |
+
// Import MEC Factory
|
28 |
+
$this->factory = $this->getFactory();
|
29 |
+
|
30 |
+
// Import MEC Main
|
31 |
+
$this->main = $this->getMain();
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Initialize User Events Feature
|
36 |
+
* @author Webnus <info@webnus.biz>
|
37 |
+
*/
|
38 |
+
public function init()
|
39 |
+
{
|
40 |
+
// User Events Shortcode
|
41 |
+
$this->factory->shortcode('MEC_userevents', array($this, 'output'));
|
42 |
+
}
|
43 |
+
|
44 |
+
/**
|
45 |
+
* Show user events
|
46 |
+
* @param array $atts
|
47 |
+
* @return string
|
48 |
+
*/
|
49 |
+
public function output($atts = array())
|
50 |
+
{
|
51 |
+
// Force to array
|
52 |
+
if(!is_array($atts)) $atts = array();
|
53 |
+
|
54 |
+
// Show login/register message if user is not logged in and guest submission is not enabled.
|
55 |
+
if(!is_user_logged_in())
|
56 |
+
{
|
57 |
+
// Show message
|
58 |
+
$message = sprintf(__('Please %s/%s in order to see your own events.', 'modern-events-calendar-lite'), '<a href="'.wp_login_url($this->main->get_full_url()).'">'.__('Login', 'modern-events-calendar-lite').'</a>', '<a href="'.wp_registration_url().'">'.__('Register', 'modern-events-calendar-lite').'</a>');
|
59 |
+
|
60 |
+
return '<div class="mec-userevents-message">
|
61 |
+
<p>'.$message.'</p>
|
62 |
+
</div>';
|
63 |
+
}
|
64 |
+
|
65 |
+
// Render Library
|
66 |
+
$render = $this->getRender();
|
67 |
+
|
68 |
+
// Settings
|
69 |
+
$settings = $this->main->get_settings();
|
70 |
+
|
71 |
+
$shortcode_id = (isset($settings['userevents_shortcode']) and trim($settings['userevents_shortcode'])) ? $settings['userevents_shortcode'] : NULL;
|
72 |
+
|
73 |
+
$atts = apply_filters('mec_calendar_atts', $render->parse($shortcode_id, array(
|
74 |
+
'author' => get_current_user_id()
|
75 |
+
)));
|
76 |
+
|
77 |
+
$skin = isset($atts['skin']) ? $atts['skin'] : 'monthly_view';
|
78 |
+
return $render->skin($skin, $atts);
|
79 |
+
}
|
80 |
+
}
|
app/libraries/factory.php
CHANGED
@@ -557,10 +557,13 @@ class MEC_factory extends MEC_base
|
|
557 |
* @param string $string
|
558 |
* @return boolean
|
559 |
*/
|
560 |
-
public function params($key
|
561 |
{
|
|
|
562 |
$string = (string) $string;
|
563 |
-
|
|
|
|
|
564 |
|
565 |
// Register the key for removing PHP notices
|
566 |
if(!isset(self::$params[$key])) self::$params[$key] = array();
|
@@ -1152,6 +1155,7 @@ class MEC_factory extends MEC_base
|
|
1152 |
'MEC-ix',
|
1153 |
'MEC-support',
|
1154 |
'MEC-go-pro',
|
|
|
1155 |
)))) return true;
|
1156 |
|
1157 |
return apply_filters('mec_include_backend_assets', false);
|
557 |
* @param string $string
|
558 |
* @return boolean
|
559 |
*/
|
560 |
+
public function params($key, $string)
|
561 |
{
|
562 |
+
$key = (string) $key;
|
563 |
$string = (string) $string;
|
564 |
+
|
565 |
+
// No Key or No String
|
566 |
+
if(trim($string) == '' or trim($key) == '') return false;
|
567 |
|
568 |
// Register the key for removing PHP notices
|
569 |
if(!isset(self::$params[$key])) self::$params[$key] = array();
|
1155 |
'MEC-ix',
|
1156 |
'MEC-support',
|
1157 |
'MEC-go-pro',
|
1158 |
+
'mec-advanced-report',
|
1159 |
)))) return true;
|
1160 |
|
1161 |
return apply_filters('mec_include_backend_assets', false);
|
app/libraries/main.php
CHANGED
@@ -570,6 +570,7 @@ class MEC_main extends MEC_base
|
|
570 |
__('Google Recaptcha Options', 'modern-events-calendar-lite') => 'recaptcha_option',
|
571 |
__('Frontend Event Submission', 'modern-events-calendar-lite') => 'fes_option',
|
572 |
__('User Profile', 'modern-events-calendar-lite') => 'user_profile_options',
|
|
|
573 |
__('Search Bar', 'modern-events-calendar-lite') => 'search_bar_options',
|
574 |
__('Mailchimp Integration', 'modern-events-calendar-lite') => 'mailchimp_option',
|
575 |
__('Campaign Monitor Integration', 'modern-events-calendar-lite') => 'campaign_monitor_option',
|
@@ -4124,9 +4125,11 @@ class MEC_main extends MEC_base
|
|
4124 |
break;
|
4125 |
}
|
4126 |
}
|
|
|
|
|
4127 |
|
4128 |
// No Payment gateway is enabled
|
4129 |
-
if(!$is_gateway_enabled) return false;
|
4130 |
|
4131 |
return true;
|
4132 |
}
|
@@ -4448,10 +4451,14 @@ class MEC_main extends MEC_base
|
|
4448 |
*/
|
4449 |
public function add_mce_external_plugins($plugins)
|
4450 |
{
|
4451 |
-
if(
|
4452 |
-
|
4453 |
-
|
4454 |
-
|
|
|
|
|
|
|
|
|
4455 |
|
4456 |
return $plugins;
|
4457 |
}
|
@@ -4709,9 +4716,10 @@ class MEC_main extends MEC_base
|
|
4709 |
* @param string $format
|
4710 |
* @param string $separator
|
4711 |
* @param boolean $minify
|
|
|
4712 |
* @return string
|
4713 |
*/
|
4714 |
-
public function date_label($start, $end, $format, $separator = ' - ', $minify = true)
|
4715 |
{
|
4716 |
$start_datetime = $start['date'];
|
4717 |
$end_datetime = $end['date'];
|
@@ -4757,6 +4765,13 @@ class MEC_main extends MEC_base
|
|
4757 |
$diff = $offset_end - $offset_now;
|
4758 |
if($diff > 0) $end_timestamp += $diff;
|
4759 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4760 |
|
4761 |
if($start_timestamp >= $end_timestamp) return '<span class="mec-start-date-label" itemprop="startDate">' . date_i18n($format, $start_timestamp) . '</span>';
|
4762 |
elseif($start_timestamp < $end_timestamp)
|
570 |
__('Google Recaptcha Options', 'modern-events-calendar-lite') => 'recaptcha_option',
|
571 |
__('Frontend Event Submission', 'modern-events-calendar-lite') => 'fes_option',
|
572 |
__('User Profile', 'modern-events-calendar-lite') => 'user_profile_options',
|
573 |
+
__('User Events', 'modern-events-calendar-lite') => 'user_events_options',
|
574 |
__('Search Bar', 'modern-events-calendar-lite') => 'search_bar_options',
|
575 |
__('Mailchimp Integration', 'modern-events-calendar-lite') => 'mailchimp_option',
|
576 |
__('Campaign Monitor Integration', 'modern-events-calendar-lite') => 'campaign_monitor_option',
|
4125 |
break;
|
4126 |
}
|
4127 |
}
|
4128 |
+
|
4129 |
+
$wc_status = (isset($settings['wc_status']) ? (boolean) $settings['wc_status'] : false);
|
4130 |
|
4131 |
// No Payment gateway is enabled
|
4132 |
+
if(!$is_gateway_enabled and !$wc_status) return false;
|
4133 |
|
4134 |
return true;
|
4135 |
}
|
4451 |
*/
|
4452 |
public function add_mce_external_plugins($plugins)
|
4453 |
{
|
4454 |
+
if(!function_exists('is_plugin_active')) include_once(ABSPATH . 'wp-admin/includes/plugin.php');
|
4455 |
+
|
4456 |
+
// MEC Settings
|
4457 |
+
$settings = $this->get_settings();
|
4458 |
+
|
4459 |
+
if(is_plugin_active('js_composer/js_composer.php')) $plugins['mec_mce_buttons'] = $this->asset('js/mec-external.js');
|
4460 |
+
elseif((!isset($settings['gutenberg']) or (isset($settings['gutenberg']) and $settings['gutenberg']))) $plugins['mec_mce_buttons'] = $this->asset('js/mec-external.js');
|
4461 |
+
else $plugins['mec_mce_buttons'] = $this->asset('js/backend.js');
|
4462 |
|
4463 |
return $plugins;
|
4464 |
}
|
4716 |
* @param string $format
|
4717 |
* @param string $separator
|
4718 |
* @param boolean $minify
|
4719 |
+
* @param integer $allday
|
4720 |
* @return string
|
4721 |
*/
|
4722 |
+
public function date_label($start, $end, $format, $separator = ' - ', $minify = true, $allday = 0)
|
4723 |
{
|
4724 |
$start_datetime = $start['date'];
|
4725 |
$end_datetime = $end['date'];
|
4765 |
$diff = $offset_end - $offset_now;
|
4766 |
if($diff > 0) $end_timestamp += $diff;
|
4767 |
}
|
4768 |
+
|
4769 |
+
// Event is All Day so remove the time formats
|
4770 |
+
if($allday)
|
4771 |
+
{
|
4772 |
+
foreach(array('a', 'A', 'B', 'g', 'G', 'h', 'H', 'i', 's', 'u', 'v') as $f) $format = str_replace($f, '', $format);
|
4773 |
+
$format = trim($format, ': ');
|
4774 |
+
}
|
4775 |
|
4776 |
if($start_timestamp >= $end_timestamp) return '<span class="mec-start-date-label" itemprop="startDate">' . date_i18n($format, $start_timestamp) . '</span>';
|
4777 |
elseif($start_timestamp < $end_timestamp)
|
app/libraries/notifications.php
CHANGED
@@ -899,7 +899,7 @@ class MEC_notifications extends MEC_base
|
|
899 |
if(!is_numeric($f)) continue;
|
900 |
|
901 |
$field_value = isset($event_fields_data[$f]) ? $event_fields_data[$f] : NULL;
|
902 |
-
if(trim($field_value) === '')
|
903 |
{
|
904 |
$message = str_replace('%%event_field_'.$f.'%%', '', $message);
|
905 |
$message = str_replace('%%event_field_'.$f.'_with_name%%', '', $message);
|
@@ -1365,7 +1365,7 @@ class MEC_notifications extends MEC_base
|
|
1365 |
|
1366 |
$event_field_name = isset($event_field['label']) ? $event_field['label'] : '';
|
1367 |
$field_value = isset($event_fields_data[$f]) ? $event_fields_data[$f] : NULL;
|
1368 |
-
if(trim($field_value) === '')
|
1369 |
{
|
1370 |
$message = str_replace('%%event_field_'.$f.'%%', '', $message);
|
1371 |
$message = str_replace('%%event_field_'.$f.'_with_name%%', '', $message);
|
899 |
if(!is_numeric($f)) continue;
|
900 |
|
901 |
$field_value = isset($event_fields_data[$f]) ? $event_fields_data[$f] : NULL;
|
902 |
+
if((!is_array($field_value) and trim($field_value) === '') or (is_array($field_value) and !count($field_value)))
|
903 |
{
|
904 |
$message = str_replace('%%event_field_'.$f.'%%', '', $message);
|
905 |
$message = str_replace('%%event_field_'.$f.'_with_name%%', '', $message);
|
1365 |
|
1366 |
$event_field_name = isset($event_field['label']) ? $event_field['label'] : '';
|
1367 |
$field_value = isset($event_fields_data[$f]) ? $event_fields_data[$f] : NULL;
|
1368 |
+
if((!is_array($field_value) and trim($field_value) === '') or (is_array($field_value) and !count($field_value)))
|
1369 |
{
|
1370 |
$message = str_replace('%%event_field_'.$f.'%%', '', $message);
|
1371 |
$message = str_replace('%%event_field_'.$f.'_with_name%%', '', $message);
|
app/libraries/qrcode.php
CHANGED
@@ -908,19 +908,19 @@ class QRimage {
|
|
908 |
$image = self::image($frame, $pixelPerPoint, $outerFrame);
|
909 |
|
910 |
if ($filename === false) {
|
911 |
-
|
912 |
-
|
913 |
} else {
|
914 |
if($saveandprint===TRUE){
|
915 |
-
|
916 |
header("Content-type: image/png");
|
917 |
-
|
918 |
}else{
|
919 |
-
|
920 |
}
|
921 |
}
|
922 |
|
923 |
-
|
924 |
}
|
925 |
|
926 |
//----------------------------------------------------------------------
|
@@ -929,13 +929,13 @@ class QRimage {
|
|
929 |
$image = self::image($frame, $pixelPerPoint, $outerFrame);
|
930 |
|
931 |
if ($filename === false) {
|
932 |
-
|
933 |
-
|
934 |
} else {
|
935 |
-
|
936 |
}
|
937 |
|
938 |
-
|
939 |
}
|
940 |
|
941 |
//----------------------------------------------------------------------
|
@@ -947,24 +947,24 @@ class QRimage {
|
|
947 |
$imgW = $w + 2*$outerFrame;
|
948 |
$imgH = $h + 2*$outerFrame;
|
949 |
|
950 |
-
$base_image =
|
951 |
|
952 |
-
$col[0] =
|
953 |
-
$col[1] =
|
954 |
|
955 |
imagefill($base_image, 0, 0, $col[0]);
|
956 |
|
957 |
for($y=0; $y<$h; $y++) {
|
958 |
for($x=0; $x<$w; $x++) {
|
959 |
if ($frame[$y][$x] == '1') {
|
960 |
-
|
961 |
}
|
962 |
}
|
963 |
}
|
964 |
|
965 |
-
$target_image =
|
966 |
-
|
967 |
-
|
968 |
|
969 |
return $target_image;
|
970 |
}
|
908 |
$image = self::image($frame, $pixelPerPoint, $outerFrame);
|
909 |
|
910 |
if ($filename === false) {
|
911 |
+
header("Content-type: image/png");
|
912 |
+
imagepng($image);
|
913 |
} else {
|
914 |
if($saveandprint===TRUE){
|
915 |
+
imagepng($image, $filename);
|
916 |
header("Content-type: image/png");
|
917 |
+
imagepng($image);
|
918 |
}else{
|
919 |
+
imagepng($image, $filename);
|
920 |
}
|
921 |
}
|
922 |
|
923 |
+
imagedestroy($image);
|
924 |
}
|
925 |
|
926 |
//----------------------------------------------------------------------
|
929 |
$image = self::image($frame, $pixelPerPoint, $outerFrame);
|
930 |
|
931 |
if ($filename === false) {
|
932 |
+
header("Content-type: image/jpeg");
|
933 |
+
imagejpeg($image, null, $q);
|
934 |
} else {
|
935 |
+
imagejpeg($image, $filename, $q);
|
936 |
}
|
937 |
|
938 |
+
imagedestroy($image);
|
939 |
}
|
940 |
|
941 |
//----------------------------------------------------------------------
|
947 |
$imgW = $w + 2*$outerFrame;
|
948 |
$imgH = $h + 2*$outerFrame;
|
949 |
|
950 |
+
$base_image = imagecreate($imgW, $imgH);
|
951 |
|
952 |
+
$col[0] = imagecolorallocate($base_image,255,255,255);
|
953 |
+
$col[1] = imagecolorallocate($base_image,0,0,0);
|
954 |
|
955 |
imagefill($base_image, 0, 0, $col[0]);
|
956 |
|
957 |
for($y=0; $y<$h; $y++) {
|
958 |
for($x=0; $x<$w; $x++) {
|
959 |
if ($frame[$y][$x] == '1') {
|
960 |
+
imagesetpixel($base_image,$x+$outerFrame,$y+$outerFrame,$col[1]);
|
961 |
}
|
962 |
}
|
963 |
}
|
964 |
|
965 |
+
$target_image = imagecreate($imgW * $pixelPerPoint, $imgH * $pixelPerPoint);
|
966 |
+
imagecopyresized($target_image, $base_image, 0, 0, 0, 0, $imgW * $pixelPerPoint, $imgH * $pixelPerPoint, $imgW, $imgH);
|
967 |
+
imagedestroy($base_image);
|
968 |
|
969 |
return $target_image;
|
970 |
}
|
app/libraries/render.php
CHANGED
@@ -436,6 +436,12 @@ class MEC_render extends MEC_base
|
|
436 |
*/
|
437 |
public function skin($skin, $atts = array())
|
438 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
$path = MEC::import('app.skins.'.$skin, true, true);
|
440 |
$skin_path = apply_filters('mec_skin_path', $skin);
|
441 |
|
@@ -700,6 +706,7 @@ class MEC_render extends MEC_base
|
|
700 |
// Time is already available
|
701 |
if(isset($event->date['start']['hour']))
|
702 |
{
|
|
|
703 |
$hide_end_time = isset($event->data->meta['mec_hide_end_time']) ? $event->data->meta['mec_hide_end_time'] : 0;
|
704 |
|
705 |
$s_hour = $event->date['start']['hour'];
|
@@ -717,9 +724,16 @@ class MEC_render extends MEC_base
|
|
717 |
$st = $this->main->get_time($start_timestamp);
|
718 |
$et = $this->main->get_time($end_timestamp);
|
719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
$event->data->time = array(
|
721 |
-
'start'
|
722 |
-
'end'=>($hide_end_time ? '' : $et),
|
723 |
'start_raw'=>$st,
|
724 |
'end_raw'=>$et,
|
725 |
'start_timestamp'=>$start_timestamp,
|
@@ -741,6 +755,10 @@ class MEC_render extends MEC_base
|
|
741 |
|
742 |
$periods = explode(',', $days_str);
|
743 |
|
|
|
|
|
|
|
|
|
744 |
$p = 0;
|
745 |
foreach($periods as $period)
|
746 |
{
|
@@ -759,17 +777,21 @@ class MEC_render extends MEC_base
|
|
759 |
$start_time = $ex[0].' '.str_replace('-', ' ', $ex[2]);
|
760 |
$end_time = $ex[1].' '.str_replace('-', ' ', $ex[3]);
|
761 |
|
762 |
-
$hide_end_time = isset($event->data->meta['mec_hide_end_time']) ? $event->data->meta['mec_hide_end_time'] : 0;
|
763 |
-
|
764 |
$start_timestamp = strtotime($start_time);
|
765 |
$end_timestamp = strtotime($end_time);
|
766 |
|
767 |
$st = $this->main->get_time($start_timestamp);
|
768 |
$et = $this->main->get_time($end_timestamp);
|
769 |
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
$event->data->time = array(
|
771 |
-
'start'
|
772 |
-
'end'=>($hide_end_time ? '' : $et),
|
773 |
'start_raw'=>$st,
|
774 |
'end_raw'=>$et,
|
775 |
'start_timestamp'=>$start_timestamp,
|
@@ -788,6 +810,15 @@ class MEC_render extends MEC_base
|
|
788 |
$start_timestamp = strtotime($start_time);
|
789 |
$end_timestamp = strtotime($end_time);
|
790 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
791 |
if($start_timestamp and $end_timestamp)
|
792 |
{
|
793 |
$event->data->time['start_timestamp'] = $start_timestamp;
|
@@ -883,7 +914,12 @@ class MEC_render extends MEC_base
|
|
883 |
$dates = array();
|
884 |
|
885 |
// Get event data if it is NULL
|
886 |
-
if(is_null($event))
|
|
|
|
|
|
|
|
|
|
|
887 |
|
888 |
$start_date = isset($event->meta['mec_date']['start']) ? $event->meta['mec_date']['start'] : array();
|
889 |
$end_date = isset($event->meta['mec_date']['end']) ? $event->meta['mec_date']['end'] : array();
|
436 |
*/
|
437 |
public function skin($skin, $atts = array())
|
438 |
{
|
439 |
+
// Pro is Required for Some Skins
|
440 |
+
if(!$this->main->getPRO() and in_array($skin, array('agenda', 'yearly_view', 'timetable', 'masonry', 'map', 'available_spot')))
|
441 |
+
{
|
442 |
+
return '';
|
443 |
+
}
|
444 |
+
|
445 |
$path = MEC::import('app.skins.'.$skin, true, true);
|
446 |
$skin_path = apply_filters('mec_skin_path', $skin);
|
447 |
|
706 |
// Time is already available
|
707 |
if(isset($event->date['start']['hour']))
|
708 |
{
|
709 |
+
$hide_time = isset($event->data->meta['mec_hide_time']) ? $event->data->meta['mec_hide_time'] : 0;
|
710 |
$hide_end_time = isset($event->data->meta['mec_hide_end_time']) ? $event->data->meta['mec_hide_end_time'] : 0;
|
711 |
|
712 |
$s_hour = $event->date['start']['hour'];
|
724 |
$st = $this->main->get_time($start_timestamp);
|
725 |
$et = $this->main->get_time($end_timestamp);
|
726 |
|
727 |
+
$allday = isset($event->data->meta['mec_allday']) ? $event->data->meta['mec_allday'] : 0;
|
728 |
+
if($allday)
|
729 |
+
{
|
730 |
+
$st = $this->main->m('all_day', __('All Day' , 'modern-events-calendar-lite'));
|
731 |
+
$et = '';
|
732 |
+
}
|
733 |
+
|
734 |
$event->data->time = array(
|
735 |
+
'start'=>($hide_time ? '' : $st),
|
736 |
+
'end'=>(($hide_time or $hide_end_time) ? '' : $et),
|
737 |
'start_raw'=>$st,
|
738 |
'end_raw'=>$et,
|
739 |
'start_timestamp'=>$start_timestamp,
|
755 |
|
756 |
$periods = explode(',', $days_str);
|
757 |
|
758 |
+
$allday = isset($event->data->meta['mec_allday']) ? $event->data->meta['mec_allday'] : 0;
|
759 |
+
$hide_time = isset($event->data->meta['mec_hide_time']) ? $event->data->meta['mec_hide_time'] : 0;
|
760 |
+
$hide_end_time = isset($event->data->meta['mec_hide_end_time']) ? $event->data->meta['mec_hide_end_time'] : 0;
|
761 |
+
|
762 |
$p = 0;
|
763 |
foreach($periods as $period)
|
764 |
{
|
777 |
$start_time = $ex[0].' '.str_replace('-', ' ', $ex[2]);
|
778 |
$end_time = $ex[1].' '.str_replace('-', ' ', $ex[3]);
|
779 |
|
|
|
|
|
780 |
$start_timestamp = strtotime($start_time);
|
781 |
$end_timestamp = strtotime($end_time);
|
782 |
|
783 |
$st = $this->main->get_time($start_timestamp);
|
784 |
$et = $this->main->get_time($end_timestamp);
|
785 |
|
786 |
+
if($allday)
|
787 |
+
{
|
788 |
+
$st = $this->main->m('all_day', __('All Day' , 'modern-events-calendar-lite'));
|
789 |
+
$et = '';
|
790 |
+
}
|
791 |
+
|
792 |
$event->data->time = array(
|
793 |
+
'start'=>($hide_time ? '' : $st),
|
794 |
+
'end'=>(($hide_time or $hide_end_time) ? '' : $et),
|
795 |
'start_raw'=>$st,
|
796 |
'end_raw'=>$et,
|
797 |
'start_timestamp'=>$start_timestamp,
|
810 |
$start_timestamp = strtotime($start_time);
|
811 |
$end_timestamp = strtotime($end_time);
|
812 |
|
813 |
+
if((!$start_timestamp or !$end_timestamp) and isset($event->data->meta['mec_date']) and isset($event->data->meta['mec_date']['start']) and isset($event->data->meta['mec_date']['start']['hour']) and isset($event->data->meta['mec_date']['end']) and isset($event->data->meta['mec_date']['end']['hour']))
|
814 |
+
{
|
815 |
+
$start_time = $event->date['start']['date'].' '.sprintf("%02d", $event->data->meta['mec_date']['start']['hour']).':'.sprintf("%02d", $event->data->meta['mec_date']['start']['minutes']).' '.$event->data->meta['mec_date']['start']['ampm'];
|
816 |
+
$end_time = $event->date['end']['date'].' '.sprintf("%02d", $event->data->meta['mec_date']['end']['hour']).':'.sprintf("%02d", $event->data->meta['mec_date']['end']['minutes']).' '.$event->data->meta['mec_date']['end']['ampm'];
|
817 |
+
|
818 |
+
$start_timestamp = strtotime($start_time);
|
819 |
+
$end_timestamp = strtotime($end_time);
|
820 |
+
}
|
821 |
+
|
822 |
if($start_timestamp and $end_timestamp)
|
823 |
{
|
824 |
$event->data->time['start_timestamp'] = $start_timestamp;
|
914 |
$dates = array();
|
915 |
|
916 |
// Get event data if it is NULL
|
917 |
+
if(is_null($event))
|
918 |
+
{
|
919 |
+
$event = new stdClass();
|
920 |
+
$event->meta = $this->main->get_post_meta($event_id);
|
921 |
+
$event->mec = $this->db->select("SELECT * FROM `#__mec_events` WHERE `post_id`='$event_id'", "loadObject");
|
922 |
+
}
|
923 |
|
924 |
$start_date = isset($event->meta['mec_date']['start']) ? $event->meta['mec_date']['start'] : array();
|
925 |
$end_date = isset($event->meta['mec_date']['end']) ? $event->meta['mec_date']['end'] : array();
|
app/libraries/skins.php
CHANGED
@@ -870,7 +870,7 @@ class MEC_skins extends MEC_base
|
|
870 |
|
871 |
foreach($this->sf_options as $field=>$options)
|
872 |
{
|
873 |
-
$display_form[] = $options['type'];
|
874 |
$fields_array = array('category', 'location', 'organizer', 'speaker', 'tag', 'label');
|
875 |
$fields_array = apply_filters('mec_filter_fields_search_array', $fields_array);
|
876 |
|
@@ -1131,6 +1131,20 @@ class MEC_skins extends MEC_base
|
|
1131 |
|
1132 |
$output .= '</select></div>';
|
1133 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1134 |
}
|
1135 |
elseif($field == 'text_search')
|
1136 |
{
|
@@ -1208,6 +1222,24 @@ class MEC_skins extends MEC_base
|
|
1208 |
$atts['sk-options'][$skin]['start_date'] = $start_date;
|
1209 |
}
|
1210 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1211 |
}
|
1212 |
|
1213 |
$atts = apply_filters('add_to_search_box_query', $atts, $sf );
|
870 |
|
871 |
foreach($this->sf_options as $field=>$options)
|
872 |
{
|
873 |
+
$display_form[] = (isset($options['type']) ? $options['type'] : NULL);
|
874 |
$fields_array = array('category', 'location', 'organizer', 'speaker', 'tag', 'label');
|
875 |
$fields_array = apply_filters('mec_filter_fields_search_array', $fields_array);
|
876 |
|
1131 |
|
1132 |
$output .= '</select></div>';
|
1133 |
}
|
1134 |
+
elseif($type == 'date-range-picker')
|
1135 |
+
{
|
1136 |
+
$min_date = (isset($this->start_date) ? $this->start_date : NULL);
|
1137 |
+
|
1138 |
+
$output .= '<div class="mec-date-search">
|
1139 |
+
<i class="mec-sl-calendar"></i>
|
1140 |
+
<input class="mec-col-3 mec_date_picker_dynamic_format_start" data-min="'.$min_date.'" type="text"
|
1141 |
+
id="mec_sf_date_start_'.$this->id.'"
|
1142 |
+
placeholder="'.esc_attr__('Start', 'modern-events-calendar-lite').'" autocomplete="off">
|
1143 |
+
<input class="mec-col-3 mec_date_picker_dynamic_format_end" type="text"
|
1144 |
+
id="mec_sf_date_end_'.$this->id.'"
|
1145 |
+
placeholder="'.esc_attr__('End', 'modern-events-calendar-lite').'" autocomplete="off">
|
1146 |
+
</div>';
|
1147 |
+
}
|
1148 |
}
|
1149 |
elseif($field == 'text_search')
|
1150 |
{
|
1222 |
$atts['sk-options'][$skin]['start_date'] = $start_date;
|
1223 |
}
|
1224 |
}
|
1225 |
+
|
1226 |
+
// Apply Start and End Dates
|
1227 |
+
if(isset($sf['start']) and trim($sf['start']) and isset($sf['end']) and trim($sf['end']))
|
1228 |
+
{
|
1229 |
+
$start = $this->main->standardize_format($sf['start']);
|
1230 |
+
$this->request->setVar('mec_start_date', $start);
|
1231 |
+
|
1232 |
+
$end = $this->main->standardize_format($sf['end']);
|
1233 |
+
$this->request->setVar('mec_maximum_date', $end);
|
1234 |
+
$this->maximum_date = $end;
|
1235 |
+
|
1236 |
+
$skins = $this->main->get_skins();
|
1237 |
+
foreach($skins as $skin=>$label)
|
1238 |
+
{
|
1239 |
+
$atts['sk-options'][$skin]['start_date_type'] = 'date';
|
1240 |
+
$atts['sk-options'][$skin]['start_date'] = $start;
|
1241 |
+
}
|
1242 |
+
}
|
1243 |
}
|
1244 |
|
1245 |
$atts = apply_filters('add_to_search_box_query', $atts, $sf );
|
app/modules/booking/steps/form.php
CHANGED
@@ -286,12 +286,7 @@ if(!$mec_email)
|
|
286 |
</label>
|
287 |
|
288 |
<?php /** Paragraph **/ elseif ($reg_field['type'] == 'p') : ?>
|
289 |
-
|
290 |
-
if ($firstCharacter == '[') : ?>
|
291 |
-
<?php echo do_shortcode(stripslashes($reg_field['content'])); ?>
|
292 |
-
<?php else : ?>
|
293 |
-
<p><?php _e(stripslashes($reg_field['content']), 'modern-events-calendar-lite'); ?></p>
|
294 |
-
<?php endif; ?>
|
295 |
<?php endif; ?>
|
296 |
</div>
|
297 |
<?php endforeach;
|
286 |
</label>
|
287 |
|
288 |
<?php /** Paragraph **/ elseif ($reg_field['type'] == 'p') : ?>
|
289 |
+
<p><?php echo do_shortcode(stripslashes($reg_field['content'])); ?></p>
|
|
|
|
|
|
|
|
|
|
|
290 |
<?php endif; ?>
|
291 |
</div>
|
292 |
<?php endforeach;
|
app/modules/booking/steps/tickets.php
CHANGED
@@ -107,7 +107,7 @@ if($total_spots > 0) $available_spots = min($available_spots, $total_spots);
|
|
107 |
<select class="mec-custom-nice-select" name="book[date]" id="mec_book_form_date<?php echo $uniqueid; ?>" onchange="mec_get_tickets_availability<?php echo $uniqueid; ?>(<?php echo $event_id; ?>, this.value);">
|
108 |
<?php foreach($dates as $date): ?>
|
109 |
<option value="<?php echo $book->timestamp($date['start'], $date['end']); ?>">
|
110 |
-
<?php echo strip_tags($this->date_label($date['start'], $date['end'], $date_format, ' - ', false)); ?>
|
111 |
</option>
|
112 |
<?php endforeach; ?>
|
113 |
</select>
|
107 |
<select class="mec-custom-nice-select" name="book[date]" id="mec_book_form_date<?php echo $uniqueid; ?>" onchange="mec_get_tickets_availability<?php echo $uniqueid; ?>(<?php echo $event_id; ?>, this.value);">
|
108 |
<?php foreach($dates as $date): ?>
|
109 |
<option value="<?php echo $book->timestamp($date['start'], $date['end']); ?>">
|
110 |
+
<?php echo strip_tags($this->date_label($date['start'], $date['end'], $date_format, ' - ', false, (isset($date['allday']) ? $date['allday'] : 0))); ?>
|
111 |
</option>
|
112 |
<?php endforeach; ?>
|
113 |
</select>
|
app/skins/grid/render.php
CHANGED
@@ -91,7 +91,7 @@ if($this->style == 'colorful')
|
|
91 |
<?php $soldout = $this->main->get_flags($event); ?>
|
92 |
<h4 class="mec-event-title"><?php echo $this->display_link($event); ?><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
|
93 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
94 |
-
<?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
|
95 |
<p class="mec-grid-event-location"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
96 |
<?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
|
97 |
<div class="mec-price-details">
|
@@ -126,13 +126,13 @@ if($this->style == 'colorful')
|
|
126 |
<div class="mec-event-date mec-bg-color">
|
127 |
<?php echo $this->main->date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?>
|
128 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
129 |
-
<?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
|
130 |
</div>
|
131 |
<?php else: ?>
|
132 |
<div class="mec-event-date mec-bg-color">
|
133 |
<?php echo $this->main->dateify($event, $this->date_format_classic_1); ?>
|
134 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
135 |
-
<?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
|
136 |
</div>
|
137 |
<?php endif; ?>
|
138 |
<?php do_action('mec_classic_before_title', $event ); ?>
|
@@ -181,13 +181,13 @@ if($this->style == 'colorful')
|
|
181 |
<div class="mec-event-date"><?php echo $this->main->date_i18n($this->date_format_clean_1, strtotime($event->date['start']['date'])); ?></div>
|
182 |
<div class="mec-event-month"><?php echo $this->main->date_i18n($this->date_format_clean_2, strtotime($event->date['start']['date'])); ?></div>
|
183 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
184 |
-
<?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
|
185 |
<?php do_action('display_mec_tad', $event); ?>
|
186 |
<?php else: ?>
|
187 |
<div class="mec-event-month"><?php echo $this->main->dateify($event, $this->date_format_clean_1.' '.$this->date_format_clean_2); ?></div>
|
188 |
<?php do_action('display_mec_tad', $event); ?>
|
189 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
190 |
-
<?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
|
191 |
<?php endif; ?>
|
192 |
<div class="mec-event-detail">
|
193 |
<div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
@@ -235,7 +235,7 @@ if($this->style == 'colorful')
|
|
235 |
<div class="mec-event-month"><?php echo $this->main->dateify($event, $this->date_format_novel_1); ?></div>
|
236 |
<?php endif; ?>
|
237 |
<?php
|
238 |
-
if($this->include_events_times) echo $this->main->display_time($start_time, $end_time, array('class' => 'mec-event-detail'));
|
239 |
if(isset($location['address'])) echo '<div class="mec-event-address">'.$location['address'].'</div>';
|
240 |
if($this->localtime) echo $this->main->module('local-time.type1', array('event'=>$event));
|
241 |
echo $this->display_categories($event);
|
@@ -268,7 +268,7 @@ if($this->style == 'colorful')
|
|
268 |
<div class="mec-event-detail">
|
269 |
<span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></span>
|
270 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
271 |
-
<?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
|
272 |
<?php echo $this->display_categories($event); ?>
|
273 |
<?php echo $this->display_organizers($event); ?>
|
274 |
</div>
|
91 |
<?php $soldout = $this->main->get_flags($event); ?>
|
92 |
<h4 class="mec-event-title"><?php echo $this->display_link($event); ?><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
|
93 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
94 |
+
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
95 |
<p class="mec-grid-event-location"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
96 |
<?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
|
97 |
<div class="mec-price-details">
|
126 |
<div class="mec-event-date mec-bg-color">
|
127 |
<?php echo $this->main->date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?>
|
128 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
129 |
+
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
130 |
</div>
|
131 |
<?php else: ?>
|
132 |
<div class="mec-event-date mec-bg-color">
|
133 |
<?php echo $this->main->dateify($event, $this->date_format_classic_1); ?>
|
134 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
135 |
+
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
136 |
</div>
|
137 |
<?php endif; ?>
|
138 |
<?php do_action('mec_classic_before_title', $event ); ?>
|
181 |
<div class="mec-event-date"><?php echo $this->main->date_i18n($this->date_format_clean_1, strtotime($event->date['start']['date'])); ?></div>
|
182 |
<div class="mec-event-month"><?php echo $this->main->date_i18n($this->date_format_clean_2, strtotime($event->date['start']['date'])); ?></div>
|
183 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
184 |
+
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
185 |
<?php do_action('display_mec_tad', $event); ?>
|
186 |
<?php else: ?>
|
187 |
<div class="mec-event-month"><?php echo $this->main->dateify($event, $this->date_format_clean_1.' '.$this->date_format_clean_2); ?></div>
|
188 |
<?php do_action('display_mec_tad', $event); ?>
|
189 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
190 |
+
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
191 |
<?php endif; ?>
|
192 |
<div class="mec-event-detail">
|
193 |
<div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
235 |
<div class="mec-event-month"><?php echo $this->main->dateify($event, $this->date_format_novel_1); ?></div>
|
236 |
<?php endif; ?>
|
237 |
<?php
|
238 |
+
if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time, array('class' => 'mec-event-detail'));
|
239 |
if(isset($location['address'])) echo '<div class="mec-event-address">'.$location['address'].'</div>';
|
240 |
if($this->localtime) echo $this->main->module('local-time.type1', array('event'=>$event));
|
241 |
echo $this->display_categories($event);
|
268 |
<div class="mec-event-detail">
|
269 |
<span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></span>
|
270 |
<?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
|
271 |
+
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
272 |
<?php echo $this->display_categories($event); ?>
|
273 |
<?php echo $this->display_organizers($event); ?>
|
274 |
</div>
|
app/skins/list/render.php
CHANGED
@@ -60,7 +60,7 @@ $map_events = array();
|
|
60 |
<?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
|
61 |
<div class="mec-event-detail">
|
62 |
<div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
63 |
-
<?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
|
64 |
<?php echo $this->display_categories($event); ?>
|
65 |
<?php echo $this->display_organizers($event); ?>
|
66 |
</div>
|
@@ -77,7 +77,7 @@ $map_events = array();
|
|
77 |
<div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
|
78 |
<?php else: ?>
|
79 |
<div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->dateify($event, $this->date_format_classic_1); ?></div>
|
80 |
-
<div class="mec-event-time mec-color"><?php if($this->include_events_times) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->display_time($start_time, $end_time); } ?></div>
|
81 |
<?php endif; ?>
|
82 |
<?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
|
83 |
<h4 class="mec-event-title"><?php echo $this->display_link($event); ?><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
|
@@ -89,7 +89,7 @@ $map_events = array();
|
|
89 |
<?php elseif($this->style == 'minimal'): ?>
|
90 |
<div class="col-md-9 col-sm-9">
|
91 |
<div class="mec-event-date mec-bg-color"><span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
|
92 |
-
<?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
|
93 |
<h4 class="mec-event-title"><?php echo $this->display_link($event); ?><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
|
94 |
<div class="mec-event-detail"><?php echo $this->main->date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?><?php echo (isset($location['name']) ? ', <span class="mec-event-loc-place">' . $location['name'] .'</span>' : ''); ?> <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?> </div>
|
95 |
<?php echo $this->display_categories($event); ?>
|
60 |
<?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
|
61 |
<div class="mec-event-detail">
|
62 |
<div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
|
63 |
+
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
64 |
<?php echo $this->display_categories($event); ?>
|
65 |
<?php echo $this->display_organizers($event); ?>
|
66 |
</div>
|
77 |
<div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
|
78 |
<?php else: ?>
|
79 |
<div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->dateify($event, $this->date_format_classic_1); ?></div>
|
80 |
+
<div class="mec-event-time mec-color"><?php if($this->include_events_times and trim($start_time)) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->display_time($start_time, $end_time); } ?></div>
|
81 |
<?php endif; ?>
|
82 |
<?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
|
83 |
<h4 class="mec-event-title"><?php echo $this->display_link($event); ?><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
|
89 |
<?php elseif($this->style == 'minimal'): ?>
|
90 |
<div class="col-md-9 col-sm-9">
|
91 |
<div class="mec-event-date mec-bg-color"><span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
|
92 |
+
<?php if($this->include_events_times and trim($start_time)) echo $this->main->display_time($start_time, $end_time); ?>
|
93 |
<h4 class="mec-event-title"><?php echo $this->display_link($event); ?><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
|
94 |
<div class="mec-event-detail"><?php echo $this->main->date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?><?php echo (isset($location['name']) ? ', <span class="mec-event-loc-place">' . $location['name'] .'</span>' : ''); ?> <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?> </div>
|
95 |
<?php echo $this->display_categories($event); ?>
|
assets/css/backend.css
CHANGED
@@ -2277,6 +2277,35 @@ span.mec-archive-skins,span.mec-category-skins {
|
|
2277 |
}
|
2278 |
}
|
2279 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2280 |
/*!
|
2281 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
2282 |
* Copyright 2011-2016 Twitter, Inc.
|
@@ -10741,3 +10770,5 @@ div#mec_cancelled_reason_wrapper label {
|
|
10741 |
font-weight: 400;
|
10742 |
color: #707070;
|
10743 |
}
|
|
|
|
2277 |
}
|
2278 |
}
|
2279 |
|
2280 |
+
|
2281 |
+
/* Zoom Event Import Select All & Deselect All */
|
2282 |
+
#mec_zoom_checkall {
|
2283 |
+
background: #fff;
|
2284 |
+
border: 1px solid #282828;
|
2285 |
+
border-radius: 60px;
|
2286 |
+
padding: 6px 32px 8px;
|
2287 |
+
margin: 30px 0 0;
|
2288 |
+
cursor: pointer;
|
2289 |
+
display: block;
|
2290 |
+
transition: all 0.3s ease;
|
2291 |
+
-webkit-transition: all 0.3s ease;
|
2292 |
+
-moz-transition: all 0.3s ease;
|
2293 |
+
-ms-transition: all 0.3s ease;
|
2294 |
+
-o-transition: all 0.3s ease;
|
2295 |
+
}
|
2296 |
+
|
2297 |
+
#mec_zoom_checkall:focus {
|
2298 |
+
box-shadow: inset;
|
2299 |
+
outline: none;
|
2300 |
+
}
|
2301 |
+
|
2302 |
+
#mec_zoom_checkall:hover {
|
2303 |
+
background: #282828;
|
2304 |
+
color: #fff;
|
2305 |
+
}
|
2306 |
+
|
2307 |
+
|
2308 |
+
|
2309 |
/*!
|
2310 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
2311 |
* Copyright 2011-2016 Twitter, Inc.
|
10770 |
font-weight: 400;
|
10771 |
color: #707070;
|
10772 |
}
|
10773 |
+
|
10774 |
+
|
assets/css/backend.min.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-send-email-button{background:#008aff;color:#fff;width:100%;display:block;text-align:center;font-size:20px;padding:10px 0;margin-top:18px;font-weight:700;border-radius:4px;cursor:pointer}.mec-send-email-button:hover{opacity:.9}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(min-width:860px) and (max-width:1280px){.wns-be-sidebar{width:210px}.wns-be-sidebar li .subsection a{padding-left:24px}.wns-be-main{margin-left:210px}.mec-form-row .mec-col-8 label,.mec-form-row .mec-col-9 label{padding-right:14px}.wns-be-container #wns-be-content{padding:5px 10px 0}.mec-container{padding:8px}}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec-occurrences .mec-occurrences-list,#mec_bfixed_form_fields,#mec_event_form_fields,#mec_reg_form_fields{background:#eee;padding:20px}#mec-occurrences .mec-occurrences-list li,#mec_bfixed_form_fields li,#mec_event_form_fields li,#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_bfixed_form_fields li ul,#mec_event_form_fields li ul,#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_bfixed_form_fields li ul li,#mec_event_form_fields li ul li,#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_bfixed_form_fields span.mec_event_field_type,#mec_event_form_fields span.mec_event_field_type,#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button,#mec_bfixed_form_fields span.mec_bfixed_field_option_sort,#mec_bfixed_form_fields span.mec_bfixed_field_remove,#mec_bfixed_form_fields span.mec_bfixed_field_sort,#mec_event_form_fields span.mec_event_field_option_sort,#mec_event_form_fields span.mec_event_field_remove,#mec_event_form_fields span.mec_event_field_sort,#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button,#mec_bfixed_form_fields span.mec_bfixed_field_remove,#mec_event_form_fields span.mec_event_field_remove,#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button:before,#mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,#mec_bfixed_form_fields span.mec_bfixed_field_remove:before,#mec_bfixed_form_fields span.mec_bfixed_field_sort:before,#mec_event_form_fields span.mec_event_field_option_sort:before,#mec_event_form_fields span.mec_event_field_remove:before,#mec_event_form_fields span.mec_event_field_sort:before,#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button:before{font-weight:400}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button:before,#mec_bfixed_form_fields span.mec_bfixed_field_remove:before,#mec_event_form_fields span.mec_event_field_remove:before,#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,#mec_event_form_fields span.mec_event_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_bfixed_form_fields li ul li span.mec_bfixed_field_remove,#mec_event_form_fields li ul li span.mec_event_field_remove,#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_bfixed_form_fields p.mec_bfixed_field_options,#mec_event_form_fields p.mec_event_field_options,#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_bfixed_form_fields input[type=number],#mec_bfixed_form_fields input[type=text],#mec_bfixed_form_fields select,#mec_bfixed_form_fields textarea,#mec_event_form_fields input[type=number],#mec_event_form_fields input[type=text],#mec_event_form_fields select,#mec_event_form_fields textarea,#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_bfixed_form_fields textarea,#mec_event_form_fields textarea,#mec_reg_form_fields textarea{min-height:66px}#mec_bfixed_form_field_types button,#mec_bfixed_form_fields button,#mec_event_form_field_types button,#mec_event_form_fields button,#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_bfixed_form_field_types button:hover,#mec_bfixed_form_fields button:hover,#mec_event_form_field_types button:hover,#mec_event_form_fields button:hover,#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_bfixed_form_field_types button:before,#mec_bfixed_form_fields button:before,#mec_event_form_field_types button:before,#mec_event_form_fields button:before,#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_bfixed_form_field_types button.red:hover,#mec_bfixed_form_fields button.red:hover,#mec_event_form_field_types button.red:hover,#mec_event_form_fields button.red:hover,#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_bfixed_form_field_types button.red:before,#mec_bfixed_form_fields button.red:before,#mec_event_form_field_types button.red:before,#mec_event_form_fields button.red:before,#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_bfixed_form_fields .mec_bfixed_notification_placeholder,#mec_event_form_fields .mec_event_notification_placeholder{padding:2px;display:block;margin:10px 0 20px}@media (max-width:768px){#mec_bfixed_form_fields input[type=number],#mec_bfixed_form_fields input[type=text],#mec_bfixed_form_fields select,#mec_bfixed_form_fields textarea,#mec_event_form_fields input[type=number],#mec_event_form_fields input[type=text],#mec_event_form_fields select,#mec_event_form_fields textarea,#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row input[type=url],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:0 6px 0 0}.mec-form-row select{margin-top:1px}.mec-form-row select{min-width:87px}#mec_meta_box_repeat_form .mec-form-row select{min-width:65px}.ui-datepicker select{min-width:60px}#mec_styles_CSS{max-width:100%}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}#mec-event-data .mec-form-row label{margin:10px 0;display:block}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}#mec_settings_fes_thankyou_page_url,.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:82%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_gateways_form_container .mec-form-row input[type=number],#mec_gateways_form_container .mec-form-row select{width:100%}div#mec_gateways_form_container .mec-required.mec-mandatory{border:1px solid red}#booking_notification_section label{display:inline-block;min-width:160px}div#booking_notification_section iframe{height:300px!important}#booking_notification_section input[type=text],#booking_notification_section select{min-width:300px}@media (max-width:536px){#booking_notification_section input[type=text],#booking_notification_section select{min-width:100%}}#booking_notification_section .wp-editor-container{margin-bottom:45px}#booking_notification_section ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:0 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories li.mec-acc-label .mec-acc-cat-name{line-height:68px}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.m-e-calendar_page_MEC-ix #wpwrap .mec-button-primary.mec-btn-2{margin:0 0 0 12px}.m-e-calendar_page_MEC-ix #wpwrap input[type=file]{padding-top:12px;padding-bottom:12px}.m-e-calendar_page_MEC-ix #wpwrap .mec-form-row select{min-height:46px}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}@media(max-width:1280px){#webnus-dashboard.about-wrap{max-width:1024px}}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box.print-events{min-height:134px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.w-box.total-bookings ul li{padding:0;transition:all .1s ease}.w-box.total-bookings ul li a{padding:6px 12px;display:inline-block;border-radius:3px;text-transform:none;font-size:13px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.w-box.total-bookings ul li.active{background:#38d5ed}.w-box.total-bookings ul li:hover{background:#000;box-shadow:0 2px 3px -2px #222}#webnus-dashboard .w-box.total-bookings ul li a{color:#000}#webnus-dashboard .w-box.total-bookings ul li.active a,#webnus-dashboard .w-box.total-bookings ul li:hover a{color:#fff}#webnus-dashboard .w-box.total-bookings ul li a:focus{box-shadow:unset;outline:unset;outline-offset:0}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}.mec-shortcode-virtual-badge i{padding:0 5px 0 7px}@media(min-width:760px) and (max-width:1280px){.mec-virtual-event-wrap .mec-form-row .mec-col-1,.mec-zoom-event-wrap .mec-form-row .mec-col-1{width:12%}.mec-virtual-event-wrap .mec-form-row .mec-col-4,.mec-virtual-event-wrap .mec-form-row .mec-col-6,.mec-zoom-event-wrap .mec-form-row .mec-col-4,.mec-zoom-event-wrap .mec-form-row .mec-col-6{width:40%}.mec-virtual-event-wrap .mec-form-row .mec-col-3,.mec-virtual-event-wrap .mec-form-row .mec-col-5,.mec-zoom-event-wrap .mec-form-row .mec-col-3,.mec-zoom-event-wrap .mec-form-row .mec-col-5{width:45%}.mec-virtual-event-wrap .mec-form-row .mec-col-2,.mec-zoom-event-wrap .mec-form-row .mec-col-2{width:21%}}/*!
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1 |
+
#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-send-email-button{background:#008aff;color:#fff;width:100%;display:block;text-align:center;font-size:20px;padding:10px 0;margin-top:18px;font-weight:700;border-radius:4px;cursor:pointer}.mec-send-email-button:hover{opacity:.9}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(min-width:860px) and (max-width:1280px){.wns-be-sidebar{width:210px}.wns-be-sidebar li .subsection a{padding-left:24px}.wns-be-main{margin-left:210px}.mec-form-row .mec-col-8 label,.mec-form-row .mec-col-9 label{padding-right:14px}.wns-be-container #wns-be-content{padding:5px 10px 0}.mec-container{padding:8px}}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec-occurrences .mec-occurrences-list,#mec_bfixed_form_fields,#mec_event_form_fields,#mec_reg_form_fields{background:#eee;padding:20px}#mec-occurrences .mec-occurrences-list li,#mec_bfixed_form_fields li,#mec_event_form_fields li,#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_bfixed_form_fields li ul,#mec_event_form_fields li ul,#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_bfixed_form_fields li ul li,#mec_event_form_fields li ul li,#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_bfixed_form_fields span.mec_event_field_type,#mec_event_form_fields span.mec_event_field_type,#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button,#mec_bfixed_form_fields span.mec_bfixed_field_option_sort,#mec_bfixed_form_fields span.mec_bfixed_field_remove,#mec_bfixed_form_fields span.mec_bfixed_field_sort,#mec_event_form_fields span.mec_event_field_option_sort,#mec_event_form_fields span.mec_event_field_remove,#mec_event_form_fields span.mec_event_field_sort,#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button,#mec_bfixed_form_fields span.mec_bfixed_field_remove,#mec_event_form_fields span.mec_event_field_remove,#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button:before,#mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,#mec_bfixed_form_fields span.mec_bfixed_field_remove:before,#mec_bfixed_form_fields span.mec_bfixed_field_sort:before,#mec_event_form_fields span.mec_event_field_option_sort:before,#mec_event_form_fields span.mec_event_field_remove:before,#mec_event_form_fields span.mec_event_field_sort:before,#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button:before{font-weight:400}#mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button:before,#mec_bfixed_form_fields span.mec_bfixed_field_remove:before,#mec_event_form_fields span.mec_event_field_remove:before,#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,#mec_event_form_fields span.mec_event_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_bfixed_form_fields li ul li span.mec_bfixed_field_remove,#mec_event_form_fields li ul li span.mec_event_field_remove,#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_bfixed_form_fields p.mec_bfixed_field_options,#mec_event_form_fields p.mec_event_field_options,#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_bfixed_form_fields input[type=number],#mec_bfixed_form_fields input[type=text],#mec_bfixed_form_fields select,#mec_bfixed_form_fields textarea,#mec_event_form_fields input[type=number],#mec_event_form_fields input[type=text],#mec_event_form_fields select,#mec_event_form_fields textarea,#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_bfixed_form_fields textarea,#mec_event_form_fields textarea,#mec_reg_form_fields textarea{min-height:66px}#mec_bfixed_form_field_types button,#mec_bfixed_form_fields button,#mec_event_form_field_types button,#mec_event_form_fields button,#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_bfixed_form_field_types button:hover,#mec_bfixed_form_fields button:hover,#mec_event_form_field_types button:hover,#mec_event_form_fields button:hover,#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_bfixed_form_field_types button:before,#mec_bfixed_form_fields button:before,#mec_event_form_field_types button:before,#mec_event_form_fields button:before,#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_bfixed_form_field_types button.red:hover,#mec_bfixed_form_fields button.red:hover,#mec_event_form_field_types button.red:hover,#mec_event_form_fields button.red:hover,#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_bfixed_form_field_types button.red:before,#mec_bfixed_form_fields button.red:before,#mec_event_form_field_types button.red:before,#mec_event_form_fields button.red:before,#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_bfixed_form_fields .mec_bfixed_notification_placeholder,#mec_event_form_fields .mec_event_notification_placeholder{padding:2px;display:block;margin:10px 0 20px}@media (max-width:768px){#mec_bfixed_form_fields input[type=number],#mec_bfixed_form_fields input[type=text],#mec_bfixed_form_fields select,#mec_bfixed_form_fields textarea,#mec_event_form_fields input[type=number],#mec_event_form_fields input[type=text],#mec_event_form_fields select,#mec_event_form_fields textarea,#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row input[type=url],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:0 6px 0 0}.mec-form-row select{margin-top:1px}.mec-form-row select{min-width:87px}#mec_meta_box_repeat_form .mec-form-row select{min-width:65px}.ui-datepicker select{min-width:60px}#mec_styles_CSS{max-width:100%}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}#mec-event-data .mec-form-row label{margin:10px 0;display:block}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}#mec_settings_fes_thankyou_page_url,.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:82%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_gateways_form_container .mec-form-row input[type=number],#mec_gateways_form_container .mec-form-row select{width:100%}div#mec_gateways_form_container .mec-required.mec-mandatory{border:1px solid red}#booking_notification_section label{display:inline-block;min-width:160px}div#booking_notification_section iframe{height:300px!important}#booking_notification_section input[type=text],#booking_notification_section select{min-width:300px}@media (max-width:536px){#booking_notification_section input[type=text],#booking_notification_section select{min-width:100%}}#booking_notification_section .wp-editor-container{margin-bottom:45px}#booking_notification_section ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:0 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories li.mec-acc-label .mec-acc-cat-name{line-height:68px}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.m-e-calendar_page_MEC-ix #wpwrap .mec-button-primary.mec-btn-2{margin:0 0 0 12px}.m-e-calendar_page_MEC-ix #wpwrap input[type=file]{padding-top:12px;padding-bottom:12px}.m-e-calendar_page_MEC-ix #wpwrap .mec-form-row select{min-height:46px}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}@media(max-width:1280px){#webnus-dashboard.about-wrap{max-width:1024px}}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box.print-events{min-height:134px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.w-box.total-bookings ul li{padding:0;transition:all .1s ease}.w-box.total-bookings ul li a{padding:6px 12px;display:inline-block;border-radius:3px;text-transform:none;font-size:13px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.w-box.total-bookings ul li.active{background:#38d5ed}.w-box.total-bookings ul li:hover{background:#000;box-shadow:0 2px 3px -2px #222}#webnus-dashboard .w-box.total-bookings ul li a{color:#000}#webnus-dashboard .w-box.total-bookings ul li.active a,#webnus-dashboard .w-box.total-bookings ul li:hover a{color:#fff}#webnus-dashboard .w-box.total-bookings ul li a:focus{box-shadow:unset;outline:unset;outline-offset:0}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}.mec-shortcode-virtual-badge i{padding:0 5px 0 7px}@media(min-width:760px) and (max-width:1280px){.mec-virtual-event-wrap .mec-form-row .mec-col-1,.mec-zoom-event-wrap .mec-form-row .mec-col-1{width:12%}.mec-virtual-event-wrap .mec-form-row .mec-col-4,.mec-virtual-event-wrap .mec-form-row .mec-col-6,.mec-zoom-event-wrap .mec-form-row .mec-col-4,.mec-zoom-event-wrap .mec-form-row .mec-col-6{width:40%}.mec-virtual-event-wrap .mec-form-row .mec-col-3,.mec-virtual-event-wrap .mec-form-row .mec-col-5,.mec-zoom-event-wrap .mec-form-row .mec-col-3,.mec-zoom-event-wrap .mec-form-row .mec-col-5{width:45%}.mec-virtual-event-wrap .mec-form-row .mec-col-2,.mec-zoom-event-wrap .mec-form-row .mec-col-2{width:21%}}#mec_zoom_checkall{background:#fff;border:1px solid #282828;border-radius:60px;padding:6px 32px 8px;margin:30px 0 0;cursor:pointer;display:block;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease}#mec_zoom_checkall:focus{box-shadow:inset;outline:0}#mec_zoom_checkall:hover{background:#282828;color:#fff}/*!
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
assets/js/events.js
CHANGED
@@ -218,6 +218,33 @@ jQuery(document).ready(function($)
|
|
218 |
gotoCurrent: true,
|
219 |
yearRange: 'c-3:c+5',
|
220 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
}
|
222 |
|
223 |
$('#mec_location_id').on('change', function()
|
@@ -259,6 +286,8 @@ jQuery(document).ready(function($)
|
|
259 |
|
260 |
$('#mec_add_in_days').on('click', function()
|
261 |
{
|
|
|
|
|
262 |
var start = $('#mec_exceptions_in_days_start_date').val();
|
263 |
if(start === '') return false;
|
264 |
|
@@ -284,7 +313,7 @@ jQuery(document).ready(function($)
|
|
284 |
if(typeof end_ampm === 'undefined') end_ampm = '';
|
285 |
|
286 |
var value = start + ':' + end + ':' + start_hour + '-' + start_minutes + '-' + start_ampm + ':' + end_hour + '-' + end_minutes + '-' + end_ampm;
|
287 |
-
var label = start + ' ' + start_hour + ':' + start_minutes + ' ' + start_ampm + ' - ' + end + ' ' + end_hour + ':' + end_minutes + ' ' + end_ampm;
|
288 |
|
289 |
// Don't add exactly same occurrences
|
290 |
if($('#mec_in_days input[value="'+value+'"]').length > 0) return false;
|
218 |
gotoCurrent: true,
|
219 |
yearRange: 'c-3:c+5',
|
220 |
});
|
221 |
+
|
222 |
+
$('.mec_date_picker_dynamic_format_start').datepicker(
|
223 |
+
{
|
224 |
+
changeYear: true,
|
225 |
+
changeMonth: true,
|
226 |
+
dateFormat: datepicker_format,
|
227 |
+
gotoCurrent: true,
|
228 |
+
yearRange: 'c-1:c+5',
|
229 |
+
onSelect: function(date)
|
230 |
+
{
|
231 |
+
var selectedDate = new Date(date);
|
232 |
+
var endDate = new Date(selectedDate.getTime() + 86400000);
|
233 |
+
|
234 |
+
var $end_picker = $(this).next();
|
235 |
+
$end_picker.datepicker("option", "minDate", endDate);
|
236 |
+
$end_picker.datepicker("option", "maxDate", '+5y');
|
237 |
+
}
|
238 |
+
});
|
239 |
+
|
240 |
+
$('.mec_date_picker_dynamic_format_end').datepicker(
|
241 |
+
{
|
242 |
+
changeYear: true,
|
243 |
+
changeMonth: true,
|
244 |
+
dateFormat: datepicker_format,
|
245 |
+
gotoCurrent: true,
|
246 |
+
yearRange: 'c-1:c+5',
|
247 |
+
});
|
248 |
}
|
249 |
|
250 |
$('#mec_location_id').on('change', function()
|
286 |
|
287 |
$('#mec_add_in_days').on('click', function()
|
288 |
{
|
289 |
+
var allday = $(this).data('allday');
|
290 |
+
|
291 |
var start = $('#mec_exceptions_in_days_start_date').val();
|
292 |
if(start === '') return false;
|
293 |
|
313 |
if(typeof end_ampm === 'undefined') end_ampm = '';
|
314 |
|
315 |
var value = start + ':' + end + ':' + start_hour + '-' + start_minutes + '-' + start_ampm + ':' + end_hour + '-' + end_minutes + '-' + end_ampm;
|
316 |
+
var label = start + ' <span class="mec-time-picker-label '+(allday ? 'mec-util-hidden' : '')+'">' + start_hour + ':' + start_minutes + ' ' + start_ampm + '</span> - ' + end + ' <span class="mec-time-picker-label '+(allday ? 'mec-util-hidden' : '')+'">' + end_hour + ':' + end_minutes + ' ' + end_ampm + '</span>';
|
317 |
|
318 |
// Don't add exactly same occurrences
|
319 |
if($('#mec_in_days input[value="'+value+'"]').length > 0) return false;
|
assets/js/frontend.js
CHANGED
@@ -88,7 +88,7 @@ var mecSingleEventDisplayer = {
|
|
88 |
});
|
89 |
|
90 |
var mec_sf_month_selector = "#mec_sf_month_" + settings.id;
|
91 |
-
var
|
92 |
mec_sf_month_selector += (', ' + mec_sf_year_selector);
|
93 |
|
94 |
$(mec_sf_month_selector).on('change', function (e) {
|
@@ -101,6 +101,11 @@ var mecSingleEventDisplayer = {
|
|
101 |
} else search();
|
102 |
});
|
103 |
|
|
|
|
|
|
|
|
|
|
|
104 |
$("#mec_sf_event_type_" + settings.id).on('change', function (e) {
|
105 |
search();
|
106 |
});
|
@@ -135,6 +140,9 @@ var mecSingleEventDisplayer = {
|
|
135 |
var event_type_2 = $("#mec_sf_event_type_2_" + settings.id).length ? $("#mec_sf_event_type_2_" + settings.id).val() : '';
|
136 |
var attribute = $("#mec_sf_attribute_" + settings.id).length ? $("#mec_sf_attribute_" + settings.id).val() : '';
|
137 |
|
|
|
|
|
|
|
138 |
if (year === 'none' && month === 'none') {
|
139 |
year = '';
|
140 |
month = '';
|
@@ -150,7 +158,7 @@ var mecSingleEventDisplayer = {
|
|
150 |
}
|
151 |
}
|
152 |
|
153 |
-
var atts = settings.atts + '&sf[s]=' + s + '&sf[address]=' + address + '&sf[month]=' + month + '&sf[year]=' + year + '&sf[category]=' + category + '&sf[location]=' + location + '&sf[organizer]=' + organizer + '&sf[speaker]=' + speaker + '&sf[tag]=' + tag + '&sf[label]=' + label + '&sf[event_type]=' + event_type + '&sf[event_type_2]=' + event_type_2 + '&sf[attribute]=' + attribute + addation_attr;
|
154 |
settings.callback(atts);
|
155 |
}
|
156 |
};
|
88 |
});
|
89 |
|
90 |
var mec_sf_month_selector = "#mec_sf_month_" + settings.id;
|
91 |
+
var mec_sf_year_selector = "#mec_sf_year_" + settings.id;
|
92 |
mec_sf_month_selector += (', ' + mec_sf_year_selector);
|
93 |
|
94 |
$(mec_sf_month_selector).on('change', function (e) {
|
101 |
} else search();
|
102 |
});
|
103 |
|
104 |
+
$('#mec_sf_date_end_'+settings.id).on('change', function()
|
105 |
+
{
|
106 |
+
search();
|
107 |
+
});
|
108 |
+
|
109 |
$("#mec_sf_event_type_" + settings.id).on('change', function (e) {
|
110 |
search();
|
111 |
});
|
140 |
var event_type_2 = $("#mec_sf_event_type_2_" + settings.id).length ? $("#mec_sf_event_type_2_" + settings.id).val() : '';
|
141 |
var attribute = $("#mec_sf_attribute_" + settings.id).length ? $("#mec_sf_attribute_" + settings.id).val() : '';
|
142 |
|
143 |
+
var start = $("#mec_sf_date_start_" + settings.id).length ? $("#mec_sf_date_start_" + settings.id).val() : '';
|
144 |
+
var end = $("#mec_sf_date_end_" + settings.id).length ? $("#mec_sf_date_end_" + settings.id).val() : '';
|
145 |
+
|
146 |
if (year === 'none' && month === 'none') {
|
147 |
year = '';
|
148 |
month = '';
|
158 |
}
|
159 |
}
|
160 |
|
161 |
+
var atts = settings.atts + '&sf[s]=' + s + '&sf[address]=' + address + '&sf[month]=' + month + '&sf[year]=' + year + '&sf[start]=' + start + '&sf[end]=' + end + '&sf[category]=' + category + '&sf[location]=' + location + '&sf[organizer]=' + organizer + '&sf[speaker]=' + speaker + '&sf[tag]=' + tag + '&sf[label]=' + label + '&sf[event_type]=' + event_type + '&sf[event_type_2]=' + event_type_2 + '&sf[attribute]=' + attribute + addation_attr;
|
162 |
settings.callback(atts);
|
163 |
}
|
164 |
};
|
changelog.txt
CHANGED
@@ -1,4 +1,23 @@
|
|
1 |
-
v 5.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: MailPoet integration (pro)
|
3 |
- Added: Sendfox integration (pro)
|
4 |
- Added: An option to disable/enable “Full Screen” button of Google Maps (pro)
|
1 |
+
v 5.15.0 – 16 December 2020
|
2 |
+
- Added: A shortcode to display current users' events in a preferred skin e.g. monthly, list, grid, etc.
|
3 |
+
- Added: A new shortcode to generate a specific calendar for current user events
|
4 |
+
- Added: A date picker type for date field in search widget to provide an ability to select start and end dates on frontend instead of month and year
|
5 |
+
- Added: An ability to create all day events in custom repeat
|
6 |
+
- Added: An ability to show only one occurrence of custom day events
|
7 |
+
- Added: An ability to disable / enable booking sections on “Frontend Event Submission” (pro)
|
8 |
+
- Improved: The auto suggest location feature to fetch and save geo point in addition to address (pro)
|
9 |
+
- Improved: The Stripe gateway to work with no decimal currencies such as JPY (pro)
|
10 |
+
- Improved: The MEC's speed of in some parts
|
11 |
+
- Fixed: Some issues related to WordPress 5.6
|
12 |
+
- Fixed: Some issues related to PHP8
|
13 |
+
- Fixed: An issue on hiding booking form and registration button when all gateways are disabled but WC system is turned on (pro)
|
14 |
+
- Fixed: An issue in rendering timestamps on rare conditions
|
15 |
+
- Fixed: An issue on pro shortcodes in MEC lite (lite)
|
16 |
+
- Fixed: An issue regarding getting event
|
17 |
+
- Fixed: Paragraph field
|
18 |
+
- Fixed: Showing time of all day events
|
19 |
+
|
20 |
+
v 5.14.0 – 2 December 2020
|
21 |
- Added: MailPoet integration (pro)
|
22 |
- Added: Sendfox integration (pro)
|
23 |
- Added: An option to disable/enable “Full Screen” button of Google Maps (pro)
|
languages/modern-events-calendar-lite-cs_CZ.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-cs_CZ.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2020-12-
|
5 |
-
"PO-Revision-Date: 2020-12-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -23,8 +23,8 @@ msgstr ""
|
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
26 |
-
#: app/features/ix/thirdparty.php:26 app/features/mec.php:
|
27 |
-
#: app/features/mec.php:
|
28 |
#: app/widgets/MEC.php:33
|
29 |
msgid "Modern Events Calendar"
|
30 |
msgstr "Moderní kalendář událostí"
|
@@ -87,7 +87,7 @@ msgid "Select Shortcode"
|
|
87 |
msgstr "Přidat nový zkrácený kód"
|
88 |
|
89 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
90 |
-
#: app/features/mec/settings.php:
|
91 |
msgid "Event Color"
|
92 |
msgstr "Barva události"
|
93 |
|
@@ -100,14 +100,14 @@ msgstr "Barva události"
|
|
100 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
101 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
102 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
103 |
-
#: app/libraries/main.php:
|
104 |
msgid "Settings"
|
105 |
msgstr "Nastavení"
|
106 |
|
107 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
108 |
-
#: app/features/events.php:
|
109 |
-
#: app/features/mec/booking.php:873 app/features/mec/
|
110 |
-
#: app/libraries/main.php:
|
111 |
msgid "Booking Form"
|
112 |
msgstr "Rezervační formulář"
|
113 |
|
@@ -134,9 +134,9 @@ msgstr ""
|
|
134 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
135 |
"iframe>"
|
136 |
|
137 |
-
#: app/features/contextual.php:70 app/features/events.php:
|
138 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
139 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
140 |
msgid "Payment Gateways"
|
141 |
msgstr "Platební brány"
|
142 |
|
@@ -150,9 +150,9 @@ msgstr ""
|
|
150 |
"\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder=\"0\" "
|
151 |
"allowfullscreen></iframe>"
|
152 |
|
153 |
-
#: app/features/contextual.php:77 app/features/events.php:
|
154 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
155 |
-
#: app/libraries/main.php:
|
156 |
msgid "Notifications"
|
157 |
msgstr "Upozornění"
|
158 |
|
@@ -237,12 +237,12 @@ msgstr ""
|
|
237 |
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
238 |
"\"0\" allowfullscreen></iframe>"
|
239 |
|
240 |
-
#: app/features/contextual.php:117 app/features/mec/settings.php:
|
241 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
242 |
msgid "General Options"
|
243 |
msgstr "Obecné možnosti"
|
244 |
|
245 |
-
#: app/features/contextual.php:139 app/features/mec/settings.php:
|
246 |
#: app/libraries/main.php:568
|
247 |
msgid "Slugs/Permalinks"
|
248 |
msgstr "Název v URL / Trvalé odkazy"
|
@@ -251,7 +251,7 @@ msgstr "Název v URL / Trvalé odkazy"
|
|
251 |
msgid "Event Details/Single Event Page"
|
252 |
msgstr "Podrobnosti o události / Stránka jedné události"
|
253 |
|
254 |
-
#: app/features/contextual.php:166 app/features/mec/settings.php:
|
255 |
#: app/libraries/main.php:569
|
256 |
msgid "Currency Options"
|
257 |
msgstr "Možnosti Měna"
|
@@ -260,18 +260,18 @@ msgstr "Možnosti Měna"
|
|
260 |
msgid "Google Maps Options"
|
261 |
msgstr "Možnosti Google Maps"
|
262 |
|
263 |
-
#: app/features/contextual.php:244 app/features/mec/settings.php:
|
264 |
#: app/libraries/main.php:570
|
265 |
msgid "Google Recaptcha Options"
|
266 |
msgstr "Možnosti Google Recaptcha"
|
267 |
|
268 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
269 |
-
#: app/libraries/main.php:
|
270 |
msgid "Countdown Options"
|
271 |
msgstr "Možnosti Odpočítávání"
|
272 |
|
273 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
274 |
-
#: app/libraries/main.php:
|
275 |
msgid "Social Networks"
|
276 |
msgstr "Sociální sítě"
|
277 |
|
@@ -279,36 +279,36 @@ msgstr "Sociální sítě"
|
|
279 |
msgid "Next Event Module"
|
280 |
msgstr "Modul Další události"
|
281 |
|
282 |
-
#: app/features/contextual.php:286 app/features/mec/settings.php:
|
283 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
284 |
msgid "Frontend Event Submission"
|
285 |
msgstr "Předání události frontendu"
|
286 |
|
287 |
-
#: app/features/contextual.php:298 app/features/events.php:
|
288 |
-
#: app/libraries/main.php:
|
289 |
msgid "Exceptional Days"
|
290 |
msgstr "Výjimečné dny"
|
291 |
|
292 |
-
#: app/features/contextual.php:308 app/features/events.php:
|
293 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
294 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
295 |
-
#: app/libraries/main.php:
|
296 |
-
#: app/libraries/main.php:
|
297 |
msgid "Booking"
|
298 |
msgstr "Rezervace"
|
299 |
|
300 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
301 |
-
#: app/features/mec/booking.php:833 app/libraries/main.php:
|
302 |
msgid "Coupons"
|
303 |
msgstr "Kupóny"
|
304 |
|
305 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
306 |
-
#: app/libraries/main.php:
|
307 |
msgid "BuddyPress Integration"
|
308 |
msgstr "Integrace BuddyPress"
|
309 |
|
310 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
311 |
-
#: app/libraries/main.php:
|
312 |
msgid "Mailchimp Integration"
|
313 |
msgstr "Integrace Mailchimp"
|
314 |
|
@@ -316,8 +316,8 @@ msgstr "Integrace Mailchimp"
|
|
316 |
msgid "MEC Activation"
|
317 |
msgstr "Aktivace MEC"
|
318 |
|
319 |
-
#: app/features/dlfile.php:121 app/features/events.php:
|
320 |
-
#: app/features/mec/booking.php:349 app/features/mec/settings.php:
|
321 |
#, fuzzy
|
322 |
#| msgid "Download ICS file"
|
323 |
msgid "Downloadable File"
|
@@ -355,15 +355,15 @@ msgstr ""
|
|
355 |
msgid "File uploaded!"
|
356 |
msgstr "Obrázek je nahraný!"
|
357 |
|
358 |
-
#: app/features/events.php:
|
359 |
-
#: app/features/mec/dashboard.php:265 app/libraries/main.php:
|
360 |
-
#: app/libraries/main.php:
|
361 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
362 |
#: app/skins/yearly_view/tpl.php:71
|
363 |
msgid "Events"
|
364 |
msgstr "Události"
|
365 |
|
366 |
-
#: app/features/events.php:
|
367 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
368 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
369 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
@@ -373,228 +373,228 @@ msgstr "Události"
|
|
373 |
msgid "Event"
|
374 |
msgstr "Událost"
|
375 |
|
376 |
-
#: app/features/events.php:
|
377 |
msgid "Add Event"
|
378 |
msgstr "Přidat událost"
|
379 |
|
380 |
-
#: app/features/events.php:
|
381 |
msgid "Add New Event"
|
382 |
msgstr "Přidat novou událost"
|
383 |
|
384 |
-
#: app/features/events.php:
|
385 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
386 |
#: app/skins/map/tpl.php:89
|
387 |
msgid "No events found!"
|
388 |
msgstr "Nebyly nalezeny žádné události!"
|
389 |
|
390 |
-
#: app/features/events.php:
|
391 |
msgid "All Events"
|
392 |
msgstr "Všechny události"
|
393 |
|
394 |
-
#: app/features/events.php:
|
395 |
msgid "Edit Event"
|
396 |
msgstr "Editace události"
|
397 |
|
398 |
-
#: app/features/events.php:
|
399 |
#: app/features/popup/event.php:252
|
400 |
msgid "View Event"
|
401 |
msgstr "Zobrazit událost"
|
402 |
|
403 |
-
#: app/features/events.php:
|
404 |
msgid "No events found in Trash!"
|
405 |
msgstr "V koši nebyly nalezeny žádné události!"
|
406 |
|
407 |
-
#: app/features/events.php:
|
408 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
409 |
#: app/features/mec/meta_boxes/search_form.php:31
|
410 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
411 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
412 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
413 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
414 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
415 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
416 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
417 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
418 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
419 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
420 |
-
#: app/features/mec/settings.php:
|
421 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
422 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
423 |
-
#: app/libraries/main.php:
|
424 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
425 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
426 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
427 |
msgid "Category"
|
428 |
msgstr "Kategorie"
|
429 |
|
430 |
-
#: app/features/events.php:
|
431 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
432 |
#: app/features/mec/meta_boxes/filter.php:69
|
433 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
434 |
-
#: app/libraries/main.php:
|
435 |
msgid "Categories"
|
436 |
msgstr "Kategorie"
|
437 |
|
438 |
-
#: app/features/events.php:
|
439 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
440 |
#: app/features/speakers.php:71
|
441 |
#, php-format
|
442 |
msgid "All %s"
|
443 |
msgstr "Všechny %s"
|
444 |
|
445 |
-
#: app/features/events.php:
|
446 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
447 |
#: app/features/speakers.php:72
|
448 |
#, php-format
|
449 |
msgid "Edit %s"
|
450 |
msgstr "Editovat %s"
|
451 |
|
452 |
-
#: app/features/events.php:
|
453 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
454 |
#: app/features/speakers.php:73
|
455 |
#, php-format
|
456 |
msgid "View %s"
|
457 |
msgstr "Zobrazit %s"
|
458 |
|
459 |
-
#: app/features/events.php:
|
460 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
461 |
#: app/features/speakers.php:74
|
462 |
#, php-format
|
463 |
msgid "Update %s"
|
464 |
msgstr "Aktualizovat %s"
|
465 |
|
466 |
-
#: app/features/events.php:
|
467 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
468 |
#: app/features/speakers.php:75
|
469 |
#, php-format
|
470 |
msgid "Add New %s"
|
471 |
msgstr "Přidat novou %s"
|
472 |
|
473 |
-
#: app/features/events.php:
|
474 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
475 |
#: app/features/speakers.php:76
|
476 |
#, php-format
|
477 |
msgid "New %s Name"
|
478 |
msgstr "Nové jméno %s"
|
479 |
|
480 |
-
#: app/features/events.php:
|
481 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
482 |
#: app/features/speakers.php:77
|
483 |
#, php-format
|
484 |
msgid "Popular %s"
|
485 |
msgstr "Populární %s"
|
486 |
|
487 |
-
#: app/features/events.php:
|
488 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
489 |
#: app/features/speakers.php:78
|
490 |
#, php-format
|
491 |
msgid "Search %s"
|
492 |
msgstr "Vyhledat %s"
|
493 |
|
494 |
-
#: app/features/events.php:
|
495 |
msgid "Category Icon"
|
496 |
msgstr "Ikona kategorie"
|
497 |
|
498 |
-
#: app/features/events.php:
|
499 |
msgid "Select icon"
|
500 |
msgstr "Vybrat ikonu"
|
501 |
|
502 |
-
#: app/features/events.php:
|
503 |
msgid "Event Details"
|
504 |
msgstr "Podrobnosti události"
|
505 |
|
506 |
-
#: app/features/events.php:
|
507 |
#, fuzzy
|
508 |
#| msgid "Event Details"
|
509 |
msgid "FES Details"
|
510 |
msgstr "Podrobnosti události"
|
511 |
|
512 |
-
#: app/features/events.php:
|
513 |
#, fuzzy
|
514 |
#| msgid "Date and Time"
|
515 |
msgid "Date And Time"
|
516 |
msgstr "Datum a čas"
|
517 |
|
518 |
-
#: app/features/events.php:
|
519 |
msgid "Event Repeating"
|
520 |
msgstr "Opakování události"
|
521 |
|
522 |
-
#: app/features/events.php:
|
523 |
#, fuzzy
|
524 |
#| msgid "Event Detail"
|
525 |
msgid "Event Data"
|
526 |
msgstr "Zobrazit událost"
|
527 |
|
528 |
-
#: app/features/events.php:
|
529 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
530 |
msgid "Hourly Schedule"
|
531 |
msgstr "Hodinový rozvrh"
|
532 |
|
533 |
-
#: app/features/events.php:
|
534 |
#, fuzzy
|
535 |
#| msgid "Location"
|
536 |
msgid "Location/Venue"
|
537 |
msgstr "Umístění"
|
538 |
|
539 |
-
#: app/features/events.php:
|
540 |
#, fuzzy
|
541 |
#| msgid "Link"
|
542 |
msgid "Links"
|
543 |
msgstr "Odkaz"
|
544 |
|
545 |
-
#: app/features/events.php:
|
546 |
-
#: app/features/events.php:
|
547 |
-
#: app/features/ix.php:
|
548 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
549 |
#: app/features/mec/meta_boxes/search_form.php:46
|
550 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
551 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
552 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
553 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
554 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
555 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
556 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
557 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
558 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
559 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
560 |
-
#: app/features/mec/settings.php:
|
561 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
562 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
563 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
564 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
565 |
-
#: app/features/search.php:80 app/libraries/main.php:
|
566 |
-
#: app/libraries/main.php:
|
567 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
568 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
569 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
570 |
msgid "Organizer"
|
571 |
msgstr "Organizátor"
|
572 |
|
573 |
-
#: app/features/events.php:
|
574 |
-
#: app/features/fes/form.php:836 app/features/mec/settings.php:
|
575 |
-
#: app/libraries/main.php:
|
576 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
577 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
578 |
#: app/skins/single/modern.php:237
|
579 |
msgid "Cost"
|
580 |
msgstr "Cena"
|
581 |
|
582 |
-
#: app/features/events.php:
|
583 |
#, fuzzy
|
584 |
#| msgid "On Event Start"
|
585 |
msgid "SEO Schema / Event Status"
|
586 |
msgstr "Při spuštění události"
|
587 |
|
588 |
-
#: app/features/events.php:
|
589 |
msgid "Note for reviewer"
|
590 |
msgstr "Poznámka pro recenzenta"
|
591 |
|
592 |
-
#: app/features/events.php:
|
593 |
msgid "Guest Data"
|
594 |
msgstr "Údaje hosta"
|
595 |
|
596 |
-
#: app/features/events.php:
|
597 |
-
#: app/features/events.php:
|
598 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
599 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
600 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
@@ -602,16 +602,16 @@ msgstr "Údaje hosta"
|
|
602 |
msgid "Name"
|
603 |
msgstr "Jméno"
|
604 |
|
605 |
-
#: app/features/events.php:
|
606 |
-
#: app/features/events.php:
|
607 |
-
#: app/features/events.php:
|
608 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
609 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
610 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
611 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
612 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
613 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
614 |
-
#: app/libraries/main.php:
|
615 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
616 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
617 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
@@ -620,21 +620,21 @@ msgstr "Jméno"
|
|
620 |
msgid "Email"
|
621 |
msgstr "Email"
|
622 |
|
623 |
-
#: app/features/events.php:
|
624 |
msgid ""
|
625 |
"This event is imported from Google calendar so if you modify it, it would "
|
626 |
"overwrite in the next import from Google."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: app/features/events.php:
|
630 |
msgid "Date and Time"
|
631 |
msgstr "Datum a čas"
|
632 |
|
633 |
-
#: app/features/events.php:
|
634 |
-
#: app/features/events.php:
|
635 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
636 |
-
#: app/features/ix.php:
|
637 |
-
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:
|
638 |
#: app/features/mec/meta_boxes/display_options.php:52
|
639 |
#: app/features/mec/meta_boxes/display_options.php:298
|
640 |
#: app/features/mec/meta_boxes/display_options.php:555
|
@@ -654,38 +654,38 @@ msgstr "Datum a čas"
|
|
654 |
msgid "Start Date"
|
655 |
msgstr "Počátečná den"
|
656 |
|
657 |
-
#: app/features/events.php:
|
658 |
-
#: app/features/events.php:
|
659 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
660 |
-
#: app/features/ix.php:
|
661 |
-
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:
|
662 |
#: app/features/popup/event.php:92
|
663 |
msgid "End Date"
|
664 |
msgstr "Konečný den"
|
665 |
|
666 |
-
#: app/features/events.php:
|
667 |
#: app/features/popup/event.php:109
|
668 |
#, fuzzy
|
669 |
#| msgid "All Day Event"
|
670 |
msgid "All-day Event"
|
671 |
msgstr "Celodenní událost"
|
672 |
|
673 |
-
#: app/features/events.php:
|
674 |
msgid "Hide Event Time"
|
675 |
msgstr "Skrýt čas události"
|
676 |
|
677 |
-
#: app/features/events.php:
|
678 |
msgid "Hide Event End Time"
|
679 |
msgstr "Skrýt čas ukončení události"
|
680 |
|
681 |
-
#: app/features/events.php:
|
682 |
#: app/features/fes/form.php:329
|
683 |
#, fuzzy
|
684 |
#| msgid "Note to reviewer"
|
685 |
msgid "Notes on the time"
|
686 |
msgstr "Poznámka pro recenzenta"
|
687 |
|
688 |
-
#: app/features/events.php:
|
689 |
#, fuzzy
|
690 |
#| msgid ""
|
691 |
#| "It shows next to event time on single event page. You can insert Timezone "
|
@@ -697,16 +697,16 @@ msgstr ""
|
|
697 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
698 |
"můžete vložit časové pásmo atd."
|
699 |
|
700 |
-
#: app/features/events.php:
|
701 |
-
#: app/features/events.php:
|
702 |
-
#: app/features/events.php:
|
703 |
-
#: app/features/events.php:
|
704 |
-
#: app/features/events.php:
|
705 |
-
#: app/features/events.php:
|
706 |
-
#: app/features/events.php:
|
707 |
-
#: app/features/events.php:
|
708 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
709 |
-
#: app/features/locations.php:
|
710 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
711 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
712 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
@@ -759,17 +759,17 @@ msgstr ""
|
|
759 |
#: app/features/mec/notifications.php:950
|
760 |
#: app/features/mec/notifications.php:961
|
761 |
#: app/features/mec/notifications.php:1086
|
762 |
-
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:
|
763 |
-
#: app/features/mec/settings.php:
|
764 |
-
#: app/features/mec/settings.php:
|
765 |
-
#: app/features/mec/settings.php:
|
766 |
-
#: app/features/mec/settings.php:
|
767 |
-
#: app/features/mec/settings.php:
|
768 |
-
#: app/features/mec/settings.php:
|
769 |
-
#: app/features/mec/settings.php:
|
770 |
-
#: app/features/mec/settings.php:
|
771 |
-
#: app/features/mec/settings.php:
|
772 |
-
#: app/features/mec/settings.php:
|
773 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
774 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
775 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
@@ -783,108 +783,108 @@ msgstr ""
|
|
783 |
msgid "Read More"
|
784 |
msgstr "Číst více"
|
785 |
|
786 |
-
#: app/features/events.php:
|
787 |
#, fuzzy
|
788 |
#| msgid "Timezone: %s"
|
789 |
msgid "Timezone"
|
790 |
msgstr "Časové pásmo: %s"
|
791 |
|
792 |
-
#: app/features/events.php:
|
793 |
-
#: app/features/events.php:
|
794 |
-
#: app/features/events.php:
|
795 |
-
#: app/features/events.php:
|
796 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
797 |
msgid "Inherit from global options"
|
798 |
msgstr "Zdědí z globálních možností"
|
799 |
|
800 |
-
#: app/features/events.php:
|
801 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
802 |
#, fuzzy
|
803 |
#| msgid "Countdown View"
|
804 |
msgid "Countdown Method"
|
805 |
msgstr "Zobrazení odpočítávání"
|
806 |
|
807 |
-
#: app/features/events.php:
|
808 |
#, fuzzy
|
809 |
#| msgid "On Event Start"
|
810 |
msgid "Count to Event Start"
|
811 |
msgstr "Při spuštění události"
|
812 |
|
813 |
-
#: app/features/events.php:
|
814 |
#, fuzzy
|
815 |
#| msgid "On Event End"
|
816 |
msgid "Count to Event End"
|
817 |
msgstr "Na konci události"
|
818 |
|
819 |
-
#: app/features/events.php:
|
820 |
msgid "Repeating"
|
821 |
msgstr "Opakování"
|
822 |
|
823 |
-
#: app/features/events.php:
|
824 |
msgid "Event Repeating (Recurring events)"
|
825 |
msgstr "Opakování události (opakující se události)"
|
826 |
|
827 |
-
#: app/features/events.php:
|
828 |
msgid "Repeats"
|
829 |
msgstr "Opakování"
|
830 |
|
831 |
-
#: app/features/events.php:
|
832 |
-
#: app/features/mec.php:
|
833 |
#: app/skins/full_calendar/tpl.php:124
|
834 |
msgid "Daily"
|
835 |
msgstr "Děnně"
|
836 |
|
837 |
-
#: app/features/events.php:
|
838 |
msgid "Every Weekday"
|
839 |
msgstr "Každý všední den"
|
840 |
|
841 |
-
#: app/features/events.php:
|
842 |
msgid "Every Weekend"
|
843 |
msgstr "Každý víkend"
|
844 |
|
845 |
-
#: app/features/events.php:
|
846 |
msgid "Certain Weekdays"
|
847 |
msgstr "Určité pracovní dny"
|
848 |
|
849 |
-
#: app/features/events.php:
|
850 |
#: app/skins/default_full_calendar/tpl.php:76
|
851 |
#: app/skins/full_calendar/tpl.php:123
|
852 |
msgid "Weekly"
|
853 |
msgstr "Týdně"
|
854 |
|
855 |
-
#: app/features/events.php:
|
856 |
-
#: app/features/mec.php:
|
857 |
#: app/skins/full_calendar/tpl.php:122
|
858 |
msgid "Monthly"
|
859 |
msgstr "Měsíčně"
|
860 |
|
861 |
-
#: app/features/events.php:
|
862 |
-
#: app/features/mec.php:
|
863 |
#: app/skins/full_calendar/tpl.php:121
|
864 |
msgid "Yearly"
|
865 |
msgstr "Ročně"
|
866 |
|
867 |
-
#: app/features/events.php:
|
868 |
msgid "Custom Days"
|
869 |
msgstr "Vlastní dny"
|
870 |
|
871 |
-
#: app/features/events.php:
|
872 |
msgid "Advanced"
|
873 |
msgstr "Pokročilé"
|
874 |
|
875 |
-
#: app/features/events.php:
|
876 |
msgid "Repeat Interval"
|
877 |
msgstr "Interval opakování"
|
878 |
|
879 |
-
#: app/features/events.php:
|
880 |
msgid "Repeat interval"
|
881 |
msgstr "Interval opakování"
|
882 |
|
883 |
-
#: app/features/events.php:
|
884 |
msgid "Week Days"
|
885 |
msgstr "Dny v týdnu"
|
886 |
|
887 |
-
#: app/features/events.php:
|
888 |
#, fuzzy
|
889 |
#| msgid "Pro version of Modern Events Calendar"
|
890 |
msgid ""
|
@@ -892,28 +892,29 @@ msgid ""
|
|
892 |
"Calendar."
|
893 |
msgstr "Pro verze doplňku Modern Events Calendar"
|
894 |
|
895 |
-
#: app/features/events.php:
|
896 |
-
#: app/features/events.php:
|
897 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
898 |
#: app/features/ix/import_g_calendar.php:51
|
899 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
|
|
900 |
msgid "Start"
|
901 |
msgstr "Začátek"
|
902 |
|
903 |
-
#: app/features/events.php:
|
904 |
-
#: app/features/events.php:
|
905 |
-
#: app/features/events.php:
|
906 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
907 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
908 |
#: app/libraries/hourlyschedule.php:119
|
909 |
msgid "Add"
|
910 |
msgstr "Přidat"
|
911 |
|
912 |
-
#: app/features/events.php:
|
913 |
msgid "Custom Days Repeating"
|
914 |
msgstr "Opakování vlastních dnů"
|
915 |
|
916 |
-
#: app/features/events.php:
|
917 |
#, fuzzy
|
918 |
#| msgid ""
|
919 |
#| "Add certain days to event occurrence dates. If you have single day event, "
|
@@ -928,56 +929,56 @@ msgstr ""
|
|
928 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
929 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
930 |
|
931 |
-
#: app/features/events.php:
|
932 |
-
#: app/features/events.php:
|
933 |
-
#: app/features/fes/form.php:417
|
934 |
msgid "End"
|
935 |
msgstr "Konec"
|
936 |
|
937 |
-
#: app/features/events.php:
|
938 |
msgid "First"
|
939 |
msgstr "První"
|
940 |
|
941 |
-
#: app/features/events.php:
|
942 |
msgid "Second"
|
943 |
msgstr "Druhá"
|
944 |
|
945 |
-
#: app/features/events.php:
|
946 |
msgid "Third"
|
947 |
msgstr "Třetí"
|
948 |
|
949 |
-
#: app/features/events.php:
|
950 |
msgid "Fourth"
|
951 |
msgstr "Čtvrtá"
|
952 |
|
953 |
-
#: app/features/events.php:
|
954 |
msgid "Last"
|
955 |
msgstr "Poslední"
|
956 |
|
957 |
-
#: app/features/events.php:
|
958 |
msgid "Ends Repeat"
|
959 |
msgstr "Ukončení opakování"
|
960 |
|
961 |
-
#: app/features/events.php:
|
962 |
msgid "Never"
|
963 |
msgstr "Nikdy"
|
964 |
|
965 |
# Možná Zapnuto
|
966 |
-
#: app/features/events.php:
|
967 |
msgid "On"
|
968 |
msgstr "Na"
|
969 |
|
970 |
-
#: app/features/events.php:
|
971 |
#: app/features/mec/booking.php:154
|
972 |
msgid "After"
|
973 |
msgstr "Po"
|
974 |
|
975 |
-
#: app/features/events.php:
|
976 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
977 |
msgid "Occurrences times"
|
978 |
msgstr "Časy výskytu"
|
979 |
|
980 |
-
#: app/features/events.php:
|
981 |
#, fuzzy
|
982 |
#| msgid ""
|
983 |
#| "The event will finish after certain repeats. For example if you set it to "
|
@@ -989,33 +990,33 @@ msgstr ""
|
|
989 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
990 |
"hodnotu 10, událost skončí po 10 opakováních."
|
991 |
|
992 |
-
#: app/features/events.php:
|
993 |
#, fuzzy
|
994 |
#| msgid "Next Occurrence of Other Events"
|
995 |
msgid "Show only one occurrence of this event"
|
996 |
msgstr "Další výskyt dalších událostí"
|
997 |
|
998 |
-
#: app/features/events.php:
|
999 |
-
#: app/features/fes/form.php:833 app/features/ix.php:
|
1000 |
-
#: app/features/ix.php:
|
1001 |
-
#: app/libraries/main.php:
|
1002 |
#: app/widgets/single.php:105
|
1003 |
msgid "Event Cost"
|
1004 |
msgstr "Cena události"
|
1005 |
|
1006 |
-
#: app/features/events.php:
|
1007 |
msgid "Exceptional Days (Exclude Dates)"
|
1008 |
msgstr "Výjimečné dny (vyjma dat)"
|
1009 |
|
1010 |
-
#: app/features/events.php:
|
1011 |
msgid "Exclude certain days"
|
1012 |
msgstr "Vyloučit určité dny"
|
1013 |
|
1014 |
-
#: app/features/events.php:
|
1015 |
-
#: app/features/events.php:
|
1016 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
1017 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
1018 |
-
#: app/features/wc.php:83 app/libraries/main.php:
|
1019 |
#: app/modules/booking/steps/tickets.php:106
|
1020 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
1021 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
@@ -1023,7 +1024,7 @@ msgstr "Vyloučit určité dny"
|
|
1023 |
msgid "Date"
|
1024 |
msgstr "Datum"
|
1025 |
|
1026 |
-
#: app/features/events.php:
|
1027 |
msgid ""
|
1028 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
1029 |
"exclude only single day occurrences and you cannot exclude one day from "
|
@@ -1033,27 +1034,27 @@ msgstr ""
|
|
1033 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
1034 |
"vícedenních výskytů."
|
1035 |
|
1036 |
-
#: app/features/events.php:
|
1037 |
msgid "Day 1"
|
1038 |
msgstr "Den 1"
|
1039 |
|
1040 |
-
#: app/features/events.php:
|
1041 |
-
#: app/features/mec/settings.php:
|
1042 |
msgid "Event Links"
|
1043 |
msgstr "Odkazy na událost"
|
1044 |
|
1045 |
-
#: app/features/events.php:
|
1046 |
-
#: app/features/fes/form.php:812 app/features/mec/settings.php:
|
1047 |
-
#: app/libraries/main.php:
|
1048 |
msgid "Event Link"
|
1049 |
msgstr "Odkaz na událost"
|
1050 |
|
1051 |
-
#: app/features/events.php:
|
1052 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
1053 |
msgid "eg. http://yoursite.com/your-event"
|
1054 |
msgstr "např. http://yoursite.com/vase-udalost"
|
1055 |
|
1056 |
-
#: app/features/events.php:
|
1057 |
#, fuzzy
|
1058 |
#| msgid ""
|
1059 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -1068,34 +1069,34 @@ msgstr ""
|
|
1068 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
1069 |
"URL, můžete také použít zkracovač URL"
|
1070 |
|
1071 |
-
#: app/features/events.php:
|
1072 |
msgid "URL Shortener"
|
1073 |
msgstr "Zkracovač URL"
|
1074 |
|
1075 |
-
#: app/features/events.php:
|
1076 |
-
#: app/features/fes/form.php:817 app/libraries/main.php:
|
1077 |
-
#: app/libraries/main.php:
|
1078 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1079 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1080 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
1081 |
msgid "More Info"
|
1082 |
msgstr "Více info"
|
1083 |
|
1084 |
-
#: app/features/events.php:
|
1085 |
msgid "More Information"
|
1086 |
msgstr "Více informací"
|
1087 |
|
1088 |
-
#: app/features/events.php:
|
1089 |
-
#: app/features/mec.php:
|
1090 |
msgid "Current Window"
|
1091 |
msgstr "Aktuální okno"
|
1092 |
|
1093 |
-
#: app/features/events.php:
|
1094 |
-
#: app/features/mec.php:
|
1095 |
msgid "New Window"
|
1096 |
msgstr "Nové okno"
|
1097 |
|
1098 |
-
#: app/features/events.php:
|
1099 |
msgid ""
|
1100 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1101 |
"Insert full link including http(s)://"
|
@@ -1103,52 +1104,53 @@ msgstr ""
|
|
1103 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1104 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1105 |
|
1106 |
-
#: app/features/events.php:
|
1107 |
msgid "Booking Options"
|
1108 |
msgstr "Možnosti rezervace"
|
1109 |
|
1110 |
-
#: app/features/events.php:
|
|
|
1111 |
#, fuzzy
|
1112 |
#| msgid "Total user booking limits"
|
1113 |
msgid "Total User Booking Limits"
|
1114 |
msgstr "Celkové limity rezervace uživatelů"
|
1115 |
|
1116 |
-
#: app/features/events.php:
|
1117 |
-
#: app/libraries/book.php:63 app/libraries/main.php:
|
1118 |
#: app/modules/booking/steps/tickets.php:137
|
1119 |
#: app/modules/booking/steps/tickets.php:143
|
1120 |
msgid "Tickets"
|
1121 |
msgstr "Vstupenky"
|
1122 |
|
1123 |
-
#: app/features/events.php:
|
1124 |
msgid "Fees"
|
1125 |
msgstr "Poplatky"
|
1126 |
|
1127 |
-
#: app/features/events.php:
|
1128 |
-
#: app/features/mec/settings.php:
|
1129 |
msgid "Ticket Variations / Options"
|
1130 |
msgstr "Varianty vstupenky / možnosti"
|
1131 |
|
1132 |
-
#: app/features/events.php:
|
1133 |
#: app/features/mec/support-page.php:118
|
1134 |
msgid "Organizer Payment"
|
1135 |
msgstr "Platba organizátora"
|
1136 |
|
1137 |
-
#: app/features/events.php:
|
1138 |
#, fuzzy
|
1139 |
#| msgid "Total booking limits"
|
1140 |
msgid "Total booking limit"
|
1141 |
msgstr "Celkové limity rezervace"
|
1142 |
|
1143 |
-
#: app/features/events.php:
|
1144 |
-
#: app/features/events.php:
|
1145 |
#: app/modules/booking/steps/tickets.php:137
|
1146 |
#: app/modules/booking/steps/tickets.php:143
|
1147 |
#: app/skins/available_spot/tpl.php:140
|
1148 |
msgid "Unlimited"
|
1149 |
msgstr "Neomezené"
|
1150 |
|
1151 |
-
#: app/features/events.php:
|
1152 |
msgid ""
|
1153 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1154 |
"limitation number."
|
@@ -1156,57 +1158,59 @@ msgstr ""
|
|
1156 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1157 |
"políčka a zadejte číslo omezení."
|
1158 |
|
1159 |
-
#: app/features/events.php:
|
1160 |
msgid "Read About A Booking System"
|
1161 |
msgstr "Přečtěte si o rezervačním systému"
|
1162 |
|
1163 |
-
#: app/features/events.php:
|
1164 |
msgid "100"
|
1165 |
msgstr "100"
|
1166 |
|
1167 |
-
#: app/features/events.php:
|
1168 |
#, fuzzy
|
1169 |
#| msgid "Discount"
|
1170 |
msgid "Discount per user roles"
|
1171 |
msgstr "Sleva"
|
1172 |
|
1173 |
-
#: app/features/events.php:
|
1174 |
msgid "5"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: app/features/events.php:
|
|
|
1178 |
#, fuzzy
|
1179 |
#| msgid "Next Occurrence"
|
1180 |
msgid "Book All Occurrences"
|
1181 |
msgstr "Další výskyt"
|
1182 |
|
1183 |
-
#: app/features/events.php:
|
1184 |
msgid "Sell all occurrences by one booking"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: app/features/events.php:
|
1188 |
msgid ""
|
1189 |
"If you have a series of events and you want to sell all of them at once, "
|
1190 |
"this option is for you! For example a weekly yoga course or something "
|
1191 |
"similar."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: app/features/events.php:
|
|
|
1195 |
#, fuzzy
|
1196 |
#| msgid "General Options"
|
1197 |
msgid "Interval Options"
|
1198 |
msgstr "Obecné možnosti"
|
1199 |
|
1200 |
-
#: app/features/events.php:
|
1201 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1202 |
msgid "Show Booking Form Interval"
|
1203 |
msgstr "Zobrazit Interval rezervačního formuláře"
|
1204 |
|
1205 |
-
#: app/features/events.php:
|
1206 |
msgid "Minutes (e.g 5)"
|
1207 |
msgstr "Minuty (např. 5)"
|
1208 |
|
1209 |
-
#: app/features/events.php:
|
1210 |
#, fuzzy
|
1211 |
#| msgid ""
|
1212 |
#| "You can show booking form only at certain time before event start. If you "
|
@@ -1221,17 +1225,17 @@ msgstr ""
|
|
1221 |
"Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
|
1222 |
"minut před zahájením akce!"
|
1223 |
|
1224 |
-
#: app/features/events.php:
|
1225 |
msgid "Automatic Approval"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: app/features/events.php:
|
1229 |
#, fuzzy
|
1230 |
#| msgid "Email verification"
|
1231 |
msgid "Email Verification"
|
1232 |
msgstr "Ověřovací email"
|
1233 |
|
1234 |
-
#: app/features/events.php:
|
1235 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1236 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1237 |
#: app/features/mec/booking.php:868
|
@@ -1243,136 +1247,132 @@ msgstr "Ověřovací email"
|
|
1243 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1244 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1245 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1246 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1247 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1248 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1249 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1250 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1251 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1252 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1253 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1254 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1255 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1256 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1257 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1258 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1259 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1260 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1261 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1262 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1263 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1264 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1265 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1266 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1267 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1268 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1269 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1270 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1271 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1272 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1273 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1274 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1275 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1276 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1277 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1278 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1279 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1280 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1281 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1282 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1283 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1284 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1285 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1286 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1287 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1288 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1289 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1290 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1291 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1292 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1293 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1294 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1295 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1296 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1297 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1298 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1299 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1300 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1301 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1302 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1303 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1304 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1305 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1306 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1307 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1308 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1309 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1310 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1311 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1312 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1313 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1314 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1315 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1316 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1317 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1318 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1319 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1320 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1321 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1322 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1323 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1324 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1325 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1326 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1327 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1328 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1329 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1330 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1331 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1332 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1333 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1334 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1335 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1336 |
-
#: app/features/mec/modules.php:124 app/features/mec/settings.php:
|
1337 |
-
#: app/features/mec/settings.php:
|
1338 |
msgid "Disabled"
|
1339 |
msgstr "Zakázaný"
|
1340 |
|
1341 |
-
#: app/features/events.php:
|
1342 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1343 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1344 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1345 |
-
#: app/features/mec/settings.php:
|
1346 |
msgid "Enabled"
|
1347 |
msgstr "Povoleno"
|
1348 |
|
1349 |
-
#: app/features/events.php:
|
1350 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1351 |
-
#: app/libraries/main.php:
|
1352 |
msgid "Booking Confirmation"
|
1353 |
msgstr "Potvrzení rezervace"
|
1354 |
|
1355 |
-
#: app/features/events.php:
|
1356 |
-
msgid "Total user booking limits"
|
1357 |
-
msgstr "Celkové limity rezervace uživatelů"
|
1358 |
-
|
1359 |
-
#: app/features/events.php:1621
|
1360 |
msgid "12"
|
1361 |
msgstr "12"
|
1362 |
|
1363 |
-
#: app/features/events.php:
|
1364 |
#, fuzzy
|
1365 |
#| msgid "Payment Gateways"
|
1366 |
msgid "Disabled Gateways"
|
1367 |
msgstr "Platební brány"
|
1368 |
|
1369 |
-
#: app/features/events.php:
|
1370 |
msgid ""
|
1371 |
"You can disable some of the following payment gateways by checking them "
|
1372 |
"otherwise they will be enabled."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: app/features/events.php:
|
1376 |
msgid ""
|
1377 |
"You're translating an event so MEC will use the original event for tickets "
|
1378 |
"and booking. You can only translate the ticket name and description. Please "
|
@@ -1382,74 +1382,74 @@ msgstr ""
|
|
1382 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1383 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1384 |
|
1385 |
-
#: app/features/events.php:
|
1386 |
#, fuzzy
|
1387 |
#| msgid "Ticket"
|
1388 |
msgid "Add Ticket"
|
1389 |
msgstr "Vstupenka"
|
1390 |
|
1391 |
-
#: app/features/events.php:
|
1392 |
#, fuzzy
|
1393 |
#| msgid "Ticket"
|
1394 |
msgid "Ticket ID"
|
1395 |
msgstr "Vstupenka"
|
1396 |
|
1397 |
-
#: app/features/events.php:
|
1398 |
-
#: app/features/events.php:
|
1399 |
-
#: app/features/ix.php:
|
1400 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1401 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1402 |
msgid "ID"
|
1403 |
msgstr "ID"
|
1404 |
|
1405 |
-
#: app/features/events.php:
|
1406 |
msgid "Ticket Name"
|
1407 |
msgstr "Název vstupenky"
|
1408 |
|
1409 |
-
#: app/features/events.php:
|
1410 |
-
#: app/features/events.php:
|
1411 |
-
#: app/features/ix.php:
|
1412 |
msgid "Start Time"
|
1413 |
msgstr "Začátek"
|
1414 |
|
1415 |
-
#: app/features/events.php:
|
1416 |
-
#: app/features/events.php:
|
1417 |
-
#: app/features/ix.php:
|
1418 |
msgid "End Time"
|
1419 |
msgstr "Konec"
|
1420 |
|
1421 |
-
#: app/features/events.php:
|
1422 |
-
#: app/features/events.php:
|
1423 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1424 |
msgid "Description"
|
1425 |
msgstr "Popis"
|
1426 |
|
1427 |
-
#: app/features/events.php:
|
1428 |
-
#: app/features/events.php:
|
1429 |
#, fuzzy
|
1430 |
#| msgid "Description"
|
1431 |
msgid "Private Description"
|
1432 |
msgstr "Popis"
|
1433 |
|
1434 |
-
#: app/features/events.php:
|
1435 |
#, php-format
|
1436 |
msgid ""
|
1437 |
"You can show it on the email notifications by placing "
|
1438 |
"%%ticket_private_description%% into the email template."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: app/features/events.php:
|
1442 |
-
#: app/features/events.php:
|
1443 |
-
#: app/features/events.php:
|
1444 |
-
#: app/features/events.php:
|
1445 |
-
#: app/features/events.php:
|
1446 |
-
#: app/features/events.php:
|
1447 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1448 |
#: app/features/mec/booking.php:582
|
1449 |
msgid "Price"
|
1450 |
msgstr "Cena"
|
1451 |
|
1452 |
-
#: app/features/events.php:
|
1453 |
#, fuzzy
|
1454 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1455 |
msgid ""
|
@@ -1457,110 +1457,110 @@ msgid ""
|
|
1457 |
"any symbols or characters."
|
1458 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1459 |
|
1460 |
-
#: app/features/events.php:
|
1461 |
-
#: app/features/events.php:
|
1462 |
msgid "Price Label"
|
1463 |
msgstr "Cenový štítek"
|
1464 |
|
1465 |
-
#: app/features/events.php:
|
1466 |
msgid "For showing on website. e.g. $15"
|
1467 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1468 |
|
1469 |
-
#: app/features/events.php:
|
1470 |
msgid "Available Tickets"
|
1471 |
msgstr "Dostupné vstupenky"
|
1472 |
|
1473 |
-
#: app/features/events.php:
|
1474 |
#, fuzzy
|
1475 |
#| msgid "Maximum Per Ticket"
|
1476 |
msgid "Minimum Ticket e.g. 3"
|
1477 |
msgstr "Maximum na jednu vstupenku"
|
1478 |
|
1479 |
-
#: app/features/events.php:
|
1480 |
#, fuzzy
|
1481 |
#| msgid "Maximum Per Ticket"
|
1482 |
msgid "MinimumTicket"
|
1483 |
msgstr "Maximum na jednu vstupenku"
|
1484 |
|
1485 |
-
#: app/features/events.php:
|
1486 |
msgid "Set a number for the minimum ticket reservation possible"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: app/features/events.php:
|
1490 |
msgid "e.g. 0"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: app/features/events.php:
|
1494 |
#, fuzzy
|
1495 |
#| msgid "Days"
|
1496 |
msgid "Day"
|
1497 |
msgstr "Dny"
|
1498 |
|
1499 |
-
#: app/features/events.php:
|
1500 |
msgid "Hour"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: app/features/events.php:
|
1504 |
#, php-format
|
1505 |
msgid "Stop selling ticket %s before event start."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: app/features/events.php:
|
1509 |
msgid "Price per Date"
|
1510 |
msgstr "Cena za datum"
|
1511 |
|
1512 |
-
#: app/features/events.php:
|
1513 |
-
#: app/features/events.php:
|
1514 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1515 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1516 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1517 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1518 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1519 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1520 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1521 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1522 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1523 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1524 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1525 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1526 |
-
#: app/features/mec/settings.php:
|
1527 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1528 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1529 |
msgid "Label"
|
1530 |
msgstr "Štítek"
|
1531 |
|
1532 |
-
#: app/features/events.php:
|
1533 |
-
#: app/features/events.php:
|
1534 |
-
#: app/features/events.php:
|
1535 |
-
#: app/features/events.php:
|
1536 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1537 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1538 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1539 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1540 |
-
#: app/libraries/main.php:
|
1541 |
-
#: app/libraries/main.php:
|
1542 |
-
#: app/libraries/main.php:
|
1543 |
-
#: app/libraries/main.php:
|
1544 |
-
#: app/libraries/main.php:
|
1545 |
-
#: app/libraries/main.php:
|
1546 |
-
#: app/libraries/main.php:
|
1547 |
-
#: app/libraries/main.php:
|
1548 |
msgid "Remove"
|
1549 |
msgstr "Odstranit"
|
1550 |
|
1551 |
-
#: app/features/events.php:
|
1552 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1553 |
msgid "Fee Title"
|
1554 |
msgstr "Název poplatku"
|
1555 |
|
1556 |
-
#: app/features/events.php:
|
1557 |
-
#: app/features/events.php:
|
1558 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1559 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1560 |
msgid "Amount"
|
1561 |
msgstr "Množství"
|
1562 |
|
1563 |
-
#: app/features/events.php:
|
1564 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1565 |
msgid ""
|
1566 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1569,25 +1569,25 @@ msgstr ""
|
|
1569 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1570 |
"odpovídající procentuální hodnotě"
|
1571 |
|
1572 |
-
#: app/features/events.php:
|
1573 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1574 |
msgid "Percent"
|
1575 |
msgstr "Procent"
|
1576 |
|
1577 |
-
#: app/features/events.php:
|
1578 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1579 |
msgid "Amount (Per Ticket)"
|
1580 |
msgstr "Částka (za vstupenku)"
|
1581 |
|
1582 |
-
#: app/features/events.php:
|
1583 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1584 |
msgid "Amount (Per Booking)"
|
1585 |
msgstr "Částka (za rezervaci)"
|
1586 |
|
1587 |
-
#: app/features/events.php:
|
1588 |
-
#: app/features/events.php:
|
1589 |
-
#: app/features/fes/form.php:256 app/features/ix.php:
|
1590 |
-
#: app/features/ix.php:
|
1591 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1592 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1593 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
@@ -1595,26 +1595,26 @@ msgstr "Částka (za rezervaci)"
|
|
1595 |
msgid "Title"
|
1596 |
msgstr "Název"
|
1597 |
|
1598 |
-
#: app/features/events.php:
|
1599 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1600 |
msgid "Option Price"
|
1601 |
msgstr "Možnosti ceny"
|
1602 |
|
1603 |
-
#: app/features/events.php:
|
1604 |
-
#: app/features/events.php:
|
1605 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1606 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1607 |
msgid "Maximum Per Ticket"
|
1608 |
msgstr "Maximum na jednu vstupenku"
|
1609 |
|
1610 |
-
#: app/features/events.php:
|
1611 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1612 |
#, fuzzy
|
1613 |
#| msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1614 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1615 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1616 |
|
1617 |
-
#: app/features/events.php:
|
1618 |
#, fuzzy
|
1619 |
#| msgid ""
|
1620 |
#| "You're translating an event so MEC will use the original event for "
|
@@ -1630,61 +1630,61 @@ msgstr ""
|
|
1630 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1631 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1632 |
|
1633 |
-
#: app/features/events.php:
|
1634 |
#, fuzzy
|
1635 |
#| msgid "Attendees Limit"
|
1636 |
msgid "Per Attendee Fields"
|
1637 |
msgstr "Limit účastníků"
|
1638 |
|
1639 |
-
#: app/features/events.php:
|
1640 |
-
#: app/libraries/main.php:
|
1641 |
msgid "MEC Name"
|
1642 |
msgstr "MEC Jméno"
|
1643 |
|
1644 |
-
#: app/features/events.php:
|
1645 |
-
#: app/libraries/main.php:
|
1646 |
msgid "MEC Email"
|
1647 |
msgstr "MEC Email"
|
1648 |
|
1649 |
-
#: app/features/events.php:
|
1650 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1651 |
-
#: app/features/mec/single.php:190 app/libraries/main.php:
|
1652 |
msgid "Text"
|
1653 |
msgstr "Text"
|
1654 |
|
1655 |
-
#: app/features/events.php:
|
1656 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1657 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1658 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1659 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1660 |
-
#: app/libraries/main.php:
|
1661 |
msgid "Tel"
|
1662 |
msgstr "Tel"
|
1663 |
|
1664 |
-
#: app/features/events.php:
|
1665 |
-
#: app/libraries/main.php:
|
1666 |
msgid "File"
|
1667 |
msgstr "Soubor"
|
1668 |
|
1669 |
-
#: app/features/events.php:
|
1670 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1671 |
-
#: app/features/mec/single.php:195 app/libraries/main.php:
|
1672 |
msgid "Textarea"
|
1673 |
msgstr "Plocha textu"
|
1674 |
|
1675 |
-
#: app/features/events.php:
|
1676 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1677 |
-
#: app/features/mec/single.php:197 app/libraries/main.php:
|
1678 |
msgid "Checkboxes"
|
1679 |
msgstr "Zatržítko"
|
1680 |
|
1681 |
-
#: app/features/events.php:
|
1682 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1683 |
-
#: app/features/mec/single.php:198 app/libraries/main.php:
|
1684 |
msgid "Radio Buttons"
|
1685 |
msgstr "Přepínače"
|
1686 |
|
1687 |
-
#: app/features/events.php:
|
1688 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1689 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1690 |
#: app/features/mec/meta_boxes/search_form.php:41
|
@@ -1692,144 +1692,141 @@ msgstr "Přepínače"
|
|
1692 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1693 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1694 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1695 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1696 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1697 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1698 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1699 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1700 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1701 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1702 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1703 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1704 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1705 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1706 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1707 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1708 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1709 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1710 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1711 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1712 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1713 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1714 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1715 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1716 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1717 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1718 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1719 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1720 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1721 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1722 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1723 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1724 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1725 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1726 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1727 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1728 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1729 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1730 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1731 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1732 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1733 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1734 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1735 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1736 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1737 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1738 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1739 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1740 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1741 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1742 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1743 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1744 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1745 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1746 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1747 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1748 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1749 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1750 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1751 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1752 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1753 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1754 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1755 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1756 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1757 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1758 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1759 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1760 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1761 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1762 |
-
#: app/features/mec/
|
1763 |
-
#: app/features/mec/meta_boxes/search_form.php:799
|
1764 |
-
#: app/features/mec/meta_boxes/search_form.php:813
|
1765 |
-
#: app/features/mec/single.php:199 app/libraries/main.php:3712
|
1766 |
msgid "Dropdown"
|
1767 |
msgstr "Rozbalovací"
|
1768 |
|
1769 |
-
#: app/features/events.php:
|
1770 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1771 |
-
#: app/libraries/main.php:
|
1772 |
msgid "Agreement"
|
1773 |
msgstr "Smlouva"
|
1774 |
|
1775 |
-
#: app/features/events.php:
|
1776 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1777 |
-
#: app/features/mec/single.php:196 app/libraries/main.php:
|
1778 |
msgid "Paragraph"
|
1779 |
msgstr "Paragraf"
|
1780 |
|
1781 |
-
#: app/features/events.php:
|
1782 |
#, fuzzy
|
1783 |
#| msgid "Required Field"
|
1784 |
msgid "Fixed Fields"
|
1785 |
msgstr "Požadovaná pole"
|
1786 |
|
1787 |
-
#: app/features/events.php:
|
1788 |
-
#: app/features/events.php:
|
1789 |
#, php-format
|
1790 |
msgid "Show all %s"
|
1791 |
msgstr "Ukázat všechny %s"
|
1792 |
|
1793 |
-
#: app/features/events.php:
|
1794 |
msgid "labels"
|
1795 |
msgstr "štítky"
|
1796 |
|
1797 |
-
#: app/features/events.php:
|
1798 |
msgid "locations"
|
1799 |
msgstr "umístění"
|
1800 |
|
1801 |
-
#: app/features/events.php:
|
1802 |
msgid "organizers"
|
1803 |
msgstr "organizátoři"
|
1804 |
|
1805 |
-
#: app/features/events.php:
|
1806 |
#, fuzzy
|
1807 |
#| msgid "Attendees Limit"
|
1808 |
msgid "Attendees List"
|
1809 |
msgstr "Limit účastníků"
|
1810 |
|
1811 |
-
#: app/features/events.php:
|
1812 |
-
#: app/features/ix.php:
|
1813 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1814 |
-
#: app/features/locations.php:
|
1815 |
-
#: app/features/locations.php:
|
1816 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1817 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1818 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1819 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1820 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1821 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1822 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1823 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1824 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1825 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1826 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1827 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1828 |
-
#: app/features/mec/settings.php:
|
1829 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1830 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1831 |
-
#: app/libraries/main.php:
|
1832 |
-
#: app/libraries/main.php:
|
1833 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1834 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1835 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
@@ -1837,106 +1834,106 @@ msgstr "Limit účastníků"
|
|
1837 |
msgid "Location"
|
1838 |
msgstr "Umístění"
|
1839 |
|
1840 |
-
#: app/features/events.php:
|
1841 |
msgid "Repeat"
|
1842 |
msgstr "Opakovat"
|
1843 |
|
1844 |
-
#: app/features/events.php:
|
1845 |
msgid "Author"
|
1846 |
msgstr "Autor"
|
1847 |
|
1848 |
-
#: app/features/events.php:
|
1849 |
#, fuzzy
|
1850 |
#| msgid "iCal Export"
|
1851 |
msgid "iCal / Outlook Export"
|
1852 |
msgstr "iCal Export"
|
1853 |
|
1854 |
-
#: app/features/events.php:
|
1855 |
msgid "CSV Export"
|
1856 |
msgstr "CSV Export"
|
1857 |
|
1858 |
-
#: app/features/events.php:
|
1859 |
msgid "MS Excel Export"
|
1860 |
msgstr "MS Excel Export"
|
1861 |
|
1862 |
-
#: app/features/events.php:
|
1863 |
msgid "XML Export"
|
1864 |
msgstr "XML Export"
|
1865 |
|
1866 |
-
#: app/features/events.php:
|
1867 |
msgid "JSON Export"
|
1868 |
msgstr "JSON Export"
|
1869 |
|
1870 |
-
#: app/features/events.php:
|
1871 |
-
#: app/features/events.php:
|
1872 |
msgid "Duplicate"
|
1873 |
msgstr "Duplikát"
|
1874 |
|
1875 |
-
#: app/features/events.php:
|
1876 |
-
#: app/features/ix.php:
|
1877 |
msgid "Link"
|
1878 |
msgstr "Odkaz"
|
1879 |
|
1880 |
-
#: app/features/events.php:
|
1881 |
-
#: app/features/ix.php:
|
1882 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1883 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1884 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1885 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1886 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1887 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1888 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1889 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1890 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1891 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1892 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1893 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1894 |
msgid "Address"
|
1895 |
msgstr "Adresa"
|
1896 |
|
1897 |
-
#: app/features/events.php:
|
1898 |
#, php-format
|
1899 |
msgid "%s Tel"
|
1900 |
msgstr "%s Tel"
|
1901 |
|
1902 |
-
#: app/features/events.php:
|
1903 |
#, php-format
|
1904 |
msgid "%s Email"
|
1905 |
msgstr "%s Email"
|
1906 |
|
1907 |
# v kontextu
|
1908 |
-
#: app/features/events.php:
|
1909 |
-
#: app/features/mec/settings.php:
|
1910 |
msgid "Featured Image"
|
1911 |
msgstr "Hlavní obrázek"
|
1912 |
|
1913 |
-
#: app/features/events.php:
|
1914 |
-
#: app/features/profile/profile.php:183 app/libraries/main.php:
|
1915 |
-
#: app/libraries/main.php:
|
1916 |
msgid "Ticket"
|
1917 |
msgstr "Vstupenka"
|
1918 |
|
1919 |
-
#: app/features/events.php:
|
1920 |
msgid "Variations"
|
1921 |
msgstr "Variace"
|
1922 |
|
1923 |
-
#: app/features/events.php:
|
1924 |
msgid "Unknown"
|
1925 |
msgstr "Neznámý"
|
1926 |
|
1927 |
-
#: app/features/events.php:
|
1928 |
msgid ""
|
1929 |
"If you want to send an email, first select your attendees and then click in "
|
1930 |
"the button below, please."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: app/features/events.php:
|
1934 |
#, fuzzy
|
1935 |
#| msgid "Organizer Email"
|
1936 |
msgid "Send Email"
|
1937 |
msgstr "Organizátor Email"
|
1938 |
|
1939 |
-
#: app/features/events.php:
|
1940 |
#, fuzzy
|
1941 |
#| msgid "Attendees Form"
|
1942 |
msgid "No Attendees Found!"
|
@@ -1949,10 +1946,12 @@ msgstr "Prosím %s/%s za účelem odeslání nových událostí."
|
|
1949 |
|
1950 |
#: app/features/fes.php:94 app/features/fes.php:175
|
1951 |
#: app/features/login/login.php:19 app/features/profile.php:74
|
|
|
1952 |
msgid "Login"
|
1953 |
msgstr "Přihlásit"
|
1954 |
|
1955 |
#: app/features/fes.php:94 app/features/fes.php:175 app/features/profile.php:74
|
|
|
1956 |
msgid "Register"
|
1957 |
msgstr "Registrovat"
|
1958 |
|
@@ -1982,8 +1981,8 @@ msgstr "Událost byla odebrána!"
|
|
1982 |
msgid "Order Time"
|
1983 |
msgstr "Konec"
|
1984 |
|
1985 |
-
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:
|
1986 |
-
#: app/libraries/main.php:
|
1987 |
msgid "Transaction ID"
|
1988 |
msgstr "ID transakce"
|
1989 |
|
@@ -1991,7 +1990,7 @@ msgstr "ID transakce"
|
|
1991 |
msgid "Total Price"
|
1992 |
msgstr "Celková cena"
|
1993 |
|
1994 |
-
#: app/features/fes.php:243 app/libraries/main.php:
|
1995 |
#, fuzzy
|
1996 |
#| msgid "Payment Gateways"
|
1997 |
msgid "Gateway"
|
@@ -2075,8 +2074,8 @@ msgstr "Událost byla publikována."
|
|
2075 |
msgid "Go back to events list"
|
2076 |
msgstr "Přejít zpět na seznam událostí"
|
2077 |
|
2078 |
-
#: app/features/fes/form.php:264 app/features/mec/settings.php:
|
2079 |
-
#: app/features/mec/settings.php:
|
2080 |
msgid "Excerpt"
|
2081 |
msgstr ""
|
2082 |
|
@@ -2178,8 +2177,8 @@ msgstr "Odebrat obrázek"
|
|
2178 |
#: app/features/fes/form.php:891 app/features/labels.php:61
|
2179 |
#: app/features/labels.php:221 app/features/mec.php:460
|
2180 |
#: app/features/mec/meta_boxes/filter.php:72
|
2181 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
2182 |
-
#: app/libraries/main.php:
|
2183 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
2184 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
2185 |
msgid "Labels"
|
@@ -2196,11 +2195,11 @@ msgid "Insert your desired tags, comma separated."
|
|
2196 |
msgstr "Vložte požadované tagy oddělené čárkami."
|
2197 |
|
2198 |
#: app/features/fes/form.php:959 app/features/mec.php:467
|
2199 |
-
#: app/features/mec/modules.php:51 app/features/mec/settings.php:
|
2200 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2201 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2202 |
-
#: app/libraries/main.php:
|
2203 |
-
#: app/libraries/main.php:
|
2204 |
msgid "Speakers"
|
2205 |
msgstr "Řečníci"
|
2206 |
|
@@ -2214,7 +2213,7 @@ msgstr "Jméno řečníka"
|
|
2214 |
msgid "Separate names with commas: Justin, Chris"
|
2215 |
msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
|
2216 |
|
2217 |
-
#: app/features/fes/form.php:1003 app/modules/booking/steps/form.php:
|
2218 |
msgid "Submit"
|
2219 |
msgstr "Potvrdit"
|
2220 |
|
@@ -2252,7 +2251,7 @@ msgid "MEC - Import / Export"
|
|
2252 |
msgstr "MEC Import / Export"
|
2253 |
|
2254 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2255 |
-
#: app/libraries/main.php:
|
2256 |
msgid "Import / Export"
|
2257 |
msgstr "Import / Export"
|
2258 |
|
@@ -2272,27 +2271,27 @@ msgstr "Typ souboru by měl být XML nebo ICS."
|
|
2272 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2273 |
msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
|
2274 |
|
2275 |
-
#: app/features/ix.php:265 app/libraries/main.php:
|
2276 |
-
#: app/libraries/main.php:
|
2277 |
msgid "Confirmed"
|
2278 |
msgstr "Potvrzeno"
|
2279 |
|
2280 |
-
#: app/features/ix.php:266 app/libraries/main.php:
|
2281 |
-
#: app/libraries/main.php:
|
2282 |
msgid "Rejected"
|
2283 |
msgstr "Odmítnuto"
|
2284 |
|
2285 |
#: app/features/ix.php:270 app/features/mec/booking.php:1011
|
2286 |
#: app/features/mec/booking.php:1033 app/features/mec/modules.php:440
|
2287 |
#: app/features/mec/modules.php:462 app/features/mec/notifications.php:1312
|
2288 |
-
#: app/features/mec/notifications.php:1334 app/features/mec/settings.php:
|
2289 |
-
#: app/features/mec/settings.php:
|
2290 |
-
#: app/features/mec/single.php:468 app/libraries/main.php:
|
2291 |
msgid "Verified"
|
2292 |
msgstr "Ověřeno"
|
2293 |
|
2294 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2295 |
-
#: app/features/labels.php:143 app/libraries/main.php:
|
2296 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2297 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2298 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
@@ -2328,63 +2327,63 @@ msgstr "Typ souboru by měl být XML nebo ICS."
|
|
2328 |
msgid "The events are imported successfully!"
|
2329 |
msgstr "Události byly úspěšně importovány!"
|
2330 |
|
2331 |
-
#: app/features/ix.php:
|
2332 |
msgid "Third Party plugin is not installed and activated!"
|
2333 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
2334 |
|
2335 |
-
#: app/features/ix.php:
|
2336 |
msgid "Third Party plugin is invalid!"
|
2337 |
msgstr "Plugin třetí strany je neplatný!"
|
2338 |
|
2339 |
-
#: app/features/ix.php:
|
2340 |
#, fuzzy
|
2341 |
#| msgid "Both of API key and Calendar ID are required!"
|
2342 |
msgid "API key and Calendar ID are required!"
|
2343 |
msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
|
2344 |
|
2345 |
-
#: app/features/ix.php:
|
2346 |
#, fuzzy
|
2347 |
#| msgid "Please select some events to import!"
|
2348 |
msgid "Please select events to import!"
|
2349 |
msgstr "Vyberte události, které chcete importovat!"
|
2350 |
|
2351 |
-
#: app/features/ix.php:
|
2352 |
#, fuzzy
|
2353 |
#| msgid "Both of API key and Group URL are required!"
|
2354 |
msgid "API key and Group URL are required!"
|
2355 |
msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
|
2356 |
|
2357 |
-
#: app/features/ix.php:
|
2358 |
msgid "Check at Meetup"
|
2359 |
msgstr "Ověřit Meetup"
|
2360 |
|
2361 |
-
#: app/features/ix.php:
|
2362 |
msgid "Organizer Tel"
|
2363 |
msgstr "Organizátor Tel"
|
2364 |
|
2365 |
-
#: app/features/ix.php:
|
2366 |
msgid "Organizer Email"
|
2367 |
msgstr "Organizátor Email"
|
2368 |
|
2369 |
# Client Secret dle kontextu
|
2370 |
-
#: app/features/ix.php:
|
2371 |
#, fuzzy
|
2372 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2373 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2374 |
msgstr ""
|
2375 |
"Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
|
2376 |
|
2377 |
-
#: app/features/ix.php:
|
2378 |
#, fuzzy, php-format
|
2379 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2380 |
msgid "All seems good! Please click %s to authenticate your app."
|
2381 |
msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
|
2382 |
|
2383 |
-
#: app/features/ix.php:
|
2384 |
msgid "here"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: app/features/ix.php:
|
2388 |
#, fuzzy
|
2389 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2390 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
@@ -2392,28 +2391,28 @@ msgstr ""
|
|
2392 |
"Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
|
2393 |
"povinné!"
|
2394 |
|
2395 |
-
#: app/features/ix.php:
|
2396 |
#, fuzzy, php-format
|
2397 |
#| msgid "%s events added to Google Calendar successfully."
|
2398 |
msgid "%s events added to Google Calendar with success."
|
2399 |
msgstr "% s události byly přidané do Google kalendáře úspěšně."
|
2400 |
|
2401 |
-
#: app/features/ix.php:
|
2402 |
#, fuzzy, php-format
|
2403 |
#| msgid "%s previously added events get updated."
|
2404 |
msgid "%s Updated previously added events."
|
2405 |
msgstr "% s dříve přidané události byly aktualizovány."
|
2406 |
|
2407 |
-
#: app/features/ix.php:
|
2408 |
#, php-format
|
2409 |
msgid "%s events failed to add for following reasons: %s"
|
2410 |
msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
|
2411 |
|
2412 |
-
#: app/features/ix.php:
|
2413 |
msgid "Please insert your Facebook page's link."
|
2414 |
msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
|
2415 |
|
2416 |
-
#: app/features/ix.php:
|
2417 |
#, fuzzy
|
2418 |
#| msgid ""
|
2419 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
@@ -2425,7 +2424,7 @@ msgstr ""
|
|
2425 |
"Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
|
2426 |
"poskytněte nám platný odkaz na stránku Facebooku."
|
2427 |
|
2428 |
-
#: app/features/ix.php:
|
2429 |
msgid "Please insert your facebook page's link."
|
2430 |
msgstr "Vložte prosím odkaz na svou facebookovou stránku."
|
2431 |
|
@@ -2599,7 +2598,7 @@ msgstr "Přidat do Google kalendáře"
|
|
2599 |
|
2600 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1013
|
2601 |
#: app/features/mec/modules.php:442 app/features/mec/notifications.php:1314
|
2602 |
-
#: app/features/mec/settings.php:
|
2603 |
msgid "Checking ..."
|
2604 |
msgstr "Ověřování ..."
|
2605 |
|
@@ -3097,15 +3096,15 @@ msgstr "Spočítat"
|
|
3097 |
msgid "Slug"
|
3098 |
msgstr "Slug"
|
3099 |
|
3100 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
3101 |
#, php-format
|
3102 |
msgid "Event %s"
|
3103 |
msgstr "Událost %s"
|
3104 |
|
3105 |
#: app/features/locations.php:59 app/features/mec.php:461
|
3106 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
3107 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
3108 |
-
#: app/libraries/main.php:
|
3109 |
msgid "Locations"
|
3110 |
msgstr "Umístění"
|
3111 |
|
@@ -3114,7 +3113,7 @@ msgid "Enter the location address"
|
|
3114 |
msgstr "Vložit adresu místa"
|
3115 |
|
3116 |
#: app/features/locations.php:130 app/features/locations.php:196
|
3117 |
-
#: app/features/locations.php:
|
3118 |
msgid "Latitude"
|
3119 |
msgstr "Zeměpisná šířka"
|
3120 |
|
@@ -3123,7 +3122,7 @@ msgid "Geo latitude (Optional)"
|
|
3123 |
msgstr "Zeměpisná šířka (volitelné)"
|
3124 |
|
3125 |
#: app/features/locations.php:138 app/features/locations.php:200
|
3126 |
-
#: app/features/locations.php:
|
3127 |
msgid "Longitude"
|
3128 |
msgstr "Zeměpisná délka"
|
3129 |
|
@@ -3132,7 +3131,7 @@ msgid "Geo longitude (Optional)"
|
|
3132 |
msgstr "Zeměpisná délka (volitelné)"
|
3133 |
|
3134 |
#: app/features/locations.php:146 app/features/locations.php:204
|
3135 |
-
#: app/features/locations.php:
|
3136 |
#, fuzzy
|
3137 |
#| msgid "Locations"
|
3138 |
msgid "Location Website"
|
@@ -3157,47 +3156,47 @@ msgid "Upload/Add image"
|
|
3157 |
msgstr "Nahrát / přidat obrázek"
|
3158 |
|
3159 |
#: app/features/locations.php:161 app/features/locations.php:213
|
3160 |
-
#: app/features/locations.php:
|
3161 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
3162 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
3163 |
#: app/features/speakers.php:181 app/features/speakers.php:232
|
3164 |
msgid "Remove image"
|
3165 |
msgstr "Odebrat obrázek"
|
3166 |
|
3167 |
-
#: app/features/locations.php:
|
3168 |
msgid "Hide location"
|
3169 |
msgstr "Skrýt místo"
|
3170 |
|
3171 |
-
#: app/features/locations.php:
|
3172 |
msgid "Insert a new location"
|
3173 |
msgstr "Vložit nové místo"
|
3174 |
|
3175 |
-
#: app/features/locations.php:
|
3176 |
msgid "Choose one of saved locations or insert new one below."
|
3177 |
msgstr "Vyberte jedno z uložených míst nebo vložte nové."
|
3178 |
|
3179 |
-
#: app/features/locations.php:
|
3180 |
msgid "Location Name"
|
3181 |
msgstr "Název místa"
|
3182 |
|
3183 |
-
#: app/features/locations.php:
|
3184 |
msgid "eg. City Hall"
|
3185 |
msgstr "např. Radnice"
|
3186 |
|
3187 |
-
#: app/features/locations.php:
|
3188 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3189 |
msgid "Event Location"
|
3190 |
msgstr "Místo události"
|
3191 |
|
3192 |
-
#: app/features/locations.php:
|
3193 |
msgid "eg. City hall, Manhattan, New York"
|
3194 |
msgstr "např. Radnice, Dominikánská 2, Brno"
|
3195 |
|
3196 |
-
#: app/features/locations.php:
|
3197 |
msgid "Latitude/Longitude"
|
3198 |
msgstr "Zeměpisná šířka / délka"
|
3199 |
|
3200 |
-
#: app/features/locations.php:
|
3201 |
msgid ""
|
3202 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
3203 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -3211,25 +3210,25 @@ msgstr ""
|
|
3211 |
"místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
|
3212 |
"na mapě a vyhledejte souřadnice délky a šířky."
|
3213 |
|
3214 |
-
#: app/features/locations.php:
|
3215 |
msgid "Get Latitude and Longitude"
|
3216 |
msgstr "Získejte šířku a délku"
|
3217 |
|
3218 |
-
#: app/features/locations.php:
|
3219 |
#: app/features/popup/event.php:202
|
3220 |
msgid "Choose image"
|
3221 |
msgstr "Vyberte obrázek"
|
3222 |
|
3223 |
-
#: app/features/locations.php:
|
3224 |
msgid "Don't show map in single event page"
|
3225 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
3226 |
|
3227 |
-
#: app/features/locations.php:
|
3228 |
-
#: app/libraries/main.php:
|
3229 |
msgid "Other Locations"
|
3230 |
msgstr "Další místa"
|
3231 |
|
3232 |
-
#: app/features/locations.php:
|
3233 |
msgid ""
|
3234 |
"You can select extra locations in addition to main location if you like."
|
3235 |
msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
|
@@ -3246,7 +3245,7 @@ msgstr "<strong>"
|
|
3246 |
msgid "Login successful, redirecting..."
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: app/features/login/login.php:11 app/modules/booking/steps/form.php:
|
3250 |
msgid "Password"
|
3251 |
msgstr ""
|
3252 |
|
@@ -3313,7 +3312,7 @@ msgstr "Podpora"
|
|
3313 |
#: app/features/mec.php:462 app/features/mec/dashboard.php:286
|
3314 |
#: app/features/mec/meta_boxes/filter.php:71
|
3315 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3316 |
-
#: app/libraries/main.php:
|
3317 |
msgid "Organizers"
|
3318 |
msgstr "Organizátoři"
|
3319 |
|
@@ -3352,7 +3351,7 @@ msgstr "Export"
|
|
3352 |
msgid "MEC - Go Pro"
|
3353 |
msgstr "MEC - podpora"
|
3354 |
|
3355 |
-
#: app/features/mec.php:479 app/features/mec.php:
|
3356 |
#: app/features/mec/go-pro.php:9
|
3357 |
msgid "Go Pro"
|
3358 |
msgstr ""
|
@@ -3393,75 +3392,75 @@ msgstr "Filtrovat možnosti"
|
|
3393 |
msgid "Search Form"
|
3394 |
msgstr "Vyhledávací formulář"
|
3395 |
|
3396 |
-
#: app/features/mec.php:
|
3397 |
msgid "Display content's images as Popup"
|
3398 |
msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
|
3399 |
|
3400 |
-
#: app/features/mec.php:
|
3401 |
msgid "Single Event Display Method"
|
3402 |
msgstr "Metoda zobrazení jedné události"
|
3403 |
|
3404 |
-
#: app/features/mec.php:
|
3405 |
#, fuzzy
|
3406 |
#| msgid "Modal 1"
|
3407 |
msgid "Modal Popup"
|
3408 |
msgstr "Modal 1"
|
3409 |
|
3410 |
-
#: app/features/mec.php:
|
3411 |
#, fuzzy
|
3412 |
#| msgid "Disabled"
|
3413 |
msgid "Disable Link"
|
3414 |
msgstr "Zakázaný"
|
3415 |
|
3416 |
-
#: app/features/mec.php:
|
3417 |
#, fuzzy
|
3418 |
#| msgid "Booking Options"
|
3419 |
msgid "Booking Button / Icon"
|
3420 |
msgstr "Možnosti rezervace"
|
3421 |
|
3422 |
-
#: app/features/mec.php:
|
3423 |
#, fuzzy
|
3424 |
#| msgid "Organizers"
|
3425 |
msgid "Display Organizers"
|
3426 |
msgstr "Organizátoři"
|
3427 |
|
3428 |
-
#: app/features/mec.php:
|
3429 |
msgid "Total Bookings"
|
3430 |
msgstr "Celkový počet rezervací"
|
3431 |
|
3432 |
-
#: app/features/mec.php:
|
3433 |
msgid "Modern Events Calendar (Lite)"
|
3434 |
msgstr "Modern Events Calendar (Lite)"
|
3435 |
|
3436 |
-
#: app/features/mec.php:
|
3437 |
-
#: app/features/mec/settings.php:
|
3438 |
msgid "Upcoming Events"
|
3439 |
msgstr "Nadcházející události"
|
3440 |
|
3441 |
-
#: app/features/mec.php:
|
3442 |
#, fuzzy
|
3443 |
#| msgid "Update %s"
|
3444 |
msgid "News & Updates"
|
3445 |
msgstr "Aktualizovat %s"
|
3446 |
|
3447 |
-
#: app/features/mec.php:
|
3448 |
msgid "Blog"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
-
#: app/features/mec.php:
|
3452 |
msgid "Help"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: app/features/mec.php:
|
3456 |
#, php-format
|
3457 |
msgid "Total Sells (%s)"
|
3458 |
msgstr "Celkový prodej %s"
|
3459 |
|
3460 |
-
#: app/features/mec.php:
|
3461 |
msgid "This Month"
|
3462 |
msgstr "Tento měsíc"
|
3463 |
|
3464 |
-
#: app/features/mec.php:
|
3465 |
msgid "Last Month"
|
3466 |
msgstr "Minulý měsíc"
|
3467 |
|
@@ -3469,29 +3468,29 @@ msgstr "Minulý měsíc"
|
|
3469 |
msgid "This Year"
|
3470 |
msgstr "Tento rok"
|
3471 |
|
3472 |
-
#: app/features/mec.php:
|
3473 |
msgid "Last Year"
|
3474 |
msgstr "Minulý rok"
|
3475 |
|
3476 |
-
#: app/features/mec.php:
|
3477 |
msgid "Bar"
|
3478 |
msgstr "Pruh"
|
3479 |
|
3480 |
-
#: app/features/mec.php:
|
3481 |
msgid "Line"
|
3482 |
msgstr "Čára"
|
3483 |
|
3484 |
-
#: app/features/mec.php:
|
3485 |
msgid "Filter"
|
3486 |
msgstr "Filtr"
|
3487 |
|
3488 |
-
#: app/features/mec.php:
|
3489 |
#, fuzzy
|
3490 |
#| msgid "Modern Events Calendar"
|
3491 |
msgid "Print Calendar"
|
3492 |
msgstr "Moderní kalendář událostí"
|
3493 |
|
3494 |
-
#: app/features/mec.php:
|
3495 |
#, fuzzy
|
3496 |
#| msgid "Display Event Price"
|
3497 |
msgid "Display Events"
|
@@ -3519,7 +3518,7 @@ msgstr ""
|
|
3519 |
|
3520 |
#: app/features/mec/booking.php:78 app/features/mec/messages.php:13
|
3521 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3522 |
-
#: app/features/mec/settings.php:
|
3523 |
#: app/features/mec/styling.php:35
|
3524 |
msgid "Search..."
|
3525 |
msgstr "Vyhledávání ..."
|
@@ -3536,9 +3535,9 @@ msgstr "Vyhledávání ..."
|
|
3536 |
#: app/features/mec/notifications.php:1213
|
3537 |
#: app/features/mec/notifications.php:1225
|
3538 |
#: app/features/mec/notifications.php:1331
|
3539 |
-
#: app/features/mec/notifications.php:1345 app/features/mec/settings.php:
|
3540 |
-
#: app/features/mec/settings.php:
|
3541 |
-
#: app/features/mec/settings.php:
|
3542 |
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3543 |
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3544 |
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
@@ -3650,7 +3649,7 @@ msgid "User Registration"
|
|
3650 |
msgstr "Registrační tlačítko"
|
3651 |
|
3652 |
#: app/features/mec/booking.php:168 app/features/mec/booking.php:176
|
3653 |
-
#: app/modules/booking/steps/form.php:
|
3654 |
#, fuzzy
|
3655 |
#| msgid "Register Button"
|
3656 |
msgid "Registration"
|
@@ -3757,8 +3756,8 @@ msgid ""
|
|
3757 |
msgstr ""
|
3758 |
|
3759 |
#: app/features/mec/booking.php:267 app/features/mec/booking.php:269
|
3760 |
-
#: app/features/mec/booking.php:279 app/features/mec/settings.php:
|
3761 |
-
#: app/features/mec/settings.php:
|
3762 |
msgid "Thank You Page"
|
3763 |
msgstr "Stránka s poděkováním"
|
3764 |
|
@@ -3771,15 +3770,15 @@ msgstr ""
|
|
3771 |
"vypnout, ponechte ji prázdnou."
|
3772 |
|
3773 |
#: app/features/mec/booking.php:287 app/features/mec/booking.php:292
|
3774 |
-
#: app/features/mec/settings.php:
|
3775 |
msgid "Thank You Page Time Interval"
|
3776 |
msgstr "Stránka s poděkováním časového intervalu"
|
3777 |
|
3778 |
-
#: app/features/mec/booking.php:289 app/features/mec/settings.php:
|
3779 |
msgid "2000 mean 2 seconds"
|
3780 |
msgstr "2000 znamená 2 vteřiny"
|
3781 |
|
3782 |
-
#: app/features/mec/booking.php:293 app/features/mec/settings.php:
|
3783 |
msgid ""
|
3784 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3785 |
"2000 means 2 seconds."
|
@@ -3849,7 +3848,7 @@ msgstr "Automatické ověření pro placené rezervace"
|
|
3849 |
msgid "Send confirmation email in auto confirmation mode"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: app/features/mec/booking.php:413 app/libraries/main.php:
|
3853 |
#, fuzzy
|
3854 |
#| msgid "Booking Style"
|
3855 |
msgid "Booking Shortcode"
|
@@ -3889,7 +3888,7 @@ msgstr ""
|
|
3889 |
"novou nabídku na řídícím panelu > Rezervace"
|
3890 |
|
3891 |
#: app/features/mec/booking.php:447 app/features/mec/booking.php:835
|
3892 |
-
#: app/libraries/main.php:
|
3893 |
msgid "Taxes / Fees"
|
3894 |
msgstr "Daně / poplatky"
|
3895 |
|
@@ -3901,7 +3900,7 @@ msgstr "Povolit modul daní / poplatků"
|
|
3901 |
msgid "Add Fee"
|
3902 |
msgstr "Přidat poplatek"
|
3903 |
|
3904 |
-
#: app/features/mec/booking.php:524 app/libraries/main.php:
|
3905 |
msgid "Ticket Variations & Options"
|
3906 |
msgstr "Varianty a možnosti vstupenek"
|
3907 |
|
@@ -4052,20 +4051,20 @@ msgstr ""
|
|
4052 |
|
4053 |
#: app/features/mec/booking.php:1008 app/features/mec/messages.php:78
|
4054 |
#: app/features/mec/modules.php:437 app/features/mec/notifications.php:1309
|
4055 |
-
#: app/features/mec/settings.php:
|
4056 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:323
|
4057 |
msgid "Saved"
|
4058 |
msgstr "Uloženo"
|
4059 |
|
4060 |
#: app/features/mec/booking.php:1009 app/features/mec/messages.php:79
|
4061 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1310
|
4062 |
-
#: app/features/mec/settings.php:
|
4063 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:324
|
4064 |
msgid "Settings Saved!"
|
4065 |
msgstr "Nastavení uložena!"
|
4066 |
|
4067 |
#: app/features/mec/booking.php:1035 app/features/mec/modules.php:464
|
4068 |
-
#: app/features/mec/notifications.php:1336 app/features/mec/settings.php:
|
4069 |
#: app/features/mec/single.php:470
|
4070 |
msgid "Please Refresh Page"
|
4071 |
msgstr "Prosím obnovte stránku"
|
@@ -4195,7 +4194,7 @@ msgid "Download Settings"
|
|
4195 |
msgstr "Stáhnout nastavení"
|
4196 |
|
4197 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4198 |
-
#: app/features/mec/support.php:66 app/libraries/main.php:
|
4199 |
msgid "Messages"
|
4200 |
msgstr "Zprávy"
|
4201 |
|
@@ -4226,9 +4225,9 @@ msgstr "Vzhled"
|
|
4226 |
#: app/features/mec/meta_boxes/display_options.php:953
|
4227 |
#: app/features/mec/meta_boxes/display_options.php:1284
|
4228 |
#: app/features/mec/meta_boxes/display_options.php:1575
|
4229 |
-
#: app/features/mec/settings.php:
|
4230 |
-
#: app/features/mec/settings.php:
|
4231 |
-
#: app/features/mec/settings.php:
|
4232 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4233 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4234 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
@@ -4239,8 +4238,8 @@ msgstr "Klasický"
|
|
4239 |
|
4240 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4241 |
#: app/features/mec/meta_boxes/display_options.php:289
|
4242 |
-
#: app/features/mec/settings.php:
|
4243 |
-
#: app/features/mec/settings.php:
|
4244 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4245 |
msgid "Minimal"
|
4246 |
msgstr "Minimální"
|
@@ -4251,10 +4250,10 @@ msgstr "Minimální"
|
|
4251 |
#: app/features/mec/meta_boxes/display_options.php:955
|
4252 |
#: app/features/mec/meta_boxes/display_options.php:1282
|
4253 |
#: app/features/mec/meta_boxes/display_options.php:1577
|
4254 |
-
#: app/features/mec/settings.php:
|
4255 |
-
#: app/features/mec/settings.php:
|
4256 |
-
#: app/features/mec/settings.php:
|
4257 |
-
#: app/features/mec/settings.php:
|
4258 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4259 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4260 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
@@ -4262,13 +4261,13 @@ msgid "Modern"
|
|
4262 |
msgstr "Moderní"
|
4263 |
|
4264 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4265 |
-
#: app/features/mec/settings.php:
|
4266 |
#: app/features/popup/shortcode.php:83
|
4267 |
msgid "Standard"
|
4268 |
msgstr "Standardní"
|
4269 |
|
4270 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4271 |
-
#: app/features/mec/settings.php:
|
4272 |
#: app/features/popup/shortcode.php:88
|
4273 |
msgid "Accordion"
|
4274 |
msgstr "Akordeon"
|
@@ -4667,9 +4666,9 @@ msgstr "Přepínač pro oddělovník měsíce"
|
|
4667 |
#: app/features/mec/meta_boxes/display_options.php:954
|
4668 |
#: app/features/mec/meta_boxes/display_options.php:1283
|
4669 |
#: app/features/mec/meta_boxes/display_options.php:1576
|
4670 |
-
#: app/features/mec/settings.php:
|
4671 |
-
#: app/features/mec/settings.php:
|
4672 |
-
#: app/features/mec/settings.php:
|
4673 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4674 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4675 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
@@ -4679,8 +4678,8 @@ msgstr "Čistý"
|
|
4679 |
#: app/features/mec/meta_boxes/display_options.php:291
|
4680 |
#: app/features/mec/meta_boxes/display_options.php:693
|
4681 |
#: app/features/mec/meta_boxes/display_options.php:957
|
4682 |
-
#: app/features/mec/settings.php:
|
4683 |
-
#: app/features/mec/settings.php:
|
4684 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4685 |
#: app/features/popup/shortcode.php:219
|
4686 |
msgid "Simple"
|
@@ -4694,8 +4693,8 @@ msgstr "Plněbarevný"
|
|
4694 |
#: app/features/mec/meta_boxes/display_options.php:293
|
4695 |
#: app/features/mec/meta_boxes/display_options.php:692
|
4696 |
#: app/features/mec/meta_boxes/display_options.php:956
|
4697 |
-
#: app/features/mec/settings.php:
|
4698 |
-
#: app/features/mec/settings.php:
|
4699 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4700 |
#: app/features/popup/shortcode.php:214
|
4701 |
msgid "Novel"
|
@@ -4745,15 +4744,15 @@ msgstr "Výchozí zobrazení"
|
|
4745 |
|
4746 |
#: app/features/mec/meta_boxes/display_options.php:679
|
4747 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4748 |
-
#: app/libraries/main.php:364 app/libraries/main.php:
|
4749 |
-
#: app/libraries/main.php:
|
4750 |
msgid "List View"
|
4751 |
msgstr "Zobrazení seznamu"
|
4752 |
|
4753 |
#: app/features/mec/meta_boxes/display_options.php:680
|
4754 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4755 |
-
#: app/libraries/main.php:365 app/libraries/main.php:
|
4756 |
-
#: app/libraries/main.php:
|
4757 |
msgid "Grid View"
|
4758 |
msgstr "Zobrazení mřížky"
|
4759 |
|
@@ -4767,8 +4766,8 @@ msgstr "Zobrazení rozvrhu"
|
|
4767 |
|
4768 |
#: app/features/mec/meta_boxes/display_options.php:682
|
4769 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4770 |
-
#: app/libraries/main.php:368 app/libraries/main.php:
|
4771 |
-
#: app/libraries/main.php:
|
4772 |
msgid "Yearly View"
|
4773 |
msgstr "Roční zobrazení"
|
4774 |
|
@@ -4779,15 +4778,15 @@ msgstr "Měsíční / kalendářní zobrazení"
|
|
4779 |
|
4780 |
#: app/features/mec/meta_boxes/display_options.php:684
|
4781 |
#: app/features/mec/meta_boxes/display_options.php:794
|
4782 |
-
#: app/libraries/main.php:371 app/libraries/main.php:
|
4783 |
-
#: app/libraries/main.php:
|
4784 |
msgid "Weekly View"
|
4785 |
msgstr "Týdenní zobrazení"
|
4786 |
|
4787 |
#: app/features/mec/meta_boxes/display_options.php:685
|
4788 |
#: app/features/mec/meta_boxes/display_options.php:804
|
4789 |
-
#: app/libraries/main.php:370 app/libraries/main.php:
|
4790 |
-
#: app/libraries/main.php:
|
4791 |
msgid "Daily View"
|
4792 |
msgstr "Denní zobrazení"
|
4793 |
|
@@ -5225,7 +5224,7 @@ msgstr "Vložte požadované tagy oddělené čárkou."
|
|
5225 |
msgid "Choose your desired authors for filtering the events."
|
5226 |
msgstr "Vyberte požadované autory pro filtrování událostí."
|
5227 |
|
5228 |
-
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:
|
5229 |
msgid "Expired Events"
|
5230 |
msgstr "Události vypršely"
|
5231 |
|
@@ -5295,86 +5294,81 @@ msgid "Show Search Form"
|
|
5295 |
msgstr "Zobrazit vyhledávací formulář"
|
5296 |
|
5297 |
#: app/features/mec/meta_boxes/search_form.php:53
|
5298 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5299 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5300 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5301 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5302 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5303 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5304 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5305 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5306 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5307 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5308 |
-
#: app/features/mec/settings.php:
|
5309 |
#: app/features/mec/single.php:386 app/features/search.php:86
|
5310 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5311 |
-
#: app/libraries/main.php:
|
5312 |
#: app/libraries/skins.php:1016 app/modules/speakers/details.php:18
|
5313 |
msgid "Speaker"
|
5314 |
msgstr "Řečník"
|
5315 |
|
5316 |
#: app/features/mec/meta_boxes/search_form.php:60
|
5317 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5318 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5319 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5320 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5321 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5322 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5323 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5324 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5325 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5326 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5327 |
-
#: app/features/mec/settings.php:
|
5328 |
#: app/features/mec/single.php:395 app/features/search.php:92
|
5329 |
#: app/libraries/skins.php:1042
|
5330 |
msgid "Tag"
|
5331 |
msgstr "Štítek"
|
5332 |
|
5333 |
#: app/features/mec/meta_boxes/search_form.php:77
|
5334 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5335 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5336 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5337 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5338 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5339 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5340 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5341 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5342 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5343 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5344 |
#, fuzzy
|
5345 |
#| msgid "Address"
|
5346 |
msgid "Address Input"
|
5347 |
msgstr "Adresa"
|
5348 |
|
5349 |
#: app/features/mec/meta_boxes/search_form.php:81
|
5350 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5351 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5352 |
-
|
5353 |
-
|
5354 |
-
|
5355 |
-
|
5356 |
-
#: app/features/mec/meta_boxes/search_form.php:634
|
5357 |
-
#: app/features/mec/meta_boxes/search_form.php:704
|
5358 |
-
#: app/features/mec/meta_boxes/search_form.php:810
|
5359 |
-
msgid "Month Filter"
|
5360 |
-
msgstr "Měsíční filtr"
|
5361 |
|
5362 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5363 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5364 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5365 |
-
|
5366 |
-
|
5367 |
-
#: app/features/mec/meta_boxes/search_form.php:438
|
5368 |
-
#: app/features/mec/meta_boxes/search_form.php:501
|
5369 |
-
#: app/features/mec/meta_boxes/search_form.php:571
|
5370 |
-
#: app/features/mec/meta_boxes/search_form.php:641
|
5371 |
-
#: app/features/mec/meta_boxes/search_form.php:711
|
5372 |
-
#: app/features/mec/meta_boxes/search_form.php:817
|
5373 |
-
msgid "Text Search"
|
5374 |
-
msgstr "Vyhledat text"
|
5375 |
|
5376 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5377 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5378 |
#: app/features/mec/meta_boxes/search_form.php:231
|
5379 |
#: app/features/mec/meta_boxes/search_form.php:301
|
5380 |
#: app/features/mec/meta_boxes/search_form.php:371
|
@@ -5384,15 +5378,39 @@ msgstr "Vyhledat text"
|
|
5384 |
#: app/features/mec/meta_boxes/search_form.php:644
|
5385 |
#: app/features/mec/meta_boxes/search_form.php:714
|
5386 |
#: app/features/mec/meta_boxes/search_form.php:820
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5387 |
msgid "Text Input"
|
5388 |
msgstr "Zadávání textu"
|
5389 |
|
5390 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5391 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5392 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5393 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5394 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5395 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5396 |
msgid "No Search Options"
|
5397 |
msgstr "Žádné možnosti vyhledávání"
|
5398 |
|
@@ -5421,7 +5439,7 @@ msgstr ""
|
|
5421 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
5422 |
"novou nabídku na řídícím panelu > MEC"
|
5423 |
|
5424 |
-
#: app/features/mec/modules.php:66 app/libraries/main.php:
|
5425 |
#, fuzzy
|
5426 |
#| msgid "Google Maps Options"
|
5427 |
msgid "Map Options"
|
@@ -5445,8 +5463,8 @@ msgstr "Google Maps API"
|
|
5445 |
msgid "Google Map Options"
|
5446 |
msgstr "Možnosti Google Maps"
|
5447 |
|
5448 |
-
#: app/features/mec/modules.php:85 app/features/mec/settings.php:
|
5449 |
-
#: app/features/mec/settings.php:
|
5450 |
msgid "Required!"
|
5451 |
msgstr "Požadované!"
|
5452 |
|
@@ -5514,7 +5532,7 @@ msgstr ""
|
|
5514 |
msgid "Fullscreen Button"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#: app/features/mec/modules.php:176 app/libraries/main.php:
|
5518 |
msgid "Export Options"
|
5519 |
msgstr "Možnosti exportu"
|
5520 |
|
@@ -5529,7 +5547,7 @@ msgstr ""
|
|
5529 |
msgid "Google Calendar"
|
5530 |
msgstr "Kalendář Google"
|
5531 |
|
5532 |
-
#: app/features/mec/modules.php:203 app/libraries/main.php:
|
5533 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5534 |
#: app/widgets/single.php:101
|
5535 |
msgid "Local Time"
|
@@ -5541,7 +5559,7 @@ msgstr ""
|
|
5541 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
5542 |
"události"
|
5543 |
|
5544 |
-
#: app/features/mec/modules.php:217 app/libraries/main.php:
|
5545 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5546 |
msgid "QR Code"
|
5547 |
msgstr "QR kód"
|
@@ -5551,7 +5569,7 @@ msgid "Show QR code of event in details page and booking invoice"
|
|
5551 |
msgstr ""
|
5552 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
5553 |
|
5554 |
-
#: app/features/mec/modules.php:235 app/libraries/main.php:
|
5555 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5556 |
msgid "Weather"
|
5557 |
msgstr "Počasí"
|
@@ -5590,7 +5608,7 @@ msgstr "Zobrazit tlačítko Změna jednotek počasí"
|
|
5590 |
msgid "Show social network module"
|
5591 |
msgstr "Zobrazit modul sociální sítě"
|
5592 |
|
5593 |
-
#: app/features/mec/modules.php:308 app/libraries/main.php:
|
5594 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5595 |
msgid "Next Event"
|
5596 |
msgstr "Další událost"
|
@@ -5651,7 +5669,7 @@ msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
|
5651 |
msgid "Add events menu to user profile"
|
5652 |
msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
5653 |
|
5654 |
-
#: app/features/mec/modules.php:385 app/libraries/main.php:
|
5655 |
#, fuzzy
|
5656 |
#| msgid "Mailchimp Integration"
|
5657 |
msgid "LearnDash Integration"
|
@@ -6364,7 +6382,7 @@ msgstr "Stáhnout ICS soubor"
|
|
6364 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6365 |
msgstr ""
|
6366 |
|
6367 |
-
#: app/features/mec/notifications.php:160 app/libraries/main.php:
|
6368 |
msgid "Booking Verification"
|
6369 |
msgstr "Ověření rezervace"
|
6370 |
|
@@ -6406,7 +6424,7 @@ msgid "Booking cancellation link."
|
|
6406 |
msgstr "Odkaz na zrušení rezervace."
|
6407 |
|
6408 |
#: app/features/mec/notifications.php:402 app/features/notifications.php:157
|
6409 |
-
#: app/libraries/main.php:
|
6410 |
#, fuzzy
|
6411 |
#| msgid "Booking Verification"
|
6412 |
msgid "Booking Rejection"
|
@@ -6440,7 +6458,7 @@ msgid "Send the email to the booked user"
|
|
6440 |
msgstr "Pošlete rezervační e-mail uživateli"
|
6441 |
|
6442 |
#: app/features/mec/notifications.php:540 app/features/notifications.php:163
|
6443 |
-
#: app/libraries/main.php:
|
6444 |
msgid "Booking Cancellation"
|
6445 |
msgstr "Zrušení rezervace"
|
6446 |
|
@@ -6462,7 +6480,7 @@ msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
|
|
6462 |
msgid "Admin booking management link."
|
6463 |
msgstr "Odkaz administrátora na správu rezervace."
|
6464 |
|
6465 |
-
#: app/features/mec/notifications.php:662 app/libraries/main.php:
|
6466 |
msgid "Admin"
|
6467 |
msgstr "Administrátor"
|
6468 |
|
@@ -6477,7 +6495,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
6477 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6478 |
|
6479 |
#: app/features/mec/notifications.php:784 app/features/notifications.php:169
|
6480 |
-
#: app/libraries/main.php:
|
6481 |
#, fuzzy
|
6482 |
#| msgid "Event Color"
|
6483 |
msgid "Event Soldout"
|
@@ -6498,7 +6516,7 @@ msgid ""
|
|
6498 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6499 |
|
6500 |
#: app/features/mec/notifications.php:893 app/features/notifications.php:166
|
6501 |
-
#: app/libraries/main.php:
|
6502 |
msgid "Booking Reminder"
|
6503 |
msgstr "Připomenutí rezervace"
|
6504 |
|
@@ -6527,8 +6545,8 @@ msgstr ""
|
|
6527 |
msgid "only once per hour"
|
6528 |
msgstr "pouze jednou denně"
|
6529 |
|
6530 |
-
#: app/features/mec/notifications.php:956 app/libraries/main.php:
|
6531 |
-
#: app/libraries/main.php:
|
6532 |
#, fuzzy
|
6533 |
#| msgid "hours"
|
6534 |
msgid "Hours"
|
@@ -6543,7 +6561,7 @@ msgid "Please, insert comma to separate reminder hours."
|
|
6543 |
msgstr ""
|
6544 |
|
6545 |
#: app/features/mec/notifications.php:1026 app/features/popup/event.php:253
|
6546 |
-
#: app/libraries/main.php:
|
6547 |
msgid "New Event"
|
6548 |
msgstr "Nová událost"
|
6549 |
|
@@ -6579,8 +6597,8 @@ msgid "Status of event"
|
|
6579 |
msgstr "Stav události"
|
6580 |
|
6581 |
#: app/features/mec/notifications.php:1103
|
6582 |
-
#: app/features/mec/notifications.php:1188 app/features/mec/settings.php:
|
6583 |
-
#: app/features/mec/settings.php:
|
6584 |
msgid "Event Note"
|
6585 |
msgstr "Poznámka události"
|
6586 |
|
@@ -6589,7 +6607,7 @@ msgstr "Poznámka události"
|
|
6589 |
msgid "Admin events management link."
|
6590 |
msgstr "Odkaz administrátora na správu událostí."
|
6591 |
|
6592 |
-
#: app/features/mec/notifications.php:1117 app/libraries/main.php:
|
6593 |
msgid "User Event Publishing"
|
6594 |
msgstr "Publikování uživatelských událostí"
|
6595 |
|
@@ -6609,7 +6627,7 @@ msgstr ""
|
|
6609 |
"Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
|
6610 |
"nebo z administrace webových stránek (backend)."
|
6611 |
|
6612 |
-
#: app/features/mec/notifications.php:1200 app/libraries/main.php:
|
6613 |
#, fuzzy
|
6614 |
#| msgid "Notifications"
|
6615 |
msgid "Notifications Per Event"
|
@@ -6701,52 +6719,52 @@ msgstr "Pole možností nemůže být prázdné!"
|
|
6701 |
msgid "There was an error please try again!"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: app/features/mec/settings.php:
|
6705 |
msgid "Hide Events"
|
6706 |
msgstr "Skrýt události"
|
6707 |
|
6708 |
-
#: app/features/mec/settings.php:
|
6709 |
msgid "On Event Start"
|
6710 |
msgstr "Při spuštění události"
|
6711 |
|
6712 |
-
#: app/features/mec/settings.php:
|
6713 |
msgid "+1 Hour after start"
|
6714 |
msgstr "+1 hodinu po zahájení"
|
6715 |
|
6716 |
-
#: app/features/mec/settings.php:
|
6717 |
msgid "+2 Hours after start"
|
6718 |
msgstr "+2 hodiny po zahájení"
|
6719 |
|
6720 |
-
#: app/features/mec/settings.php:
|
6721 |
msgid "On Event End"
|
6722 |
msgstr "Na konci události"
|
6723 |
|
6724 |
-
#: app/features/mec/settings.php:
|
6725 |
msgid ""
|
6726 |
"This option is for showing start/end time of events on frontend of website."
|
6727 |
msgstr ""
|
6728 |
"Tato možnost slouží k zobrazení času zahájení / ukončení událostí na "
|
6729 |
"rozhraní webových stránek (frontend)."
|
6730 |
|
6731 |
-
#: app/features/mec/settings.php:
|
6732 |
msgid "Multiple Day Events"
|
6733 |
msgstr "Vícedenní událost"
|
6734 |
|
6735 |
-
#: app/features/mec/settings.php:
|
6736 |
#, fuzzy
|
6737 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
6738 |
msgid "Show only first day on List/Grid/Slider/Agenda skins"
|
6739 |
msgstr "Zobrazit pouze první den ve vzhledu Seznam / Mřížka / Posuvník"
|
6740 |
|
6741 |
-
#: app/features/mec/settings.php:
|
6742 |
msgid "Show only first day on all skins"
|
6743 |
msgstr "Zobrazit pouze první den ve všech vzhledech"
|
6744 |
|
6745 |
-
#: app/features/mec/settings.php:
|
6746 |
msgid "Show all days"
|
6747 |
msgstr "Zobrazit všechny dny"
|
6748 |
|
6749 |
-
#: app/features/mec/settings.php:
|
6750 |
msgid ""
|
6751 |
"For showing all days of multiple day events on frontend or only show the "
|
6752 |
"first day."
|
@@ -6754,43 +6772,43 @@ msgstr ""
|
|
6754 |
"Pro zobrazení všech dnů vícedenních událostí na webových stránkách "
|
6755 |
"(frontend) nebo zobrazení pouze prvního dne."
|
6756 |
|
6757 |
-
#: app/features/mec/settings.php:
|
6758 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6759 |
msgstr "Odebrat data při odinstalování doplňku MEC"
|
6760 |
|
6761 |
-
#: app/features/mec/settings.php:
|
6762 |
#, fuzzy
|
6763 |
#| msgid "Speakers Names"
|
6764 |
msgid "Sender Name"
|
6765 |
msgstr "Jméno řečníka"
|
6766 |
|
6767 |
-
#: app/features/mec/settings.php:
|
6768 |
msgid "e.g. Webnus"
|
6769 |
msgstr ""
|
6770 |
|
6771 |
-
#: app/features/mec/settings.php:
|
6772 |
#, fuzzy
|
6773 |
#| msgid "Organizer Email"
|
6774 |
msgid "Sender Email"
|
6775 |
msgstr "Organizátor Email"
|
6776 |
|
6777 |
-
#: app/features/mec/settings.php:
|
6778 |
msgid "e.g. info@webnus.biz"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
-
#: app/features/mec/settings.php:
|
6782 |
msgid "Exclude Date Suffix"
|
6783 |
msgstr "Vyloučit příponu data"
|
6784 |
|
6785 |
-
#: app/features/mec/settings.php:
|
6786 |
msgid "Remove suffix from calendars"
|
6787 |
msgstr "Odebrat příponu z kalendářů"
|
6788 |
|
6789 |
-
#: app/features/mec/settings.php:
|
6790 |
msgid "Remove \"Th\" on calendar"
|
6791 |
msgstr "Odebrat „Th“ z kalendáře"
|
6792 |
|
6793 |
-
#: app/features/mec/settings.php:
|
6794 |
msgid ""
|
6795 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
6796 |
"showing just '12' )"
|
@@ -6798,24 +6816,24 @@ msgstr ""
|
|
6798 |
"Zaškrtnutím tohoto políčka odstraníte „Th“ z kalendáře (např .: „12Th“ "
|
6799 |
"odstraní Th, zobrazí se pouze „12“)"
|
6800 |
|
6801 |
-
#: app/features/mec/settings.php:
|
6802 |
msgid "Schema"
|
6803 |
msgstr "Schéma"
|
6804 |
|
6805 |
-
#: app/features/mec/settings.php:
|
6806 |
msgid "Enable Schema Code"
|
6807 |
msgstr "Povolit kód schématu"
|
6808 |
|
6809 |
-
#: app/features/mec/settings.php:
|
6810 |
msgid "You can enable/disable Schema scripts"
|
6811 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
6812 |
|
6813 |
-
#: app/features/mec/settings.php:
|
6814 |
-
#: app/libraries/main.php:
|
6815 |
msgid "Weekdays"
|
6816 |
msgstr "Pracovní dny"
|
6817 |
|
6818 |
-
#: app/features/mec/settings.php:
|
6819 |
msgid ""
|
6820 |
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
6821 |
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
@@ -6825,11 +6843,11 @@ msgstr ""
|
|
6825 |
"Pátek (můžete to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > "
|
6826 |
"Nastavení > Obecné - spodní část stránky)."
|
6827 |
|
6828 |
-
#: app/features/mec/settings.php:
|
6829 |
msgid "Weekends"
|
6830 |
msgstr "Víkendy"
|
6831 |
|
6832 |
-
#: app/features/mec/settings.php:
|
6833 |
#, fuzzy
|
6834 |
#| msgid ""
|
6835 |
#| "Proceed with caution. Default is set to Saturday and Sunday ( you can "
|
@@ -6844,150 +6862,150 @@ msgstr ""
|
|
6844 |
"to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > Nastavení > "
|
6845 |
"Obecné - dolní část stránky )."
|
6846 |
|
6847 |
-
#: app/features/mec/settings.php:
|
6848 |
#, fuzzy
|
6849 |
#| msgid "Date Format"
|
6850 |
msgid "Datepicker Format"
|
6851 |
msgstr "Formát data"
|
6852 |
|
6853 |
-
#: app/features/mec/settings.php:
|
6854 |
msgid "(Y-m-d)"
|
6855 |
msgstr ""
|
6856 |
|
6857 |
-
#: app/features/mec/settings.php:
|
6858 |
msgid "(d-m-Y)"
|
6859 |
msgstr ""
|
6860 |
|
6861 |
-
#: app/features/mec/settings.php:
|
6862 |
msgid "(Y/m/d)"
|
6863 |
msgstr ""
|
6864 |
|
6865 |
-
#: app/features/mec/settings.php:
|
6866 |
msgid "(m/d/Y)"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#: app/features/mec/settings.php:
|
6870 |
msgid "(Y.m.d)"
|
6871 |
msgstr ""
|
6872 |
|
6873 |
-
#: app/features/mec/settings.php:
|
6874 |
msgid "(d.m.Y)"
|
6875 |
msgstr ""
|
6876 |
|
6877 |
-
#: app/features/mec/settings.php:
|
6878 |
msgid "Midnight Hour"
|
6879 |
msgstr ""
|
6880 |
|
6881 |
-
#: app/features/mec/settings.php:
|
6882 |
msgid "12 AM"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#: app/features/mec/settings.php:
|
6886 |
msgid "1 AM"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#: app/features/mec/settings.php:
|
6890 |
msgid "2 AM"
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: app/features/mec/settings.php:
|
6894 |
msgid "3 AM"
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#: app/features/mec/settings.php:
|
6898 |
msgid "4 AM"
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#: app/features/mec/settings.php:
|
6902 |
msgid "5 AM"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#: app/features/mec/settings.php:
|
6906 |
msgid ""
|
6907 |
"12 AM is midnight by default but you can change it if your event ends after "
|
6908 |
"12 AM and you don't want those events considered as multiple days events!"
|
6909 |
msgstr ""
|
6910 |
|
6911 |
-
#: app/features/mec/settings.php:
|
6912 |
#, fuzzy
|
6913 |
#| msgid "Add Shortcode"
|
6914 |
msgid "Open \"Add Event\" as Popup"
|
6915 |
msgstr "Přidat zkrácený kód"
|
6916 |
|
6917 |
-
#: app/features/mec/settings.php:
|
6918 |
-
#: app/features/mec/settings.php:
|
6919 |
#, fuzzy
|
6920 |
#| msgid "Enabled"
|
6921 |
msgid "Enable"
|
6922 |
msgstr "Povoleno"
|
6923 |
|
6924 |
-
#: app/features/mec/settings.php:
|
6925 |
#, fuzzy
|
6926 |
#| msgid "Add Shortcode"
|
6927 |
msgid "Open \"Add Shortcode\" as Popup"
|
6928 |
msgstr "Přidat zkrácený kód"
|
6929 |
|
6930 |
# v kontextu
|
6931 |
-
#: app/features/mec/settings.php:
|
6932 |
#, fuzzy
|
6933 |
#| msgid "Featured Image"
|
6934 |
msgid "Include Event Featured Image in Feed"
|
6935 |
msgstr "Hlavní obrázek"
|
6936 |
|
6937 |
-
#: app/features/mec/settings.php:
|
6938 |
msgid "Archive Pages"
|
6939 |
msgstr "Archivní stránky"
|
6940 |
|
6941 |
-
#: app/features/mec/settings.php:
|
6942 |
msgid "Archive Page Title"
|
6943 |
msgstr "Název stránky archivu"
|
6944 |
|
6945 |
-
#: app/features/mec/settings.php:
|
6946 |
msgid "Default value is Events - It's title of the page"
|
6947 |
msgstr "Výchozí hodnota je Události - to je název stránky"
|
6948 |
|
6949 |
-
#: app/features/mec/settings.php:
|
6950 |
msgid "Archive Page Skin"
|
6951 |
msgstr "Vzhled archivní stránky"
|
6952 |
|
6953 |
-
#: app/features/mec/settings.php:
|
6954 |
msgid "Put shortcode..."
|
6955 |
msgstr "Vložte zkrácený kód..."
|
6956 |
|
6957 |
-
#: app/features/mec/settings.php:
|
6958 |
-
#: app/features/mec/settings.php:
|
6959 |
-
#: app/features/mec/settings.php:
|
6960 |
-
#: app/features/mec/settings.php:
|
6961 |
-
#: app/features/mec/settings.php:
|
6962 |
msgid "There is no skins"
|
6963 |
msgstr "Neexistuje žádný vzhled"
|
6964 |
|
6965 |
-
#: app/features/mec/settings.php:
|
6966 |
#: app/features/mec/single.php:73
|
6967 |
msgid "Modern Style"
|
6968 |
msgstr "Moderní styl"
|
6969 |
|
6970 |
-
#: app/features/mec/settings.php:
|
6971 |
msgid "colorful"
|
6972 |
msgstr "pestrý"
|
6973 |
|
6974 |
-
#: app/features/mec/settings.php:
|
6975 |
msgid "Clean Style"
|
6976 |
msgstr "Čistý styl"
|
6977 |
|
6978 |
-
#: app/features/mec/settings.php:
|
6979 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
6980 |
msgstr "Výchozí hodnota je Kalendář / Měsíční zobrazení, ale můžete ji změnit "
|
6981 |
|
6982 |
-
#: app/features/mec/settings.php:
|
6983 |
msgid "See Demo"
|
6984 |
msgstr "Viz Demo"
|
6985 |
|
6986 |
-
#: app/features/mec/settings.php:
|
6987 |
msgid "Category Page Skin"
|
6988 |
msgstr "Vzhled stránky kategorie"
|
6989 |
|
6990 |
-
#: app/features/mec/settings.php:
|
6991 |
#, fuzzy
|
6992 |
#| msgid ""
|
6993 |
#| "Default value is List View - But you can change it Set a skin for all "
|
@@ -6999,24 +7017,24 @@ msgstr ""
|
|
6999 |
"Výchozí hodnota je Zobrazení seznamu - ale můžete ji změnit Nastavit vzhled "
|
7000 |
"pro všechny kategorie."
|
7001 |
|
7002 |
-
#: app/features/mec/settings.php:
|
7003 |
msgid "Category Events Method"
|
7004 |
msgstr "Kategorie Metoda události"
|
7005 |
|
7006 |
-
#: app/features/mec/settings.php:
|
7007 |
msgid "Default value is Upcoming Events"
|
7008 |
msgstr "Výchozí hodnota je Nadcházející události"
|
7009 |
|
7010 |
-
#: app/features/mec/settings.php:
|
7011 |
msgid "Events Archive Status"
|
7012 |
msgstr "Stav archivu událostí"
|
7013 |
|
7014 |
-
#: app/features/mec/settings.php:
|
7015 |
msgid "Enabled (Recommended)"
|
7016 |
msgstr "Povoleno (doporučeno)"
|
7017 |
|
7018 |
# Slug
|
7019 |
-
#: app/features/mec/settings.php:
|
7020 |
msgid ""
|
7021 |
"If you disable it, then you should create a page as archive page of MEC. "
|
7022 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
@@ -7027,11 +7045,11 @@ msgstr ""
|
|
7027 |
"přepisování MEC."
|
7028 |
|
7029 |
# Hlavní slug
|
7030 |
-
#: app/features/mec/settings.php:
|
7031 |
msgid "Main Slug"
|
7032 |
msgstr "Main Slug"
|
7033 |
|
7034 |
-
#: app/features/mec/settings.php:
|
7035 |
msgid ""
|
7036 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7037 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
@@ -7041,16 +7059,16 @@ msgstr ""
|
|
7041 |
"umožňuje vytvářet vlastní adresy URL pro permanentní odkazy a archivy, aby "
|
7042 |
"se zvýšila použitelnost a dopředná kompatibilita odkazů."
|
7043 |
|
7044 |
-
#: app/features/mec/settings.php:
|
7045 |
msgid "Valid characters are lowercase a-z, - character and numbers."
|
7046 |
msgstr "Platnými znaky jsou malá písmena a-z, - znak a čísla."
|
7047 |
|
7048 |
# Slug
|
7049 |
-
#: app/features/mec/settings.php:
|
7050 |
msgid "Category Slug"
|
7051 |
msgstr "Kategorie Slug"
|
7052 |
|
7053 |
-
#: app/features/mec/settings.php:
|
7054 |
msgid ""
|
7055 |
"It's slug of MEC categories, you can change it to events-cat or something "
|
7056 |
"else. Default value is mec-category. You can not have a page with this name."
|
@@ -7059,114 +7077,114 @@ msgstr ""
|
|
7059 |
"jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
|
7060 |
"názvem."
|
7061 |
|
7062 |
-
#: app/features/mec/settings.php:
|
7063 |
msgid "Currency"
|
7064 |
msgstr "Měna"
|
7065 |
|
7066 |
-
#: app/features/mec/settings.php:
|
7067 |
msgid "Currency Sign"
|
7068 |
msgstr "Symbol měny"
|
7069 |
|
7070 |
-
#: app/features/mec/settings.php:
|
7071 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7072 |
msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
|
7073 |
|
7074 |
-
#: app/features/mec/settings.php:
|
7075 |
msgid "Currency Position"
|
7076 |
msgstr "Pozice měny"
|
7077 |
|
7078 |
-
#: app/features/mec/settings.php:
|
7079 |
msgid "Before $10"
|
7080 |
msgstr "Před $10"
|
7081 |
|
7082 |
-
#: app/features/mec/settings.php:
|
7083 |
msgid "After 10$"
|
7084 |
msgstr "Po 10$"
|
7085 |
|
7086 |
-
#: app/features/mec/settings.php:
|
7087 |
msgid "Thousand Separator"
|
7088 |
msgstr "Oddělovač tisíců"
|
7089 |
|
7090 |
-
#: app/features/mec/settings.php:
|
7091 |
msgid "Decimal Separator"
|
7092 |
msgstr "Oddělovač desítel"
|
7093 |
|
7094 |
-
#: app/features/mec/settings.php:
|
7095 |
msgid "No decimal"
|
7096 |
msgstr "Bez desetinných míst"
|
7097 |
|
7098 |
-
#: app/features/mec/settings.php:
|
7099 |
msgid "Enable Google Recaptcha"
|
7100 |
msgstr "Povolit Google Recaptcha"
|
7101 |
|
7102 |
-
#: app/features/mec/settings.php:
|
7103 |
msgid "Enable on booking form"
|
7104 |
msgstr "Povolit rezervační formulář"
|
7105 |
|
7106 |
-
#: app/features/mec/settings.php:
|
7107 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7108 |
msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
|
7109 |
|
7110 |
# místa
|
7111 |
-
#: app/features/mec/settings.php:
|
7112 |
msgid "Site Key"
|
7113 |
msgstr "Klíč webu"
|
7114 |
|
7115 |
-
#: app/features/mec/settings.php:
|
7116 |
msgid "Secret Key"
|
7117 |
msgstr "Tajný klíč"
|
7118 |
|
7119 |
-
#: app/features/mec/settings.php:
|
7120 |
msgid "Time Format"
|
7121 |
msgstr "Formát času"
|
7122 |
|
7123 |
-
#: app/features/mec/settings.php:
|
7124 |
msgid "12 hours format with AM/PM"
|
7125 |
msgstr "12 hodinový formát s dop./odp."
|
7126 |
|
7127 |
-
#: app/features/mec/settings.php:
|
7128 |
msgid "24 hours format"
|
7129 |
msgstr "24 hodinový fotmát"
|
7130 |
|
7131 |
-
#: app/features/mec/settings.php:
|
7132 |
msgid "This option, affects the selection of Start/End time."
|
7133 |
msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
|
7134 |
|
7135 |
-
#: app/features/mec/settings.php:
|
7136 |
msgid "Events List Page"
|
7137 |
msgstr "Stránka seznamu událostí"
|
7138 |
|
7139 |
-
#: app/features/mec/settings.php:
|
7140 |
#, php-format
|
7141 |
msgid "Put %s shortcode into the page."
|
7142 |
msgstr "Vložte %s na stránku zkrácené kódy."
|
7143 |
|
7144 |
-
#: app/features/mec/settings.php:
|
7145 |
msgid "Add/Edit Events Page"
|
7146 |
msgstr "Přidat / Editovat stránku událostí"
|
7147 |
|
7148 |
-
#: app/features/mec/settings.php:
|
7149 |
#, fuzzy
|
7150 |
#| msgid "On Event Start"
|
7151 |
msgid "New Events Status"
|
7152 |
msgstr "Při spuštění události"
|
7153 |
|
7154 |
-
#: app/features/mec/settings.php:
|
7155 |
#, fuzzy
|
7156 |
#| msgid "WordPress"
|
7157 |
msgid "Let WordPress decide"
|
7158 |
msgstr "WordPress"
|
7159 |
|
7160 |
-
#: app/features/mec/settings.php:
|
7161 |
-
#: app/libraries/main.php:
|
7162 |
msgid "Pending"
|
7163 |
msgstr "Nevyřízený"
|
7164 |
|
7165 |
-
#: app/features/mec/settings.php:
|
7166 |
msgid "Publish"
|
7167 |
msgstr ""
|
7168 |
|
7169 |
-
#: app/features/mec/settings.php:
|
7170 |
#, fuzzy
|
7171 |
#| msgid ""
|
7172 |
#| "User redirects to this page after booking. Leave it empty if you want to "
|
@@ -7178,102 +7196,120 @@ msgstr ""
|
|
7178 |
"Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
|
7179 |
"vypnout, ponechte ji prázdnou."
|
7180 |
|
7181 |
-
#: app/features/mec/settings.php:
|
7182 |
#, fuzzy
|
7183 |
#| msgid "Thank You Page"
|
7184 |
msgid "Thank You Page URL"
|
7185 |
msgstr "Stránka s poděkováním"
|
7186 |
|
7187 |
-
#: app/features/mec/settings.php:
|
7188 |
msgid "If filled it will use instead of thank you page set above."
|
7189 |
msgstr ""
|
7190 |
|
7191 |
-
#: app/features/mec/settings.php:
|
7192 |
#, fuzzy
|
7193 |
#| msgid "Maximum file size"
|
7194 |
msgid "Maximum File Size"
|
7195 |
msgstr "Maximální velikost souboru"
|
7196 |
|
7197 |
-
#: app/features/mec/settings.php:
|
7198 |
msgid "in KB"
|
7199 |
msgstr ""
|
7200 |
|
7201 |
-
#: app/features/mec/settings.php:
|
7202 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7203 |
msgstr ""
|
7204 |
|
7205 |
-
#: app/features/mec/settings.php:
|
7206 |
#, fuzzy
|
7207 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7208 |
msgid "Enable event submission by guest (Not logged in) users"
|
7209 |
msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
|
7210 |
|
7211 |
-
#: app/features/mec/settings.php:
|
7212 |
msgid "Enable mandatory email and name for guest user"
|
7213 |
msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
|
7214 |
|
7215 |
-
#: app/features/mec/settings.php:
|
7216 |
msgid ""
|
7217 |
"Automatically create users after event publish and assign event to the "
|
7218 |
"created user"
|
7219 |
msgstr ""
|
7220 |
|
7221 |
-
#: app/features/mec/settings.php:
|
7222 |
msgid "Frontend Event Submission Sections"
|
7223 |
msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
|
7224 |
|
7225 |
-
#: app/features/mec/settings.php:
|
7226 |
#, fuzzy
|
7227 |
#| msgid "Event Details"
|
7228 |
msgid "Event Data Fields"
|
7229 |
msgstr "Podrobnosti události"
|
7230 |
|
7231 |
-
#: app/features/mec/settings.php:
|
7232 |
msgid "Event Categories"
|
7233 |
msgstr "Kategorie události"
|
7234 |
|
7235 |
-
#: app/features/mec/settings.php:
|
7236 |
msgid "Event Labels"
|
7237 |
msgstr "Štítky události"
|
7238 |
|
7239 |
-
#: app/features/mec/settings.php:
|
7240 |
msgid "Event Tags"
|
7241 |
msgstr "Tagy události"
|
7242 |
|
7243 |
-
#: app/features/mec/settings.php:
|
7244 |
msgid "Event Organizer"
|
7245 |
msgstr "Organizátor události"
|
7246 |
|
7247 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7248 |
msgid "Fees / Taxes Options"
|
7249 |
msgstr "Možnosti Poplatky / Daně"
|
7250 |
|
7251 |
-
#: app/features/mec/settings.php:
|
7252 |
#, fuzzy
|
7253 |
#| msgid "Schema"
|
7254 |
msgid "SEO Schema"
|
7255 |
msgstr "Schéma"
|
7256 |
|
7257 |
-
#: app/features/mec/settings.php:
|
7258 |
#: app/features/occurrences.php:102
|
7259 |
#, fuzzy
|
7260 |
#| msgid "Occurrences times"
|
7261 |
msgid "Occurrences"
|
7262 |
msgstr "Časy výskytu"
|
7263 |
|
7264 |
-
#: app/features/mec/settings.php:
|
7265 |
#, fuzzy
|
7266 |
#| msgid "Edit Event"
|
7267 |
msgid "Virtual Event"
|
7268 |
msgstr "Editace události"
|
7269 |
|
7270 |
-
#: app/features/mec/settings.php:
|
7271 |
#, fuzzy
|
7272 |
#| msgid "Book Event"
|
7273 |
msgid "Zoom Event"
|
7274 |
msgstr "Rezervovat událost"
|
7275 |
|
7276 |
-
#: app/features/mec/settings.php:
|
7277 |
#, php-format
|
7278 |
msgid ""
|
7279 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -7284,48 +7320,48 @@ msgstr ""
|
|
7284 |
"oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
|
7285 |
"mail s poznámkami uživatelů."
|
7286 |
|
7287 |
-
#: app/features/mec/settings.php:
|
7288 |
#, fuzzy
|
7289 |
#| msgid "Visibility"
|
7290 |
msgid "Note visibility"
|
7291 |
msgstr "Viditelnost"
|
7292 |
|
7293 |
-
#: app/features/mec/settings.php:
|
7294 |
msgid "Always"
|
7295 |
msgstr "Vždy"
|
7296 |
|
7297 |
-
#: app/features/mec/settings.php:
|
7298 |
msgid "While event is not published"
|
7299 |
msgstr "I když událost není zveřejněna"
|
7300 |
|
7301 |
-
#: app/features/mec/settings.php:
|
7302 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7303 |
msgstr ""
|
7304 |
"Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
|
7305 |
"(frontend) a Upravit událost v administraci stránek (backend)."
|
7306 |
|
7307 |
-
#: app/features/mec/settings.php:
|
7308 |
#, fuzzy
|
7309 |
#| msgid "Required Field"
|
7310 |
msgid "Required Fields"
|
7311 |
msgstr "Požadovaná pole"
|
7312 |
|
7313 |
-
#: app/features/mec/settings.php:
|
7314 |
#, fuzzy
|
7315 |
#| msgid "Description"
|
7316 |
msgid "Event Description"
|
7317 |
msgstr "Popis"
|
7318 |
|
7319 |
-
#: app/features/mec/settings.php:
|
7320 |
-
#: app/libraries/main.php:
|
7321 |
msgid "More Info Link"
|
7322 |
msgstr "Odkaz na více informací"
|
7323 |
|
7324 |
-
#: app/features/mec/settings.php:
|
7325 |
msgid "User Profile"
|
7326 |
msgstr "Uživatelský profil"
|
7327 |
|
7328 |
-
#: app/features/mec/settings.php:
|
7329 |
#, fuzzy, php-format
|
7330 |
#| msgid ""
|
7331 |
#| "Put %s shortcode into your desired page. Then users are able to see "
|
@@ -7337,11 +7373,29 @@ msgstr ""
|
|
7337 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
|
7338 |
"historii svých rezervací."
|
7339 |
|
7340 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7341 |
msgid "Search Bar"
|
7342 |
msgstr "Vyhledávací panel"
|
7343 |
|
7344 |
-
#: app/features/mec/settings.php:
|
7345 |
#, php-format
|
7346 |
msgid ""
|
7347 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
@@ -7349,15 +7403,15 @@ msgstr ""
|
|
7349 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
7350 |
"události"
|
7351 |
|
7352 |
-
#: app/features/mec/settings.php:
|
7353 |
msgid "Ajax Live mode"
|
7354 |
msgstr "Ajax Live mód"
|
7355 |
|
7356 |
-
#: app/features/mec/settings.php:
|
7357 |
msgid "Ajax mode"
|
7358 |
msgstr "Ajax mód"
|
7359 |
|
7360 |
-
#: app/features/mec/settings.php:
|
7361 |
#, fuzzy
|
7362 |
#| msgid ""
|
7363 |
#| "if you enable this option, search button disappeared and to use this "
|
@@ -7369,47 +7423,47 @@ msgstr ""
|
|
7369 |
"pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
|
7370 |
"této funkce musí být povoleno pole pro zadávání textu."
|
7371 |
|
7372 |
-
#: app/features/mec/settings.php:
|
7373 |
msgid "Modern Type"
|
7374 |
msgstr "Moderní typ"
|
7375 |
|
7376 |
-
#: app/features/mec/settings.php:
|
7377 |
msgid "Search bar fields"
|
7378 |
msgstr "Pole vyhledávacího panelu"
|
7379 |
|
7380 |
-
#: app/features/mec/settings.php:
|
7381 |
msgid "Text input"
|
7382 |
msgstr "Zadávání textu"
|
7383 |
|
7384 |
-
#: app/features/mec/settings.php:
|
7385 |
msgid "Enable Mailchimp Integration"
|
7386 |
msgstr "Povolit integraci Mailchimp"
|
7387 |
|
7388 |
-
#: app/features/mec/settings.php:
|
7389 |
-
#: app/features/mec/settings.php:
|
7390 |
-
#: app/features/mec/settings.php:
|
7391 |
msgid "API Key"
|
7392 |
msgstr "API Key"
|
7393 |
|
7394 |
-
#: app/features/mec/settings.php:
|
7395 |
-
#: app/features/mec/settings.php:
|
7396 |
-
#: app/features/mec/settings.php:
|
7397 |
msgid "List ID"
|
7398 |
msgstr "ID seznamu"
|
7399 |
|
7400 |
-
#: app/features/mec/settings.php:
|
7401 |
msgid "Subscription Status"
|
7402 |
msgstr "Stav odběru"
|
7403 |
|
7404 |
-
#: app/features/mec/settings.php:
|
7405 |
msgid "Subscribe automatically"
|
7406 |
msgstr "Odebírat automaticky"
|
7407 |
|
7408 |
-
#: app/features/mec/settings.php:
|
7409 |
msgid "Subscribe by verification"
|
7410 |
msgstr "Přihlaste se k odběru pomocí ověření"
|
7411 |
|
7412 |
-
#: app/features/mec/settings.php:
|
7413 |
#, fuzzy
|
7414 |
#| msgid ""
|
7415 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
@@ -7421,148 +7475,148 @@ msgstr ""
|
|
7421 |
"Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
|
7422 |
"uživateli mailchimp k ověření oběru."
|
7423 |
|
7424 |
-
#: app/features/mec/settings.php:
|
7425 |
#, fuzzy
|
7426 |
#| msgid "Mailchimp Integration"
|
7427 |
msgid "Campaign Monitor Integration"
|
7428 |
msgstr "Integrace Mailchimp"
|
7429 |
|
7430 |
-
#: app/features/mec/settings.php:
|
7431 |
#, fuzzy
|
7432 |
#| msgid "Enable Mailchimp Integration"
|
7433 |
msgid "Enable Campaign Monitor Integration"
|
7434 |
msgstr "Povolit integraci Mailchimp"
|
7435 |
|
7436 |
-
#: app/features/mec/settings.php:
|
7437 |
#, fuzzy
|
7438 |
#| msgid "Mailchimp Integration"
|
7439 |
msgid "MailerLite Integration"
|
7440 |
msgstr "Integrace Mailchimp"
|
7441 |
|
7442 |
-
#: app/features/mec/settings.php:
|
7443 |
#, fuzzy
|
7444 |
#| msgid "Enable Mailchimp Integration"
|
7445 |
msgid "Enable MailerLite Integration"
|
7446 |
msgstr "Povolit integraci Mailchimp"
|
7447 |
|
7448 |
-
#: app/features/mec/settings.php:
|
7449 |
#, fuzzy
|
7450 |
#| msgid "Group URL"
|
7451 |
msgid "Group ID"
|
7452 |
msgstr "Group URL"
|
7453 |
|
7454 |
-
#: app/features/mec/settings.php:
|
7455 |
#, fuzzy
|
7456 |
#| msgid "Enable Mailchimp Integration"
|
7457 |
msgid "Constant Contact Integration"
|
7458 |
msgstr "Povolit integraci Mailchimp"
|
7459 |
|
7460 |
-
#: app/features/mec/settings.php:
|
7461 |
#, fuzzy
|
7462 |
#| msgid "Enable Mailchimp Integration"
|
7463 |
msgid "Enable constantcontact Integration"
|
7464 |
msgstr "Povolit integraci Mailchimp"
|
7465 |
|
7466 |
-
#: app/features/mec/settings.php:
|
7467 |
#, fuzzy
|
7468 |
#| msgid "Facebook Page Access Token"
|
7469 |
msgid "Access Token"
|
7470 |
msgstr "Token pro přístup na stránku Facebook"
|
7471 |
|
7472 |
-
#: app/features/mec/settings.php:
|
7473 |
#, fuzzy
|
7474 |
#| msgid "Select icon"
|
7475 |
msgid "Select List"
|
7476 |
msgstr "Vybrat ikonu"
|
7477 |
|
7478 |
-
#: app/features/mec/settings.php:
|
7479 |
msgid ""
|
7480 |
"Please fill in the API key and Access Token field and save settings. after "
|
7481 |
"that, please refresh the page and select a list."
|
7482 |
msgstr ""
|
7483 |
|
7484 |
-
#: app/features/mec/settings.php:
|
7485 |
#, fuzzy
|
7486 |
#| msgid "Mailchimp Integration"
|
7487 |
msgid "Active Campaign Integration"
|
7488 |
msgstr "Integrace Mailchimp"
|
7489 |
|
7490 |
-
#: app/features/mec/settings.php:
|
7491 |
#, fuzzy
|
7492 |
#| msgid "Enable Mailchimp Integration"
|
7493 |
msgid "Enable Active Campaign Integration"
|
7494 |
msgstr "Povolit integraci Mailchimp"
|
7495 |
|
7496 |
-
#: app/features/mec/settings.php:
|
7497 |
msgid "API URL"
|
7498 |
msgstr ""
|
7499 |
|
7500 |
-
#: app/features/mec/settings.php:
|
7501 |
#, fuzzy
|
7502 |
#| msgid "Mailchimp Integration"
|
7503 |
msgid "AWeber Integration"
|
7504 |
msgstr "Integrace Mailchimp"
|
7505 |
|
7506 |
-
#: app/features/mec/settings.php:
|
7507 |
#, fuzzy
|
7508 |
#| msgid "Enable Mailchimp Integration"
|
7509 |
msgid "Enable AWeber Integration"
|
7510 |
msgstr "Povolit integraci Mailchimp"
|
7511 |
|
7512 |
-
#: app/features/mec/settings.php:
|
7513 |
#, fuzzy, php-format
|
7514 |
#| msgid "Third Party plugin is not installed and activated!"
|
7515 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7516 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7517 |
|
7518 |
-
#: app/features/mec/settings.php:
|
7519 |
#, php-format
|
7520 |
msgid "More information about the list ID can be found %s."
|
7521 |
msgstr ""
|
7522 |
|
7523 |
-
#: app/features/mec/settings.php:
|
7524 |
#, fuzzy
|
7525 |
#| msgid "Mailchimp Integration"
|
7526 |
msgid "MailPoet Integration"
|
7527 |
msgstr "Integrace Mailchimp"
|
7528 |
|
7529 |
-
#: app/features/mec/settings.php:
|
7530 |
#, fuzzy
|
7531 |
#| msgid "Enable Mailchimp Integration"
|
7532 |
msgid "Enable MailPoet Integration"
|
7533 |
msgstr "Povolit integraci Mailchimp"
|
7534 |
|
7535 |
-
#: app/features/mec/settings.php:
|
7536 |
#: app/skins/default_full_calendar/tpl.php:78
|
7537 |
#: app/skins/full_calendar/tpl.php:125
|
7538 |
msgid "List"
|
7539 |
msgstr "Seznam"
|
7540 |
|
7541 |
-
#: app/features/mec/settings.php:
|
7542 |
#, fuzzy, php-format
|
7543 |
#| msgid "Third Party plugin is not installed and activated!"
|
7544 |
msgid "%s plugin should be installed and activated."
|
7545 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7546 |
|
7547 |
-
#: app/features/mec/settings.php:
|
7548 |
#, fuzzy
|
7549 |
#| msgid "Mailchimp Integration"
|
7550 |
msgid "Sendfox Integration"
|
7551 |
msgstr "Integrace Mailchimp"
|
7552 |
|
7553 |
-
#: app/features/mec/settings.php:
|
7554 |
#, fuzzy
|
7555 |
#| msgid "Enable Mailchimp Integration"
|
7556 |
msgid "Enable Sendfox Integration"
|
7557 |
msgstr "Povolit integraci Mailchimp"
|
7558 |
|
7559 |
-
#: app/features/mec/settings.php:
|
7560 |
#, fuzzy, php-format
|
7561 |
#| msgid "Third Party plugin is not installed and activated!"
|
7562 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7563 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7564 |
|
7565 |
-
#: app/features/mec/single.php:38 app/libraries/main.php:
|
7566 |
msgid "Single Event Page"
|
7567 |
msgstr "Stránka jedné události"
|
7568 |
|
@@ -7686,13 +7740,13 @@ msgid ""
|
|
7686 |
"the settings page.' tab"
|
7687 |
msgstr ""
|
7688 |
|
7689 |
-
#: app/features/mec/single.php:162 app/libraries/main.php:
|
7690 |
#, fuzzy
|
7691 |
#| msgid "Custom Styles"
|
7692 |
msgid "Custom Fields"
|
7693 |
msgstr "Vlastní styly"
|
7694 |
|
7695 |
-
#: app/features/mec/single.php:192 app/libraries/main.php:
|
7696 |
msgid "URL"
|
7697 |
msgstr ""
|
7698 |
|
@@ -7732,7 +7786,7 @@ msgid ""
|
|
7732 |
msgstr ""
|
7733 |
"Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
|
7734 |
|
7735 |
-
#: app/features/mec/single.php:286 app/libraries/main.php:
|
7736 |
msgid "Additional Organizers"
|
7737 |
msgstr "Další organizátoři"
|
7738 |
|
@@ -7760,7 +7814,7 @@ msgstr ""
|
|
7760 |
"Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
|
7761 |
"jediné události."
|
7762 |
|
7763 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
7764 |
#: app/skins/single.php:170 app/skins/single.php:435
|
7765 |
msgid "Related Events"
|
7766 |
msgstr "Související události"
|
@@ -7775,7 +7829,7 @@ msgstr ""
|
|
7775 |
msgid "Select Taxonomies:"
|
7776 |
msgstr "Vyberte taxonomie:"
|
7777 |
|
7778 |
-
#: app/features/mec/single.php:360 app/libraries/main.php:
|
7779 |
#, fuzzy
|
7780 |
#| msgid "Next/Previous Buttons"
|
7781 |
msgid "Next / Previous Events"
|
@@ -7789,7 +7843,7 @@ msgstr ""
|
|
7789 |
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
7790 |
"událostí."
|
7791 |
|
7792 |
-
#: app/features/mec/single.php:402 app/libraries/main.php:
|
7793 |
#, fuzzy
|
7794 |
#| msgid "Next Occurrence"
|
7795 |
msgid "Edit Per Occurrences"
|
@@ -7826,7 +7880,7 @@ msgid "Default Font"
|
|
7826 |
msgstr "Výchozí písmo"
|
7827 |
|
7828 |
#: app/features/mec/styling.php:50 app/features/mec/support.php:52
|
7829 |
-
#: app/libraries/main.php:
|
7830 |
msgid "Styling Options"
|
7831 |
msgstr "Možnosti stylování"
|
7832 |
|
@@ -8012,7 +8066,7 @@ msgstr "Vytvářejte události pomocí Tvůrce stránek"
|
|
8012 |
msgid "MEC Settings"
|
8013 |
msgstr "MEC - Nastavení"
|
8014 |
|
8015 |
-
#: app/features/mec/support-page.php:99 app/libraries/main.php:
|
8016 |
msgid "Single Event"
|
8017 |
msgstr "Jedna událost"
|
8018 |
|
@@ -8372,7 +8426,7 @@ msgstr ""
|
|
8372 |
msgid "Create a support ticket"
|
8373 |
msgstr "Vytvořte lístek podpory"
|
8374 |
|
8375 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
8376 |
msgid "Custom CSS"
|
8377 |
msgstr "Vlastní CSS"
|
8378 |
|
@@ -8499,12 +8553,6 @@ msgstr "Další výskyt"
|
|
8499 |
msgid "Delete"
|
8500 |
msgstr ""
|
8501 |
|
8502 |
-
#: app/features/occurrences.php:385
|
8503 |
-
#, fuzzy
|
8504 |
-
#| msgid "Total booking limits"
|
8505 |
-
msgid "Total Booking Limit"
|
8506 |
-
msgstr "Celkové limity rezervace"
|
8507 |
-
|
8508 |
#: app/features/occurrences.php:393 app/features/schema.php:70
|
8509 |
#, fuzzy
|
8510 |
#| msgid "Hourly Schedule"
|
@@ -8636,8 +8684,8 @@ msgstr "např. info@itreseni.cz"
|
|
8636 |
msgid "eg. https://webnus.net"
|
8637 |
msgstr "např. https://webnus.net"
|
8638 |
|
8639 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
8640 |
-
#: app/libraries/main.php:
|
8641 |
msgid "Other Organizers"
|
8642 |
msgstr "Další organizátoři"
|
8643 |
|
@@ -8713,7 +8761,7 @@ msgid "Prev"
|
|
8713 |
msgstr ""
|
8714 |
|
8715 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8716 |
-
#: app/modules/booking/steps/form.php:
|
8717 |
#: app/modules/booking/steps/tickets.php:180 app/skins/countdown/tpl.php:123
|
8718 |
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
8719 |
msgid "Next"
|
@@ -8827,7 +8875,7 @@ msgstr "Přidat nový zkrácený kód"
|
|
8827 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8828 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
8829 |
|
8830 |
-
#: app/features/profile/profile.php:20 app/libraries/main.php:
|
8831 |
msgid "Your booking already canceled!"
|
8832 |
msgstr "Vaše rezervace již byla zrušena!"
|
8833 |
|
@@ -8835,11 +8883,11 @@ msgstr "Vaše rezervace již byla zrušena!"
|
|
8835 |
msgid "#"
|
8836 |
msgstr "#"
|
8837 |
|
8838 |
-
#: app/features/profile/profile.php:61 app/libraries/main.php:
|
8839 |
msgid "Status"
|
8840 |
msgstr "Stav"
|
8841 |
|
8842 |
-
#: app/features/profile/profile.php:64 app/libraries/main.php:
|
8843 |
msgid "Attendees"
|
8844 |
msgstr "Účastníci"
|
8845 |
|
@@ -8895,9 +8943,10 @@ msgstr "Vyhledat"
|
|
8895 |
msgid "No search result."
|
8896 |
msgstr "Žádný výsledek vyhledávání."
|
8897 |
|
8898 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
8899 |
-
#: app/libraries/main.php:
|
8900 |
-
#: app/libraries/render.php:
|
|
|
8901 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8902 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8903 |
#: app/modules/next-event/details.php:154
|
@@ -8996,6 +9045,12 @@ msgstr ""
|
|
8996 |
"Poznámka: Řečníky můžete použít na vaší stránce úprav / přidání > sekce "
|
8997 |
"hodinového plánu a v sekci widgetu řečníka!"
|
8998 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8999 |
#: app/features/wc.php:103 app/libraries/notifications.php:1250
|
9000 |
#: app/libraries/notifications.php:1265 app/libraries/notifications.php:1276
|
9001 |
#: app/libraries/notifications.php:1549 app/libraries/notifications.php:1550
|
@@ -9133,33 +9188,33 @@ msgstr "Do např. 8:45"
|
|
9133 |
msgid "New Day"
|
9134 |
msgstr "Nový den"
|
9135 |
|
9136 |
-
#: app/libraries/main.php:366 app/libraries/main.php:
|
9137 |
-
#: app/libraries/main.php:
|
9138 |
msgid "Agenda View"
|
9139 |
msgstr "Zobrazení agendy"
|
9140 |
|
9141 |
-
#: app/libraries/main.php:367 app/libraries/main.php:
|
9142 |
-
#: app/libraries/main.php:
|
9143 |
msgid "Full Calendar"
|
9144 |
msgstr "Plný kalendář"
|
9145 |
|
9146 |
-
#: app/libraries/main.php:369 app/libraries/main.php:
|
9147 |
-
#: app/libraries/main.php:
|
9148 |
msgid "Calendar/Monthly View"
|
9149 |
msgstr "Kalendář / zobrazení měsíce"
|
9150 |
|
9151 |
-
#: app/libraries/main.php:372 app/libraries/main.php:
|
9152 |
-
#: app/libraries/main.php:
|
9153 |
msgid "Timetable View"
|
9154 |
msgstr "Zobrazení rozvrhu"
|
9155 |
|
9156 |
-
#: app/libraries/main.php:373 app/libraries/main.php:
|
9157 |
-
#: app/libraries/main.php:
|
9158 |
msgid "Masonry View"
|
9159 |
msgstr "Zobrazení zdi"
|
9160 |
|
9161 |
-
#: app/libraries/main.php:374 app/libraries/main.php:
|
9162 |
-
#: app/libraries/main.php:
|
9163 |
msgid "Map View"
|
9164 |
msgstr "Zobrazení mapy"
|
9165 |
|
@@ -9190,58 +9245,58 @@ msgstr "Zobrazení posuvníku"
|
|
9190 |
msgid "Timeline View"
|
9191 |
msgstr "Zobrazení rozvrhu"
|
9192 |
|
9193 |
-
#: app/libraries/main.php:419 app/libraries/main.php:
|
9194 |
-
#: app/libraries/main.php:
|
9195 |
msgid "SU"
|
9196 |
msgstr "NE"
|
9197 |
|
9198 |
-
#: app/libraries/main.php:420 app/libraries/main.php:
|
9199 |
-
#: app/libraries/main.php:
|
9200 |
msgid "MO"
|
9201 |
msgstr "PO"
|
9202 |
|
9203 |
-
#: app/libraries/main.php:421 app/libraries/main.php:
|
9204 |
-
#: app/libraries/main.php:
|
9205 |
msgid "TU"
|
9206 |
msgstr "ÚT"
|
9207 |
|
9208 |
-
#: app/libraries/main.php:422 app/libraries/main.php:
|
9209 |
-
#: app/libraries/main.php:
|
9210 |
msgid "WE"
|
9211 |
msgstr "ST"
|
9212 |
|
9213 |
-
#: app/libraries/main.php:423 app/libraries/main.php:
|
9214 |
-
#: app/libraries/main.php:
|
9215 |
msgid "TH"
|
9216 |
msgstr "ČT"
|
9217 |
|
9218 |
-
#: app/libraries/main.php:424 app/libraries/main.php:
|
9219 |
-
#: app/libraries/main.php:
|
9220 |
msgid "FR"
|
9221 |
msgstr "PÁ"
|
9222 |
|
9223 |
-
#: app/libraries/main.php:425 app/libraries/main.php:
|
9224 |
-
#: app/libraries/main.php:
|
9225 |
msgid "SA"
|
9226 |
msgstr "SO"
|
9227 |
|
9228 |
-
#: app/libraries/main.php:
|
9229 |
msgid "Additional Locations"
|
9230 |
msgstr "Další umístění"
|
9231 |
|
9232 |
-
#: app/libraries/main.php:
|
9233 |
msgid "Upload Field"
|
9234 |
msgstr "Nahrát pole"
|
9235 |
|
9236 |
-
#: app/libraries/main.php:
|
9237 |
msgid "Modules"
|
9238 |
msgstr "Moduly"
|
9239 |
|
9240 |
-
#: app/libraries/main.php:
|
9241 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9242 |
msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
|
9243 |
|
9244 |
-
#: app/libraries/main.php:
|
9245 |
msgid ""
|
9246 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9247 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -9252,7 +9307,7 @@ msgstr ""
|
|
9252 |
"revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
|
9253 |
"pouze tím, že máme 4 doplňky, viz níže:"
|
9254 |
|
9255 |
-
#: app/libraries/main.php:
|
9256 |
msgid ""
|
9257 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9258 |
"products) and Woo products at the same time."
|
@@ -9260,7 +9315,7 @@ msgstr ""
|
|
9260 |
"<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
|
9261 |
"produkty) a produkty Woo současně."
|
9262 |
|
9263 |
-
#: app/libraries/main.php:
|
9264 |
msgid ""
|
9265 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9266 |
"other websites without MEC. Use JSON output features to make your Apps "
|
@@ -9270,179 +9325,179 @@ msgstr ""
|
|
9270 |
"událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
|
9271 |
"aplikace byly kompatibilní s MEC."
|
9272 |
|
9273 |
-
#: app/libraries/main.php:
|
9274 |
msgid ""
|
9275 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9276 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9277 |
"you can set these up in the admin panel."
|
9278 |
msgstr ""
|
9279 |
|
9280 |
-
#: app/libraries/main.php:
|
9281 |
msgid ""
|
9282 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9283 |
"pages can contain ticket purchase information, information about registered "
|
9284 |
"events. Users can now log in to purchase tickets."
|
9285 |
msgstr ""
|
9286 |
|
9287 |
-
#: app/libraries/main.php:
|
9288 |
msgid "find out more"
|
9289 |
msgstr ""
|
9290 |
|
9291 |
-
#: app/libraries/main.php:
|
9292 |
msgid "Events at this location"
|
9293 |
msgstr "Události na tomto místě"
|
9294 |
|
9295 |
-
#: app/libraries/main.php:
|
9296 |
msgid "Event at this location"
|
9297 |
msgstr "Událost na tomto místě"
|
9298 |
|
9299 |
-
#: app/libraries/main.php:
|
9300 |
msgid "Facebook"
|
9301 |
msgstr "Facebook"
|
9302 |
|
9303 |
-
#: app/libraries/main.php:
|
9304 |
msgid "Twitter"
|
9305 |
msgstr "Twitter"
|
9306 |
|
9307 |
-
#: app/libraries/main.php:
|
9308 |
msgid "Linkedin"
|
9309 |
msgstr "Linkedin"
|
9310 |
|
9311 |
-
#: app/libraries/main.php:
|
9312 |
msgid "VK"
|
9313 |
msgstr "VK"
|
9314 |
|
9315 |
-
#: app/libraries/main.php:
|
9316 |
msgid "Tumblr"
|
9317 |
msgstr ""
|
9318 |
|
9319 |
-
#: app/libraries/main.php:
|
9320 |
msgid "Pinterest"
|
9321 |
msgstr ""
|
9322 |
|
9323 |
-
#: app/libraries/main.php:
|
9324 |
msgid "Flipboard"
|
9325 |
msgstr ""
|
9326 |
|
9327 |
-
#: app/libraries/main.php:
|
9328 |
#, fuzzy
|
9329 |
#| msgid "Tickets"
|
9330 |
msgid "GetPocket"
|
9331 |
msgstr "Vstupenky"
|
9332 |
|
9333 |
-
#: app/libraries/main.php:
|
9334 |
msgid "Reddit"
|
9335 |
msgstr ""
|
9336 |
|
9337 |
-
#: app/libraries/main.php:
|
9338 |
msgid "WhatsApp"
|
9339 |
msgstr ""
|
9340 |
|
9341 |
-
#: app/libraries/main.php:
|
9342 |
msgid "Telegram"
|
9343 |
msgstr ""
|
9344 |
|
9345 |
-
#: app/libraries/main.php:
|
9346 |
msgid "Share on Facebook"
|
9347 |
msgstr "Sdílet na Facebooku"
|
9348 |
|
9349 |
-
#: app/libraries/main.php:
|
9350 |
msgid "Tweet"
|
9351 |
msgstr "Tweet"
|
9352 |
|
9353 |
-
#: app/libraries/main.php:
|
9354 |
#, fuzzy
|
9355 |
#| msgid "Share on Facebook"
|
9356 |
msgid "Share on Tumblr"
|
9357 |
msgstr "Sdílet na Facebooku"
|
9358 |
|
9359 |
-
#: app/libraries/main.php:
|
9360 |
msgid "Share on Pinterest"
|
9361 |
msgstr ""
|
9362 |
|
9363 |
-
#: app/libraries/main.php:
|
9364 |
#, fuzzy
|
9365 |
#| msgid "Share on Facebook"
|
9366 |
msgid "Share on Flipboard"
|
9367 |
msgstr "Sdílet na Facebooku"
|
9368 |
|
9369 |
-
#: app/libraries/main.php:
|
9370 |
#, fuzzy
|
9371 |
#| msgid "Share on Facebook"
|
9372 |
msgid "Share on GetPocket"
|
9373 |
msgstr "Sdílet na Facebooku"
|
9374 |
|
9375 |
-
#: app/libraries/main.php:
|
9376 |
#, fuzzy
|
9377 |
#| msgid "Share on Facebook"
|
9378 |
msgid "Share on Reddit"
|
9379 |
msgstr "Sdílet na Facebooku"
|
9380 |
|
9381 |
-
#: app/libraries/main.php:
|
9382 |
msgid "Share on Telegram"
|
9383 |
msgstr ""
|
9384 |
|
9385 |
-
#: app/libraries/main.php:
|
9386 |
msgid "Share on WhatsApp"
|
9387 |
msgstr ""
|
9388 |
|
9389 |
-
#: app/libraries/main.php:
|
9390 |
msgid "Custom Shortcode"
|
9391 |
msgstr "Uživatelské zkrácené kódy"
|
9392 |
|
9393 |
-
#: app/libraries/main.php:
|
9394 |
#, fuzzy
|
9395 |
#| msgid "The events are imported successfully!"
|
9396 |
msgid "Your booking has been verified successfully!"
|
9397 |
msgstr "Události byly úspěšně importovány!"
|
9398 |
|
9399 |
-
#: app/libraries/main.php:
|
9400 |
msgid "Your booking already verified!"
|
9401 |
msgstr "Vaše rezervace již byla ověřena!"
|
9402 |
|
9403 |
-
#: app/libraries/main.php:
|
9404 |
msgid "Your booking cannot verify!"
|
9405 |
msgstr "Vaši rezervaci nelze ověřit!"
|
9406 |
|
9407 |
-
#: app/libraries/main.php:
|
9408 |
msgid "Your booking successfully canceled."
|
9409 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
9410 |
|
9411 |
-
#: app/libraries/main.php:
|
9412 |
#, fuzzy
|
9413 |
#| msgid "The event is finished."
|
9414 |
msgid "The event is already finished!"
|
9415 |
msgstr "Událost je ukončena."
|
9416 |
|
9417 |
-
#: app/libraries/main.php:
|
9418 |
msgid "The cancelation window is not started yet."
|
9419 |
msgstr ""
|
9420 |
|
9421 |
-
#: app/libraries/main.php:
|
9422 |
msgid "The cancelation window is passed."
|
9423 |
msgstr ""
|
9424 |
|
9425 |
-
#: app/libraries/main.php:
|
9426 |
msgid "Your booking cannot be canceled."
|
9427 |
msgstr "Vaši rezervaci nelze zrušit."
|
9428 |
|
9429 |
-
#: app/libraries/main.php:
|
9430 |
msgid "You canceled the payment successfully."
|
9431 |
msgstr "Platbu jste úspěšně zrušili."
|
9432 |
|
9433 |
-
#: app/libraries/main.php:
|
9434 |
msgid "You returned from payment gateway successfully."
|
9435 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
9436 |
|
9437 |
-
#: app/libraries/main.php:
|
9438 |
msgid "Cannot find the invoice!"
|
9439 |
msgstr "Fakturu nelze najít!"
|
9440 |
|
9441 |
-
#: app/libraries/main.php:
|
9442 |
msgid "Invoice is invalid."
|
9443 |
msgstr "Faktura je neplatná."
|
9444 |
|
9445 |
-
#: app/libraries/main.php:
|
9446 |
#, fuzzy
|
9447 |
#| msgid ""
|
9448 |
#| "Your booking still is not confirmed. You able download it after "
|
@@ -9452,239 +9507,239 @@ msgid ""
|
|
9452 |
msgstr ""
|
9453 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
9454 |
|
9455 |
-
#: app/libraries/main.php:
|
9456 |
msgid "Booking Not Confirmed."
|
9457 |
msgstr "Rezervace nebyla potvrzena."
|
9458 |
|
9459 |
-
#: app/libraries/main.php:
|
9460 |
msgid "Cannot find the booking!"
|
9461 |
msgstr "Nemohu najít rezervaci!"
|
9462 |
|
9463 |
-
#: app/libraries/main.php:
|
9464 |
msgid "Booking is invalid."
|
9465 |
msgstr "Rezervace není platná."
|
9466 |
|
9467 |
-
#: app/libraries/main.php:
|
9468 |
#, php-format
|
9469 |
msgid "%s Invoice"
|
9470 |
msgstr "%s Faktura"
|
9471 |
|
9472 |
-
#: app/libraries/main.php:
|
9473 |
#, fuzzy
|
9474 |
#| msgid "Date and Time"
|
9475 |
msgid "Date & Time"
|
9476 |
msgstr "Datum a čas"
|
9477 |
|
9478 |
-
#: app/libraries/main.php:
|
9479 |
#, fuzzy
|
9480 |
#| msgid "Booking Price"
|
9481 |
msgid "Booking Fields"
|
9482 |
msgstr "Cena rezervace"
|
9483 |
|
9484 |
-
#: app/libraries/main.php:
|
9485 |
msgid "Billing"
|
9486 |
msgstr "Fakturace"
|
9487 |
|
9488 |
-
#: app/libraries/main.php:
|
9489 |
#, fuzzy
|
9490 |
#| msgid "Coupons"
|
9491 |
msgid "Coupon Code"
|
9492 |
msgstr "Kupóny"
|
9493 |
|
9494 |
-
#: app/libraries/main.php:
|
9495 |
msgid "Total"
|
9496 |
msgstr "Celkem"
|
9497 |
|
9498 |
-
#: app/libraries/main.php:
|
9499 |
#, fuzzy
|
9500 |
#| msgid "Payment Gateways"
|
9501 |
msgid "Payment"
|
9502 |
msgstr "Platební brány"
|
9503 |
|
9504 |
-
#: app/libraries/main.php:
|
9505 |
#, fuzzy
|
9506 |
#| msgid "Payment Gateways"
|
9507 |
msgid "Payment Time"
|
9508 |
msgstr "Platební brány"
|
9509 |
|
9510 |
-
#: app/libraries/main.php:
|
9511 |
msgid "Request is not valid."
|
9512 |
msgstr "Požadavek není platný."
|
9513 |
|
9514 |
-
#: app/libraries/main.php:
|
9515 |
msgid "iCal export stopped!"
|
9516 |
msgstr "iCal export byl zastaven!"
|
9517 |
|
9518 |
-
#: app/libraries/main.php:
|
9519 |
-
#: app/libraries/main.php:
|
9520 |
-
#: app/libraries/main.php:
|
9521 |
-
#: app/libraries/main.php:
|
9522 |
-
#: app/libraries/main.php:
|
9523 |
-
#: app/libraries/main.php:
|
9524 |
-
#: app/libraries/main.php:
|
9525 |
-
#: app/libraries/main.php:
|
9526 |
msgid "Sort"
|
9527 |
msgstr "Seřadit"
|
9528 |
|
9529 |
-
#: app/libraries/main.php:
|
9530 |
-
#: app/libraries/main.php:
|
9531 |
-
#: app/libraries/main.php:
|
9532 |
-
#: app/libraries/main.php:
|
9533 |
-
#: app/libraries/main.php:
|
9534 |
-
#: app/libraries/main.php:
|
9535 |
-
#: app/libraries/main.php:
|
9536 |
msgid "Required Field"
|
9537 |
msgstr "Požadovaná pole"
|
9538 |
|
9539 |
-
#: app/libraries/main.php:
|
9540 |
-
#: app/libraries/main.php:
|
9541 |
-
#: app/libraries/main.php:
|
9542 |
-
#: app/libraries/main.php:
|
9543 |
-
#: app/libraries/main.php:
|
9544 |
-
#: app/libraries/main.php:
|
9545 |
-
#: app/libraries/main.php:
|
9546 |
msgid "Insert a label for this field"
|
9547 |
msgstr "Vložte štítek pro toto pole"
|
9548 |
|
9549 |
-
#: app/libraries/main.php:
|
9550 |
msgid "HTML and shortcode are allowed."
|
9551 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
9552 |
|
9553 |
-
#: app/libraries/main.php:
|
9554 |
-
#: app/libraries/main.php:
|
9555 |
msgid "Option"
|
9556 |
msgstr "Možnost"
|
9557 |
|
9558 |
-
#: app/libraries/main.php:
|
9559 |
#, php-format
|
9560 |
msgid "Instead of %s, the page title with a link will be show."
|
9561 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
9562 |
|
9563 |
-
#: app/libraries/main.php:
|
9564 |
msgid "Agreement Page"
|
9565 |
msgstr "Stránka smlouvy"
|
9566 |
|
9567 |
-
#: app/libraries/main.php:
|
9568 |
msgid "Checked by default"
|
9569 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
9570 |
|
9571 |
-
#: app/libraries/main.php:
|
9572 |
msgid "Unchecked by default"
|
9573 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
9574 |
|
9575 |
-
#: app/libraries/main.php:
|
9576 |
msgid "Insert a label for this option"
|
9577 |
msgstr "Vložte štítek pro tuto možnost"
|
9578 |
|
9579 |
-
#: app/libraries/main.php:
|
9580 |
msgid "Free"
|
9581 |
msgstr "Zdarma"
|
9582 |
|
9583 |
-
#: app/libraries/main.php:
|
9584 |
msgid "M.E. Calender"
|
9585 |
msgstr "M.E. Kalendář"
|
9586 |
|
9587 |
-
#: app/libraries/main.php:
|
9588 |
#, php-format
|
9589 |
msgid "Copy of %s"
|
9590 |
msgstr "Kopie %s"
|
9591 |
|
9592 |
-
#: app/libraries/main.php:
|
9593 |
msgid "Booked an event."
|
9594 |
msgstr "Událost byla rezervována."
|
9595 |
|
9596 |
-
#: app/libraries/main.php:
|
9597 |
#, php-format
|
9598 |
msgid "%s booked %s event."
|
9599 |
msgstr "%s zarezervoval %s událost."
|
9600 |
|
9601 |
-
#: app/libraries/main.php:
|
9602 |
msgid "Taxonomies"
|
9603 |
msgstr "Taxonomie"
|
9604 |
|
9605 |
# Mrknout na kontext
|
9606 |
-
#: app/libraries/main.php:
|
9607 |
msgid "Category Plural Label"
|
9608 |
msgstr "Štítek množné kategorie"
|
9609 |
|
9610 |
# Mrknout na kontext
|
9611 |
-
#: app/libraries/main.php:
|
9612 |
msgid "Category Singular Label"
|
9613 |
msgstr "Štítek jednotné kategorie"
|
9614 |
|
9615 |
-
#: app/libraries/main.php:
|
9616 |
msgid "Label Plural Label"
|
9617 |
msgstr "Štítek množného štítku"
|
9618 |
|
9619 |
-
#: app/libraries/main.php:
|
9620 |
msgid "Label Singular Label"
|
9621 |
msgstr "Štítek jednotného štítku"
|
9622 |
|
9623 |
-
#: app/libraries/main.php:
|
9624 |
msgid "label"
|
9625 |
msgstr "štítek"
|
9626 |
|
9627 |
-
#: app/libraries/main.php:
|
9628 |
msgid "Location Plural Label"
|
9629 |
msgstr "Štítek množného umístění"
|
9630 |
|
9631 |
-
#: app/libraries/main.php:
|
9632 |
msgid "Location Singular Label"
|
9633 |
msgstr "Štítek jednotného umístění"
|
9634 |
|
9635 |
-
#: app/libraries/main.php:
|
9636 |
msgid "Organizer Plural Label"
|
9637 |
msgstr "Štítek množného organizátora"
|
9638 |
|
9639 |
-
#: app/libraries/main.php:
|
9640 |
msgid "Organizer Singular Label"
|
9641 |
msgstr "Štítek jednotného organizátora"
|
9642 |
|
9643 |
-
#: app/libraries/main.php:
|
9644 |
msgid "Speaker Plural Label"
|
9645 |
msgstr "Štítek množného řečníka"
|
9646 |
|
9647 |
-
#: app/libraries/main.php:
|
9648 |
msgid "Speaker Singular Label"
|
9649 |
msgstr "Štítek jednotného řečníka"
|
9650 |
|
9651 |
-
#: app/libraries/main.php:
|
9652 |
msgid "Sunday abbreviation"
|
9653 |
msgstr "Neděle zkratka"
|
9654 |
|
9655 |
-
#: app/libraries/main.php:
|
9656 |
msgid "Monday abbreviation"
|
9657 |
msgstr "Pondělí zkratka"
|
9658 |
|
9659 |
-
#: app/libraries/main.php:
|
9660 |
msgid "Tuesday abbreviation"
|
9661 |
msgstr "Úterý zkratka"
|
9662 |
|
9663 |
-
#: app/libraries/main.php:
|
9664 |
msgid "Wednesday abbreviation"
|
9665 |
msgstr "Středa zkratka"
|
9666 |
|
9667 |
-
#: app/libraries/main.php:
|
9668 |
msgid "Thursday abbreviation"
|
9669 |
msgstr "Čtvrtek zkratka"
|
9670 |
|
9671 |
-
#: app/libraries/main.php:
|
9672 |
msgid "Friday abbreviation"
|
9673 |
msgstr "Pátek zkratka"
|
9674 |
|
9675 |
-
#: app/libraries/main.php:
|
9676 |
msgid "Saturday abbreviation"
|
9677 |
msgstr "Sobota zkratka"
|
9678 |
|
9679 |
-
#: app/libraries/main.php:
|
9680 |
msgid "Others"
|
9681 |
msgstr "Další"
|
9682 |
|
9683 |
-
#: app/libraries/main.php:
|
9684 |
msgid "Booking Success Message"
|
9685 |
msgstr "Zpráva o úspěchu rezervace"
|
9686 |
|
9687 |
-
#: app/libraries/main.php:
|
9688 |
#, fuzzy
|
9689 |
#| msgid ""
|
9690 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -9696,60 +9751,60 @@ msgstr ""
|
|
9696 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
9697 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
9698 |
|
9699 |
-
#: app/libraries/main.php:
|
9700 |
#, fuzzy
|
9701 |
#| msgid "Booking Success Message"
|
9702 |
msgid "Booking Restriction Message 1"
|
9703 |
msgstr "Zpráva o úspěchu rezervace"
|
9704 |
|
9705 |
-
#: app/libraries/main.php:
|
9706 |
#, php-format
|
9707 |
msgid ""
|
9708 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9709 |
"tickets."
|
9710 |
msgstr ""
|
9711 |
|
9712 |
-
#: app/libraries/main.php:
|
9713 |
#, fuzzy
|
9714 |
#| msgid "Booking Success Message"
|
9715 |
msgid "Booking Restriction Message 2"
|
9716 |
msgstr "Zpráva o úspěchu rezervace"
|
9717 |
|
9718 |
-
#: app/libraries/main.php:
|
9719 |
#, php-format
|
9720 |
msgid ""
|
9721 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9722 |
"tickets."
|
9723 |
msgstr ""
|
9724 |
|
9725 |
-
#: app/libraries/main.php:
|
9726 |
#, fuzzy
|
9727 |
#| msgid "Booking Success Message"
|
9728 |
msgid "Booking IP Restriction Message"
|
9729 |
msgstr "Zpráva o úspěchu rezervace"
|
9730 |
|
9731 |
-
#: app/libraries/main.php:
|
9732 |
#, php-format
|
9733 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9734 |
msgstr ""
|
9735 |
|
9736 |
-
#: app/libraries/main.php:
|
9737 |
#, fuzzy
|
9738 |
#| msgid "Booking Options"
|
9739 |
msgid "Booking Button"
|
9740 |
msgstr "Možnosti rezervace"
|
9741 |
|
9742 |
-
#: app/libraries/main.php:
|
9743 |
#: app/modules/booking/steps/tickets.php:102
|
9744 |
msgid "Book Event"
|
9745 |
msgstr "Rezervovat událost"
|
9746 |
|
9747 |
-
#: app/libraries/main.php:
|
9748 |
#: app/widgets/single.php:133
|
9749 |
msgid "Register Button"
|
9750 |
msgstr "Registrační tlačítko"
|
9751 |
|
9752 |
-
#: app/libraries/main.php:
|
9753 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9754 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:104
|
9755 |
#: app/skins/grid/render.php:163 app/skins/grid/render.php:223
|
@@ -9767,11 +9822,11 @@ msgstr "Registrační tlačítko"
|
|
9767 |
msgid "REGISTER"
|
9768 |
msgstr "REGISTROVAT"
|
9769 |
|
9770 |
-
#: app/libraries/main.php:
|
9771 |
msgid "View Detail Button"
|
9772 |
msgstr "Tlačítko Zobrazit detail"
|
9773 |
|
9774 |
-
#: app/libraries/main.php:
|
9775 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9776 |
#: app/skins/grid/render.php:104 app/skins/grid/render.php:163
|
9777 |
#: app/skins/grid/render.php:223 app/skins/grid/render.php:245
|
@@ -9783,142 +9838,142 @@ msgstr "Tlačítko Zobrazit detail"
|
|
9783 |
msgid "View Detail"
|
9784 |
msgstr "Zobrazit detail"
|
9785 |
|
9786 |
-
#: app/libraries/main.php:
|
9787 |
msgid "Event Detail Button"
|
9788 |
msgstr "Tlačítko Detail události"
|
9789 |
|
9790 |
-
#: app/libraries/main.php:
|
9791 |
msgid "Event Detail"
|
9792 |
msgstr "Zobrazit událost"
|
9793 |
|
9794 |
-
#: app/libraries/main.php:
|
9795 |
msgid "Ticket (Singular)"
|
9796 |
msgstr "Vstupenka (Jednotné)"
|
9797 |
|
9798 |
-
#: app/libraries/main.php:
|
9799 |
msgid "Tickets (Plural)"
|
9800 |
msgstr "Vstupenky (Množné)"
|
9801 |
|
9802 |
-
#: app/libraries/main.php:
|
9803 |
msgid "EventON"
|
9804 |
msgstr "EventON"
|
9805 |
|
9806 |
-
#: app/libraries/main.php:
|
9807 |
msgid "The Events Calendar"
|
9808 |
msgstr "The Events Calendar"
|
9809 |
|
9810 |
-
#: app/libraries/main.php:
|
9811 |
msgid "Events Schedule WP Plugin"
|
9812 |
msgstr "Events Schedule WP Plugin"
|
9813 |
|
9814 |
-
#: app/libraries/main.php:
|
9815 |
msgid "Calendarize It"
|
9816 |
msgstr "Calendarize It"
|
9817 |
|
9818 |
-
#: app/libraries/main.php:
|
9819 |
#, fuzzy
|
9820 |
#| msgid "Event Speakers"
|
9821 |
msgid "Event Espresso"
|
9822 |
msgstr "Řečník události"
|
9823 |
|
9824 |
-
#: app/libraries/main.php:
|
9825 |
#, fuzzy
|
9826 |
#| msgid "Event Repeating (Recurring events)"
|
9827 |
msgid "Events Manager (Recurring)"
|
9828 |
msgstr "Opakování události (opakující se události)"
|
9829 |
|
9830 |
-
#: app/libraries/main.php:
|
9831 |
#, fuzzy
|
9832 |
#| msgid "Modern Events Calendar (Lite)"
|
9833 |
msgid "Events Manager (Single)"
|
9834 |
msgstr "Modern Events Calendar (Lite)"
|
9835 |
|
9836 |
-
#: app/libraries/main.php:
|
9837 |
#, fuzzy
|
9838 |
#| msgid "Modern Events Calendar (Lite)"
|
9839 |
msgid "WP Event Manager"
|
9840 |
msgstr "Modern Events Calendar (Lite)"
|
9841 |
|
9842 |
-
#: app/libraries/main.php:
|
9843 |
msgid "Waiting"
|
9844 |
msgstr "Čekající"
|
9845 |
|
9846 |
-
#: app/libraries/main.php:
|
9847 |
#, fuzzy
|
9848 |
#| msgid "Sunday"
|
9849 |
msgid "Sun"
|
9850 |
msgstr "Neděle"
|
9851 |
|
9852 |
-
#: app/libraries/main.php:
|
9853 |
#, fuzzy
|
9854 |
#| msgid "Monday"
|
9855 |
msgid "Mon"
|
9856 |
msgstr "Pondělí"
|
9857 |
|
9858 |
-
#: app/libraries/main.php:
|
9859 |
#, fuzzy
|
9860 |
#| msgid "Tel"
|
9861 |
msgid "Tue"
|
9862 |
msgstr "Tel"
|
9863 |
|
9864 |
-
#: app/libraries/main.php:
|
9865 |
msgid "Wed"
|
9866 |
msgstr ""
|
9867 |
|
9868 |
-
#: app/libraries/main.php:
|
9869 |
msgid "Thu"
|
9870 |
msgstr ""
|
9871 |
|
9872 |
-
#: app/libraries/main.php:
|
9873 |
#, fuzzy
|
9874 |
#| msgid "Friday"
|
9875 |
msgid "Fri"
|
9876 |
msgstr "Pátek"
|
9877 |
|
9878 |
-
#: app/libraries/main.php:
|
9879 |
#, fuzzy
|
9880 |
#| msgid "Start"
|
9881 |
msgid "Sat"
|
9882 |
msgstr "Začátek"
|
9883 |
|
9884 |
-
#: app/libraries/main.php:
|
9885 |
-
#: app/libraries/render.php:
|
9886 |
msgid "Skin controller does not exist."
|
9887 |
msgstr "Ovladač vzhledu neexistuje."
|
9888 |
|
9889 |
-
#: app/libraries/main.php:
|
9890 |
msgid "Sold Out"
|
9891 |
msgstr "Vyprodáno"
|
9892 |
|
9893 |
-
#: app/libraries/main.php:
|
9894 |
#, fuzzy
|
9895 |
#| msgid "Ticket"
|
9896 |
msgid "Last Few Tickets"
|
9897 |
msgstr "Vstupenka"
|
9898 |
|
9899 |
-
#: app/libraries/main.php:
|
9900 |
#, fuzzy
|
9901 |
#| msgid "minutes"
|
9902 |
msgid "Minutes"
|
9903 |
msgstr "minuty"
|
9904 |
|
9905 |
-
#: app/libraries/main.php:
|
9906 |
msgid "AM / PM"
|
9907 |
msgstr ""
|
9908 |
|
9909 |
-
#: app/libraries/main.php:
|
9910 |
msgid "AM"
|
9911 |
msgstr "dop."
|
9912 |
|
9913 |
-
#: app/libraries/main.php:
|
9914 |
msgid "PM"
|
9915 |
msgstr "odp."
|
9916 |
|
9917 |
-
#: app/libraries/main.php:
|
9918 |
msgid "Ongoing..."
|
9919 |
msgstr ""
|
9920 |
|
9921 |
-
#: app/libraries/main.php:
|
9922 |
#, fuzzy
|
9923 |
#| msgid "Expired Events"
|
9924 |
msgid "Expired!"
|
@@ -10062,7 +10117,7 @@ msgid "Apply Coupon"
|
|
10062 |
msgstr "Aplikovat kupon"
|
10063 |
|
10064 |
#: app/modules/booking/steps/checkout.php:138
|
10065 |
-
#: app/modules/booking/steps/form.php:
|
10066 |
msgid "Back"
|
10067 |
msgstr ""
|
10068 |
|
@@ -10076,15 +10131,15 @@ msgstr "Rezervace zdarma"
|
|
10076 |
msgid "Attendee's Form"
|
10077 |
msgstr "Formulář účastníků"
|
10078 |
|
10079 |
-
#: app/modules/booking/steps/form.php:
|
10080 |
msgid "Fill other attendees information like the first form."
|
10081 |
msgstr "Vyplňte informace o dalších účastnících, jako v prvním formuláři."
|
10082 |
|
10083 |
-
#: app/modules/booking/steps/form.php:
|
10084 |
msgid "Username"
|
10085 |
msgstr ""
|
10086 |
|
10087 |
-
#: app/modules/booking/steps/form.php:
|
10088 |
#: app/modules/booking/steps/tickets.php:180
|
10089 |
#, fuzzy
|
10090 |
#| msgid "Location"
|
@@ -10460,6 +10515,9 @@ msgstr "Webnus Team"
|
|
10460 |
msgid "http://webnus.net"
|
10461 |
msgstr "http://webnus.net"
|
10462 |
|
|
|
|
|
|
|
10463 |
#~ msgid "Your booking successfully verified."
|
10464 |
#~ msgstr "Vaše rezervace byla úspěšně ověřena."
|
10465 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2020-12-16 12:21+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-12-16 12:22+0330\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
26 |
+
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1186
|
27 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
28 |
#: app/widgets/MEC.php:33
|
29 |
msgid "Modern Events Calendar"
|
30 |
msgstr "Moderní kalendář událostí"
|
87 |
msgstr "Přidat nový zkrácený kód"
|
88 |
|
89 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
90 |
+
#: app/features/mec/settings.php:794
|
91 |
msgid "Event Color"
|
92 |
msgstr "Barva události"
|
93 |
|
100 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
101 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
102 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
103 |
+
#: app/libraries/main.php:650
|
104 |
msgid "Settings"
|
105 |
msgstr "Nastavení"
|
106 |
|
107 |
+
#: app/features/contextual.php:62 app/features/events.php:1445
|
108 |
+
#: app/features/events.php:2385 app/features/mec/booking.php:607
|
109 |
+
#: app/features/mec/booking.php:873 app/features/mec/settings.php:882
|
110 |
+
#: app/features/mec/support.php:29 app/libraries/main.php:602
|
111 |
msgid "Booking Form"
|
112 |
msgstr "Rezervační formulář"
|
113 |
|
134 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
135 |
"iframe>"
|
136 |
|
137 |
+
#: app/features/contextual.php:70 app/features/events.php:1453
|
138 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
139 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:604
|
140 |
msgid "Payment Gateways"
|
141 |
msgstr "Platební brány"
|
142 |
|
150 |
"\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder=\"0\" "
|
151 |
"allowfullscreen></iframe>"
|
152 |
|
153 |
+
#: app/features/contextual.php:77 app/features/events.php:353
|
154 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
155 |
+
#: app/libraries/main.php:798
|
156 |
msgid "Notifications"
|
157 |
msgstr "Upozornění"
|
158 |
|
237 |
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
238 |
"\"0\" allowfullscreen></iframe>"
|
239 |
|
240 |
+
#: app/features/contextual.php:117 app/features/mec/settings.php:66
|
241 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
242 |
msgid "General Options"
|
243 |
msgstr "Obecné možnosti"
|
244 |
|
245 |
+
#: app/features/contextual.php:139 app/features/mec/settings.php:490
|
246 |
#: app/libraries/main.php:568
|
247 |
msgid "Slugs/Permalinks"
|
248 |
msgstr "Název v URL / Trvalé odkazy"
|
251 |
msgid "Event Details/Single Event Page"
|
252 |
msgstr "Podrobnosti o události / Stránka jedné události"
|
253 |
|
254 |
+
#: app/features/contextual.php:166 app/features/mec/settings.php:522
|
255 |
#: app/libraries/main.php:569
|
256 |
msgid "Currency Options"
|
257 |
msgstr "Možnosti Měna"
|
260 |
msgid "Google Maps Options"
|
261 |
msgstr "Možnosti Google Maps"
|
262 |
|
263 |
+
#: app/features/contextual.php:244 app/features/mec/settings.php:579
|
264 |
#: app/libraries/main.php:570
|
265 |
msgid "Google Recaptcha Options"
|
266 |
msgstr "Možnosti Google Recaptcha"
|
267 |
|
268 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
269 |
+
#: app/libraries/main.php:588
|
270 |
msgid "Countdown Options"
|
271 |
msgstr "Možnosti Odpočítávání"
|
272 |
|
273 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
274 |
+
#: app/libraries/main.php:614
|
275 |
msgid "Social Networks"
|
276 |
msgstr "Sociální sítě"
|
277 |
|
279 |
msgid "Next Event Module"
|
280 |
msgstr "Modul Další události"
|
281 |
|
282 |
+
#: app/features/contextual.php:286 app/features/mec/settings.php:619
|
283 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
284 |
msgid "Frontend Event Submission"
|
285 |
msgstr "Předání události frontendu"
|
286 |
|
287 |
+
#: app/features/contextual.php:298 app/features/events.php:346
|
288 |
+
#: app/libraries/main.php:589
|
289 |
msgid "Exceptional Days"
|
290 |
msgstr "Výjimečné dny"
|
291 |
|
292 |
+
#: app/features/contextual.php:308 app/features/events.php:316
|
293 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
294 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
295 |
+
#: app/libraries/main.php:597 app/libraries/main.php:628
|
296 |
+
#: app/libraries/main.php:715
|
297 |
msgid "Booking"
|
298 |
msgstr "Rezervace"
|
299 |
|
300 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
301 |
+
#: app/features/mec/booking.php:833 app/libraries/main.php:599
|
302 |
msgid "Coupons"
|
303 |
msgstr "Kupóny"
|
304 |
|
305 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
306 |
+
#: app/libraries/main.php:616
|
307 |
msgid "BuddyPress Integration"
|
308 |
msgstr "Integrace BuddyPress"
|
309 |
|
310 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:1095
|
311 |
+
#: app/libraries/main.php:575
|
312 |
msgid "Mailchimp Integration"
|
313 |
msgstr "Integrace Mailchimp"
|
314 |
|
316 |
msgid "MEC Activation"
|
317 |
msgstr "Aktivace MEC"
|
318 |
|
319 |
+
#: app/features/dlfile.php:121 app/features/events.php:1450
|
320 |
+
#: app/features/mec/booking.php:349 app/features/mec/settings.php:916
|
321 |
#, fuzzy
|
322 |
#| msgid "Download ICS file"
|
323 |
msgid "Downloadable File"
|
355 |
msgid "File uploaded!"
|
356 |
msgstr "Obrázek je nahraný!"
|
357 |
|
358 |
+
#: app/features/events.php:168 app/features/ix/export.php:34
|
359 |
+
#: app/features/mec/dashboard.php:265 app/libraries/main.php:5603
|
360 |
+
#: app/libraries/main.php:5623 app/skins/daily_view/tpl.php:82
|
361 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
362 |
#: app/skins/yearly_view/tpl.php:71
|
363 |
msgid "Events"
|
364 |
msgstr "Události"
|
365 |
|
366 |
+
#: app/features/events.php:169 app/features/fes.php:243
|
367 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
368 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
369 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
373 |
msgid "Event"
|
374 |
msgstr "Událost"
|
375 |
|
376 |
+
#: app/features/events.php:170 app/features/mec.php:457
|
377 |
msgid "Add Event"
|
378 |
msgstr "Přidat událost"
|
379 |
|
380 |
+
#: app/features/events.php:171 app/features/mec/dashboard.php:140
|
381 |
msgid "Add New Event"
|
382 |
msgstr "Přidat novou událost"
|
383 |
|
384 |
+
#: app/features/events.php:172 app/features/ix.php:4403
|
385 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
386 |
#: app/skins/map/tpl.php:89
|
387 |
msgid "No events found!"
|
388 |
msgstr "Nebyly nalezeny žádné události!"
|
389 |
|
390 |
+
#: app/features/events.php:173
|
391 |
msgid "All Events"
|
392 |
msgstr "Všechny události"
|
393 |
|
394 |
+
#: app/features/events.php:174
|
395 |
msgid "Edit Event"
|
396 |
msgstr "Editace události"
|
397 |
|
398 |
+
#: app/features/events.php:175 app/features/fes/list.php:87
|
399 |
#: app/features/popup/event.php:252
|
400 |
msgid "View Event"
|
401 |
msgstr "Zobrazit událost"
|
402 |
|
403 |
+
#: app/features/events.php:176
|
404 |
msgid "No events found in Trash!"
|
405 |
msgstr "V koši nebyly nalezeny žádné události!"
|
406 |
|
407 |
+
#: app/features/events.php:193 app/features/events.php:3471
|
408 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
409 |
#: app/features/mec/meta_boxes/search_form.php:31
|
410 |
+
#: app/features/mec/meta_boxes/search_form.php:102
|
411 |
+
#: app/features/mec/meta_boxes/search_form.php:173
|
412 |
+
#: app/features/mec/meta_boxes/search_form.php:244
|
413 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
414 |
+
#: app/features/mec/meta_boxes/search_form.php:384
|
415 |
+
#: app/features/mec/meta_boxes/search_form.php:454
|
416 |
+
#: app/features/mec/meta_boxes/search_form.php:517
|
417 |
+
#: app/features/mec/meta_boxes/search_form.php:587
|
418 |
+
#: app/features/mec/meta_boxes/search_form.php:657
|
419 |
+
#: app/features/mec/meta_boxes/search_form.php:763
|
420 |
+
#: app/features/mec/settings.php:988 app/features/mec/settings.php:1048
|
421 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
422 |
+
#: app/features/search.php:68 app/libraries/main.php:6486
|
423 |
+
#: app/libraries/main.php:6540 app/libraries/skins.php:938
|
424 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
425 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
426 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
427 |
msgid "Category"
|
428 |
msgstr "Kategorie"
|
429 |
|
430 |
+
#: app/features/events.php:194 app/features/events.php:3426
|
431 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
432 |
#: app/features/mec/meta_boxes/filter.php:69
|
433 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6485
|
434 |
+
#: app/libraries/main.php:6539
|
435 |
msgid "Categories"
|
436 |
msgstr "Kategorie"
|
437 |
|
438 |
+
#: app/features/events.php:204 app/features/labels.php:71
|
439 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
440 |
#: app/features/speakers.php:71
|
441 |
#, php-format
|
442 |
msgid "All %s"
|
443 |
msgstr "Všechny %s"
|
444 |
|
445 |
+
#: app/features/events.php:205 app/features/labels.php:72
|
446 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
447 |
#: app/features/speakers.php:72
|
448 |
#, php-format
|
449 |
msgid "Edit %s"
|
450 |
msgstr "Editovat %s"
|
451 |
|
452 |
+
#: app/features/events.php:206 app/features/labels.php:73
|
453 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
454 |
#: app/features/speakers.php:73
|
455 |
#, php-format
|
456 |
msgid "View %s"
|
457 |
msgstr "Zobrazit %s"
|
458 |
|
459 |
+
#: app/features/events.php:207 app/features/labels.php:74
|
460 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
461 |
#: app/features/speakers.php:74
|
462 |
#, php-format
|
463 |
msgid "Update %s"
|
464 |
msgstr "Aktualizovat %s"
|
465 |
|
466 |
+
#: app/features/events.php:208 app/features/labels.php:75
|
467 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
468 |
#: app/features/speakers.php:75
|
469 |
#, php-format
|
470 |
msgid "Add New %s"
|
471 |
msgstr "Přidat novou %s"
|
472 |
|
473 |
+
#: app/features/events.php:209 app/features/labels.php:76
|
474 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
475 |
#: app/features/speakers.php:76
|
476 |
#, php-format
|
477 |
msgid "New %s Name"
|
478 |
msgstr "Nové jméno %s"
|
479 |
|
480 |
+
#: app/features/events.php:210 app/features/labels.php:77
|
481 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
482 |
#: app/features/speakers.php:77
|
483 |
#, php-format
|
484 |
msgid "Popular %s"
|
485 |
msgstr "Populární %s"
|
486 |
|
487 |
+
#: app/features/events.php:211 app/features/labels.php:78
|
488 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
489 |
#: app/features/speakers.php:78
|
490 |
#, php-format
|
491 |
msgid "Search %s"
|
492 |
msgstr "Vyhledat %s"
|
493 |
|
494 |
+
#: app/features/events.php:236 app/features/events.php:257
|
495 |
msgid "Category Icon"
|
496 |
msgstr "Ikona kategorie"
|
497 |
|
498 |
+
#: app/features/events.php:239 app/features/events.php:262
|
499 |
msgid "Select icon"
|
500 |
msgstr "Vybrat ikonu"
|
501 |
|
502 |
+
#: app/features/events.php:311
|
503 |
msgid "Event Details"
|
504 |
msgstr "Podrobnosti události"
|
505 |
|
506 |
+
#: app/features/events.php:342
|
507 |
#, fuzzy
|
508 |
#| msgid "Event Details"
|
509 |
msgid "FES Details"
|
510 |
msgstr "Podrobnosti události"
|
511 |
|
512 |
+
#: app/features/events.php:343
|
513 |
#, fuzzy
|
514 |
#| msgid "Date and Time"
|
515 |
msgid "Date And Time"
|
516 |
msgstr "Datum a čas"
|
517 |
|
518 |
+
#: app/features/events.php:344 app/features/fes/form.php:366
|
519 |
msgid "Event Repeating"
|
520 |
msgstr "Opakování události"
|
521 |
|
522 |
+
#: app/features/events.php:345 app/features/events.php:1179
|
523 |
#, fuzzy
|
524 |
#| msgid "Event Detail"
|
525 |
msgid "Event Data"
|
526 |
msgstr "Zobrazit událost"
|
527 |
|
528 |
+
#: app/features/events.php:347 app/features/mec/settings.php:824
|
529 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
530 |
msgid "Hourly Schedule"
|
531 |
msgstr "Hodinový rozvrh"
|
532 |
|
533 |
+
#: app/features/events.php:348
|
534 |
#, fuzzy
|
535 |
#| msgid "Location"
|
536 |
msgid "Location/Venue"
|
537 |
msgstr "Umístění"
|
538 |
|
539 |
+
#: app/features/events.php:349
|
540 |
#, fuzzy
|
541 |
#| msgid "Link"
|
542 |
msgid "Links"
|
543 |
msgstr "Odkaz"
|
544 |
|
545 |
+
#: app/features/events.php:350 app/features/events.php:3473
|
546 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
547 |
+
#: app/features/ix.php:4034
|
548 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
549 |
#: app/features/mec/meta_boxes/search_form.php:46
|
550 |
+
#: app/features/mec/meta_boxes/search_form.php:117
|
551 |
+
#: app/features/mec/meta_boxes/search_form.php:188
|
552 |
+
#: app/features/mec/meta_boxes/search_form.php:259
|
553 |
+
#: app/features/mec/meta_boxes/search_form.php:329
|
554 |
+
#: app/features/mec/meta_boxes/search_form.php:399
|
555 |
+
#: app/features/mec/meta_boxes/search_form.php:469
|
556 |
+
#: app/features/mec/meta_boxes/search_form.php:532
|
557 |
+
#: app/features/mec/meta_boxes/search_form.php:602
|
558 |
+
#: app/features/mec/meta_boxes/search_form.php:672
|
559 |
+
#: app/features/mec/meta_boxes/search_form.php:778
|
560 |
+
#: app/features/mec/settings.php:1060 app/features/mec/single.php:335
|
561 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
562 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
563 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
564 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
565 |
+
#: app/features/search.php:80 app/libraries/main.php:6492
|
566 |
+
#: app/libraries/main.php:6546 app/libraries/skins.php:990
|
567 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
568 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
569 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
570 |
msgid "Organizer"
|
571 |
msgstr "Organizátor"
|
572 |
|
573 |
+
#: app/features/events.php:351 app/features/events.php:1166
|
574 |
+
#: app/features/fes/form.php:836 app/features/mec/settings.php:985
|
575 |
+
#: app/libraries/main.php:6523 app/libraries/main.php:6572
|
576 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
577 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
578 |
#: app/skins/single/modern.php:237
|
579 |
msgid "Cost"
|
580 |
msgstr "Cena"
|
581 |
|
582 |
+
#: app/features/events.php:352
|
583 |
#, fuzzy
|
584 |
#| msgid "On Event Start"
|
585 |
msgid "SEO Schema / Event Status"
|
586 |
msgstr "Při spuštění události"
|
587 |
|
588 |
+
#: app/features/events.php:505
|
589 |
msgid "Note for reviewer"
|
590 |
msgstr "Poznámka pro recenzenta"
|
591 |
|
592 |
+
#: app/features/events.php:511
|
593 |
msgid "Guest Data"
|
594 |
msgstr "Údaje hosta"
|
595 |
|
596 |
+
#: app/features/events.php:512 app/features/events.php:2371
|
597 |
+
#: app/features/events.php:3985 app/features/fes.php:243
|
598 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
599 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
600 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
602 |
msgid "Name"
|
603 |
msgstr "Jméno"
|
604 |
|
605 |
+
#: app/features/events.php:513 app/features/events.php:2380
|
606 |
+
#: app/features/events.php:2447 app/features/events.php:2536
|
607 |
+
#: app/features/events.php:3988 app/features/fes.php:243
|
608 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
609 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
610 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
611 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
612 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
613 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1903
|
614 |
+
#: app/libraries/main.php:1972 app/libraries/main.php:3424
|
615 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
616 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
617 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
620 |
msgid "Email"
|
621 |
msgstr "Email"
|
622 |
|
623 |
+
#: app/features/events.php:522
|
624 |
msgid ""
|
625 |
"This event is imported from Google calendar so if you modify it, it would "
|
626 |
"overwrite in the next import from Google."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: app/features/events.php:526 app/features/fes/form.php:278
|
630 |
msgid "Date and Time"
|
631 |
msgstr "Datum a čas"
|
632 |
|
633 |
+
#: app/features/events.php:529 app/features/events.php:533
|
634 |
+
#: app/features/events.php:3474 app/features/events.php:3662
|
635 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
636 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
637 |
+
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1406
|
638 |
#: app/features/mec/meta_boxes/display_options.php:52
|
639 |
#: app/features/mec/meta_boxes/display_options.php:298
|
640 |
#: app/features/mec/meta_boxes/display_options.php:555
|
654 |
msgid "Start Date"
|
655 |
msgstr "Počátečná den"
|
656 |
|
657 |
+
#: app/features/events.php:548 app/features/events.php:552
|
658 |
+
#: app/features/events.php:3475 app/features/events.php:3662
|
659 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
660 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
661 |
+
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1407
|
662 |
#: app/features/popup/event.php:92
|
663 |
msgid "End Date"
|
664 |
msgstr "Konečný den"
|
665 |
|
666 |
+
#: app/features/events.php:575 app/features/fes/form.php:319
|
667 |
#: app/features/popup/event.php:109
|
668 |
#, fuzzy
|
669 |
#| msgid "All Day Event"
|
670 |
msgid "All-day Event"
|
671 |
msgstr "Celodenní událost"
|
672 |
|
673 |
+
#: app/features/events.php:585 app/features/fes/form.php:322
|
674 |
msgid "Hide Event Time"
|
675 |
msgstr "Skrýt čas události"
|
676 |
|
677 |
+
#: app/features/events.php:595 app/features/fes/form.php:325
|
678 |
msgid "Hide Event End Time"
|
679 |
msgstr "Skrýt čas ukončení události"
|
680 |
|
681 |
+
#: app/features/events.php:600 app/features/events.php:604
|
682 |
#: app/features/fes/form.php:329
|
683 |
#, fuzzy
|
684 |
#| msgid "Note to reviewer"
|
685 |
msgid "Notes on the time"
|
686 |
msgstr "Poznámka pro recenzenta"
|
687 |
|
688 |
+
#: app/features/events.php:605 app/features/fes/form.php:330
|
689 |
#, fuzzy
|
690 |
#| msgid ""
|
691 |
#| "It shows next to event time on single event page. You can insert Timezone "
|
697 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
698 |
"můžete vložit časové pásmo atd."
|
699 |
|
700 |
+
#: app/features/events.php:607 app/features/events.php:776
|
701 |
+
#: app/features/events.php:1129 app/features/events.php:1278
|
702 |
+
#: app/features/events.php:1415 app/features/events.php:1530
|
703 |
+
#: app/features/events.php:1765 app/features/events.php:1780
|
704 |
+
#: app/features/events.php:1957 app/features/events.php:1970
|
705 |
+
#: app/features/events.php:2122 app/features/events.php:2158
|
706 |
+
#: app/features/events.php:2256 app/features/events.php:2271
|
707 |
+
#: app/features/events.php:2301 app/features/events.php:2314
|
708 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
709 |
+
#: app/features/locations.php:335 app/features/mec/booking.php:117
|
710 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
711 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
712 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
759 |
#: app/features/mec/notifications.php:950
|
760 |
#: app/features/mec/notifications.php:961
|
761 |
#: app/features/mec/notifications.php:1086
|
762 |
+
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:81
|
763 |
+
#: app/features/mec/settings.php:100 app/features/mec/settings.php:147
|
764 |
+
#: app/features/mec/settings.php:182 app/features/mec/settings.php:203
|
765 |
+
#: app/features/mec/settings.php:248 app/features/mec/settings.php:291
|
766 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
767 |
+
#: app/features/mec/settings.php:462 app/features/mec/settings.php:479
|
768 |
+
#: app/features/mec/settings.php:498 app/features/mec/settings.php:512
|
769 |
+
#: app/features/mec/settings.php:540 app/features/mec/settings.php:631
|
770 |
+
#: app/features/mec/settings.php:956 app/features/mec/settings.php:972
|
771 |
+
#: app/features/mec/settings.php:1110 app/features/mec/settings.php:1123
|
772 |
+
#: app/features/mec/settings.php:1139 app/features/mec/single.php:46
|
773 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
774 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
775 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
783 |
msgid "Read More"
|
784 |
msgstr "Číst více"
|
785 |
|
786 |
+
#: app/features/events.php:617 app/features/fes/form.php:337
|
787 |
#, fuzzy
|
788 |
#| msgid "Timezone: %s"
|
789 |
msgid "Timezone"
|
790 |
msgstr "Časové pásmo: %s"
|
791 |
|
792 |
+
#: app/features/events.php:622 app/features/events.php:635
|
793 |
+
#: app/features/events.php:1606 app/features/events.php:1616
|
794 |
+
#: app/features/events.php:1639 app/features/events.php:2084
|
795 |
+
#: app/features/events.php:2216 app/features/events.php:2402
|
796 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
797 |
msgid "Inherit from global options"
|
798 |
msgstr "Zdědí z globálních možností"
|
799 |
|
800 |
+
#: app/features/events.php:631 app/features/events.php:634
|
801 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
802 |
#, fuzzy
|
803 |
#| msgid "Countdown View"
|
804 |
msgid "Countdown Method"
|
805 |
msgstr "Zobrazení odpočítávání"
|
806 |
|
807 |
+
#: app/features/events.php:636 app/features/fes/form.php:356
|
808 |
#, fuzzy
|
809 |
#| msgid "On Event Start"
|
810 |
msgid "Count to Event Start"
|
811 |
msgstr "Při spuštění události"
|
812 |
|
813 |
+
#: app/features/events.php:637 app/features/fes/form.php:357
|
814 |
#, fuzzy
|
815 |
#| msgid "On Event End"
|
816 |
msgid "Count to Event End"
|
817 |
msgstr "Na konci události"
|
818 |
|
819 |
+
#: app/features/events.php:645
|
820 |
msgid "Repeating"
|
821 |
msgstr "Opakování"
|
822 |
|
823 |
+
#: app/features/events.php:654
|
824 |
msgid "Event Repeating (Recurring events)"
|
825 |
msgstr "Opakování události (opakující se události)"
|
826 |
|
827 |
+
#: app/features/events.php:658 app/features/fes/form.php:370
|
828 |
msgid "Repeats"
|
829 |
msgstr "Opakování"
|
830 |
|
831 |
+
#: app/features/events.php:666 app/features/fes/form.php:372
|
832 |
+
#: app/features/mec.php:1409 app/skins/default_full_calendar/tpl.php:77
|
833 |
#: app/skins/full_calendar/tpl.php:124
|
834 |
msgid "Daily"
|
835 |
msgstr "Děnně"
|
836 |
|
837 |
+
#: app/features/events.php:673 app/features/fes/form.php:373
|
838 |
msgid "Every Weekday"
|
839 |
msgstr "Každý všední den"
|
840 |
|
841 |
+
#: app/features/events.php:680 app/features/fes/form.php:374
|
842 |
msgid "Every Weekend"
|
843 |
msgstr "Každý víkend"
|
844 |
|
845 |
+
#: app/features/events.php:687 app/features/fes/form.php:375
|
846 |
msgid "Certain Weekdays"
|
847 |
msgstr "Určité pracovní dny"
|
848 |
|
849 |
+
#: app/features/events.php:694 app/features/fes/form.php:376
|
850 |
#: app/skins/default_full_calendar/tpl.php:76
|
851 |
#: app/skins/full_calendar/tpl.php:123
|
852 |
msgid "Weekly"
|
853 |
msgstr "Týdně"
|
854 |
|
855 |
+
#: app/features/events.php:701 app/features/fes/form.php:377
|
856 |
+
#: app/features/mec.php:1410 app/skins/default_full_calendar/tpl.php:75
|
857 |
#: app/skins/full_calendar/tpl.php:122
|
858 |
msgid "Monthly"
|
859 |
msgstr "Měsíčně"
|
860 |
|
861 |
+
#: app/features/events.php:708 app/features/fes/form.php:378
|
862 |
+
#: app/features/mec.php:1411 app/skins/default_full_calendar/tpl.php:74
|
863 |
#: app/skins/full_calendar/tpl.php:121
|
864 |
msgid "Yearly"
|
865 |
msgstr "Ročně"
|
866 |
|
867 |
+
#: app/features/events.php:715 app/features/fes/form.php:379
|
868 |
msgid "Custom Days"
|
869 |
msgstr "Vlastní dny"
|
870 |
|
871 |
+
#: app/features/events.php:722 app/features/fes/form.php:380
|
872 |
msgid "Advanced"
|
873 |
msgstr "Pokročilé"
|
874 |
|
875 |
+
#: app/features/events.php:727 app/features/fes/form.php:384
|
876 |
msgid "Repeat Interval"
|
877 |
msgstr "Interval opakování"
|
878 |
|
879 |
+
#: app/features/events.php:729 app/features/fes/form.php:385
|
880 |
msgid "Repeat interval"
|
881 |
msgstr "Interval opakování"
|
882 |
|
883 |
+
#: app/features/events.php:733 app/features/fes/form.php:388
|
884 |
msgid "Week Days"
|
885 |
msgstr "Dny v týdnu"
|
886 |
|
887 |
+
#: app/features/events.php:750
|
888 |
#, fuzzy
|
889 |
#| msgid "Pro version of Modern Events Calendar"
|
890 |
msgid ""
|
892 |
"Calendar."
|
893 |
msgstr "Pro verze doplňku Modern Events Calendar"
|
894 |
|
895 |
+
#: app/features/events.php:756 app/features/events.php:1848
|
896 |
+
#: app/features/events.php:1876 app/features/events.php:2026
|
897 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
898 |
#: app/features/ix/import_g_calendar.php:51
|
899 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
900 |
+
#: app/libraries/skins.php:1142
|
901 |
msgid "Start"
|
902 |
msgstr "Začátek"
|
903 |
|
904 |
+
#: app/features/events.php:769 app/features/events.php:1272
|
905 |
+
#: app/features/events.php:1832 app/features/events.php:2015
|
906 |
+
#: app/features/events.php:2095 app/features/events.php:2228
|
907 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
908 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
909 |
#: app/libraries/hourlyschedule.php:119
|
910 |
msgid "Add"
|
911 |
msgstr "Přidat"
|
912 |
|
913 |
+
#: app/features/events.php:772 app/features/fes/form.php:435
|
914 |
msgid "Custom Days Repeating"
|
915 |
msgstr "Opakování vlastních dnů"
|
916 |
|
917 |
+
#: app/features/events.php:775 app/features/fes/form.php:438
|
918 |
#, fuzzy
|
919 |
#| msgid ""
|
920 |
#| "Add certain days to event occurrence dates. If you have single day event, "
|
929 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
930 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
931 |
|
932 |
+
#: app/features/events.php:786 app/features/events.php:1852
|
933 |
+
#: app/features/events.php:1880 app/features/events.php:2030
|
934 |
+
#: app/features/fes/form.php:417 app/libraries/skins.php:1145
|
935 |
msgid "End"
|
936 |
msgstr "Konec"
|
937 |
|
938 |
+
#: app/features/events.php:863 app/features/fes/form.php:511
|
939 |
msgid "First"
|
940 |
msgstr "První"
|
941 |
|
942 |
+
#: app/features/events.php:905 app/features/fes/form.php:553
|
943 |
msgid "Second"
|
944 |
msgstr "Druhá"
|
945 |
|
946 |
+
#: app/features/events.php:947 app/features/fes/form.php:595
|
947 |
msgid "Third"
|
948 |
msgstr "Třetí"
|
949 |
|
950 |
+
#: app/features/events.php:989 app/features/fes/form.php:637
|
951 |
msgid "Fourth"
|
952 |
msgstr "Čtvrtá"
|
953 |
|
954 |
+
#: app/features/events.php:1031 app/features/fes/form.php:679
|
955 |
msgid "Last"
|
956 |
msgstr "Poslední"
|
957 |
|
958 |
+
#: app/features/events.php:1078 app/features/fes/form.php:725
|
959 |
msgid "Ends Repeat"
|
960 |
msgstr "Ukončení opakování"
|
961 |
|
962 |
+
#: app/features/events.php:1090 app/features/fes/form.php:729
|
963 |
msgid "Never"
|
964 |
msgstr "Nikdy"
|
965 |
|
966 |
# Možná Zapnuto
|
967 |
+
#: app/features/events.php:1102 app/features/fes/form.php:734
|
968 |
msgid "On"
|
969 |
msgstr "Na"
|
970 |
|
971 |
+
#: app/features/events.php:1118 app/features/fes/form.php:741
|
972 |
#: app/features/mec/booking.php:154
|
973 |
msgid "After"
|
974 |
msgstr "Po"
|
975 |
|
976 |
+
#: app/features/events.php:1122 app/features/events.php:1126
|
977 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
978 |
msgid "Occurrences times"
|
979 |
msgstr "Časy výskytu"
|
980 |
|
981 |
+
#: app/features/events.php:1127
|
982 |
#, fuzzy
|
983 |
#| msgid ""
|
984 |
#| "The event will finish after certain repeats. For example if you set it to "
|
990 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
991 |
"hodnotu 10, událost skončí po 10 opakováních."
|
992 |
|
993 |
+
#: app/features/events.php:1143 app/features/fes/form.php:760
|
994 |
#, fuzzy
|
995 |
#| msgid "Next Occurrence of Other Events"
|
996 |
msgid "Show only one occurrence of this event"
|
997 |
msgstr "Další výskyt dalších událostí"
|
998 |
|
999 |
+
#: app/features/events.php:1162 app/features/events.php:3662
|
1000 |
+
#: app/features/fes/form.php:833 app/features/ix.php:3992
|
1001 |
+
#: app/features/ix.php:4034 app/features/mec/settings.php:770
|
1002 |
+
#: app/libraries/main.php:6522 app/libraries/main.php:6571
|
1003 |
#: app/widgets/single.php:105
|
1004 |
msgid "Event Cost"
|
1005 |
msgstr "Cena události"
|
1006 |
|
1007 |
+
#: app/features/events.php:1259
|
1008 |
msgid "Exceptional Days (Exclude Dates)"
|
1009 |
msgstr "Výjimečné dny (vyjma dat)"
|
1010 |
|
1011 |
+
#: app/features/events.php:1265 app/features/events.php:1275
|
1012 |
msgid "Exclude certain days"
|
1013 |
msgstr "Vyloučit určité dny"
|
1014 |
|
1015 |
+
#: app/features/events.php:1270 app/features/events.php:2448
|
1016 |
+
#: app/features/events.php:2537 app/features/fes.php:243
|
1017 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
1018 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
1019 |
+
#: app/features/wc.php:83 app/libraries/main.php:3511
|
1020 |
#: app/modules/booking/steps/tickets.php:106
|
1021 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
1022 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
1024 |
msgid "Date"
|
1025 |
msgstr "Datum"
|
1026 |
|
1027 |
+
#: app/features/events.php:1276
|
1028 |
msgid ""
|
1029 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
1030 |
"exclude only single day occurrences and you cannot exclude one day from "
|
1034 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
1035 |
"vícedenních výskytů."
|
1036 |
|
1037 |
+
#: app/features/events.php:1334 app/libraries/render.php:566
|
1038 |
msgid "Day 1"
|
1039 |
msgstr "Den 1"
|
1040 |
|
1041 |
+
#: app/features/events.php:1378 app/features/fes/form.php:810
|
1042 |
+
#: app/features/mec/settings.php:764
|
1043 |
msgid "Event Links"
|
1044 |
msgstr "Odkazy na událost"
|
1045 |
|
1046 |
+
#: app/features/events.php:1381 app/features/events.php:1389
|
1047 |
+
#: app/features/fes/form.php:812 app/features/mec/settings.php:986
|
1048 |
+
#: app/libraries/main.php:6520 app/libraries/main.php:6569
|
1049 |
msgid "Event Link"
|
1050 |
msgstr "Odkaz na událost"
|
1051 |
|
1052 |
+
#: app/features/events.php:1384 app/features/events.php:1402
|
1053 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
1054 |
msgid "eg. http://yoursite.com/your-event"
|
1055 |
msgstr "např. http://yoursite.com/vase-udalost"
|
1056 |
|
1057 |
+
#: app/features/events.php:1390
|
1058 |
#, fuzzy
|
1059 |
#| msgid ""
|
1060 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
1069 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
1070 |
"URL, můžete také použít zkracovač URL"
|
1071 |
|
1072 |
+
#: app/features/events.php:1392
|
1073 |
msgid "URL Shortener"
|
1074 |
msgstr "Zkracovač URL"
|
1075 |
|
1076 |
+
#: app/features/events.php:1399 app/features/events.php:1412
|
1077 |
+
#: app/features/fes/form.php:817 app/libraries/main.php:6521
|
1078 |
+
#: app/libraries/main.php:6570 app/skins/single.php:1126
|
1079 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1080 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1081 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
1082 |
msgid "More Info"
|
1083 |
msgstr "Více info"
|
1084 |
|
1085 |
+
#: app/features/events.php:1405 app/features/fes/form.php:819
|
1086 |
msgid "More Information"
|
1087 |
msgstr "Více informací"
|
1088 |
|
1089 |
+
#: app/features/events.php:1407 app/features/fes/form.php:821
|
1090 |
+
#: app/features/mec.php:1008 app/features/popup/shortcode.php:477
|
1091 |
msgid "Current Window"
|
1092 |
msgstr "Aktuální okno"
|
1093 |
|
1094 |
+
#: app/features/events.php:1408 app/features/fes/form.php:822
|
1095 |
+
#: app/features/mec.php:1009 app/features/popup/shortcode.php:481
|
1096 |
msgid "New Window"
|
1097 |
msgstr "Nové okno"
|
1098 |
|
1099 |
+
#: app/features/events.php:1413 app/features/fes/form.php:824
|
1100 |
msgid ""
|
1101 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1102 |
"Insert full link including http(s)://"
|
1104 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1105 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1106 |
|
1107 |
+
#: app/features/events.php:1436 app/features/mec/settings.php:832
|
1108 |
msgid "Booking Options"
|
1109 |
msgstr "Možnosti rezervace"
|
1110 |
|
1111 |
+
#: app/features/events.php:1437 app/features/events.php:1628
|
1112 |
+
#: app/features/mec/settings.php:869
|
1113 |
#, fuzzy
|
1114 |
#| msgid "Total user booking limits"
|
1115 |
msgid "Total User Booking Limits"
|
1116 |
msgstr "Celkové limity rezervace uživatelů"
|
1117 |
|
1118 |
+
#: app/features/events.php:1438 app/features/events.php:1684
|
1119 |
+
#: app/libraries/book.php:63 app/libraries/main.php:6525
|
1120 |
#: app/modules/booking/steps/tickets.php:137
|
1121 |
#: app/modules/booking/steps/tickets.php:143
|
1122 |
msgid "Tickets"
|
1123 |
msgstr "Vstupenky"
|
1124 |
|
1125 |
+
#: app/features/events.php:1440 app/features/events.php:2072
|
1126 |
msgid "Fees"
|
1127 |
msgstr "Poplatky"
|
1128 |
|
1129 |
+
#: app/features/events.php:1443 app/features/events.php:2204
|
1130 |
+
#: app/features/mec/settings.php:894
|
1131 |
msgid "Ticket Variations / Options"
|
1132 |
msgstr "Varianty vstupenky / možnosti"
|
1133 |
|
1134 |
+
#: app/features/events.php:1447 app/features/mec/booking.php:904
|
1135 |
#: app/features/mec/support-page.php:118
|
1136 |
msgid "Organizer Payment"
|
1137 |
msgstr "Platba organizátora"
|
1138 |
|
1139 |
+
#: app/features/events.php:1512 app/features/events.php:1526
|
1140 |
#, fuzzy
|
1141 |
#| msgid "Total booking limits"
|
1142 |
msgid "Total booking limit"
|
1143 |
msgstr "Celkové limity rezervace"
|
1144 |
|
1145 |
+
#: app/features/events.php:1523 app/features/events.php:1801
|
1146 |
+
#: app/features/events.php:1984 app/modules/booking/default.php:98
|
1147 |
#: app/modules/booking/steps/tickets.php:137
|
1148 |
#: app/modules/booking/steps/tickets.php:143
|
1149 |
#: app/skins/available_spot/tpl.php:140
|
1150 |
msgid "Unlimited"
|
1151 |
msgstr "Neomezené"
|
1152 |
|
1153 |
+
#: app/features/events.php:1529
|
1154 |
msgid ""
|
1155 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1156 |
"limitation number."
|
1158 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1159 |
"políčka a zadejte číslo omezení."
|
1160 |
|
1161 |
+
#: app/features/events.php:1531
|
1162 |
msgid "Read About A Booking System"
|
1163 |
msgstr "Přečtěte si o rezervačním systému"
|
1164 |
|
1165 |
+
#: app/features/events.php:1539
|
1166 |
msgid "100"
|
1167 |
msgstr "100"
|
1168 |
|
1169 |
+
#: app/features/events.php:1544
|
1170 |
#, fuzzy
|
1171 |
#| msgid "Discount"
|
1172 |
msgid "Discount per user roles"
|
1173 |
msgstr "Sleva"
|
1174 |
|
1175 |
+
#: app/features/events.php:1550
|
1176 |
msgid "5"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: app/features/events.php:1556 app/features/events.php:1570
|
1180 |
+
#: app/features/mec/settings.php:851
|
1181 |
#, fuzzy
|
1182 |
#| msgid "Next Occurrence"
|
1183 |
msgid "Book All Occurrences"
|
1184 |
msgstr "Další výskyt"
|
1185 |
|
1186 |
+
#: app/features/events.php:1567
|
1187 |
msgid "Sell all occurrences by one booking"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: app/features/events.php:1573
|
1191 |
msgid ""
|
1192 |
"If you have a series of events and you want to sell all of them at once, "
|
1193 |
"this option is for you! For example a weekly yoga course or something "
|
1194 |
"similar."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: app/features/events.php:1584 app/features/mec/booking.php:129
|
1198 |
+
#: app/features/mec/settings.php:857
|
1199 |
#, fuzzy
|
1200 |
#| msgid "General Options"
|
1201 |
msgid "Interval Options"
|
1202 |
msgstr "Obecné možnosti"
|
1203 |
|
1204 |
+
#: app/features/events.php:1586 app/features/events.php:1591
|
1205 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1206 |
msgid "Show Booking Form Interval"
|
1207 |
msgstr "Zobrazit Interval rezervačního formuláře"
|
1208 |
|
1209 |
+
#: app/features/events.php:1588 app/features/mec/booking.php:133
|
1210 |
msgid "Minutes (e.g 5)"
|
1211 |
msgstr "Minuty (např. 5)"
|
1212 |
|
1213 |
+
#: app/features/events.php:1592 app/features/mec/booking.php:137
|
1214 |
#, fuzzy
|
1215 |
#| msgid ""
|
1216 |
#| "You can show booking form only at certain time before event start. If you "
|
1225 |
"Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
|
1226 |
"minut před zahájením akce!"
|
1227 |
|
1228 |
+
#: app/features/events.php:1601 app/features/mec/settings.php:863
|
1229 |
msgid "Automatic Approval"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: app/features/events.php:1603 app/features/notifications.php:160
|
1233 |
#, fuzzy
|
1234 |
#| msgid "Email verification"
|
1235 |
msgid "Email Verification"
|
1236 |
msgstr "Ověřovací email"
|
1237 |
|
1238 |
+
#: app/features/events.php:1607 app/features/events.php:1617
|
1239 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1240 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1241 |
#: app/features/mec/booking.php:868
|
1247 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1248 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1249 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1250 |
+
#: app/features/mec/meta_boxes/search_form.php:91
|
1251 |
+
#: app/features/mec/meta_boxes/search_form.php:104
|
1252 |
+
#: app/features/mec/meta_boxes/search_form.php:111
|
1253 |
+
#: app/features/mec/meta_boxes/search_form.php:119
|
1254 |
+
#: app/features/mec/meta_boxes/search_form.php:126
|
1255 |
+
#: app/features/mec/meta_boxes/search_form.php:133
|
1256 |
+
#: app/features/mec/meta_boxes/search_form.php:140
|
1257 |
+
#: app/features/mec/meta_boxes/search_form.php:147
|
1258 |
+
#: app/features/mec/meta_boxes/search_form.php:154
|
1259 |
+
#: app/features/mec/meta_boxes/search_form.php:162
|
1260 |
+
#: app/features/mec/meta_boxes/search_form.php:175
|
1261 |
+
#: app/features/mec/meta_boxes/search_form.php:182
|
1262 |
+
#: app/features/mec/meta_boxes/search_form.php:190
|
1263 |
+
#: app/features/mec/meta_boxes/search_form.php:197
|
1264 |
+
#: app/features/mec/meta_boxes/search_form.php:204
|
1265 |
+
#: app/features/mec/meta_boxes/search_form.php:211
|
1266 |
+
#: app/features/mec/meta_boxes/search_form.php:218
|
1267 |
+
#: app/features/mec/meta_boxes/search_form.php:225
|
1268 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
1269 |
+
#: app/features/mec/meta_boxes/search_form.php:246
|
1270 |
+
#: app/features/mec/meta_boxes/search_form.php:253
|
1271 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
1272 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
1273 |
+
#: app/features/mec/meta_boxes/search_form.php:275
|
1274 |
+
#: app/features/mec/meta_boxes/search_form.php:282
|
1275 |
+
#: app/features/mec/meta_boxes/search_form.php:289
|
1276 |
+
#: app/features/mec/meta_boxes/search_form.php:296
|
1277 |
+
#: app/features/mec/meta_boxes/search_form.php:303
|
1278 |
+
#: app/features/mec/meta_boxes/search_form.php:316
|
1279 |
+
#: app/features/mec/meta_boxes/search_form.php:323
|
1280 |
+
#: app/features/mec/meta_boxes/search_form.php:331
|
1281 |
+
#: app/features/mec/meta_boxes/search_form.php:338
|
1282 |
+
#: app/features/mec/meta_boxes/search_form.php:345
|
1283 |
+
#: app/features/mec/meta_boxes/search_form.php:352
|
1284 |
+
#: app/features/mec/meta_boxes/search_form.php:359
|
1285 |
+
#: app/features/mec/meta_boxes/search_form.php:366
|
1286 |
+
#: app/features/mec/meta_boxes/search_form.php:373
|
1287 |
+
#: app/features/mec/meta_boxes/search_form.php:386
|
1288 |
+
#: app/features/mec/meta_boxes/search_form.php:393
|
1289 |
+
#: app/features/mec/meta_boxes/search_form.php:401
|
1290 |
+
#: app/features/mec/meta_boxes/search_form.php:408
|
1291 |
+
#: app/features/mec/meta_boxes/search_form.php:415
|
1292 |
+
#: app/features/mec/meta_boxes/search_form.php:422
|
1293 |
+
#: app/features/mec/meta_boxes/search_form.php:429
|
1294 |
+
#: app/features/mec/meta_boxes/search_form.php:436
|
1295 |
+
#: app/features/mec/meta_boxes/search_form.php:443
|
1296 |
+
#: app/features/mec/meta_boxes/search_form.php:456
|
1297 |
+
#: app/features/mec/meta_boxes/search_form.php:463
|
1298 |
+
#: app/features/mec/meta_boxes/search_form.php:471
|
1299 |
+
#: app/features/mec/meta_boxes/search_form.php:478
|
1300 |
+
#: app/features/mec/meta_boxes/search_form.php:485
|
1301 |
+
#: app/features/mec/meta_boxes/search_form.php:492
|
1302 |
+
#: app/features/mec/meta_boxes/search_form.php:499
|
1303 |
+
#: app/features/mec/meta_boxes/search_form.php:506
|
1304 |
+
#: app/features/mec/meta_boxes/search_form.php:519
|
1305 |
+
#: app/features/mec/meta_boxes/search_form.php:526
|
1306 |
+
#: app/features/mec/meta_boxes/search_form.php:534
|
1307 |
+
#: app/features/mec/meta_boxes/search_form.php:541
|
1308 |
+
#: app/features/mec/meta_boxes/search_form.php:548
|
1309 |
+
#: app/features/mec/meta_boxes/search_form.php:555
|
1310 |
+
#: app/features/mec/meta_boxes/search_form.php:562
|
1311 |
+
#: app/features/mec/meta_boxes/search_form.php:569
|
1312 |
+
#: app/features/mec/meta_boxes/search_form.php:576
|
1313 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1314 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
1315 |
+
#: app/features/mec/meta_boxes/search_form.php:604
|
1316 |
+
#: app/features/mec/meta_boxes/search_form.php:611
|
1317 |
+
#: app/features/mec/meta_boxes/search_form.php:618
|
1318 |
+
#: app/features/mec/meta_boxes/search_form.php:625
|
1319 |
+
#: app/features/mec/meta_boxes/search_form.php:632
|
1320 |
+
#: app/features/mec/meta_boxes/search_form.php:639
|
1321 |
+
#: app/features/mec/meta_boxes/search_form.php:646
|
1322 |
+
#: app/features/mec/meta_boxes/search_form.php:659
|
1323 |
+
#: app/features/mec/meta_boxes/search_form.php:666
|
1324 |
+
#: app/features/mec/meta_boxes/search_form.php:674
|
1325 |
+
#: app/features/mec/meta_boxes/search_form.php:681
|
1326 |
+
#: app/features/mec/meta_boxes/search_form.php:688
|
1327 |
+
#: app/features/mec/meta_boxes/search_form.php:695
|
1328 |
+
#: app/features/mec/meta_boxes/search_form.php:702
|
1329 |
+
#: app/features/mec/meta_boxes/search_form.php:709
|
1330 |
+
#: app/features/mec/meta_boxes/search_form.php:716
|
1331 |
+
#: app/features/mec/meta_boxes/search_form.php:765
|
1332 |
+
#: app/features/mec/meta_boxes/search_form.php:772
|
1333 |
+
#: app/features/mec/meta_boxes/search_form.php:780
|
1334 |
+
#: app/features/mec/meta_boxes/search_form.php:787
|
1335 |
+
#: app/features/mec/meta_boxes/search_form.php:794
|
1336 |
+
#: app/features/mec/meta_boxes/search_form.php:801
|
1337 |
+
#: app/features/mec/meta_boxes/search_form.php:808
|
1338 |
+
#: app/features/mec/meta_boxes/search_form.php:815
|
1339 |
+
#: app/features/mec/meta_boxes/search_form.php:822
|
1340 |
+
#: app/features/mec/modules.php:124 app/features/mec/settings.php:112
|
1341 |
+
#: app/features/mec/settings.php:474
|
1342 |
msgid "Disabled"
|
1343 |
msgstr "Zakázaný"
|
1344 |
|
1345 |
+
#: app/features/events.php:1608 app/features/events.php:1618
|
1346 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1347 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1348 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1349 |
+
#: app/features/mec/settings.php:113
|
1350 |
msgid "Enabled"
|
1351 |
msgstr "Povoleno"
|
1352 |
|
1353 |
+
#: app/features/events.php:1613 app/features/mec/booking.php:376
|
1354 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1355 |
+
#: app/libraries/main.php:629
|
1356 |
msgid "Booking Confirmation"
|
1357 |
msgstr "Potvrzení rezervace"
|
1358 |
|
1359 |
+
#: app/features/events.php:1642
|
|
|
|
|
|
|
|
|
1360 |
msgid "12"
|
1361 |
msgstr "12"
|
1362 |
|
1363 |
+
#: app/features/events.php:1649
|
1364 |
#, fuzzy
|
1365 |
#| msgid "Payment Gateways"
|
1366 |
msgid "Disabled Gateways"
|
1367 |
msgstr "Platební brány"
|
1368 |
|
1369 |
+
#: app/features/events.php:1650
|
1370 |
msgid ""
|
1371 |
"You can disable some of the following payment gateways by checking them "
|
1372 |
"otherwise they will be enabled."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: app/features/events.php:1687
|
1376 |
msgid ""
|
1377 |
"You're translating an event so MEC will use the original event for tickets "
|
1378 |
"and booking. You can only translate the ticket name and description. Please "
|
1382 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1383 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1384 |
|
1385 |
+
#: app/features/events.php:1692
|
1386 |
#, fuzzy
|
1387 |
#| msgid "Ticket"
|
1388 |
msgid "Add Ticket"
|
1389 |
msgstr "Vstupenka"
|
1390 |
|
1391 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1392 |
#, fuzzy
|
1393 |
#| msgid "Ticket"
|
1394 |
msgid "Ticket ID"
|
1395 |
msgstr "Vstupenka"
|
1396 |
|
1397 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1398 |
+
#: app/features/events.php:3662 app/features/fes.php:243
|
1399 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1400 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1401 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1402 |
msgid "ID"
|
1403 |
msgstr "ID"
|
1404 |
|
1405 |
+
#: app/features/events.php:1707 app/features/events.php:1903
|
1406 |
msgid "Ticket Name"
|
1407 |
msgstr "Název vstupenky"
|
1408 |
|
1409 |
+
#: app/features/events.php:1712 app/features/events.php:1907
|
1410 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1411 |
+
#: app/features/ix.php:4034
|
1412 |
msgid "Start Time"
|
1413 |
msgstr "Začátek"
|
1414 |
|
1415 |
+
#: app/features/events.php:1725 app/features/events.php:1920
|
1416 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1417 |
+
#: app/features/ix.php:4034
|
1418 |
msgid "End Time"
|
1419 |
msgstr "Konec"
|
1420 |
|
1421 |
+
#: app/features/events.php:1741 app/features/events.php:1935
|
1422 |
+
#: app/features/events.php:3662 app/libraries/hourlyschedule.php:65
|
1423 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1424 |
msgid "Description"
|
1425 |
msgstr "Popis"
|
1426 |
|
1427 |
+
#: app/features/events.php:1746 app/features/events.php:1749
|
1428 |
+
#: app/features/events.php:1939 app/features/events.php:1942
|
1429 |
#, fuzzy
|
1430 |
#| msgid "Description"
|
1431 |
msgid "Private Description"
|
1432 |
msgstr "Popis"
|
1433 |
|
1434 |
+
#: app/features/events.php:1750 app/features/events.php:1943
|
1435 |
#, php-format
|
1436 |
msgid ""
|
1437 |
"You can show it on the email notifications by placing "
|
1438 |
"%%ticket_private_description%% into the email template."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: app/features/events.php:1758 app/features/events.php:1762
|
1442 |
+
#: app/features/events.php:1856 app/features/events.php:1883
|
1443 |
+
#: app/features/events.php:1951 app/features/events.php:1954
|
1444 |
+
#: app/features/events.php:2032 app/features/events.php:2249
|
1445 |
+
#: app/features/events.php:2253 app/features/events.php:2295
|
1446 |
+
#: app/features/events.php:2298 app/features/mec/booking.php:547
|
1447 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1448 |
#: app/features/mec/booking.php:582
|
1449 |
msgid "Price"
|
1450 |
msgstr "Cena"
|
1451 |
|
1452 |
+
#: app/features/events.php:1763 app/features/events.php:1955
|
1453 |
#, fuzzy
|
1454 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1455 |
msgid ""
|
1457 |
"any symbols or characters."
|
1458 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1459 |
|
1460 |
+
#: app/features/events.php:1772 app/features/events.php:1777
|
1461 |
+
#: app/features/events.php:1964 app/features/events.php:1967
|
1462 |
msgid "Price Label"
|
1463 |
msgstr "Cenový štítek"
|
1464 |
|
1465 |
+
#: app/features/events.php:1778 app/features/events.php:1968
|
1466 |
msgid "For showing on website. e.g. $15"
|
1467 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1468 |
|
1469 |
+
#: app/features/events.php:1788 app/features/events.php:1978
|
1470 |
msgid "Available Tickets"
|
1471 |
msgstr "Dostupné vstupenky"
|
1472 |
|
1473 |
+
#: app/features/events.php:1805 app/features/events.php:1988
|
1474 |
#, fuzzy
|
1475 |
#| msgid "Maximum Per Ticket"
|
1476 |
msgid "Minimum Ticket e.g. 3"
|
1477 |
msgstr "Maximum na jednu vstupenku"
|
1478 |
|
1479 |
+
#: app/features/events.php:1808 app/features/events.php:1991
|
1480 |
#, fuzzy
|
1481 |
#| msgid "Maximum Per Ticket"
|
1482 |
msgid "MinimumTicket"
|
1483 |
msgstr "Maximum na jednu vstupenku"
|
1484 |
|
1485 |
+
#: app/features/events.php:1810 app/features/events.php:1993
|
1486 |
msgid "Set a number for the minimum ticket reservation possible"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: app/features/events.php:1818 app/features/events.php:2001
|
1490 |
msgid "e.g. 0"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: app/features/events.php:1820 app/features/events.php:2003
|
1494 |
#, fuzzy
|
1495 |
#| msgid "Days"
|
1496 |
msgid "Day"
|
1497 |
msgstr "Dny"
|
1498 |
|
1499 |
+
#: app/features/events.php:1821 app/features/events.php:2004
|
1500 |
msgid "Hour"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: app/features/events.php:1823 app/features/events.php:2006
|
1504 |
#, php-format
|
1505 |
msgid "Stop selling ticket %s before event start."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: app/features/events.php:1830 app/features/events.php:2013
|
1509 |
msgid "Price per Date"
|
1510 |
msgstr "Cena za datum"
|
1511 |
|
1512 |
+
#: app/features/events.php:1860 app/features/events.php:1886
|
1513 |
+
#: app/features/events.php:2034 app/features/labels.php:60
|
1514 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1515 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1516 |
+
#: app/features/mec/meta_boxes/search_form.php:138
|
1517 |
+
#: app/features/mec/meta_boxes/search_form.php:209
|
1518 |
+
#: app/features/mec/meta_boxes/search_form.php:280
|
1519 |
+
#: app/features/mec/meta_boxes/search_form.php:350
|
1520 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
1521 |
+
#: app/features/mec/meta_boxes/search_form.php:490
|
1522 |
+
#: app/features/mec/meta_boxes/search_form.php:553
|
1523 |
+
#: app/features/mec/meta_boxes/search_form.php:623
|
1524 |
+
#: app/features/mec/meta_boxes/search_form.php:693
|
1525 |
+
#: app/features/mec/meta_boxes/search_form.php:799
|
1526 |
+
#: app/features/mec/settings.php:989 app/features/mec/settings.php:1080
|
1527 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1528 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1529 |
msgid "Label"
|
1530 |
msgstr "Štítek"
|
1531 |
|
1532 |
+
#: app/features/events.php:1862 app/features/events.php:1888
|
1533 |
+
#: app/features/events.php:2036 app/features/events.php:2135
|
1534 |
+
#: app/features/events.php:2171 app/features/events.php:2278
|
1535 |
+
#: app/features/events.php:2320 app/features/mec/booking.php:486
|
1536 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1537 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1538 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1539 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1540 |
+
#: app/libraries/main.php:3346 app/libraries/main.php:3375
|
1541 |
+
#: app/libraries/main.php:3404 app/libraries/main.php:3433
|
1542 |
+
#: app/libraries/main.php:3462 app/libraries/main.php:3491
|
1543 |
+
#: app/libraries/main.php:3520 app/libraries/main.php:3549
|
1544 |
+
#: app/libraries/main.php:3578 app/libraries/main.php:3599
|
1545 |
+
#: app/libraries/main.php:3630 app/libraries/main.php:3676
|
1546 |
+
#: app/libraries/main.php:3722 app/libraries/main.php:3771
|
1547 |
+
#: app/libraries/main.php:3811
|
1548 |
msgid "Remove"
|
1549 |
msgstr "Odstranit"
|
1550 |
|
1551 |
+
#: app/features/events.php:2109 app/features/events.php:2147
|
1552 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1553 |
msgid "Fee Title"
|
1554 |
msgstr "Název poplatku"
|
1555 |
|
1556 |
+
#: app/features/events.php:2115 app/features/events.php:2119
|
1557 |
+
#: app/features/events.php:2152 app/features/events.php:2155
|
1558 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1559 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1560 |
msgid "Amount"
|
1561 |
msgstr "Množství"
|
1562 |
|
1563 |
+
#: app/features/events.php:2120 app/features/events.php:2156
|
1564 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1565 |
msgid ""
|
1566 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1569 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1570 |
"odpovídající procentuální hodnotě"
|
1571 |
|
1572 |
+
#: app/features/events.php:2129 app/features/events.php:2165
|
1573 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1574 |
msgid "Percent"
|
1575 |
msgstr "Procent"
|
1576 |
|
1577 |
+
#: app/features/events.php:2130 app/features/events.php:2166
|
1578 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1579 |
msgid "Amount (Per Ticket)"
|
1580 |
msgstr "Částka (za vstupenku)"
|
1581 |
|
1582 |
+
#: app/features/events.php:2131 app/features/events.php:2167
|
1583 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1584 |
msgid "Amount (Per Booking)"
|
1585 |
msgstr "Částka (za rezervaci)"
|
1586 |
|
1587 |
+
#: app/features/events.php:2243 app/features/events.php:2290
|
1588 |
+
#: app/features/events.php:3470 app/features/events.php:3662
|
1589 |
+
#: app/features/fes/form.php:256 app/features/ix.php:3992
|
1590 |
+
#: app/features/ix.php:4034 app/features/mec/booking.php:543
|
1591 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1592 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1593 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
1595 |
msgid "Title"
|
1596 |
msgstr "Název"
|
1597 |
|
1598 |
+
#: app/features/events.php:2254 app/features/events.php:2299
|
1599 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1600 |
msgid "Option Price"
|
1601 |
msgstr "Možnosti ceny"
|
1602 |
|
1603 |
+
#: app/features/events.php:2264 app/features/events.php:2268
|
1604 |
+
#: app/features/events.php:2308 app/features/events.php:2311
|
1605 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1606 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1607 |
msgid "Maximum Per Ticket"
|
1608 |
msgstr "Maximum na jednu vstupenku"
|
1609 |
|
1610 |
+
#: app/features/events.php:2269 app/features/events.php:2312
|
1611 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1612 |
#, fuzzy
|
1613 |
#| msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1614 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1615 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1616 |
|
1617 |
+
#: app/features/events.php:2388
|
1618 |
#, fuzzy
|
1619 |
#| msgid ""
|
1620 |
#| "You're translating an event so MEC will use the original event for "
|
1630 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1631 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1632 |
|
1633 |
+
#: app/features/events.php:2414 app/features/mec/booking.php:609
|
1634 |
#, fuzzy
|
1635 |
#| msgid "Attendees Limit"
|
1636 |
msgid "Per Attendee Fields"
|
1637 |
msgstr "Limit účastníků"
|
1638 |
|
1639 |
+
#: app/features/events.php:2444 app/features/mec/booking.php:642
|
1640 |
+
#: app/libraries/main.php:3366
|
1641 |
msgid "MEC Name"
|
1642 |
msgstr "MEC Jméno"
|
1643 |
|
1644 |
+
#: app/features/events.php:2445 app/features/mec/booking.php:643
|
1645 |
+
#: app/libraries/main.php:3395
|
1646 |
msgid "MEC Email"
|
1647 |
msgstr "MEC Email"
|
1648 |
|
1649 |
+
#: app/features/events.php:2446 app/features/events.php:2535
|
1650 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1651 |
+
#: app/features/mec/single.php:190 app/libraries/main.php:3337
|
1652 |
msgid "Text"
|
1653 |
msgstr "Text"
|
1654 |
|
1655 |
+
#: app/features/events.php:2449 app/features/events.php:2538
|
1656 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1657 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1658 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1659 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1660 |
+
#: app/libraries/main.php:3540
|
1661 |
msgid "Tel"
|
1662 |
msgstr "Tel"
|
1663 |
|
1664 |
+
#: app/features/events.php:2450 app/features/mec/booking.php:648
|
1665 |
+
#: app/libraries/main.php:3482
|
1666 |
msgid "File"
|
1667 |
msgstr "Soubor"
|
1668 |
|
1669 |
+
#: app/features/events.php:2451 app/features/events.php:2539
|
1670 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1671 |
+
#: app/features/mec/single.php:195 app/libraries/main.php:3569
|
1672 |
msgid "Textarea"
|
1673 |
msgstr "Plocha textu"
|
1674 |
|
1675 |
+
#: app/features/events.php:2452 app/features/events.php:2540
|
1676 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1677 |
+
#: app/features/mec/single.php:197 app/libraries/main.php:3621
|
1678 |
msgid "Checkboxes"
|
1679 |
msgstr "Zatržítko"
|
1680 |
|
1681 |
+
#: app/features/events.php:2453 app/features/events.php:2541
|
1682 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1683 |
+
#: app/features/mec/single.php:198 app/libraries/main.php:3667
|
1684 |
msgid "Radio Buttons"
|
1685 |
msgstr "Přepínače"
|
1686 |
|
1687 |
+
#: app/features/events.php:2454 app/features/events.php:2542
|
1688 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1689 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1690 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1692 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1693 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1694 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1695 |
+
#: app/features/mec/meta_boxes/search_form.php:105
|
1696 |
+
#: app/features/mec/meta_boxes/search_form.php:112
|
1697 |
+
#: app/features/mec/meta_boxes/search_form.php:120
|
1698 |
+
#: app/features/mec/meta_boxes/search_form.php:127
|
1699 |
+
#: app/features/mec/meta_boxes/search_form.php:134
|
1700 |
+
#: app/features/mec/meta_boxes/search_form.php:141
|
1701 |
+
#: app/features/mec/meta_boxes/search_form.php:176
|
1702 |
+
#: app/features/mec/meta_boxes/search_form.php:183
|
1703 |
+
#: app/features/mec/meta_boxes/search_form.php:191
|
1704 |
+
#: app/features/mec/meta_boxes/search_form.php:198
|
1705 |
+
#: app/features/mec/meta_boxes/search_form.php:205
|
1706 |
+
#: app/features/mec/meta_boxes/search_form.php:212
|
1707 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
1708 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
1709 |
+
#: app/features/mec/meta_boxes/search_form.php:262
|
1710 |
+
#: app/features/mec/meta_boxes/search_form.php:269
|
1711 |
+
#: app/features/mec/meta_boxes/search_form.php:276
|
1712 |
+
#: app/features/mec/meta_boxes/search_form.php:283
|
1713 |
+
#: app/features/mec/meta_boxes/search_form.php:297
|
1714 |
+
#: app/features/mec/meta_boxes/search_form.php:317
|
1715 |
+
#: app/features/mec/meta_boxes/search_form.php:324
|
1716 |
+
#: app/features/mec/meta_boxes/search_form.php:332
|
1717 |
+
#: app/features/mec/meta_boxes/search_form.php:339
|
1718 |
+
#: app/features/mec/meta_boxes/search_form.php:346
|
1719 |
+
#: app/features/mec/meta_boxes/search_form.php:353
|
1720 |
+
#: app/features/mec/meta_boxes/search_form.php:367
|
1721 |
+
#: app/features/mec/meta_boxes/search_form.php:387
|
1722 |
+
#: app/features/mec/meta_boxes/search_form.php:394
|
1723 |
+
#: app/features/mec/meta_boxes/search_form.php:402
|
1724 |
+
#: app/features/mec/meta_boxes/search_form.php:409
|
1725 |
+
#: app/features/mec/meta_boxes/search_form.php:416
|
1726 |
+
#: app/features/mec/meta_boxes/search_form.php:423
|
1727 |
+
#: app/features/mec/meta_boxes/search_form.php:437
|
1728 |
+
#: app/features/mec/meta_boxes/search_form.php:457
|
1729 |
+
#: app/features/mec/meta_boxes/search_form.php:464
|
1730 |
+
#: app/features/mec/meta_boxes/search_form.php:472
|
1731 |
+
#: app/features/mec/meta_boxes/search_form.php:479
|
1732 |
+
#: app/features/mec/meta_boxes/search_form.php:486
|
1733 |
+
#: app/features/mec/meta_boxes/search_form.php:493
|
1734 |
+
#: app/features/mec/meta_boxes/search_form.php:520
|
1735 |
+
#: app/features/mec/meta_boxes/search_form.php:527
|
1736 |
+
#: app/features/mec/meta_boxes/search_form.php:535
|
1737 |
+
#: app/features/mec/meta_boxes/search_form.php:542
|
1738 |
+
#: app/features/mec/meta_boxes/search_form.php:549
|
1739 |
+
#: app/features/mec/meta_boxes/search_form.php:556
|
1740 |
+
#: app/features/mec/meta_boxes/search_form.php:570
|
1741 |
+
#: app/features/mec/meta_boxes/search_form.php:590
|
1742 |
+
#: app/features/mec/meta_boxes/search_form.php:597
|
1743 |
+
#: app/features/mec/meta_boxes/search_form.php:605
|
1744 |
+
#: app/features/mec/meta_boxes/search_form.php:612
|
1745 |
+
#: app/features/mec/meta_boxes/search_form.php:619
|
1746 |
+
#: app/features/mec/meta_boxes/search_form.php:626
|
1747 |
+
#: app/features/mec/meta_boxes/search_form.php:640
|
1748 |
+
#: app/features/mec/meta_boxes/search_form.php:660
|
1749 |
+
#: app/features/mec/meta_boxes/search_form.php:667
|
1750 |
+
#: app/features/mec/meta_boxes/search_form.php:675
|
1751 |
+
#: app/features/mec/meta_boxes/search_form.php:682
|
1752 |
+
#: app/features/mec/meta_boxes/search_form.php:689
|
1753 |
+
#: app/features/mec/meta_boxes/search_form.php:696
|
1754 |
+
#: app/features/mec/meta_boxes/search_form.php:710
|
1755 |
+
#: app/features/mec/meta_boxes/search_form.php:766
|
1756 |
+
#: app/features/mec/meta_boxes/search_form.php:773
|
1757 |
+
#: app/features/mec/meta_boxes/search_form.php:781
|
1758 |
+
#: app/features/mec/meta_boxes/search_form.php:788
|
1759 |
+
#: app/features/mec/meta_boxes/search_form.php:795
|
1760 |
+
#: app/features/mec/meta_boxes/search_form.php:802
|
1761 |
+
#: app/features/mec/meta_boxes/search_form.php:816
|
1762 |
+
#: app/features/mec/single.php:199 app/libraries/main.php:3713
|
|
|
|
|
|
|
1763 |
msgid "Dropdown"
|
1764 |
msgstr "Rozbalovací"
|
1765 |
|
1766 |
+
#: app/features/events.php:2455 app/features/events.php:2543
|
1767 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1768 |
+
#: app/libraries/main.php:3762
|
1769 |
msgid "Agreement"
|
1770 |
msgstr "Smlouva"
|
1771 |
|
1772 |
+
#: app/features/events.php:2456 app/features/events.php:2544
|
1773 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1774 |
+
#: app/features/mec/single.php:196 app/libraries/main.php:3598
|
1775 |
msgid "Paragraph"
|
1776 |
msgstr "Paragraf"
|
1777 |
|
1778 |
+
#: app/features/events.php:2505 app/features/mec/booking.php:707
|
1779 |
#, fuzzy
|
1780 |
#| msgid "Required Field"
|
1781 |
msgid "Fixed Fields"
|
1782 |
msgstr "Požadovaná pole"
|
1783 |
|
1784 |
+
#: app/features/events.php:3372 app/features/events.php:3390
|
1785 |
+
#: app/features/events.php:3408 app/features/events.php:3426
|
1786 |
#, php-format
|
1787 |
msgid "Show all %s"
|
1788 |
msgstr "Ukázat všechny %s"
|
1789 |
|
1790 |
+
#: app/features/events.php:3372
|
1791 |
msgid "labels"
|
1792 |
msgstr "štítky"
|
1793 |
|
1794 |
+
#: app/features/events.php:3390
|
1795 |
msgid "locations"
|
1796 |
msgstr "umístění"
|
1797 |
|
1798 |
+
#: app/features/events.php:3408
|
1799 |
msgid "organizers"
|
1800 |
msgstr "organizátoři"
|
1801 |
|
1802 |
+
#: app/features/events.php:3442
|
1803 |
#, fuzzy
|
1804 |
#| msgid "Attendees Limit"
|
1805 |
msgid "Attendees List"
|
1806 |
msgstr "Limit účastníků"
|
1807 |
|
1808 |
+
#: app/features/events.php:3472 app/features/events.php:3662
|
1809 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1810 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1811 |
+
#: app/features/locations.php:323 app/features/locations.php:325
|
1812 |
+
#: app/features/locations.php:334
|
1813 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1814 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1815 |
+
#: app/features/mec/meta_boxes/search_form.php:109
|
1816 |
+
#: app/features/mec/meta_boxes/search_form.php:180
|
1817 |
+
#: app/features/mec/meta_boxes/search_form.php:251
|
1818 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
1819 |
+
#: app/features/mec/meta_boxes/search_form.php:391
|
1820 |
+
#: app/features/mec/meta_boxes/search_form.php:461
|
1821 |
+
#: app/features/mec/meta_boxes/search_form.php:524
|
1822 |
+
#: app/features/mec/meta_boxes/search_form.php:594
|
1823 |
+
#: app/features/mec/meta_boxes/search_form.php:664
|
1824 |
+
#: app/features/mec/meta_boxes/search_form.php:770
|
1825 |
+
#: app/features/mec/settings.php:1054 app/features/mec/single.php:339
|
1826 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1827 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1828 |
+
#: app/libraries/main.php:2688 app/libraries/main.php:6490
|
1829 |
+
#: app/libraries/main.php:6544 app/libraries/skins.php:964
|
1830 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1831 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1832 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1834 |
msgid "Location"
|
1835 |
msgstr "Umístění"
|
1836 |
|
1837 |
+
#: app/features/events.php:3477
|
1838 |
msgid "Repeat"
|
1839 |
msgstr "Opakovat"
|
1840 |
|
1841 |
+
#: app/features/events.php:3478
|
1842 |
msgid "Author"
|
1843 |
msgstr "Autor"
|
1844 |
|
1845 |
+
#: app/features/events.php:3599 app/features/events.php:3600
|
1846 |
#, fuzzy
|
1847 |
#| msgid "iCal Export"
|
1848 |
msgid "iCal / Outlook Export"
|
1849 |
msgstr "iCal Export"
|
1850 |
|
1851 |
+
#: app/features/events.php:3602 app/features/events.php:3603
|
1852 |
msgid "CSV Export"
|
1853 |
msgstr "CSV Export"
|
1854 |
|
1855 |
+
#: app/features/events.php:3605 app/features/events.php:3606
|
1856 |
msgid "MS Excel Export"
|
1857 |
msgstr "MS Excel Export"
|
1858 |
|
1859 |
+
#: app/features/events.php:3608 app/features/events.php:3609
|
1860 |
msgid "XML Export"
|
1861 |
msgstr "XML Export"
|
1862 |
|
1863 |
+
#: app/features/events.php:3611 app/features/events.php:3612
|
1864 |
msgid "JSON Export"
|
1865 |
msgstr "JSON Export"
|
1866 |
|
1867 |
+
#: app/features/events.php:3614 app/features/events.php:3615
|
1868 |
+
#: app/features/events.php:3771
|
1869 |
msgid "Duplicate"
|
1870 |
msgstr "Duplikát"
|
1871 |
|
1872 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1873 |
+
#: app/features/ix.php:4034
|
1874 |
msgid "Link"
|
1875 |
msgstr "Odkaz"
|
1876 |
|
1877 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1878 |
+
#: app/features/ix.php:4034 app/features/locations.php:110
|
1879 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1880 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1881 |
+
#: app/features/mec/meta_boxes/search_form.php:145
|
1882 |
+
#: app/features/mec/meta_boxes/search_form.php:216
|
1883 |
+
#: app/features/mec/meta_boxes/search_form.php:287
|
1884 |
+
#: app/features/mec/meta_boxes/search_form.php:357
|
1885 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
1886 |
+
#: app/features/mec/meta_boxes/search_form.php:497
|
1887 |
+
#: app/features/mec/meta_boxes/search_form.php:560
|
1888 |
+
#: app/features/mec/meta_boxes/search_form.php:630
|
1889 |
+
#: app/features/mec/meta_boxes/search_form.php:700
|
1890 |
+
#: app/features/mec/meta_boxes/search_form.php:806
|
1891 |
msgid "Address"
|
1892 |
msgstr "Adresa"
|
1893 |
|
1894 |
+
#: app/features/events.php:3662
|
1895 |
#, php-format
|
1896 |
msgid "%s Tel"
|
1897 |
msgstr "%s Tel"
|
1898 |
|
1899 |
+
#: app/features/events.php:3662
|
1900 |
#, php-format
|
1901 |
msgid "%s Email"
|
1902 |
msgstr "%s Email"
|
1903 |
|
1904 |
# v kontextu
|
1905 |
+
#: app/features/events.php:3662 app/features/fes/form.php:850
|
1906 |
+
#: app/features/mec/settings.php:776
|
1907 |
msgid "Featured Image"
|
1908 |
msgstr "Hlavní obrázek"
|
1909 |
|
1910 |
+
#: app/features/events.php:3991 app/features/fes.php:243
|
1911 |
+
#: app/features/profile/profile.php:183 app/libraries/main.php:2772
|
1912 |
+
#: app/libraries/main.php:6524
|
1913 |
msgid "Ticket"
|
1914 |
msgstr "Vstupenka"
|
1915 |
|
1916 |
+
#: app/features/events.php:3994 app/features/profile/profile.php:186
|
1917 |
msgid "Variations"
|
1918 |
msgstr "Variace"
|
1919 |
|
1920 |
+
#: app/features/events.php:4009 app/features/fes.php:317
|
1921 |
msgid "Unknown"
|
1922 |
msgstr "Neznámý"
|
1923 |
|
1924 |
+
#: app/features/events.php:4035
|
1925 |
msgid ""
|
1926 |
"If you want to send an email, first select your attendees and then click in "
|
1927 |
"the button below, please."
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: app/features/events.php:4035 app/features/mec/report.php:58
|
1931 |
#, fuzzy
|
1932 |
#| msgid "Organizer Email"
|
1933 |
msgid "Send Email"
|
1934 |
msgstr "Organizátor Email"
|
1935 |
|
1936 |
+
#: app/features/events.php:4039
|
1937 |
#, fuzzy
|
1938 |
#| msgid "Attendees Form"
|
1939 |
msgid "No Attendees Found!"
|
1946 |
|
1947 |
#: app/features/fes.php:94 app/features/fes.php:175
|
1948 |
#: app/features/login/login.php:19 app/features/profile.php:74
|
1949 |
+
#: app/features/userevents.php:58
|
1950 |
msgid "Login"
|
1951 |
msgstr "Přihlásit"
|
1952 |
|
1953 |
#: app/features/fes.php:94 app/features/fes.php:175 app/features/profile.php:74
|
1954 |
+
#: app/features/userevents.php:58
|
1955 |
msgid "Register"
|
1956 |
msgstr "Registrovat"
|
1957 |
|
1981 |
msgid "Order Time"
|
1982 |
msgstr "Konec"
|
1983 |
|
1984 |
+
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2720
|
1985 |
+
#: app/libraries/main.php:2835
|
1986 |
msgid "Transaction ID"
|
1987 |
msgstr "ID transakce"
|
1988 |
|
1990 |
msgid "Total Price"
|
1991 |
msgstr "Celková cena"
|
1992 |
|
1993 |
+
#: app/features/fes.php:243 app/libraries/main.php:2830
|
1994 |
#, fuzzy
|
1995 |
#| msgid "Payment Gateways"
|
1996 |
msgid "Gateway"
|
2074 |
msgid "Go back to events list"
|
2075 |
msgstr "Přejít zpět na seznam událostí"
|
2076 |
|
2077 |
+
#: app/features/fes/form.php:264 app/features/mec/settings.php:908
|
2078 |
+
#: app/features/mec/settings.php:984
|
2079 |
msgid "Excerpt"
|
2080 |
msgstr ""
|
2081 |
|
2177 |
#: app/features/fes/form.php:891 app/features/labels.php:61
|
2178 |
#: app/features/labels.php:221 app/features/mec.php:460
|
2179 |
#: app/features/mec/meta_boxes/filter.php:72
|
2180 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6487
|
2181 |
+
#: app/libraries/main.php:6541 app/skins/single.php:1156
|
2182 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
2183 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
2184 |
msgid "Labels"
|
2195 |
msgstr "Vložte požadované tagy oddělené čárkami."
|
2196 |
|
2197 |
#: app/features/fes/form.php:959 app/features/mec.php:467
|
2198 |
+
#: app/features/mec/modules.php:51 app/features/mec/settings.php:818
|
2199 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2200 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2201 |
+
#: app/libraries/main.php:608 app/libraries/main.php:6493
|
2202 |
+
#: app/libraries/main.php:6547 app/modules/speakers/details.php:18
|
2203 |
msgid "Speakers"
|
2204 |
msgstr "Řečníci"
|
2205 |
|
2213 |
msgid "Separate names with commas: Justin, Chris"
|
2214 |
msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
|
2215 |
|
2216 |
+
#: app/features/fes/form.php:1003 app/modules/booking/steps/form.php:349
|
2217 |
msgid "Submit"
|
2218 |
msgstr "Potvrdit"
|
2219 |
|
2251 |
msgstr "MEC Import / Export"
|
2252 |
|
2253 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2254 |
+
#: app/libraries/main.php:858
|
2255 |
msgid "Import / Export"
|
2256 |
msgstr "Import / Export"
|
2257 |
|
2271 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2272 |
msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
|
2273 |
|
2274 |
+
#: app/features/ix.php:265 app/libraries/main.php:6772
|
2275 |
+
#: app/libraries/main.php:6792
|
2276 |
msgid "Confirmed"
|
2277 |
msgstr "Potvrzeno"
|
2278 |
|
2279 |
+
#: app/features/ix.php:266 app/libraries/main.php:6773
|
2280 |
+
#: app/libraries/main.php:6800
|
2281 |
msgid "Rejected"
|
2282 |
msgstr "Odmítnuto"
|
2283 |
|
2284 |
#: app/features/ix.php:270 app/features/mec/booking.php:1011
|
2285 |
#: app/features/mec/booking.php:1033 app/features/mec/modules.php:440
|
2286 |
#: app/features/mec/modules.php:462 app/features/mec/notifications.php:1312
|
2287 |
+
#: app/features/mec/notifications.php:1334 app/features/mec/settings.php:1418
|
2288 |
+
#: app/features/mec/settings.php:1440 app/features/mec/single.php:446
|
2289 |
+
#: app/features/mec/single.php:468 app/libraries/main.php:6820
|
2290 |
msgid "Verified"
|
2291 |
msgstr "Ověřeno"
|
2292 |
|
2293 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2294 |
+
#: app/features/labels.php:143 app/libraries/main.php:6821
|
2295 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2296 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2297 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
2327 |
msgid "The events are imported successfully!"
|
2328 |
msgstr "Události byly úspěšně importovány!"
|
2329 |
|
2330 |
+
#: app/features/ix.php:1178
|
2331 |
msgid "Third Party plugin is not installed and activated!"
|
2332 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
2333 |
|
2334 |
+
#: app/features/ix.php:1202
|
2335 |
msgid "Third Party plugin is invalid!"
|
2336 |
msgstr "Plugin třetí strany je neplatný!"
|
2337 |
|
2338 |
+
#: app/features/ix.php:3177 app/features/ix.php:3235
|
2339 |
#, fuzzy
|
2340 |
#| msgid "Both of API key and Calendar ID are required!"
|
2341 |
msgid "API key and Calendar ID are required!"
|
2342 |
msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
|
2343 |
|
2344 |
+
#: app/features/ix.php:3230 app/features/ix.php:3675 app/features/ix.php:4410
|
2345 |
#, fuzzy
|
2346 |
#| msgid "Please select some events to import!"
|
2347 |
msgid "Please select events to import!"
|
2348 |
msgstr "Vyberte události, které chcete importovat!"
|
2349 |
|
2350 |
+
#: app/features/ix.php:3617 app/features/ix.php:3680
|
2351 |
#, fuzzy
|
2352 |
#| msgid "Both of API key and Group URL are required!"
|
2353 |
msgid "API key and Group URL are required!"
|
2354 |
msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
|
2355 |
|
2356 |
+
#: app/features/ix.php:3919
|
2357 |
msgid "Check at Meetup"
|
2358 |
msgstr "Ověřit Meetup"
|
2359 |
|
2360 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
2361 |
msgid "Organizer Tel"
|
2362 |
msgstr "Organizátor Tel"
|
2363 |
|
2364 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
2365 |
msgid "Organizer Email"
|
2366 |
msgstr "Organizátor Email"
|
2367 |
|
2368 |
# Client Secret dle kontextu
|
2369 |
+
#: app/features/ix.php:4110
|
2370 |
#, fuzzy
|
2371 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2372 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2373 |
msgstr ""
|
2374 |
"Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
|
2375 |
|
2376 |
+
#: app/features/ix.php:4133
|
2377 |
#, fuzzy, php-format
|
2378 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2379 |
msgid "All seems good! Please click %s to authenticate your app."
|
2380 |
msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
|
2381 |
|
2382 |
+
#: app/features/ix.php:4133 app/features/mec/settings.php:1307
|
2383 |
msgid "here"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: app/features/ix.php:4187
|
2387 |
#, fuzzy
|
2388 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2389 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2391 |
"Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
|
2392 |
"povinné!"
|
2393 |
|
2394 |
+
#: app/features/ix.php:4332
|
2395 |
#, fuzzy, php-format
|
2396 |
#| msgid "%s events added to Google Calendar successfully."
|
2397 |
msgid "%s events added to Google Calendar with success."
|
2398 |
msgstr "% s události byly přidané do Google kalendáře úspěšně."
|
2399 |
|
2400 |
+
#: app/features/ix.php:4333
|
2401 |
#, fuzzy, php-format
|
2402 |
#| msgid "%s previously added events get updated."
|
2403 |
msgid "%s Updated previously added events."
|
2404 |
msgstr "% s dříve přidané události byly aktualizovány."
|
2405 |
|
2406 |
+
#: app/features/ix.php:4334
|
2407 |
#, php-format
|
2408 |
msgid "%s events failed to add for following reasons: %s"
|
2409 |
msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
|
2410 |
|
2411 |
+
#: app/features/ix.php:4366
|
2412 |
msgid "Please insert your Facebook page's link."
|
2413 |
msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
|
2414 |
|
2415 |
+
#: app/features/ix.php:4377 app/features/ix.php:4419
|
2416 |
#, fuzzy
|
2417 |
#| msgid ""
|
2418 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
2424 |
"Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
|
2425 |
"poskytněte nám platný odkaz na stránku Facebooku."
|
2426 |
|
2427 |
+
#: app/features/ix.php:4414
|
2428 |
msgid "Please insert your facebook page's link."
|
2429 |
msgstr "Vložte prosím odkaz na svou facebookovou stránku."
|
2430 |
|
2598 |
|
2599 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1013
|
2600 |
#: app/features/mec/modules.php:442 app/features/mec/notifications.php:1314
|
2601 |
+
#: app/features/mec/settings.php:1420 app/features/mec/single.php:448
|
2602 |
msgid "Checking ..."
|
2603 |
msgstr "Ověřování ..."
|
2604 |
|
3096 |
msgid "Slug"
|
3097 |
msgstr "Slug"
|
3098 |
|
3099 |
+
#: app/features/labels.php:221 app/features/locations.php:323
|
3100 |
#, php-format
|
3101 |
msgid "Event %s"
|
3102 |
msgstr "Událost %s"
|
3103 |
|
3104 |
#: app/features/locations.php:59 app/features/mec.php:461
|
3105 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
3106 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6489
|
3107 |
+
#: app/libraries/main.php:6543
|
3108 |
msgid "Locations"
|
3109 |
msgstr "Umístění"
|
3110 |
|
3113 |
msgstr "Vložit adresu místa"
|
3114 |
|
3115 |
#: app/features/locations.php:130 app/features/locations.php:196
|
3116 |
+
#: app/features/locations.php:368 app/features/popup/event.php:147
|
3117 |
msgid "Latitude"
|
3118 |
msgstr "Zeměpisná šířka"
|
3119 |
|
3122 |
msgstr "Zeměpisná šířka (volitelné)"
|
3123 |
|
3124 |
#: app/features/locations.php:138 app/features/locations.php:200
|
3125 |
+
#: app/features/locations.php:369 app/features/popup/event.php:148
|
3126 |
msgid "Longitude"
|
3127 |
msgstr "Zeměpisná délka"
|
3128 |
|
3131 |
msgstr "Zeměpisná délka (volitelné)"
|
3132 |
|
3133 |
#: app/features/locations.php:146 app/features/locations.php:204
|
3134 |
+
#: app/features/locations.php:379
|
3135 |
#, fuzzy
|
3136 |
#| msgid "Locations"
|
3137 |
msgid "Location Website"
|
3156 |
msgstr "Nahrát / přidat obrázek"
|
3157 |
|
3158 |
#: app/features/locations.php:161 app/features/locations.php:213
|
3159 |
+
#: app/features/locations.php:387 app/features/locations.php:394
|
3160 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
3161 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
3162 |
#: app/features/speakers.php:181 app/features/speakers.php:232
|
3163 |
msgid "Remove image"
|
3164 |
msgstr "Odebrat obrázek"
|
3165 |
|
3166 |
+
#: app/features/locations.php:326 app/features/popup/event.php:117
|
3167 |
msgid "Hide location"
|
3168 |
msgstr "Skrýt místo"
|
3169 |
|
3170 |
+
#: app/features/locations.php:327 app/features/popup/event.php:118
|
3171 |
msgid "Insert a new location"
|
3172 |
msgstr "Vložit nové místo"
|
3173 |
|
3174 |
+
#: app/features/locations.php:335
|
3175 |
msgid "Choose one of saved locations or insert new one below."
|
3176 |
msgstr "Vyberte jedno z uložených míst nebo vložte nové."
|
3177 |
|
3178 |
+
#: app/features/locations.php:342 app/features/popup/event.php:139
|
3179 |
msgid "Location Name"
|
3180 |
msgstr "Název místa"
|
3181 |
|
3182 |
+
#: app/features/locations.php:343 app/features/popup/event.php:140
|
3183 |
msgid "eg. City Hall"
|
3184 |
msgstr "např. Radnice"
|
3185 |
|
3186 |
+
#: app/features/locations.php:346 app/features/mec/settings.php:806
|
3187 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3188 |
msgid "Event Location"
|
3189 |
msgstr "Místo události"
|
3190 |
|
3191 |
+
#: app/features/locations.php:347 app/features/popup/event.php:144
|
3192 |
msgid "eg. City hall, Manhattan, New York"
|
3193 |
msgstr "např. Radnice, Dominikánská 2, Brno"
|
3194 |
|
3195 |
+
#: app/features/locations.php:372 app/features/popup/event.php:151
|
3196 |
msgid "Latitude/Longitude"
|
3197 |
msgstr "Zeměpisná šířka / délka"
|
3198 |
|
3199 |
+
#: app/features/locations.php:373 app/features/popup/event.php:152
|
3200 |
msgid ""
|
3201 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
3202 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
3210 |
"místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
|
3211 |
"na mapě a vyhledejte souřadnice délky a šířky."
|
3212 |
|
3213 |
+
#: app/features/locations.php:373 app/features/popup/event.php:152
|
3214 |
msgid "Get Latitude and Longitude"
|
3215 |
msgstr "Získejte šířku a délku"
|
3216 |
|
3217 |
+
#: app/features/locations.php:386 app/features/organizers.php:298
|
3218 |
#: app/features/popup/event.php:202
|
3219 |
msgid "Choose image"
|
3220 |
msgstr "Vyberte obrázek"
|
3221 |
|
3222 |
+
#: app/features/locations.php:400 app/features/popup/event.php:135
|
3223 |
msgid "Don't show map in single event page"
|
3224 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
3225 |
|
3226 |
+
#: app/features/locations.php:403 app/libraries/main.php:6527
|
3227 |
+
#: app/libraries/main.php:6574
|
3228 |
msgid "Other Locations"
|
3229 |
msgstr "Další místa"
|
3230 |
|
3231 |
+
#: app/features/locations.php:405
|
3232 |
msgid ""
|
3233 |
"You can select extra locations in addition to main location if you like."
|
3234 |
msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
|
3245 |
msgid "Login successful, redirecting..."
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: app/features/login/login.php:11 app/modules/booking/steps/form.php:333
|
3249 |
msgid "Password"
|
3250 |
msgstr ""
|
3251 |
|
3312 |
#: app/features/mec.php:462 app/features/mec/dashboard.php:286
|
3313 |
#: app/features/mec/meta_boxes/filter.php:71
|
3314 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3315 |
+
#: app/libraries/main.php:6491 app/libraries/main.php:6545
|
3316 |
msgid "Organizers"
|
3317 |
msgstr "Organizátoři"
|
3318 |
|
3351 |
msgid "MEC - Go Pro"
|
3352 |
msgstr "MEC - podpora"
|
3353 |
|
3354 |
+
#: app/features/mec.php:479 app/features/mec.php:1288
|
3355 |
#: app/features/mec/go-pro.php:9
|
3356 |
msgid "Go Pro"
|
3357 |
msgstr ""
|
3392 |
msgid "Search Form"
|
3393 |
msgstr "Vyhledávací formulář"
|
3394 |
|
3395 |
+
#: app/features/mec.php:989
|
3396 |
msgid "Display content's images as Popup"
|
3397 |
msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
|
3398 |
|
3399 |
+
#: app/features/mec.php:1003 app/features/popup/shortcode.php:473
|
3400 |
msgid "Single Event Display Method"
|
3401 |
msgstr "Metoda zobrazení jedné události"
|
3402 |
|
3403 |
+
#: app/features/mec.php:1010 app/features/popup/shortcode.php:485
|
3404 |
#, fuzzy
|
3405 |
#| msgid "Modal 1"
|
3406 |
msgid "Modal Popup"
|
3407 |
msgstr "Modal 1"
|
3408 |
|
3409 |
+
#: app/features/mec.php:1011
|
3410 |
#, fuzzy
|
3411 |
#| msgid "Disabled"
|
3412 |
msgid "Disable Link"
|
3413 |
msgstr "Zakázaný"
|
3414 |
|
3415 |
+
#: app/features/mec.php:1024
|
3416 |
#, fuzzy
|
3417 |
#| msgid "Booking Options"
|
3418 |
msgid "Booking Button / Icon"
|
3419 |
msgstr "Možnosti rezervace"
|
3420 |
|
3421 |
+
#: app/features/mec.php:1037
|
3422 |
#, fuzzy
|
3423 |
#| msgid "Organizers"
|
3424 |
msgid "Display Organizers"
|
3425 |
msgstr "Organizátoři"
|
3426 |
|
3427 |
+
#: app/features/mec.php:1194 app/features/mec.php:1367
|
3428 |
msgid "Total Bookings"
|
3429 |
msgstr "Celkový počet rezervací"
|
3430 |
|
3431 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
3432 |
msgid "Modern Events Calendar (Lite)"
|
3433 |
msgstr "Modern Events Calendar (Lite)"
|
3434 |
|
3435 |
+
#: app/features/mec.php:1219 app/features/mec/dashboard.php:297
|
3436 |
+
#: app/features/mec/settings.php:456
|
3437 |
msgid "Upcoming Events"
|
3438 |
msgstr "Nadcházející události"
|
3439 |
|
3440 |
+
#: app/features/mec.php:1274
|
3441 |
#, fuzzy
|
3442 |
#| msgid "Update %s"
|
3443 |
msgid "News & Updates"
|
3444 |
msgstr "Aktualizovat %s"
|
3445 |
|
3446 |
+
#: app/features/mec.php:1287
|
3447 |
msgid "Blog"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: app/features/mec.php:1287
|
3451 |
msgid "Help"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: app/features/mec.php:1342
|
3455 |
#, php-format
|
3456 |
msgid "Total Sells (%s)"
|
3457 |
msgstr "Celkový prodej %s"
|
3458 |
|
3459 |
+
#: app/features/mec.php:1376
|
3460 |
msgid "This Month"
|
3461 |
msgstr "Tento měsíc"
|
3462 |
|
3463 |
+
#: app/features/mec.php:1382
|
3464 |
msgid "Last Month"
|
3465 |
msgstr "Minulý měsíc"
|
3466 |
|
3468 |
msgid "This Year"
|
3469 |
msgstr "Tento rok"
|
3470 |
|
3471 |
+
#: app/features/mec.php:1394
|
3472 |
msgid "Last Year"
|
3473 |
msgstr "Minulý rok"
|
3474 |
|
3475 |
+
#: app/features/mec.php:1414
|
3476 |
msgid "Bar"
|
3477 |
msgstr "Pruh"
|
3478 |
|
3479 |
+
#: app/features/mec.php:1415
|
3480 |
msgid "Line"
|
3481 |
msgstr "Čára"
|
3482 |
|
3483 |
+
#: app/features/mec.php:1417
|
3484 |
msgid "Filter"
|
3485 |
msgstr "Filtr"
|
3486 |
|
3487 |
+
#: app/features/mec.php:1441
|
3488 |
#, fuzzy
|
3489 |
#| msgid "Modern Events Calendar"
|
3490 |
msgid "Print Calendar"
|
3491 |
msgstr "Moderní kalendář událostí"
|
3492 |
|
3493 |
+
#: app/features/mec.php:1456
|
3494 |
#, fuzzy
|
3495 |
#| msgid "Display Event Price"
|
3496 |
msgid "Display Events"
|
3518 |
|
3519 |
#: app/features/mec/booking.php:78 app/features/mec/messages.php:13
|
3520 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3521 |
+
#: app/features/mec/settings.php:47 app/features/mec/single.php:19
|
3522 |
#: app/features/mec/styling.php:35
|
3523 |
msgid "Search..."
|
3524 |
msgstr "Vyhledávání ..."
|
3535 |
#: app/features/mec/notifications.php:1213
|
3536 |
#: app/features/mec/notifications.php:1225
|
3537 |
#: app/features/mec/notifications.php:1331
|
3538 |
+
#: app/features/mec/notifications.php:1345 app/features/mec/settings.php:49
|
3539 |
+
#: app/features/mec/settings.php:1369 app/features/mec/settings.php:1379
|
3540 |
+
#: app/features/mec/settings.php:1437 app/features/mec/settings.php:1451
|
3541 |
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3542 |
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3543 |
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
3649 |
msgstr "Registrační tlačítko"
|
3650 |
|
3651 |
#: app/features/mec/booking.php:168 app/features/mec/booking.php:176
|
3652 |
+
#: app/modules/booking/steps/form.php:327
|
3653 |
#, fuzzy
|
3654 |
#| msgid "Register Button"
|
3655 |
msgid "Registration"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
#: app/features/mec/booking.php:267 app/features/mec/booking.php:269
|
3759 |
+
#: app/features/mec/booking.php:279 app/features/mec/settings.php:674
|
3760 |
+
#: app/features/mec/settings.php:684
|
3761 |
msgid "Thank You Page"
|
3762 |
msgstr "Stránka s poděkováním"
|
3763 |
|
3770 |
"vypnout, ponechte ji prázdnou."
|
3771 |
|
3772 |
#: app/features/mec/booking.php:287 app/features/mec/booking.php:292
|
3773 |
+
#: app/features/mec/settings.php:707 app/features/mec/settings.php:712
|
3774 |
msgid "Thank You Page Time Interval"
|
3775 |
msgstr "Stránka s poděkováním časového intervalu"
|
3776 |
|
3777 |
+
#: app/features/mec/booking.php:289 app/features/mec/settings.php:709
|
3778 |
msgid "2000 mean 2 seconds"
|
3779 |
msgstr "2000 znamená 2 vteřiny"
|
3780 |
|
3781 |
+
#: app/features/mec/booking.php:293 app/features/mec/settings.php:713
|
3782 |
msgid ""
|
3783 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3784 |
"2000 means 2 seconds."
|
3848 |
msgid "Send confirmation email in auto confirmation mode"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: app/features/mec/booking.php:413 app/libraries/main.php:598
|
3852 |
#, fuzzy
|
3853 |
#| msgid "Booking Style"
|
3854 |
msgid "Booking Shortcode"
|
3888 |
"novou nabídku na řídícím panelu > Rezervace"
|
3889 |
|
3890 |
#: app/features/mec/booking.php:447 app/features/mec/booking.php:835
|
3891 |
+
#: app/libraries/main.php:600
|
3892 |
msgid "Taxes / Fees"
|
3893 |
msgstr "Daně / poplatky"
|
3894 |
|
3900 |
msgid "Add Fee"
|
3901 |
msgstr "Přidat poplatek"
|
3902 |
|
3903 |
+
#: app/features/mec/booking.php:524 app/libraries/main.php:601
|
3904 |
msgid "Ticket Variations & Options"
|
3905 |
msgstr "Varianty a možnosti vstupenek"
|
3906 |
|
4051 |
|
4052 |
#: app/features/mec/booking.php:1008 app/features/mec/messages.php:78
|
4053 |
#: app/features/mec/modules.php:437 app/features/mec/notifications.php:1309
|
4054 |
+
#: app/features/mec/settings.php:1415 app/features/mec/single.php:443
|
4055 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:323
|
4056 |
msgid "Saved"
|
4057 |
msgstr "Uloženo"
|
4058 |
|
4059 |
#: app/features/mec/booking.php:1009 app/features/mec/messages.php:79
|
4060 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1310
|
4061 |
+
#: app/features/mec/settings.php:1416 app/features/mec/single.php:444
|
4062 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:324
|
4063 |
msgid "Settings Saved!"
|
4064 |
msgstr "Nastavení uložena!"
|
4065 |
|
4066 |
#: app/features/mec/booking.php:1035 app/features/mec/modules.php:464
|
4067 |
+
#: app/features/mec/notifications.php:1336 app/features/mec/settings.php:1442
|
4068 |
#: app/features/mec/single.php:470
|
4069 |
msgid "Please Refresh Page"
|
4070 |
msgstr "Prosím obnovte stránku"
|
4194 |
msgstr "Stáhnout nastavení"
|
4195 |
|
4196 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4197 |
+
#: app/features/mec/support.php:66 app/libraries/main.php:851
|
4198 |
msgid "Messages"
|
4199 |
msgstr "Zprávy"
|
4200 |
|
4225 |
#: app/features/mec/meta_boxes/display_options.php:953
|
4226 |
#: app/features/mec/meta_boxes/display_options.php:1284
|
4227 |
#: app/features/mec/meta_boxes/display_options.php:1575
|
4228 |
+
#: app/features/mec/settings.php:317 app/features/mec/settings.php:341
|
4229 |
+
#: app/features/mec/settings.php:350 app/features/mec/settings.php:394
|
4230 |
+
#: app/features/mec/settings.php:418 app/features/mec/settings.php:427
|
4231 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4232 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4233 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
4238 |
|
4239 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4240 |
#: app/features/mec/meta_boxes/display_options.php:289
|
4241 |
+
#: app/features/mec/settings.php:342 app/features/mec/settings.php:352
|
4242 |
+
#: app/features/mec/settings.php:419 app/features/mec/settings.php:429
|
4243 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4244 |
msgid "Minimal"
|
4245 |
msgstr "Minimální"
|
4250 |
#: app/features/mec/meta_boxes/display_options.php:955
|
4251 |
#: app/features/mec/meta_boxes/display_options.php:1282
|
4252 |
#: app/features/mec/meta_boxes/display_options.php:1577
|
4253 |
+
#: app/features/mec/settings.php:319 app/features/mec/settings.php:332
|
4254 |
+
#: app/features/mec/settings.php:343 app/features/mec/settings.php:353
|
4255 |
+
#: app/features/mec/settings.php:396 app/features/mec/settings.php:409
|
4256 |
+
#: app/features/mec/settings.php:420 app/features/mec/settings.php:430
|
4257 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4258 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4259 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
4261 |
msgstr "Moderní"
|
4262 |
|
4263 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4264 |
+
#: app/features/mec/settings.php:344 app/features/mec/settings.php:421
|
4265 |
#: app/features/popup/shortcode.php:83
|
4266 |
msgid "Standard"
|
4267 |
msgstr "Standardní"
|
4268 |
|
4269 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4270 |
+
#: app/features/mec/settings.php:345 app/features/mec/settings.php:422
|
4271 |
#: app/features/popup/shortcode.php:88
|
4272 |
msgid "Accordion"
|
4273 |
msgstr "Akordeon"
|
4666 |
#: app/features/mec/meta_boxes/display_options.php:954
|
4667 |
#: app/features/mec/meta_boxes/display_options.php:1283
|
4668 |
#: app/features/mec/meta_boxes/display_options.php:1576
|
4669 |
+
#: app/features/mec/settings.php:318 app/features/mec/settings.php:333
|
4670 |
+
#: app/features/mec/settings.php:351 app/features/mec/settings.php:395
|
4671 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:428
|
4672 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4673 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4674 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
4678 |
#: app/features/mec/meta_boxes/display_options.php:291
|
4679 |
#: app/features/mec/meta_boxes/display_options.php:693
|
4680 |
#: app/features/mec/meta_boxes/display_options.php:957
|
4681 |
+
#: app/features/mec/settings.php:321 app/features/mec/settings.php:354
|
4682 |
+
#: app/features/mec/settings.php:398 app/features/mec/settings.php:431
|
4683 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4684 |
#: app/features/popup/shortcode.php:219
|
4685 |
msgid "Simple"
|
4693 |
#: app/features/mec/meta_boxes/display_options.php:293
|
4694 |
#: app/features/mec/meta_boxes/display_options.php:692
|
4695 |
#: app/features/mec/meta_boxes/display_options.php:956
|
4696 |
+
#: app/features/mec/settings.php:320 app/features/mec/settings.php:356
|
4697 |
+
#: app/features/mec/settings.php:397 app/features/mec/settings.php:433
|
4698 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4699 |
#: app/features/popup/shortcode.php:214
|
4700 |
msgid "Novel"
|
4744 |
|
4745 |
#: app/features/mec/meta_boxes/display_options.php:679
|
4746 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4747 |
+
#: app/libraries/main.php:364 app/libraries/main.php:2121
|
4748 |
+
#: app/libraries/main.php:2146
|
4749 |
msgid "List View"
|
4750 |
msgstr "Zobrazení seznamu"
|
4751 |
|
4752 |
#: app/features/mec/meta_boxes/display_options.php:680
|
4753 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4754 |
+
#: app/libraries/main.php:365 app/libraries/main.php:2122
|
4755 |
+
#: app/libraries/main.php:2147
|
4756 |
msgid "Grid View"
|
4757 |
msgstr "Zobrazení mřížky"
|
4758 |
|
4766 |
|
4767 |
#: app/features/mec/meta_boxes/display_options.php:682
|
4768 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4769 |
+
#: app/libraries/main.php:368 app/libraries/main.php:2115
|
4770 |
+
#: app/libraries/main.php:2140
|
4771 |
msgid "Yearly View"
|
4772 |
msgstr "Roční zobrazení"
|
4773 |
|
4778 |
|
4779 |
#: app/features/mec/meta_boxes/display_options.php:684
|
4780 |
#: app/features/mec/meta_boxes/display_options.php:794
|
4781 |
+
#: app/libraries/main.php:371 app/libraries/main.php:2117
|
4782 |
+
#: app/libraries/main.php:2142
|
4783 |
msgid "Weekly View"
|
4784 |
msgstr "Týdenní zobrazení"
|
4785 |
|
4786 |
#: app/features/mec/meta_boxes/display_options.php:685
|
4787 |
#: app/features/mec/meta_boxes/display_options.php:804
|
4788 |
+
#: app/libraries/main.php:370 app/libraries/main.php:2118
|
4789 |
+
#: app/libraries/main.php:2143
|
4790 |
msgid "Daily View"
|
4791 |
msgstr "Denní zobrazení"
|
4792 |
|
5224 |
msgid "Choose your desired authors for filtering the events."
|
5225 |
msgstr "Vyberte požadované autory pro filtrování událostí."
|
5226 |
|
5227 |
+
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:457
|
5228 |
msgid "Expired Events"
|
5229 |
msgstr "Události vypršely"
|
5230 |
|
5294 |
msgstr "Zobrazit vyhledávací formulář"
|
5295 |
|
5296 |
#: app/features/mec/meta_boxes/search_form.php:53
|
5297 |
+
#: app/features/mec/meta_boxes/search_form.php:124
|
5298 |
+
#: app/features/mec/meta_boxes/search_form.php:195
|
5299 |
+
#: app/features/mec/meta_boxes/search_form.php:266
|
5300 |
+
#: app/features/mec/meta_boxes/search_form.php:336
|
5301 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
5302 |
+
#: app/features/mec/meta_boxes/search_form.php:476
|
5303 |
+
#: app/features/mec/meta_boxes/search_form.php:539
|
5304 |
+
#: app/features/mec/meta_boxes/search_form.php:609
|
5305 |
+
#: app/features/mec/meta_boxes/search_form.php:679
|
5306 |
+
#: app/features/mec/meta_boxes/search_form.php:785
|
5307 |
+
#: app/features/mec/settings.php:1067 app/features/mec/single.php:344
|
5308 |
#: app/features/mec/single.php:386 app/features/search.php:86
|
5309 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5310 |
+
#: app/libraries/main.php:6494 app/libraries/main.php:6548
|
5311 |
#: app/libraries/skins.php:1016 app/modules/speakers/details.php:18
|
5312 |
msgid "Speaker"
|
5313 |
msgstr "Řečník"
|
5314 |
|
5315 |
#: app/features/mec/meta_boxes/search_form.php:60
|
5316 |
+
#: app/features/mec/meta_boxes/search_form.php:131
|
5317 |
+
#: app/features/mec/meta_boxes/search_form.php:202
|
5318 |
+
#: app/features/mec/meta_boxes/search_form.php:273
|
5319 |
+
#: app/features/mec/meta_boxes/search_form.php:343
|
5320 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
5321 |
+
#: app/features/mec/meta_boxes/search_form.php:483
|
5322 |
+
#: app/features/mec/meta_boxes/search_form.php:546
|
5323 |
+
#: app/features/mec/meta_boxes/search_form.php:616
|
5324 |
+
#: app/features/mec/meta_boxes/search_form.php:686
|
5325 |
+
#: app/features/mec/meta_boxes/search_form.php:792
|
5326 |
+
#: app/features/mec/settings.php:1074 app/features/mec/single.php:353
|
5327 |
#: app/features/mec/single.php:395 app/features/search.php:92
|
5328 |
#: app/libraries/skins.php:1042
|
5329 |
msgid "Tag"
|
5330 |
msgstr "Štítek"
|
5331 |
|
5332 |
#: app/features/mec/meta_boxes/search_form.php:77
|
5333 |
+
#: app/features/mec/meta_boxes/search_form.php:148
|
5334 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
5335 |
+
#: app/features/mec/meta_boxes/search_form.php:290
|
5336 |
+
#: app/features/mec/meta_boxes/search_form.php:360
|
5337 |
+
#: app/features/mec/meta_boxes/search_form.php:430
|
5338 |
+
#: app/features/mec/meta_boxes/search_form.php:500
|
5339 |
+
#: app/features/mec/meta_boxes/search_form.php:563
|
5340 |
+
#: app/features/mec/meta_boxes/search_form.php:633
|
5341 |
+
#: app/features/mec/meta_boxes/search_form.php:703
|
5342 |
+
#: app/features/mec/meta_boxes/search_form.php:809
|
5343 |
#, fuzzy
|
5344 |
#| msgid "Address"
|
5345 |
msgid "Address Input"
|
5346 |
msgstr "Adresa"
|
5347 |
|
5348 |
#: app/features/mec/meta_boxes/search_form.php:81
|
5349 |
+
#: app/features/mec/meta_boxes/search_form.php:152
|
5350 |
+
#: app/features/mec/meta_boxes/search_form.php:223
|
5351 |
+
#, fuzzy
|
5352 |
+
#| msgid "Filter"
|
5353 |
+
msgid "Date Filter"
|
5354 |
+
msgstr "Filtr"
|
|
|
|
|
|
|
|
|
|
|
5355 |
|
5356 |
+
#: app/features/mec/meta_boxes/search_form.php:84
|
5357 |
+
#: app/features/mec/meta_boxes/search_form.php:155
|
5358 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
5359 |
+
msgid "Year & Month Dropdown"
|
5360 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5361 |
|
5362 |
+
#: app/features/mec/meta_boxes/search_form.php:85
|
5363 |
+
#: app/features/mec/meta_boxes/search_form.php:156
|
5364 |
+
#: app/features/mec/meta_boxes/search_form.php:227
|
5365 |
+
#, fuzzy
|
5366 |
+
#| msgid "Date Format"
|
5367 |
+
msgid "Date Picker"
|
5368 |
+
msgstr "Formát data"
|
5369 |
+
|
5370 |
+
#: app/features/mec/meta_boxes/search_form.php:89
|
5371 |
+
#: app/features/mec/meta_boxes/search_form.php:160
|
5372 |
#: app/features/mec/meta_boxes/search_form.php:231
|
5373 |
#: app/features/mec/meta_boxes/search_form.php:301
|
5374 |
#: app/features/mec/meta_boxes/search_form.php:371
|
5378 |
#: app/features/mec/meta_boxes/search_form.php:644
|
5379 |
#: app/features/mec/meta_boxes/search_form.php:714
|
5380 |
#: app/features/mec/meta_boxes/search_form.php:820
|
5381 |
+
msgid "Text Search"
|
5382 |
+
msgstr "Vyhledat text"
|
5383 |
+
|
5384 |
+
#: app/features/mec/meta_boxes/search_form.php:92
|
5385 |
+
#: app/features/mec/meta_boxes/search_form.php:163
|
5386 |
+
#: app/features/mec/meta_boxes/search_form.php:234
|
5387 |
+
#: app/features/mec/meta_boxes/search_form.php:304
|
5388 |
+
#: app/features/mec/meta_boxes/search_form.php:374
|
5389 |
+
#: app/features/mec/meta_boxes/search_form.php:444
|
5390 |
+
#: app/features/mec/meta_boxes/search_form.php:507
|
5391 |
+
#: app/features/mec/meta_boxes/search_form.php:577
|
5392 |
+
#: app/features/mec/meta_boxes/search_form.php:647
|
5393 |
+
#: app/features/mec/meta_boxes/search_form.php:717
|
5394 |
+
#: app/features/mec/meta_boxes/search_form.php:823
|
5395 |
msgid "Text Input"
|
5396 |
msgstr "Zadávání textu"
|
5397 |
|
5398 |
+
#: app/features/mec/meta_boxes/search_form.php:294
|
5399 |
+
#: app/features/mec/meta_boxes/search_form.php:364
|
5400 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
5401 |
+
#: app/features/mec/meta_boxes/search_form.php:567
|
5402 |
+
#: app/features/mec/meta_boxes/search_form.php:637
|
5403 |
+
#: app/features/mec/meta_boxes/search_form.php:707
|
5404 |
+
#: app/features/mec/meta_boxes/search_form.php:813
|
5405 |
+
msgid "Month Filter"
|
5406 |
+
msgstr "Měsíční filtr"
|
5407 |
+
|
5408 |
+
#: app/features/mec/meta_boxes/search_form.php:726
|
5409 |
+
#: app/features/mec/meta_boxes/search_form.php:732
|
5410 |
+
#: app/features/mec/meta_boxes/search_form.php:738
|
5411 |
+
#: app/features/mec/meta_boxes/search_form.php:744
|
5412 |
+
#: app/features/mec/meta_boxes/search_form.php:750
|
5413 |
+
#: app/features/mec/meta_boxes/search_form.php:756
|
5414 |
msgid "No Search Options"
|
5415 |
msgstr "Žádné možnosti vyhledávání"
|
5416 |
|
5439 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
5440 |
"novou nabídku na řídícím panelu > MEC"
|
5441 |
|
5442 |
+
#: app/features/mec/modules.php:66 app/libraries/main.php:609
|
5443 |
#, fuzzy
|
5444 |
#| msgid "Google Maps Options"
|
5445 |
msgid "Map Options"
|
5463 |
msgid "Google Map Options"
|
5464 |
msgstr "Možnosti Google Maps"
|
5465 |
|
5466 |
+
#: app/features/mec/modules.php:85 app/features/mec/settings.php:1110
|
5467 |
+
#: app/features/mec/settings.php:1123
|
5468 |
msgid "Required!"
|
5469 |
msgstr "Požadované!"
|
5470 |
|
5532 |
msgid "Fullscreen Button"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: app/features/mec/modules.php:176 app/libraries/main.php:610
|
5536 |
msgid "Export Options"
|
5537 |
msgstr "Možnosti exportu"
|
5538 |
|
5547 |
msgid "Google Calendar"
|
5548 |
msgstr "Kalendář Google"
|
5549 |
|
5550 |
+
#: app/features/mec/modules.php:203 app/libraries/main.php:611
|
5551 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5552 |
#: app/widgets/single.php:101
|
5553 |
msgid "Local Time"
|
5559 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
5560 |
"události"
|
5561 |
|
5562 |
+
#: app/features/mec/modules.php:217 app/libraries/main.php:612
|
5563 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5564 |
msgid "QR Code"
|
5565 |
msgstr "QR kód"
|
5569 |
msgstr ""
|
5570 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
5571 |
|
5572 |
+
#: app/features/mec/modules.php:235 app/libraries/main.php:613
|
5573 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5574 |
msgid "Weather"
|
5575 |
msgstr "Počasí"
|
5608 |
msgid "Show social network module"
|
5609 |
msgstr "Zobrazit modul sociální sítě"
|
5610 |
|
5611 |
+
#: app/features/mec/modules.php:308 app/libraries/main.php:615
|
5612 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5613 |
msgid "Next Event"
|
5614 |
msgstr "Další událost"
|
5669 |
msgid "Add events menu to user profile"
|
5670 |
msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
5671 |
|
5672 |
+
#: app/features/mec/modules.php:385 app/libraries/main.php:617
|
5673 |
#, fuzzy
|
5674 |
#| msgid "Mailchimp Integration"
|
5675 |
msgid "LearnDash Integration"
|
6382 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6383 |
msgstr ""
|
6384 |
|
6385 |
+
#: app/features/mec/notifications.php:160 app/libraries/main.php:631
|
6386 |
msgid "Booking Verification"
|
6387 |
msgstr "Ověření rezervace"
|
6388 |
|
6424 |
msgstr "Odkaz na zrušení rezervace."
|
6425 |
|
6426 |
#: app/features/mec/notifications.php:402 app/features/notifications.php:157
|
6427 |
+
#: app/libraries/main.php:630
|
6428 |
#, fuzzy
|
6429 |
#| msgid "Booking Verification"
|
6430 |
msgid "Booking Rejection"
|
6458 |
msgstr "Pošlete rezervační e-mail uživateli"
|
6459 |
|
6460 |
#: app/features/mec/notifications.php:540 app/features/notifications.php:163
|
6461 |
+
#: app/libraries/main.php:632
|
6462 |
msgid "Booking Cancellation"
|
6463 |
msgstr "Zrušení rezervace"
|
6464 |
|
6480 |
msgid "Admin booking management link."
|
6481 |
msgstr "Odkaz administrátora na správu rezervace."
|
6482 |
|
6483 |
+
#: app/features/mec/notifications.php:662 app/libraries/main.php:635
|
6484 |
msgid "Admin"
|
6485 |
msgstr "Administrátor"
|
6486 |
|
6495 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6496 |
|
6497 |
#: app/features/mec/notifications.php:784 app/features/notifications.php:169
|
6498 |
+
#: app/libraries/main.php:634
|
6499 |
#, fuzzy
|
6500 |
#| msgid "Event Color"
|
6501 |
msgid "Event Soldout"
|
6516 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
6517 |
|
6518 |
#: app/features/mec/notifications.php:893 app/features/notifications.php:166
|
6519 |
+
#: app/libraries/main.php:633 app/libraries/notifications.php:733
|
6520 |
msgid "Booking Reminder"
|
6521 |
msgstr "Připomenutí rezervace"
|
6522 |
|
6545 |
msgid "only once per hour"
|
6546 |
msgstr "pouze jednou denně"
|
6547 |
|
6548 |
+
#: app/features/mec/notifications.php:956 app/libraries/main.php:7582
|
6549 |
+
#: app/libraries/main.php:7599
|
6550 |
#, fuzzy
|
6551 |
#| msgid "hours"
|
6552 |
msgid "Hours"
|
6561 |
msgstr ""
|
6562 |
|
6563 |
#: app/features/mec/notifications.php:1026 app/features/popup/event.php:253
|
6564 |
+
#: app/libraries/main.php:621
|
6565 |
msgid "New Event"
|
6566 |
msgstr "Nová událost"
|
6567 |
|
6597 |
msgstr "Stav události"
|
6598 |
|
6599 |
#: app/features/mec/notifications.php:1103
|
6600 |
+
#: app/features/mec/notifications.php:1188 app/features/mec/settings.php:951
|
6601 |
+
#: app/features/mec/settings.php:955 app/features/notifications.php:140
|
6602 |
msgid "Event Note"
|
6603 |
msgstr "Poznámka události"
|
6604 |
|
6607 |
msgid "Admin events management link."
|
6608 |
msgstr "Odkaz administrátora na správu událostí."
|
6609 |
|
6610 |
+
#: app/features/mec/notifications.php:1117 app/libraries/main.php:622
|
6611 |
msgid "User Event Publishing"
|
6612 |
msgstr "Publikování uživatelských událostí"
|
6613 |
|
6627 |
"Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
|
6628 |
"nebo z administrace webových stránek (backend)."
|
6629 |
|
6630 |
+
#: app/features/mec/notifications.php:1200 app/libraries/main.php:638
|
6631 |
#, fuzzy
|
6632 |
#| msgid "Notifications"
|
6633 |
msgid "Notifications Per Event"
|
6719 |
msgid "There was an error please try again!"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
+
#: app/features/mec/settings.php:69 app/features/mec/settings.php:80
|
6723 |
msgid "Hide Events"
|
6724 |
msgstr "Skrýt události"
|
6725 |
|
6726 |
+
#: app/features/mec/settings.php:72
|
6727 |
msgid "On Event Start"
|
6728 |
msgstr "Při spuštění události"
|
6729 |
|
6730 |
+
#: app/features/mec/settings.php:73
|
6731 |
msgid "+1 Hour after start"
|
6732 |
msgstr "+1 hodinu po zahájení"
|
6733 |
|
6734 |
+
#: app/features/mec/settings.php:74
|
6735 |
msgid "+2 Hours after start"
|
6736 |
msgstr "+2 hodiny po zahájení"
|
6737 |
|
6738 |
+
#: app/features/mec/settings.php:75
|
6739 |
msgid "On Event End"
|
6740 |
msgstr "Na konci události"
|
6741 |
|
6742 |
+
#: app/features/mec/settings.php:81
|
6743 |
msgid ""
|
6744 |
"This option is for showing start/end time of events on frontend of website."
|
6745 |
msgstr ""
|
6746 |
"Tato možnost slouží k zobrazení času zahájení / ukončení událostí na "
|
6747 |
"rozhraní webových stránek (frontend)."
|
6748 |
|
6749 |
+
#: app/features/mec/settings.php:90 app/features/mec/settings.php:99
|
6750 |
msgid "Multiple Day Events"
|
6751 |
msgstr "Vícedenní událost"
|
6752 |
|
6753 |
+
#: app/features/mec/settings.php:93
|
6754 |
#, fuzzy
|
6755 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
6756 |
msgid "Show only first day on List/Grid/Slider/Agenda skins"
|
6757 |
msgstr "Zobrazit pouze první den ve vzhledu Seznam / Mřížka / Posuvník"
|
6758 |
|
6759 |
+
#: app/features/mec/settings.php:94
|
6760 |
msgid "Show only first day on all skins"
|
6761 |
msgstr "Zobrazit pouze první den ve všech vzhledech"
|
6762 |
|
6763 |
+
#: app/features/mec/settings.php:95
|
6764 |
msgid "Show all days"
|
6765 |
msgstr "Zobrazit všechny dny"
|
6766 |
|
6767 |
+
#: app/features/mec/settings.php:100
|
6768 |
msgid ""
|
6769 |
"For showing all days of multiple day events on frontend or only show the "
|
6770 |
"first day."
|
6772 |
"Pro zobrazení všech dnů vícedenních událostí na webových stránkách "
|
6773 |
"(frontend) nebo zobrazení pouze prvního dne."
|
6774 |
|
6775 |
+
#: app/features/mec/settings.php:109
|
6776 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6777 |
msgstr "Odebrat data při odinstalování doplňku MEC"
|
6778 |
|
6779 |
+
#: app/features/mec/settings.php:120
|
6780 |
#, fuzzy
|
6781 |
#| msgid "Speakers Names"
|
6782 |
msgid "Sender Name"
|
6783 |
msgstr "Jméno řečníka"
|
6784 |
|
6785 |
+
#: app/features/mec/settings.php:123
|
6786 |
msgid "e.g. Webnus"
|
6787 |
msgstr ""
|
6788 |
|
6789 |
+
#: app/features/mec/settings.php:130
|
6790 |
#, fuzzy
|
6791 |
#| msgid "Organizer Email"
|
6792 |
msgid "Sender Email"
|
6793 |
msgstr "Organizátor Email"
|
6794 |
|
6795 |
+
#: app/features/mec/settings.php:133
|
6796 |
msgid "e.g. info@webnus.biz"
|
6797 |
msgstr ""
|
6798 |
|
6799 |
+
#: app/features/mec/settings.php:139
|
6800 |
msgid "Exclude Date Suffix"
|
6801 |
msgstr "Vyloučit příponu data"
|
6802 |
|
6803 |
+
#: app/features/mec/settings.php:142
|
6804 |
msgid "Remove suffix from calendars"
|
6805 |
msgstr "Odebrat příponu z kalendářů"
|
6806 |
|
6807 |
+
#: app/features/mec/settings.php:146
|
6808 |
msgid "Remove \"Th\" on calendar"
|
6809 |
msgstr "Odebrat „Th“ z kalendáře"
|
6810 |
|
6811 |
+
#: app/features/mec/settings.php:147
|
6812 |
msgid ""
|
6813 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
6814 |
"showing just '12' )"
|
6816 |
"Zaškrtnutím tohoto políčka odstraníte „Th“ z kalendáře (např .: „12Th“ "
|
6817 |
"odstraní Th, zobrazí se pouze „12“)"
|
6818 |
|
6819 |
+
#: app/features/mec/settings.php:154 app/features/mec/settings.php:161
|
6820 |
msgid "Schema"
|
6821 |
msgstr "Schéma"
|
6822 |
|
6823 |
+
#: app/features/mec/settings.php:157
|
6824 |
msgid "Enable Schema Code"
|
6825 |
msgstr "Povolit kód schématu"
|
6826 |
|
6827 |
+
#: app/features/mec/settings.php:162
|
6828 |
msgid "You can enable/disable Schema scripts"
|
6829 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
6830 |
|
6831 |
+
#: app/features/mec/settings.php:171 app/features/mec/settings.php:181
|
6832 |
+
#: app/libraries/main.php:6498 app/libraries/main.php:6552
|
6833 |
msgid "Weekdays"
|
6834 |
msgstr "Pracovní dny"
|
6835 |
|
6836 |
+
#: app/features/mec/settings.php:182
|
6837 |
msgid ""
|
6838 |
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
6839 |
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
6843 |
"Pátek (můžete to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > "
|
6844 |
"Nastavení > Obecné - spodní část stránky)."
|
6845 |
|
6846 |
+
#: app/features/mec/settings.php:192 app/features/mec/settings.php:202
|
6847 |
msgid "Weekends"
|
6848 |
msgstr "Víkendy"
|
6849 |
|
6850 |
+
#: app/features/mec/settings.php:203
|
6851 |
#, fuzzy
|
6852 |
#| msgid ""
|
6853 |
#| "Proceed with caution. Default is set to Saturday and Sunday ( you can "
|
6862 |
"to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > Nastavení > "
|
6863 |
"Obecné - dolní část stránky )."
|
6864 |
|
6865 |
+
#: app/features/mec/settings.php:212
|
6866 |
#, fuzzy
|
6867 |
#| msgid "Date Format"
|
6868 |
msgid "Datepicker Format"
|
6869 |
msgstr "Formát data"
|
6870 |
|
6871 |
+
#: app/features/mec/settings.php:220
|
6872 |
msgid "(Y-m-d)"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
+
#: app/features/mec/settings.php:221
|
6876 |
msgid "(d-m-Y)"
|
6877 |
msgstr ""
|
6878 |
|
6879 |
+
#: app/features/mec/settings.php:224
|
6880 |
msgid "(Y/m/d)"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
+
#: app/features/mec/settings.php:225
|
6884 |
msgid "(m/d/Y)"
|
6885 |
msgstr ""
|
6886 |
|
6887 |
+
#: app/features/mec/settings.php:228
|
6888 |
msgid "(Y.m.d)"
|
6889 |
msgstr ""
|
6890 |
|
6891 |
+
#: app/features/mec/settings.php:229
|
6892 |
msgid "(d.m.Y)"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
+
#: app/features/mec/settings.php:235 app/features/mec/settings.php:247
|
6896 |
msgid "Midnight Hour"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
+
#: app/features/mec/settings.php:238
|
6900 |
msgid "12 AM"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
+
#: app/features/mec/settings.php:239
|
6904 |
msgid "1 AM"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
+
#: app/features/mec/settings.php:240
|
6908 |
msgid "2 AM"
|
6909 |
msgstr ""
|
6910 |
|
6911 |
+
#: app/features/mec/settings.php:241
|
6912 |
msgid "3 AM"
|
6913 |
msgstr ""
|
6914 |
|
6915 |
+
#: app/features/mec/settings.php:242
|
6916 |
msgid "4 AM"
|
6917 |
msgstr ""
|
6918 |
|
6919 |
+
#: app/features/mec/settings.php:243
|
6920 |
msgid "5 AM"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
+
#: app/features/mec/settings.php:248
|
6924 |
msgid ""
|
6925 |
"12 AM is midnight by default but you can change it if your event ends after "
|
6926 |
"12 AM and you don't want those events considered as multiple days events!"
|
6927 |
msgstr ""
|
6928 |
|
6929 |
+
#: app/features/mec/settings.php:256
|
6930 |
#, fuzzy
|
6931 |
#| msgid "Add Shortcode"
|
6932 |
msgid "Open \"Add Event\" as Popup"
|
6933 |
msgstr "Přidat zkrácený kód"
|
6934 |
|
6935 |
+
#: app/features/mec/settings.php:259 app/features/mec/settings.php:267
|
6936 |
+
#: app/features/mec/settings.php:275 app/features/mec/single.php:111
|
6937 |
#, fuzzy
|
6938 |
#| msgid "Enabled"
|
6939 |
msgid "Enable"
|
6940 |
msgstr "Povoleno"
|
6941 |
|
6942 |
+
#: app/features/mec/settings.php:264
|
6943 |
#, fuzzy
|
6944 |
#| msgid "Add Shortcode"
|
6945 |
msgid "Open \"Add Shortcode\" as Popup"
|
6946 |
msgstr "Přidat zkrácený kód"
|
6947 |
|
6948 |
# v kontextu
|
6949 |
+
#: app/features/mec/settings.php:272
|
6950 |
#, fuzzy
|
6951 |
#| msgid "Featured Image"
|
6952 |
msgid "Include Event Featured Image in Feed"
|
6953 |
msgstr "Hlavní obrázek"
|
6954 |
|
6955 |
+
#: app/features/mec/settings.php:282 app/libraries/main.php:567
|
6956 |
msgid "Archive Pages"
|
6957 |
msgstr "Archivní stránky"
|
6958 |
|
6959 |
+
#: app/features/mec/settings.php:285 app/features/mec/settings.php:290
|
6960 |
msgid "Archive Page Title"
|
6961 |
msgstr "Název stránky archivu"
|
6962 |
|
6963 |
+
#: app/features/mec/settings.php:291
|
6964 |
msgid "Default value is Events - It's title of the page"
|
6965 |
msgstr "Výchozí hodnota je Události - to je název stránky"
|
6966 |
|
6967 |
+
#: app/features/mec/settings.php:299 app/features/mec/settings.php:367
|
6968 |
msgid "Archive Page Skin"
|
6969 |
msgstr "Vzhled archivní stránky"
|
6970 |
|
6971 |
+
#: app/features/mec/settings.php:307 app/features/mec/settings.php:384
|
6972 |
msgid "Put shortcode..."
|
6973 |
msgstr "Vložte zkrácený kód..."
|
6974 |
|
6975 |
+
#: app/features/mec/settings.php:310 app/features/mec/settings.php:325
|
6976 |
+
#: app/features/mec/settings.php:328 app/features/mec/settings.php:337
|
6977 |
+
#: app/features/mec/settings.php:363 app/features/mec/settings.php:387
|
6978 |
+
#: app/features/mec/settings.php:402 app/features/mec/settings.php:405
|
6979 |
+
#: app/features/mec/settings.php:414 app/features/mec/settings.php:440
|
6980 |
msgid "There is no skins"
|
6981 |
msgstr "Neexistuje žádný vzhled"
|
6982 |
|
6983 |
+
#: app/features/mec/settings.php:313 app/features/mec/settings.php:390
|
6984 |
#: app/features/mec/single.php:73
|
6985 |
msgid "Modern Style"
|
6986 |
msgstr "Moderní styl"
|
6987 |
|
6988 |
+
#: app/features/mec/settings.php:355 app/features/mec/settings.php:432
|
6989 |
msgid "colorful"
|
6990 |
msgstr "pestrý"
|
6991 |
|
6992 |
+
#: app/features/mec/settings.php:360 app/features/mec/settings.php:437
|
6993 |
msgid "Clean Style"
|
6994 |
msgstr "Čistý styl"
|
6995 |
|
6996 |
+
#: app/features/mec/settings.php:368
|
6997 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
6998 |
msgstr "Výchozí hodnota je Kalendář / Měsíční zobrazení, ale můžete ji změnit "
|
6999 |
|
7000 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
7001 |
msgid "See Demo"
|
7002 |
msgstr "Viz Demo"
|
7003 |
|
7004 |
+
#: app/features/mec/settings.php:376 app/features/mec/settings.php:444
|
7005 |
msgid "Category Page Skin"
|
7006 |
msgstr "Vzhled stránky kategorie"
|
7007 |
|
7008 |
+
#: app/features/mec/settings.php:445
|
7009 |
#, fuzzy
|
7010 |
#| msgid ""
|
7011 |
#| "Default value is List View - But you can change it Set a skin for all "
|
7017 |
"Výchozí hodnota je Zobrazení seznamu - ale můžete ji změnit Nastavit vzhled "
|
7018 |
"pro všechny kategorie."
|
7019 |
|
7020 |
+
#: app/features/mec/settings.php:453 app/features/mec/settings.php:461
|
7021 |
msgid "Category Events Method"
|
7022 |
msgstr "Kategorie Metoda události"
|
7023 |
|
7024 |
+
#: app/features/mec/settings.php:462
|
7025 |
msgid "Default value is Upcoming Events"
|
7026 |
msgstr "Výchozí hodnota je Nadcházející události"
|
7027 |
|
7028 |
+
#: app/features/mec/settings.php:470 app/features/mec/settings.php:478
|
7029 |
msgid "Events Archive Status"
|
7030 |
msgstr "Stav archivu událostí"
|
7031 |
|
7032 |
+
#: app/features/mec/settings.php:473
|
7033 |
msgid "Enabled (Recommended)"
|
7034 |
msgstr "Povoleno (doporučeno)"
|
7035 |
|
7036 |
# Slug
|
7037 |
+
#: app/features/mec/settings.php:479
|
7038 |
msgid ""
|
7039 |
"If you disable it, then you should create a page as archive page of MEC. "
|
7040 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
7045 |
"přepisování MEC."
|
7046 |
|
7047 |
# Hlavní slug
|
7048 |
+
#: app/features/mec/settings.php:492 app/features/mec/settings.php:497
|
7049 |
msgid "Main Slug"
|
7050 |
msgstr "Main Slug"
|
7051 |
|
7052 |
+
#: app/features/mec/settings.php:498
|
7053 |
msgid ""
|
7054 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7055 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
7059 |
"umožňuje vytvářet vlastní adresy URL pro permanentní odkazy a archivy, aby "
|
7060 |
"se zvýšila použitelnost a dopředná kompatibilita odkazů."
|
7061 |
|
7062 |
+
#: app/features/mec/settings.php:502 app/features/mec/settings.php:516
|
7063 |
msgid "Valid characters are lowercase a-z, - character and numbers."
|
7064 |
msgstr "Platnými znaky jsou malá písmena a-z, - znak a čísla."
|
7065 |
|
7066 |
# Slug
|
7067 |
+
#: app/features/mec/settings.php:506 app/features/mec/settings.php:511
|
7068 |
msgid "Category Slug"
|
7069 |
msgstr "Kategorie Slug"
|
7070 |
|
7071 |
+
#: app/features/mec/settings.php:512
|
7072 |
msgid ""
|
7073 |
"It's slug of MEC categories, you can change it to events-cat or something "
|
7074 |
"else. Default value is mec-category. You can not have a page with this name."
|
7077 |
"jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
|
7078 |
"názvem."
|
7079 |
|
7080 |
+
#: app/features/mec/settings.php:524
|
7081 |
msgid "Currency"
|
7082 |
msgstr "Měna"
|
7083 |
|
7084 |
+
#: app/features/mec/settings.php:534 app/features/mec/settings.php:539
|
7085 |
msgid "Currency Sign"
|
7086 |
msgstr "Symbol měny"
|
7087 |
|
7088 |
+
#: app/features/mec/settings.php:540
|
7089 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7090 |
msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
|
7091 |
|
7092 |
+
#: app/features/mec/settings.php:547
|
7093 |
msgid "Currency Position"
|
7094 |
msgstr "Pozice měny"
|
7095 |
|
7096 |
+
#: app/features/mec/settings.php:550
|
7097 |
msgid "Before $10"
|
7098 |
msgstr "Před $10"
|
7099 |
|
7100 |
+
#: app/features/mec/settings.php:551
|
7101 |
msgid "After 10$"
|
7102 |
msgstr "Po 10$"
|
7103 |
|
7104 |
+
#: app/features/mec/settings.php:556
|
7105 |
msgid "Thousand Separator"
|
7106 |
msgstr "Oddělovač tisíců"
|
7107 |
|
7108 |
+
#: app/features/mec/settings.php:562
|
7109 |
msgid "Decimal Separator"
|
7110 |
msgstr "Oddělovač desítel"
|
7111 |
|
7112 |
+
#: app/features/mec/settings.php:572
|
7113 |
msgid "No decimal"
|
7114 |
msgstr "Bez desetinných míst"
|
7115 |
|
7116 |
+
#: app/features/mec/settings.php:583
|
7117 |
msgid "Enable Google Recaptcha"
|
7118 |
msgstr "Povolit Google Recaptcha"
|
7119 |
|
7120 |
+
#: app/features/mec/settings.php:592
|
7121 |
msgid "Enable on booking form"
|
7122 |
msgstr "Povolit rezervační formulář"
|
7123 |
|
7124 |
+
#: app/features/mec/settings.php:600
|
7125 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7126 |
msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
|
7127 |
|
7128 |
# místa
|
7129 |
+
#: app/features/mec/settings.php:604
|
7130 |
msgid "Site Key"
|
7131 |
msgstr "Klíč webu"
|
7132 |
|
7133 |
+
#: app/features/mec/settings.php:610
|
7134 |
msgid "Secret Key"
|
7135 |
msgstr "Tajný klíč"
|
7136 |
|
7137 |
+
#: app/features/mec/settings.php:622 app/features/mec/settings.php:630
|
7138 |
msgid "Time Format"
|
7139 |
msgstr "Formát času"
|
7140 |
|
7141 |
+
#: app/features/mec/settings.php:625
|
7142 |
msgid "12 hours format with AM/PM"
|
7143 |
msgstr "12 hodinový formát s dop./odp."
|
7144 |
|
7145 |
+
#: app/features/mec/settings.php:626
|
7146 |
msgid "24 hours format"
|
7147 |
msgstr "24 hodinový fotmát"
|
7148 |
|
7149 |
+
#: app/features/mec/settings.php:631
|
7150 |
msgid "This option, affects the selection of Start/End time."
|
7151 |
msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
|
7152 |
|
7153 |
+
#: app/features/mec/settings.php:639
|
7154 |
msgid "Events List Page"
|
7155 |
msgstr "Stránka seznamu událostí"
|
7156 |
|
7157 |
+
#: app/features/mec/settings.php:648 app/features/mec/settings.php:660
|
7158 |
#, php-format
|
7159 |
msgid "Put %s shortcode into the page."
|
7160 |
msgstr "Vložte %s na stránku zkrácené kódy."
|
7161 |
|
7162 |
+
#: app/features/mec/settings.php:651
|
7163 |
msgid "Add/Edit Events Page"
|
7164 |
msgstr "Přidat / Editovat stránku událostí"
|
7165 |
|
7166 |
+
#: app/features/mec/settings.php:663
|
7167 |
#, fuzzy
|
7168 |
#| msgid "On Event Start"
|
7169 |
msgid "New Events Status"
|
7170 |
msgstr "Při spuštění události"
|
7171 |
|
7172 |
+
#: app/features/mec/settings.php:666
|
7173 |
#, fuzzy
|
7174 |
#| msgid "WordPress"
|
7175 |
msgid "Let WordPress decide"
|
7176 |
msgstr "WordPress"
|
7177 |
|
7178 |
+
#: app/features/mec/settings.php:667 app/libraries/main.php:6774
|
7179 |
+
#: app/libraries/main.php:6796
|
7180 |
msgid "Pending"
|
7181 |
msgstr "Nevyřízený"
|
7182 |
|
7183 |
+
#: app/features/mec/settings.php:668
|
7184 |
msgid "Publish"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
+
#: app/features/mec/settings.php:685
|
7188 |
#, fuzzy
|
7189 |
#| msgid ""
|
7190 |
#| "User redirects to this page after booking. Leave it empty if you want to "
|
7196 |
"Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
|
7197 |
"vypnout, ponechte ji prázdnou."
|
7198 |
|
7199 |
+
#: app/features/mec/settings.php:692 app/features/mec/settings.php:697
|
7200 |
#, fuzzy
|
7201 |
#| msgid "Thank You Page"
|
7202 |
msgid "Thank You Page URL"
|
7203 |
msgstr "Stránka s poděkováním"
|
7204 |
|
7205 |
+
#: app/features/mec/settings.php:698
|
7206 |
msgid "If filled it will use instead of thank you page set above."
|
7207 |
msgstr ""
|
7208 |
|
7209 |
+
#: app/features/mec/settings.php:721 app/features/mec/settings.php:726
|
7210 |
#, fuzzy
|
7211 |
#| msgid "Maximum file size"
|
7212 |
msgid "Maximum File Size"
|
7213 |
msgstr "Maximální velikost souboru"
|
7214 |
|
7215 |
+
#: app/features/mec/settings.php:723
|
7216 |
msgid "in KB"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
+
#: app/features/mec/settings.php:727
|
7220 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7221 |
msgstr ""
|
7222 |
|
7223 |
+
#: app/features/mec/settings.php:736
|
7224 |
#, fuzzy
|
7225 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7226 |
msgid "Enable event submission by guest (Not logged in) users"
|
7227 |
msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
|
7228 |
|
7229 |
+
#: app/features/mec/settings.php:743
|
7230 |
msgid "Enable mandatory email and name for guest user"
|
7231 |
msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
|
7232 |
|
7233 |
+
#: app/features/mec/settings.php:749
|
7234 |
msgid ""
|
7235 |
"Automatically create users after event publish and assign event to the "
|
7236 |
"created user"
|
7237 |
msgstr ""
|
7238 |
|
7239 |
+
#: app/features/mec/settings.php:754
|
7240 |
msgid "Frontend Event Submission Sections"
|
7241 |
msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
|
7242 |
|
7243 |
+
#: app/features/mec/settings.php:758
|
7244 |
#, fuzzy
|
7245 |
#| msgid "Event Details"
|
7246 |
msgid "Event Data Fields"
|
7247 |
msgstr "Podrobnosti události"
|
7248 |
|
7249 |
+
#: app/features/mec/settings.php:782 app/widgets/single.php:121
|
7250 |
msgid "Event Categories"
|
7251 |
msgstr "Kategorie události"
|
7252 |
|
7253 |
+
#: app/features/mec/settings.php:788
|
7254 |
msgid "Event Labels"
|
7255 |
msgstr "Štítky události"
|
7256 |
|
7257 |
+
#: app/features/mec/settings.php:800
|
7258 |
msgid "Event Tags"
|
7259 |
msgstr "Tagy události"
|
7260 |
|
7261 |
+
#: app/features/mec/settings.php:812 app/widgets/single.php:125
|
7262 |
msgid "Event Organizer"
|
7263 |
msgstr "Organizátor události"
|
7264 |
|
7265 |
+
#: app/features/mec/settings.php:839 app/features/occurrences.php:385
|
7266 |
+
#, fuzzy
|
7267 |
+
#| msgid "Total booking limits"
|
7268 |
+
msgid "Total Booking Limit"
|
7269 |
+
msgstr "Celkové limity rezervace"
|
7270 |
+
|
7271 |
+
#: app/features/mec/settings.php:845
|
7272 |
+
#, fuzzy
|
7273 |
+
#| msgid "Discount"
|
7274 |
+
msgid "Discount Per User Roles"
|
7275 |
+
msgstr "Sleva"
|
7276 |
+
|
7277 |
+
#: app/features/mec/settings.php:876
|
7278 |
+
#, fuzzy
|
7279 |
+
#| msgid "Ticket Variations / Options"
|
7280 |
+
msgid "Ticket Options"
|
7281 |
+
msgstr "Varianty vstupenky / možnosti"
|
7282 |
+
|
7283 |
+
#: app/features/mec/settings.php:888
|
7284 |
msgid "Fees / Taxes Options"
|
7285 |
msgstr "Možnosti Poplatky / Daně"
|
7286 |
|
7287 |
+
#: app/features/mec/settings.php:902 app/features/schema.php:64
|
7288 |
#, fuzzy
|
7289 |
#| msgid "Schema"
|
7290 |
msgid "SEO Schema"
|
7291 |
msgstr "Schéma"
|
7292 |
|
7293 |
+
#: app/features/mec/settings.php:925 app/features/occurrences.php:72
|
7294 |
#: app/features/occurrences.php:102
|
7295 |
#, fuzzy
|
7296 |
#| msgid "Occurrences times"
|
7297 |
msgid "Occurrences"
|
7298 |
msgstr "Časy výskytu"
|
7299 |
|
7300 |
+
#: app/features/mec/settings.php:934 app/widgets/single.php:165
|
7301 |
#, fuzzy
|
7302 |
#| msgid "Edit Event"
|
7303 |
msgid "Virtual Event"
|
7304 |
msgstr "Editace události"
|
7305 |
|
7306 |
+
#: app/features/mec/settings.php:943
|
7307 |
#, fuzzy
|
7308 |
#| msgid "Book Event"
|
7309 |
msgid "Zoom Event"
|
7310 |
msgstr "Rezervovat událost"
|
7311 |
|
7312 |
+
#: app/features/mec/settings.php:956
|
7313 |
#, php-format
|
7314 |
msgid ""
|
7315 |
"Users can put a note for editors while they're submitting the event. Also "
|
7320 |
"oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
|
7321 |
"mail s poznámkami uživatelů."
|
7322 |
|
7323 |
+
#: app/features/mec/settings.php:963 app/features/mec/settings.php:971
|
7324 |
#, fuzzy
|
7325 |
#| msgid "Visibility"
|
7326 |
msgid "Note visibility"
|
7327 |
msgstr "Viditelnost"
|
7328 |
|
7329 |
+
#: app/features/mec/settings.php:966
|
7330 |
msgid "Always"
|
7331 |
msgstr "Vždy"
|
7332 |
|
7333 |
+
#: app/features/mec/settings.php:967
|
7334 |
msgid "While event is not published"
|
7335 |
msgstr "I když událost není zveřejněna"
|
7336 |
|
7337 |
+
#: app/features/mec/settings.php:972
|
7338 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7339 |
msgstr ""
|
7340 |
"Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
|
7341 |
"(frontend) a Upravit událost v administraci stránek (backend)."
|
7342 |
|
7343 |
+
#: app/features/mec/settings.php:980
|
7344 |
#, fuzzy
|
7345 |
#| msgid "Required Field"
|
7346 |
msgid "Required Fields"
|
7347 |
msgstr "Požadovaná pole"
|
7348 |
|
7349 |
+
#: app/features/mec/settings.php:983
|
7350 |
#, fuzzy
|
7351 |
#| msgid "Description"
|
7352 |
msgid "Event Description"
|
7353 |
msgstr "Popis"
|
7354 |
|
7355 |
+
#: app/features/mec/settings.php:987 app/libraries/main.php:6521
|
7356 |
+
#: app/libraries/main.php:6570
|
7357 |
msgid "More Info Link"
|
7358 |
msgstr "Odkaz na více informací"
|
7359 |
|
7360 |
+
#: app/features/mec/settings.php:1000 app/libraries/main.php:572
|
7361 |
msgid "User Profile"
|
7362 |
msgstr "Uživatelský profil"
|
7363 |
|
7364 |
+
#: app/features/mec/settings.php:1002
|
7365 |
#, fuzzy, php-format
|
7366 |
#| msgid ""
|
7367 |
#| "Put %s shortcode into your desired page. Then users are able to see "
|
7373 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
|
7374 |
"historii svých rezervací."
|
7375 |
|
7376 |
+
#: app/features/mec/settings.php:1007 app/libraries/main.php:573
|
7377 |
+
#, fuzzy
|
7378 |
+
#| msgid "Hide Events"
|
7379 |
+
msgid "User Events"
|
7380 |
+
msgstr "Skrýt události"
|
7381 |
+
|
7382 |
+
#: app/features/mec/settings.php:1009
|
7383 |
+
#, fuzzy, php-format
|
7384 |
+
#| msgid ""
|
7385 |
+
#| "Put %s shortcode into your desired page. Then users are able to search "
|
7386 |
+
#| "events"
|
7387 |
+
msgid ""
|
7388 |
+
"Put %s shortcode into your desired page. Then users are able to see the "
|
7389 |
+
"their own events."
|
7390 |
+
msgstr ""
|
7391 |
+
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
7392 |
+
"události"
|
7393 |
+
|
7394 |
+
#: app/features/mec/settings.php:1021 app/libraries/main.php:574
|
7395 |
msgid "Search Bar"
|
7396 |
msgstr "Vyhledávací panel"
|
7397 |
|
7398 |
+
#: app/features/mec/settings.php:1023
|
7399 |
#, php-format
|
7400 |
msgid ""
|
7401 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
7403 |
"Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
|
7404 |
"události"
|
7405 |
|
7406 |
+
#: app/features/mec/settings.php:1027
|
7407 |
msgid "Ajax Live mode"
|
7408 |
msgstr "Ajax Live mód"
|
7409 |
|
7410 |
+
#: app/features/mec/settings.php:1031
|
7411 |
msgid "Ajax mode"
|
7412 |
msgstr "Ajax mód"
|
7413 |
|
7414 |
+
#: app/features/mec/settings.php:1032
|
7415 |
#, fuzzy
|
7416 |
#| msgid ""
|
7417 |
#| "if you enable this option, search button disappeared and to use this "
|
7423 |
"pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
|
7424 |
"této funkce musí být povoleno pole pro zadávání textu."
|
7425 |
|
7426 |
+
#: app/features/mec/settings.php:1040
|
7427 |
msgid "Modern Type"
|
7428 |
msgstr "Moderní typ"
|
7429 |
|
7430 |
+
#: app/features/mec/settings.php:1044
|
7431 |
msgid "Search bar fields"
|
7432 |
msgstr "Pole vyhledávacího panelu"
|
7433 |
|
7434 |
+
#: app/features/mec/settings.php:1086
|
7435 |
msgid "Text input"
|
7436 |
msgstr "Zadávání textu"
|
7437 |
|
7438 |
+
#: app/features/mec/settings.php:1099
|
7439 |
msgid "Enable Mailchimp Integration"
|
7440 |
msgstr "Povolit integraci Mailchimp"
|
7441 |
|
7442 |
+
#: app/features/mec/settings.php:1104 app/features/mec/settings.php:1109
|
7443 |
+
#: app/features/mec/settings.php:1158 app/features/mec/settings.php:1182
|
7444 |
+
#: app/features/mec/settings.php:1206 app/features/mec/settings.php:1277
|
7445 |
msgid "API Key"
|
7446 |
msgstr "API Key"
|
7447 |
|
7448 |
+
#: app/features/mec/settings.php:1117 app/features/mec/settings.php:1122
|
7449 |
+
#: app/features/mec/settings.php:1164 app/features/mec/settings.php:1283
|
7450 |
+
#: app/features/mec/settings.php:1301 app/features/mec/settings.php:1349
|
7451 |
msgid "List ID"
|
7452 |
msgstr "ID seznamu"
|
7453 |
|
7454 |
+
#: app/features/mec/settings.php:1130 app/features/mec/settings.php:1138
|
7455 |
msgid "Subscription Status"
|
7456 |
msgstr "Stav odběru"
|
7457 |
|
7458 |
+
#: app/features/mec/settings.php:1133
|
7459 |
msgid "Subscribe automatically"
|
7460 |
msgstr "Odebírat automaticky"
|
7461 |
|
7462 |
+
#: app/features/mec/settings.php:1134
|
7463 |
msgid "Subscribe by verification"
|
7464 |
msgstr "Přihlaste se k odběru pomocí ověření"
|
7465 |
|
7466 |
+
#: app/features/mec/settings.php:1139
|
7467 |
#, fuzzy
|
7468 |
#| msgid ""
|
7469 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
7475 |
"Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
|
7476 |
"uživateli mailchimp k ověření oběru."
|
7477 |
|
7478 |
+
#: app/features/mec/settings.php:1149 app/libraries/main.php:576
|
7479 |
#, fuzzy
|
7480 |
#| msgid "Mailchimp Integration"
|
7481 |
msgid "Campaign Monitor Integration"
|
7482 |
msgstr "Integrace Mailchimp"
|
7483 |
|
7484 |
+
#: app/features/mec/settings.php:1153
|
7485 |
#, fuzzy
|
7486 |
#| msgid "Enable Mailchimp Integration"
|
7487 |
msgid "Enable Campaign Monitor Integration"
|
7488 |
msgstr "Povolit integraci Mailchimp"
|
7489 |
|
7490 |
+
#: app/features/mec/settings.php:1173 app/libraries/main.php:577
|
7491 |
#, fuzzy
|
7492 |
#| msgid "Mailchimp Integration"
|
7493 |
msgid "MailerLite Integration"
|
7494 |
msgstr "Integrace Mailchimp"
|
7495 |
|
7496 |
+
#: app/features/mec/settings.php:1177
|
7497 |
#, fuzzy
|
7498 |
#| msgid "Enable Mailchimp Integration"
|
7499 |
msgid "Enable MailerLite Integration"
|
7500 |
msgstr "Povolit integraci Mailchimp"
|
7501 |
|
7502 |
+
#: app/features/mec/settings.php:1188
|
7503 |
#, fuzzy
|
7504 |
#| msgid "Group URL"
|
7505 |
msgid "Group ID"
|
7506 |
msgstr "Group URL"
|
7507 |
|
7508 |
+
#: app/features/mec/settings.php:1197 app/libraries/main.php:578
|
7509 |
#, fuzzy
|
7510 |
#| msgid "Enable Mailchimp Integration"
|
7511 |
msgid "Constant Contact Integration"
|
7512 |
msgstr "Povolit integraci Mailchimp"
|
7513 |
|
7514 |
+
#: app/features/mec/settings.php:1201
|
7515 |
#, fuzzy
|
7516 |
#| msgid "Enable Mailchimp Integration"
|
7517 |
msgid "Enable constantcontact Integration"
|
7518 |
msgstr "Povolit integraci Mailchimp"
|
7519 |
|
7520 |
+
#: app/features/mec/settings.php:1212
|
7521 |
#, fuzzy
|
7522 |
#| msgid "Facebook Page Access Token"
|
7523 |
msgid "Access Token"
|
7524 |
msgstr "Token pro přístup na stránku Facebook"
|
7525 |
|
7526 |
+
#: app/features/mec/settings.php:1236 app/features/mec/settings.php:1251
|
7527 |
#, fuzzy
|
7528 |
#| msgid "Select icon"
|
7529 |
msgid "Select List"
|
7530 |
msgstr "Vybrat ikonu"
|
7531 |
|
7532 |
+
#: app/features/mec/settings.php:1252
|
7533 |
msgid ""
|
7534 |
"Please fill in the API key and Access Token field and save settings. after "
|
7535 |
"that, please refresh the page and select a list."
|
7536 |
msgstr ""
|
7537 |
|
7538 |
+
#: app/features/mec/settings.php:1262 app/libraries/main.php:579
|
7539 |
#, fuzzy
|
7540 |
#| msgid "Mailchimp Integration"
|
7541 |
msgid "Active Campaign Integration"
|
7542 |
msgstr "Integrace Mailchimp"
|
7543 |
|
7544 |
+
#: app/features/mec/settings.php:1266
|
7545 |
#, fuzzy
|
7546 |
#| msgid "Enable Mailchimp Integration"
|
7547 |
msgid "Enable Active Campaign Integration"
|
7548 |
msgstr "Povolit integraci Mailchimp"
|
7549 |
|
7550 |
+
#: app/features/mec/settings.php:1271
|
7551 |
msgid "API URL"
|
7552 |
msgstr ""
|
7553 |
|
7554 |
+
#: app/features/mec/settings.php:1292 app/libraries/main.php:580
|
7555 |
#, fuzzy
|
7556 |
#| msgid "Mailchimp Integration"
|
7557 |
msgid "AWeber Integration"
|
7558 |
msgstr "Integrace Mailchimp"
|
7559 |
|
7560 |
+
#: app/features/mec/settings.php:1296
|
7561 |
#, fuzzy
|
7562 |
#| msgid "Enable Mailchimp Integration"
|
7563 |
msgid "Enable AWeber Integration"
|
7564 |
msgstr "Povolit integraci Mailchimp"
|
7565 |
|
7566 |
+
#: app/features/mec/settings.php:1306
|
7567 |
#, fuzzy, php-format
|
7568 |
#| msgid "Third Party plugin is not installed and activated!"
|
7569 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7570 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7571 |
|
7572 |
+
#: app/features/mec/settings.php:1307
|
7573 |
#, php-format
|
7574 |
msgid "More information about the list ID can be found %s."
|
7575 |
msgstr ""
|
7576 |
|
7577 |
+
#: app/features/mec/settings.php:1312 app/libraries/main.php:581
|
7578 |
#, fuzzy
|
7579 |
#| msgid "Mailchimp Integration"
|
7580 |
msgid "MailPoet Integration"
|
7581 |
msgstr "Integrace Mailchimp"
|
7582 |
|
7583 |
+
#: app/features/mec/settings.php:1316
|
7584 |
#, fuzzy
|
7585 |
#| msgid "Enable Mailchimp Integration"
|
7586 |
msgid "Enable MailPoet Integration"
|
7587 |
msgstr "Povolit integraci Mailchimp"
|
7588 |
|
7589 |
+
#: app/features/mec/settings.php:1322
|
7590 |
#: app/skins/default_full_calendar/tpl.php:78
|
7591 |
#: app/skins/full_calendar/tpl.php:125
|
7592 |
msgid "List"
|
7593 |
msgstr "Seznam"
|
7594 |
|
7595 |
+
#: app/features/mec/settings.php:1333
|
7596 |
#, fuzzy, php-format
|
7597 |
#| msgid "Third Party plugin is not installed and activated!"
|
7598 |
msgid "%s plugin should be installed and activated."
|
7599 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7600 |
|
7601 |
+
#: app/features/mec/settings.php:1338 app/libraries/main.php:582
|
7602 |
#, fuzzy
|
7603 |
#| msgid "Mailchimp Integration"
|
7604 |
msgid "Sendfox Integration"
|
7605 |
msgstr "Integrace Mailchimp"
|
7606 |
|
7607 |
+
#: app/features/mec/settings.php:1342
|
7608 |
#, fuzzy
|
7609 |
#| msgid "Enable Mailchimp Integration"
|
7610 |
msgid "Enable Sendfox Integration"
|
7611 |
msgstr "Povolit integraci Mailchimp"
|
7612 |
|
7613 |
+
#: app/features/mec/settings.php:1359
|
7614 |
#, fuzzy, php-format
|
7615 |
#| msgid "Third Party plugin is not installed and activated!"
|
7616 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7617 |
msgstr "Plugin třetích stran není nainstalován a aktivován!"
|
7618 |
|
7619 |
+
#: app/features/mec/single.php:38 app/libraries/main.php:586
|
7620 |
msgid "Single Event Page"
|
7621 |
msgstr "Stránka jedné události"
|
7622 |
|
7740 |
"the settings page.' tab"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
+
#: app/features/mec/single.php:162 app/libraries/main.php:587
|
7744 |
#, fuzzy
|
7745 |
#| msgid "Custom Styles"
|
7746 |
msgid "Custom Fields"
|
7747 |
msgstr "Vlastní styly"
|
7748 |
|
7749 |
+
#: app/features/mec/single.php:192 app/libraries/main.php:3453
|
7750 |
msgid "URL"
|
7751 |
msgstr ""
|
7752 |
|
7786 |
msgstr ""
|
7787 |
"Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
|
7788 |
|
7789 |
+
#: app/features/mec/single.php:286 app/libraries/main.php:590
|
7790 |
msgid "Additional Organizers"
|
7791 |
msgstr "Další organizátoři"
|
7792 |
|
7814 |
"Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
|
7815 |
"jediné události."
|
7816 |
|
7817 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:592
|
7818 |
#: app/skins/single.php:170 app/skins/single.php:435
|
7819 |
msgid "Related Events"
|
7820 |
msgstr "Související události"
|
7829 |
msgid "Select Taxonomies:"
|
7830 |
msgstr "Vyberte taxonomie:"
|
7831 |
|
7832 |
+
#: app/features/mec/single.php:360 app/libraries/main.php:593
|
7833 |
#, fuzzy
|
7834 |
#| msgid "Next/Previous Buttons"
|
7835 |
msgid "Next / Previous Events"
|
7843 |
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
7844 |
"událostí."
|
7845 |
|
7846 |
+
#: app/features/mec/single.php:402 app/libraries/main.php:639
|
7847 |
#, fuzzy
|
7848 |
#| msgid "Next Occurrence"
|
7849 |
msgid "Edit Per Occurrences"
|
7880 |
msgstr "Výchozí písmo"
|
7881 |
|
7882 |
#: app/features/mec/styling.php:50 app/features/mec/support.php:52
|
7883 |
+
#: app/libraries/main.php:837
|
7884 |
msgid "Styling Options"
|
7885 |
msgstr "Možnosti stylování"
|
7886 |
|
8066 |
msgid "MEC Settings"
|
8067 |
msgstr "MEC - Nastavení"
|
8068 |
|
8069 |
+
#: app/features/mec/support-page.php:99 app/libraries/main.php:691
|
8070 |
msgid "Single Event"
|
8071 |
msgstr "Jedna událost"
|
8072 |
|
8426 |
msgid "Create a support ticket"
|
8427 |
msgstr "Vytvořte lístek podpory"
|
8428 |
|
8429 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:844
|
8430 |
msgid "Custom CSS"
|
8431 |
msgstr "Vlastní CSS"
|
8432 |
|
8553 |
msgid "Delete"
|
8554 |
msgstr ""
|
8555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8556 |
#: app/features/occurrences.php:393 app/features/schema.php:70
|
8557 |
#, fuzzy
|
8558 |
#| msgid "Hourly Schedule"
|
8684 |
msgid "eg. https://webnus.net"
|
8685 |
msgstr "např. https://webnus.net"
|
8686 |
|
8687 |
+
#: app/features/organizers.php:312 app/libraries/main.php:6526
|
8688 |
+
#: app/libraries/main.php:6573 app/skins/single.php:1314
|
8689 |
msgid "Other Organizers"
|
8690 |
msgstr "Další organizátoři"
|
8691 |
|
8761 |
msgstr ""
|
8762 |
|
8763 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8764 |
+
#: app/modules/booking/steps/form.php:349
|
8765 |
#: app/modules/booking/steps/tickets.php:180 app/skins/countdown/tpl.php:123
|
8766 |
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
8767 |
msgid "Next"
|
8875 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8876 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
8877 |
|
8878 |
+
#: app/features/profile/profile.php:20 app/libraries/main.php:2538
|
8879 |
msgid "Your booking already canceled!"
|
8880 |
msgstr "Vaše rezervace již byla zrušena!"
|
8881 |
|
8883 |
msgid "#"
|
8884 |
msgstr "#"
|
8885 |
|
8886 |
+
#: app/features/profile/profile.php:61 app/libraries/main.php:3785
|
8887 |
msgid "Status"
|
8888 |
msgstr "Stav"
|
8889 |
|
8890 |
+
#: app/features/profile/profile.php:64 app/libraries/main.php:2756
|
8891 |
msgid "Attendees"
|
8892 |
msgstr "Účastníci"
|
8893 |
|
8943 |
msgid "No search result."
|
8944 |
msgstr "Žádný výsledek vyhledávání."
|
8945 |
|
8946 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:6528
|
8947 |
+
#: app/libraries/main.php:6575 app/libraries/notifications.php:1265
|
8948 |
+
#: app/libraries/render.php:538 app/libraries/render.php:730
|
8949 |
+
#: app/libraries/render.php:788 app/libraries/render.php:885
|
8950 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8951 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8952 |
#: app/modules/next-event/details.php:154
|
9045 |
"Poznámka: Řečníky můžete použít na vaší stránce úprav / přidání > sekce "
|
9046 |
"hodinového plánu a v sekci widgetu řečníka!"
|
9047 |
|
9048 |
+
#: app/features/userevents.php:58
|
9049 |
+
#, fuzzy, php-format
|
9050 |
+
#| msgid "Please %s/%s in order to submit new events."
|
9051 |
+
msgid "Please %s/%s in order to see your own events."
|
9052 |
+
msgstr "Prosím %s/%s za účelem odeslání nových událostí."
|
9053 |
+
|
9054 |
#: app/features/wc.php:103 app/libraries/notifications.php:1250
|
9055 |
#: app/libraries/notifications.php:1265 app/libraries/notifications.php:1276
|
9056 |
#: app/libraries/notifications.php:1549 app/libraries/notifications.php:1550
|
9188 |
msgid "New Day"
|
9189 |
msgstr "Nový den"
|
9190 |
|
9191 |
+
#: app/libraries/main.php:366 app/libraries/main.php:2123
|
9192 |
+
#: app/libraries/main.php:2148
|
9193 |
msgid "Agenda View"
|
9194 |
msgstr "Zobrazení agendy"
|
9195 |
|
9196 |
+
#: app/libraries/main.php:367 app/libraries/main.php:2114
|
9197 |
+
#: app/libraries/main.php:2139
|
9198 |
msgid "Full Calendar"
|
9199 |
msgstr "Plný kalendář"
|
9200 |
|
9201 |
+
#: app/libraries/main.php:369 app/libraries/main.php:2116
|
9202 |
+
#: app/libraries/main.php:2141
|
9203 |
msgid "Calendar/Monthly View"
|
9204 |
msgstr "Kalendář / zobrazení měsíce"
|
9205 |
|
9206 |
+
#: app/libraries/main.php:372 app/libraries/main.php:2119
|
9207 |
+
#: app/libraries/main.php:2144
|
9208 |
msgid "Timetable View"
|
9209 |
msgstr "Zobrazení rozvrhu"
|
9210 |
|
9211 |
+
#: app/libraries/main.php:373 app/libraries/main.php:2120
|
9212 |
+
#: app/libraries/main.php:2145
|
9213 |
msgid "Masonry View"
|
9214 |
msgstr "Zobrazení zdi"
|
9215 |
|
9216 |
+
#: app/libraries/main.php:374 app/libraries/main.php:2124
|
9217 |
+
#: app/libraries/main.php:2149
|
9218 |
msgid "Map View"
|
9219 |
msgstr "Zobrazení mapy"
|
9220 |
|
9245 |
msgid "Timeline View"
|
9246 |
msgstr "Zobrazení rozvrhu"
|
9247 |
|
9248 |
+
#: app/libraries/main.php:419 app/libraries/main.php:6500
|
9249 |
+
#: app/libraries/main.php:6554
|
9250 |
msgid "SU"
|
9251 |
msgstr "NE"
|
9252 |
|
9253 |
+
#: app/libraries/main.php:420 app/libraries/main.php:6501
|
9254 |
+
#: app/libraries/main.php:6555
|
9255 |
msgid "MO"
|
9256 |
msgstr "PO"
|
9257 |
|
9258 |
+
#: app/libraries/main.php:421 app/libraries/main.php:6502
|
9259 |
+
#: app/libraries/main.php:6556
|
9260 |
msgid "TU"
|
9261 |
msgstr "ÚT"
|
9262 |
|
9263 |
+
#: app/libraries/main.php:422 app/libraries/main.php:6503
|
9264 |
+
#: app/libraries/main.php:6557
|
9265 |
msgid "WE"
|
9266 |
msgstr "ST"
|
9267 |
|
9268 |
+
#: app/libraries/main.php:423 app/libraries/main.php:6504
|
9269 |
+
#: app/libraries/main.php:6558
|
9270 |
msgid "TH"
|
9271 |
msgstr "ČT"
|
9272 |
|
9273 |
+
#: app/libraries/main.php:424 app/libraries/main.php:6505
|
9274 |
+
#: app/libraries/main.php:6559
|
9275 |
msgid "FR"
|
9276 |
msgstr "PÁ"
|
9277 |
|
9278 |
+
#: app/libraries/main.php:425 app/libraries/main.php:6506
|
9279 |
+
#: app/libraries/main.php:6560
|
9280 |
msgid "SA"
|
9281 |
msgstr "SO"
|
9282 |
|
9283 |
+
#: app/libraries/main.php:591
|
9284 |
msgid "Additional Locations"
|
9285 |
msgstr "Další umístění"
|
9286 |
|
9287 |
+
#: app/libraries/main.php:603
|
9288 |
msgid "Upload Field"
|
9289 |
msgstr "Nahrát pole"
|
9290 |
|
9291 |
+
#: app/libraries/main.php:757
|
9292 |
msgid "Modules"
|
9293 |
msgstr "Moduly"
|
9294 |
|
9295 |
+
#: app/libraries/main.php:925
|
9296 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9297 |
msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
|
9298 |
|
9299 |
+
#: app/libraries/main.php:932
|
9300 |
msgid ""
|
9301 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9302 |
"released. This is a revolution in the world of Event Calendars. We have "
|
9307 |
"revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
|
9308 |
"pouze tím, že máme 4 doplňky, viz níže:"
|
9309 |
|
9310 |
+
#: app/libraries/main.php:934
|
9311 |
msgid ""
|
9312 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9313 |
"products) and Woo products at the same time."
|
9315 |
"<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
|
9316 |
"produkty) a produkty Woo současně."
|
9317 |
|
9318 |
+
#: app/libraries/main.php:935
|
9319 |
msgid ""
|
9320 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9321 |
"other websites without MEC. Use JSON output features to make your Apps "
|
9325 |
"událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
|
9326 |
"aplikace byly kompatibilní s MEC."
|
9327 |
|
9328 |
+
#: app/libraries/main.php:936
|
9329 |
msgid ""
|
9330 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9331 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9332 |
"you can set these up in the admin panel."
|
9333 |
msgstr ""
|
9334 |
|
9335 |
+
#: app/libraries/main.php:937
|
9336 |
msgid ""
|
9337 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9338 |
"pages can contain ticket purchase information, information about registered "
|
9339 |
"events. Users can now log in to purchase tickets."
|
9340 |
msgstr ""
|
9341 |
|
9342 |
+
#: app/libraries/main.php:939
|
9343 |
msgid "find out more"
|
9344 |
msgstr ""
|
9345 |
|
9346 |
+
#: app/libraries/main.php:1840
|
9347 |
msgid "Events at this location"
|
9348 |
msgstr "Události na tomto místě"
|
9349 |
|
9350 |
+
#: app/libraries/main.php:1840
|
9351 |
msgid "Event at this location"
|
9352 |
msgstr "Událost na tomto místě"
|
9353 |
|
9354 |
+
#: app/libraries/main.php:1892
|
9355 |
msgid "Facebook"
|
9356 |
msgstr "Facebook"
|
9357 |
|
9358 |
+
#: app/libraries/main.php:1893
|
9359 |
msgid "Twitter"
|
9360 |
msgstr "Twitter"
|
9361 |
|
9362 |
+
#: app/libraries/main.php:1894 app/libraries/main.php:1951
|
9363 |
msgid "Linkedin"
|
9364 |
msgstr "Linkedin"
|
9365 |
|
9366 |
+
#: app/libraries/main.php:1895 app/libraries/main.php:1987
|
9367 |
msgid "VK"
|
9368 |
msgstr "VK"
|
9369 |
|
9370 |
+
#: app/libraries/main.php:1896
|
9371 |
msgid "Tumblr"
|
9372 |
msgstr ""
|
9373 |
|
9374 |
+
#: app/libraries/main.php:1897
|
9375 |
msgid "Pinterest"
|
9376 |
msgstr ""
|
9377 |
|
9378 |
+
#: app/libraries/main.php:1898
|
9379 |
msgid "Flipboard"
|
9380 |
msgstr ""
|
9381 |
|
9382 |
+
#: app/libraries/main.php:1899
|
9383 |
#, fuzzy
|
9384 |
#| msgid "Tickets"
|
9385 |
msgid "GetPocket"
|
9386 |
msgstr "Vstupenky"
|
9387 |
|
9388 |
+
#: app/libraries/main.php:1900
|
9389 |
msgid "Reddit"
|
9390 |
msgstr ""
|
9391 |
|
9392 |
+
#: app/libraries/main.php:1901
|
9393 |
msgid "WhatsApp"
|
9394 |
msgstr ""
|
9395 |
|
9396 |
+
#: app/libraries/main.php:1902
|
9397 |
msgid "Telegram"
|
9398 |
msgstr ""
|
9399 |
|
9400 |
+
#: app/libraries/main.php:1921
|
9401 |
msgid "Share on Facebook"
|
9402 |
msgstr "Sdílet na Facebooku"
|
9403 |
|
9404 |
+
#: app/libraries/main.php:1936
|
9405 |
msgid "Tweet"
|
9406 |
msgstr "Tweet"
|
9407 |
|
9408 |
+
#: app/libraries/main.php:2002
|
9409 |
#, fuzzy
|
9410 |
#| msgid "Share on Facebook"
|
9411 |
msgid "Share on Tumblr"
|
9412 |
msgstr "Sdílet na Facebooku"
|
9413 |
|
9414 |
+
#: app/libraries/main.php:2018
|
9415 |
msgid "Share on Pinterest"
|
9416 |
msgstr ""
|
9417 |
|
9418 |
+
#: app/libraries/main.php:2034
|
9419 |
#, fuzzy
|
9420 |
#| msgid "Share on Facebook"
|
9421 |
msgid "Share on Flipboard"
|
9422 |
msgstr "Sdílet na Facebooku"
|
9423 |
|
9424 |
+
#: app/libraries/main.php:2052
|
9425 |
#, fuzzy
|
9426 |
#| msgid "Share on Facebook"
|
9427 |
msgid "Share on GetPocket"
|
9428 |
msgstr "Sdílet na Facebooku"
|
9429 |
|
9430 |
+
#: app/libraries/main.php:2068
|
9431 |
#, fuzzy
|
9432 |
#| msgid "Share on Facebook"
|
9433 |
msgid "Share on Reddit"
|
9434 |
msgstr "Sdílet na Facebooku"
|
9435 |
|
9436 |
+
#: app/libraries/main.php:2084
|
9437 |
msgid "Share on Telegram"
|
9438 |
msgstr ""
|
9439 |
|
9440 |
+
#: app/libraries/main.php:2102
|
9441 |
msgid "Share on WhatsApp"
|
9442 |
msgstr ""
|
9443 |
|
9444 |
+
#: app/libraries/main.php:2125 app/libraries/main.php:2150
|
9445 |
msgid "Custom Shortcode"
|
9446 |
msgstr "Uživatelské zkrácené kódy"
|
9447 |
|
9448 |
+
#: app/libraries/main.php:2499 app/libraries/main.php:2510
|
9449 |
#, fuzzy
|
9450 |
#| msgid "The events are imported successfully!"
|
9451 |
msgid "Your booking has been verified successfully!"
|
9452 |
msgstr "Události byly úspěšně importovány!"
|
9453 |
|
9454 |
+
#: app/libraries/main.php:2504
|
9455 |
msgid "Your booking already verified!"
|
9456 |
msgstr "Vaše rezervace již byla ověřena!"
|
9457 |
|
9458 |
+
#: app/libraries/main.php:2511
|
9459 |
msgid "Your booking cannot verify!"
|
9460 |
msgstr "Vaši rezervaci nelze ověřit!"
|
9461 |
|
9462 |
+
#: app/libraries/main.php:2533 app/libraries/main.php:2590
|
9463 |
msgid "Your booking successfully canceled."
|
9464 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
9465 |
|
9466 |
+
#: app/libraries/main.php:2550
|
9467 |
#, fuzzy
|
9468 |
#| msgid "The event is finished."
|
9469 |
msgid "The event is already finished!"
|
9470 |
msgstr "Událost je ukončena."
|
9471 |
|
9472 |
+
#: app/libraries/main.php:2571
|
9473 |
msgid "The cancelation window is not started yet."
|
9474 |
msgstr ""
|
9475 |
|
9476 |
+
#: app/libraries/main.php:2583
|
9477 |
msgid "The cancelation window is passed."
|
9478 |
msgstr ""
|
9479 |
|
9480 |
+
#: app/libraries/main.php:2591
|
9481 |
msgid "Your booking cannot be canceled."
|
9482 |
msgstr "Vaši rezervaci nelze zrušit."
|
9483 |
|
9484 |
+
#: app/libraries/main.php:2595
|
9485 |
msgid "You canceled the payment successfully."
|
9486 |
msgstr "Platbu jste úspěšně zrušili."
|
9487 |
|
9488 |
+
#: app/libraries/main.php:2599
|
9489 |
msgid "You returned from payment gateway successfully."
|
9490 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
9491 |
|
9492 |
+
#: app/libraries/main.php:2618
|
9493 |
msgid "Cannot find the invoice!"
|
9494 |
msgstr "Fakturu nelze najít!"
|
9495 |
|
9496 |
+
#: app/libraries/main.php:2618
|
9497 |
msgid "Invoice is invalid."
|
9498 |
msgstr "Faktura je neplatná."
|
9499 |
|
9500 |
+
#: app/libraries/main.php:2638
|
9501 |
#, fuzzy
|
9502 |
#| msgid ""
|
9503 |
#| "Your booking still is not confirmed. You able download it after "
|
9507 |
msgstr ""
|
9508 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
9509 |
|
9510 |
+
#: app/libraries/main.php:2638
|
9511 |
msgid "Booking Not Confirmed."
|
9512 |
msgstr "Rezervace nebyla potvrzena."
|
9513 |
|
9514 |
+
#: app/libraries/main.php:2644
|
9515 |
msgid "Cannot find the booking!"
|
9516 |
msgstr "Nemohu najít rezervaci!"
|
9517 |
|
9518 |
+
#: app/libraries/main.php:2644
|
9519 |
msgid "Booking is invalid."
|
9520 |
msgstr "Rezervace není platná."
|
9521 |
|
9522 |
+
#: app/libraries/main.php:2677
|
9523 |
#, php-format
|
9524 |
msgid "%s Invoice"
|
9525 |
msgstr "%s Faktura"
|
9526 |
|
9527 |
+
#: app/libraries/main.php:2713
|
9528 |
#, fuzzy
|
9529 |
#| msgid "Date and Time"
|
9530 |
msgid "Date & Time"
|
9531 |
msgstr "Datum a čas"
|
9532 |
|
9533 |
+
#: app/libraries/main.php:2730
|
9534 |
#, fuzzy
|
9535 |
#| msgid "Booking Price"
|
9536 |
msgid "Booking Fields"
|
9537 |
msgstr "Cena rezervace"
|
9538 |
|
9539 |
+
#: app/libraries/main.php:2802
|
9540 |
msgid "Billing"
|
9541 |
msgstr "Fakturace"
|
9542 |
|
9543 |
+
#: app/libraries/main.php:2814
|
9544 |
#, fuzzy
|
9545 |
#| msgid "Coupons"
|
9546 |
msgid "Coupon Code"
|
9547 |
msgstr "Kupóny"
|
9548 |
|
9549 |
+
#: app/libraries/main.php:2819
|
9550 |
msgid "Total"
|
9551 |
msgstr "Celkem"
|
9552 |
|
9553 |
+
#: app/libraries/main.php:2826
|
9554 |
#, fuzzy
|
9555 |
#| msgid "Payment Gateways"
|
9556 |
msgid "Payment"
|
9557 |
msgstr "Platební brány"
|
9558 |
|
9559 |
+
#: app/libraries/main.php:2843
|
9560 |
#, fuzzy
|
9561 |
#| msgid "Payment Gateways"
|
9562 |
msgid "Payment Time"
|
9563 |
msgstr "Platební brány"
|
9564 |
|
9565 |
+
#: app/libraries/main.php:2985
|
9566 |
msgid "Request is not valid."
|
9567 |
msgstr "Požadavek není platný."
|
9568 |
|
9569 |
+
#: app/libraries/main.php:2985
|
9570 |
msgid "iCal export stopped!"
|
9571 |
msgstr "iCal export byl zastaven!"
|
9572 |
|
9573 |
+
#: app/libraries/main.php:3336 app/libraries/main.php:3365
|
9574 |
+
#: app/libraries/main.php:3394 app/libraries/main.php:3423
|
9575 |
+
#: app/libraries/main.php:3452 app/libraries/main.php:3481
|
9576 |
+
#: app/libraries/main.php:3510 app/libraries/main.php:3539
|
9577 |
+
#: app/libraries/main.php:3568 app/libraries/main.php:3597
|
9578 |
+
#: app/libraries/main.php:3620 app/libraries/main.php:3666
|
9579 |
+
#: app/libraries/main.php:3712 app/libraries/main.php:3761
|
9580 |
+
#: app/libraries/main.php:3810
|
9581 |
msgid "Sort"
|
9582 |
msgstr "Seřadit"
|
9583 |
|
9584 |
+
#: app/libraries/main.php:3343 app/libraries/main.php:3372
|
9585 |
+
#: app/libraries/main.php:3401 app/libraries/main.php:3430
|
9586 |
+
#: app/libraries/main.php:3459 app/libraries/main.php:3488
|
9587 |
+
#: app/libraries/main.php:3517 app/libraries/main.php:3546
|
9588 |
+
#: app/libraries/main.php:3575 app/libraries/main.php:3627
|
9589 |
+
#: app/libraries/main.php:3673 app/libraries/main.php:3719
|
9590 |
+
#: app/libraries/main.php:3768
|
9591 |
msgid "Required Field"
|
9592 |
msgstr "Požadovaná pole"
|
9593 |
|
9594 |
+
#: app/libraries/main.php:3349 app/libraries/main.php:3378
|
9595 |
+
#: app/libraries/main.php:3407 app/libraries/main.php:3436
|
9596 |
+
#: app/libraries/main.php:3465 app/libraries/main.php:3494
|
9597 |
+
#: app/libraries/main.php:3523 app/libraries/main.php:3552
|
9598 |
+
#: app/libraries/main.php:3581 app/libraries/main.php:3633
|
9599 |
+
#: app/libraries/main.php:3679 app/libraries/main.php:3725
|
9600 |
+
#: app/libraries/main.php:3774
|
9601 |
msgid "Insert a label for this field"
|
9602 |
msgstr "Vložte štítek pro toto pole"
|
9603 |
|
9604 |
+
#: app/libraries/main.php:3603
|
9605 |
msgid "HTML and shortcode are allowed."
|
9606 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
9607 |
|
9608 |
+
#: app/libraries/main.php:3646 app/libraries/main.php:3692
|
9609 |
+
#: app/libraries/main.php:3738
|
9610 |
msgid "Option"
|
9611 |
msgstr "Možnost"
|
9612 |
|
9613 |
+
#: app/libraries/main.php:3774
|
9614 |
#, php-format
|
9615 |
msgid "Instead of %s, the page title with a link will be show."
|
9616 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
9617 |
|
9618 |
+
#: app/libraries/main.php:3776
|
9619 |
msgid "Agreement Page"
|
9620 |
msgstr "Stránka smlouvy"
|
9621 |
|
9622 |
+
#: app/libraries/main.php:3787
|
9623 |
msgid "Checked by default"
|
9624 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
9625 |
|
9626 |
+
#: app/libraries/main.php:3788
|
9627 |
msgid "Unchecked by default"
|
9628 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
9629 |
|
9630 |
+
#: app/libraries/main.php:3812
|
9631 |
msgid "Insert a label for this option"
|
9632 |
msgstr "Vložte štítek pro tuto možnost"
|
9633 |
|
9634 |
+
#: app/libraries/main.php:3825
|
9635 |
msgid "Free"
|
9636 |
msgstr "Zdarma"
|
9637 |
|
9638 |
+
#: app/libraries/main.php:4498 app/libraries/main.php:6835
|
9639 |
msgid "M.E. Calender"
|
9640 |
msgstr "M.E. Kalendář"
|
9641 |
|
9642 |
+
#: app/libraries/main.php:4654
|
9643 |
#, php-format
|
9644 |
msgid "Copy of %s"
|
9645 |
msgstr "Kopie %s"
|
9646 |
|
9647 |
+
#: app/libraries/main.php:5527
|
9648 |
msgid "Booked an event."
|
9649 |
msgstr "Událost byla rezervována."
|
9650 |
|
9651 |
+
#: app/libraries/main.php:5568
|
9652 |
#, php-format
|
9653 |
msgid "%s booked %s event."
|
9654 |
msgstr "%s zarezervoval %s událost."
|
9655 |
|
9656 |
+
#: app/libraries/main.php:6483 app/libraries/main.php:6537
|
9657 |
msgid "Taxonomies"
|
9658 |
msgstr "Taxonomie"
|
9659 |
|
9660 |
# Mrknout na kontext
|
9661 |
+
#: app/libraries/main.php:6485 app/libraries/main.php:6539
|
9662 |
msgid "Category Plural Label"
|
9663 |
msgstr "Štítek množné kategorie"
|
9664 |
|
9665 |
# Mrknout na kontext
|
9666 |
+
#: app/libraries/main.php:6486 app/libraries/main.php:6540
|
9667 |
msgid "Category Singular Label"
|
9668 |
msgstr "Štítek jednotné kategorie"
|
9669 |
|
9670 |
+
#: app/libraries/main.php:6487 app/libraries/main.php:6541
|
9671 |
msgid "Label Plural Label"
|
9672 |
msgstr "Štítek množného štítku"
|
9673 |
|
9674 |
+
#: app/libraries/main.php:6488 app/libraries/main.php:6542
|
9675 |
msgid "Label Singular Label"
|
9676 |
msgstr "Štítek jednotného štítku"
|
9677 |
|
9678 |
+
#: app/libraries/main.php:6488 app/libraries/main.php:6542
|
9679 |
msgid "label"
|
9680 |
msgstr "štítek"
|
9681 |
|
9682 |
+
#: app/libraries/main.php:6489 app/libraries/main.php:6543
|
9683 |
msgid "Location Plural Label"
|
9684 |
msgstr "Štítek množného umístění"
|
9685 |
|
9686 |
+
#: app/libraries/main.php:6490 app/libraries/main.php:6544
|
9687 |
msgid "Location Singular Label"
|
9688 |
msgstr "Štítek jednotného umístění"
|
9689 |
|
9690 |
+
#: app/libraries/main.php:6491 app/libraries/main.php:6545
|
9691 |
msgid "Organizer Plural Label"
|
9692 |
msgstr "Štítek množného organizátora"
|
9693 |
|
9694 |
+
#: app/libraries/main.php:6492 app/libraries/main.php:6546
|
9695 |
msgid "Organizer Singular Label"
|
9696 |
msgstr "Štítek jednotného organizátora"
|
9697 |
|
9698 |
+
#: app/libraries/main.php:6493 app/libraries/main.php:6547
|
9699 |
msgid "Speaker Plural Label"
|
9700 |
msgstr "Štítek množného řečníka"
|
9701 |
|
9702 |
+
#: app/libraries/main.php:6494 app/libraries/main.php:6548
|
9703 |
msgid "Speaker Singular Label"
|
9704 |
msgstr "Štítek jednotného řečníka"
|
9705 |
|
9706 |
+
#: app/libraries/main.php:6500 app/libraries/main.php:6554
|
9707 |
msgid "Sunday abbreviation"
|
9708 |
msgstr "Neděle zkratka"
|
9709 |
|
9710 |
+
#: app/libraries/main.php:6501 app/libraries/main.php:6555
|
9711 |
msgid "Monday abbreviation"
|
9712 |
msgstr "Pondělí zkratka"
|
9713 |
|
9714 |
+
#: app/libraries/main.php:6502 app/libraries/main.php:6556
|
9715 |
msgid "Tuesday abbreviation"
|
9716 |
msgstr "Úterý zkratka"
|
9717 |
|
9718 |
+
#: app/libraries/main.php:6503 app/libraries/main.php:6557
|
9719 |
msgid "Wednesday abbreviation"
|
9720 |
msgstr "Středa zkratka"
|
9721 |
|
9722 |
+
#: app/libraries/main.php:6504 app/libraries/main.php:6558
|
9723 |
msgid "Thursday abbreviation"
|
9724 |
msgstr "Čtvrtek zkratka"
|
9725 |
|
9726 |
+
#: app/libraries/main.php:6505 app/libraries/main.php:6559
|
9727 |
msgid "Friday abbreviation"
|
9728 |
msgstr "Pátek zkratka"
|
9729 |
|
9730 |
+
#: app/libraries/main.php:6506 app/libraries/main.php:6560
|
9731 |
msgid "Saturday abbreviation"
|
9732 |
msgstr "Sobota zkratka"
|
9733 |
|
9734 |
+
#: app/libraries/main.php:6510 app/libraries/main.php:6564
|
9735 |
msgid "Others"
|
9736 |
msgstr "Další"
|
9737 |
|
9738 |
+
#: app/libraries/main.php:6512
|
9739 |
msgid "Booking Success Message"
|
9740 |
msgstr "Zpráva o úspěchu rezervace"
|
9741 |
|
9742 |
+
#: app/libraries/main.php:6512
|
9743 |
#, fuzzy
|
9744 |
#| msgid ""
|
9745 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
9751 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
9752 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
9753 |
|
9754 |
+
#: app/libraries/main.php:6513
|
9755 |
#, fuzzy
|
9756 |
#| msgid "Booking Success Message"
|
9757 |
msgid "Booking Restriction Message 1"
|
9758 |
msgstr "Zpráva o úspěchu rezervace"
|
9759 |
|
9760 |
+
#: app/libraries/main.php:6513
|
9761 |
#, php-format
|
9762 |
msgid ""
|
9763 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9764 |
"tickets."
|
9765 |
msgstr ""
|
9766 |
|
9767 |
+
#: app/libraries/main.php:6514
|
9768 |
#, fuzzy
|
9769 |
#| msgid "Booking Success Message"
|
9770 |
msgid "Booking Restriction Message 2"
|
9771 |
msgstr "Zpráva o úspěchu rezervace"
|
9772 |
|
9773 |
+
#: app/libraries/main.php:6514
|
9774 |
#, php-format
|
9775 |
msgid ""
|
9776 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9777 |
"tickets."
|
9778 |
msgstr ""
|
9779 |
|
9780 |
+
#: app/libraries/main.php:6515
|
9781 |
#, fuzzy
|
9782 |
#| msgid "Booking Success Message"
|
9783 |
msgid "Booking IP Restriction Message"
|
9784 |
msgstr "Zpráva o úspěchu rezervace"
|
9785 |
|
9786 |
+
#: app/libraries/main.php:6515
|
9787 |
#, php-format
|
9788 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9789 |
msgstr ""
|
9790 |
|
9791 |
+
#: app/libraries/main.php:6516
|
9792 |
#, fuzzy
|
9793 |
#| msgid "Booking Options"
|
9794 |
msgid "Booking Button"
|
9795 |
msgstr "Možnosti rezervace"
|
9796 |
|
9797 |
+
#: app/libraries/main.php:6516 app/libraries/skins.php:1304
|
9798 |
#: app/modules/booking/steps/tickets.php:102
|
9799 |
msgid "Book Event"
|
9800 |
msgstr "Rezervovat událost"
|
9801 |
|
9802 |
+
#: app/libraries/main.php:6517 app/libraries/main.php:6566
|
9803 |
#: app/widgets/single.php:133
|
9804 |
msgid "Register Button"
|
9805 |
msgstr "Registrační tlačítko"
|
9806 |
|
9807 |
+
#: app/libraries/main.php:6517 app/libraries/main.php:6566
|
9808 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9809 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:104
|
9810 |
#: app/skins/grid/render.php:163 app/skins/grid/render.php:223
|
9822 |
msgid "REGISTER"
|
9823 |
msgstr "REGISTROVAT"
|
9824 |
|
9825 |
+
#: app/libraries/main.php:6518 app/libraries/main.php:6567
|
9826 |
msgid "View Detail Button"
|
9827 |
msgstr "Tlačítko Zobrazit detail"
|
9828 |
|
9829 |
+
#: app/libraries/main.php:6518 app/libraries/main.php:6567
|
9830 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9831 |
#: app/skins/grid/render.php:104 app/skins/grid/render.php:163
|
9832 |
#: app/skins/grid/render.php:223 app/skins/grid/render.php:245
|
9838 |
msgid "View Detail"
|
9839 |
msgstr "Zobrazit detail"
|
9840 |
|
9841 |
+
#: app/libraries/main.php:6519 app/libraries/main.php:6568
|
9842 |
msgid "Event Detail Button"
|
9843 |
msgstr "Tlačítko Detail události"
|
9844 |
|
9845 |
+
#: app/libraries/main.php:6519 app/libraries/main.php:6568
|
9846 |
msgid "Event Detail"
|
9847 |
msgstr "Zobrazit událost"
|
9848 |
|
9849 |
+
#: app/libraries/main.php:6524
|
9850 |
msgid "Ticket (Singular)"
|
9851 |
msgstr "Vstupenka (Jednotné)"
|
9852 |
|
9853 |
+
#: app/libraries/main.php:6525
|
9854 |
msgid "Tickets (Plural)"
|
9855 |
msgstr "Vstupenky (Množné)"
|
9856 |
|
9857 |
+
#: app/libraries/main.php:6683
|
9858 |
msgid "EventON"
|
9859 |
msgstr "EventON"
|
9860 |
|
9861 |
+
#: app/libraries/main.php:6684
|
9862 |
msgid "The Events Calendar"
|
9863 |
msgstr "The Events Calendar"
|
9864 |
|
9865 |
+
#: app/libraries/main.php:6685
|
9866 |
msgid "Events Schedule WP Plugin"
|
9867 |
msgstr "Events Schedule WP Plugin"
|
9868 |
|
9869 |
+
#: app/libraries/main.php:6686
|
9870 |
msgid "Calendarize It"
|
9871 |
msgstr "Calendarize It"
|
9872 |
|
9873 |
+
#: app/libraries/main.php:6687
|
9874 |
#, fuzzy
|
9875 |
#| msgid "Event Speakers"
|
9876 |
msgid "Event Espresso"
|
9877 |
msgstr "Řečník události"
|
9878 |
|
9879 |
+
#: app/libraries/main.php:6688
|
9880 |
#, fuzzy
|
9881 |
#| msgid "Event Repeating (Recurring events)"
|
9882 |
msgid "Events Manager (Recurring)"
|
9883 |
msgstr "Opakování události (opakující se události)"
|
9884 |
|
9885 |
+
#: app/libraries/main.php:6689
|
9886 |
#, fuzzy
|
9887 |
#| msgid "Modern Events Calendar (Lite)"
|
9888 |
msgid "Events Manager (Single)"
|
9889 |
msgstr "Modern Events Calendar (Lite)"
|
9890 |
|
9891 |
+
#: app/libraries/main.php:6690
|
9892 |
#, fuzzy
|
9893 |
#| msgid "Modern Events Calendar (Lite)"
|
9894 |
msgid "WP Event Manager"
|
9895 |
msgstr "Modern Events Calendar (Lite)"
|
9896 |
|
9897 |
+
#: app/libraries/main.php:6822
|
9898 |
msgid "Waiting"
|
9899 |
msgstr "Čekající"
|
9900 |
|
9901 |
+
#: app/libraries/main.php:6865
|
9902 |
#, fuzzy
|
9903 |
#| msgid "Sunday"
|
9904 |
msgid "Sun"
|
9905 |
msgstr "Neděle"
|
9906 |
|
9907 |
+
#: app/libraries/main.php:6865
|
9908 |
#, fuzzy
|
9909 |
#| msgid "Monday"
|
9910 |
msgid "Mon"
|
9911 |
msgstr "Pondělí"
|
9912 |
|
9913 |
+
#: app/libraries/main.php:6865
|
9914 |
#, fuzzy
|
9915 |
#| msgid "Tel"
|
9916 |
msgid "Tue"
|
9917 |
msgstr "Tel"
|
9918 |
|
9919 |
+
#: app/libraries/main.php:6865
|
9920 |
msgid "Wed"
|
9921 |
msgstr ""
|
9922 |
|
9923 |
+
#: app/libraries/main.php:6865
|
9924 |
msgid "Thu"
|
9925 |
msgstr ""
|
9926 |
|
9927 |
+
#: app/libraries/main.php:6865
|
9928 |
#, fuzzy
|
9929 |
#| msgid "Friday"
|
9930 |
msgid "Fri"
|
9931 |
msgstr "Pátek"
|
9932 |
|
9933 |
+
#: app/libraries/main.php:6865
|
9934 |
#, fuzzy
|
9935 |
#| msgid "Start"
|
9936 |
msgid "Sat"
|
9937 |
msgstr "Začátek"
|
9938 |
|
9939 |
+
#: app/libraries/main.php:7031 app/libraries/render.php:80
|
9940 |
+
#: app/libraries/render.php:451
|
9941 |
msgid "Skin controller does not exist."
|
9942 |
msgstr "Ovladač vzhledu neexistuje."
|
9943 |
|
9944 |
+
#: app/libraries/main.php:7246
|
9945 |
msgid "Sold Out"
|
9946 |
msgstr "Vyprodáno"
|
9947 |
|
9948 |
+
#: app/libraries/main.php:7257
|
9949 |
#, fuzzy
|
9950 |
#| msgid "Ticket"
|
9951 |
msgid "Last Few Tickets"
|
9952 |
msgstr "Vstupenka"
|
9953 |
|
9954 |
+
#: app/libraries/main.php:7588 app/libraries/main.php:7605
|
9955 |
#, fuzzy
|
9956 |
#| msgid "minutes"
|
9957 |
msgid "Minutes"
|
9958 |
msgstr "minuty"
|
9959 |
|
9960 |
+
#: app/libraries/main.php:7610
|
9961 |
msgid "AM / PM"
|
9962 |
msgstr ""
|
9963 |
|
9964 |
+
#: app/libraries/main.php:7611
|
9965 |
msgid "AM"
|
9966 |
msgstr "dop."
|
9967 |
|
9968 |
+
#: app/libraries/main.php:7612
|
9969 |
msgid "PM"
|
9970 |
msgstr "odp."
|
9971 |
|
9972 |
+
#: app/libraries/main.php:7620
|
9973 |
msgid "Ongoing..."
|
9974 |
msgstr ""
|
9975 |
|
9976 |
+
#: app/libraries/main.php:7621
|
9977 |
#, fuzzy
|
9978 |
#| msgid "Expired Events"
|
9979 |
msgid "Expired!"
|
10117 |
msgstr "Aplikovat kupon"
|
10118 |
|
10119 |
#: app/modules/booking/steps/checkout.php:138
|
10120 |
+
#: app/modules/booking/steps/form.php:348
|
10121 |
msgid "Back"
|
10122 |
msgstr ""
|
10123 |
|
10131 |
msgid "Attendee's Form"
|
10132 |
msgstr "Formulář účastníků"
|
10133 |
|
10134 |
+
#: app/modules/booking/steps/form.php:318
|
10135 |
msgid "Fill other attendees information like the first form."
|
10136 |
msgstr "Vyplňte informace o dalších účastnících, jako v prvním formuláři."
|
10137 |
|
10138 |
+
#: app/modules/booking/steps/form.php:329
|
10139 |
msgid "Username"
|
10140 |
msgstr ""
|
10141 |
|
10142 |
+
#: app/modules/booking/steps/form.php:349
|
10143 |
#: app/modules/booking/steps/tickets.php:180
|
10144 |
#, fuzzy
|
10145 |
#| msgid "Location"
|
10515 |
msgid "http://webnus.net"
|
10516 |
msgstr "http://webnus.net"
|
10517 |
|
10518 |
+
#~ msgid "Total user booking limits"
|
10519 |
+
#~ msgstr "Celkové limity rezervace uživatelů"
|
10520 |
+
|
10521 |
#~ msgid "Your booking successfully verified."
|
10522 |
#~ msgstr "Vaše rezervace byla úspěšně ověřena."
|
10523 |
|
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: 2020-12-
|
6 |
-
"PO-Revision-Date: 2020-12-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -19,8 +19,8 @@ msgstr ""
|
|
19 |
|
20 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
21 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
22 |
-
#: app/features/ix/thirdparty.php:26 app/features/mec.php:
|
23 |
-
#: app/features/mec.php:
|
24 |
#: app/widgets/MEC.php:33
|
25 |
msgid "Modern Events Calendar"
|
26 |
msgstr "Moderner Event Kalender "
|
@@ -89,7 +89,7 @@ msgid "Select Shortcode"
|
|
89 |
msgstr "Neuen Shortcode hinzufügen"
|
90 |
|
91 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
92 |
-
#: app/features/mec/settings.php:
|
93 |
msgid "Event Color"
|
94 |
msgstr "Farbe der Veranstaltung"
|
95 |
|
@@ -102,14 +102,14 @@ msgstr "Farbe der Veranstaltung"
|
|
102 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
103 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
104 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
105 |
-
#: app/libraries/main.php:
|
106 |
msgid "Settings"
|
107 |
msgstr "Einstellungen"
|
108 |
|
109 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
110 |
-
#: app/features/events.php:
|
111 |
-
#: app/features/mec/booking.php:873 app/features/mec/
|
112 |
-
#: app/libraries/main.php:
|
113 |
msgid "Booking Form"
|
114 |
msgstr "Buchungsformular"
|
115 |
|
@@ -135,9 +135,9 @@ msgstr ""
|
|
135 |
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
136 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
137 |
|
138 |
-
#: app/features/contextual.php:70 app/features/events.php:
|
139 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
140 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
141 |
msgid "Payment Gateways"
|
142 |
msgstr "Zahlungs-Gateways"
|
143 |
|
@@ -151,9 +151,9 @@ msgstr ""
|
|
151 |
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
152 |
"\"0\" allowfullscreen></iframe>"
|
153 |
|
154 |
-
#: app/features/contextual.php:77 app/features/events.php:
|
155 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
156 |
-
#: app/libraries/main.php:
|
157 |
msgid "Notifications"
|
158 |
msgstr "Benachrichtigungen"
|
159 |
|
@@ -238,12 +238,12 @@ msgstr ""
|
|
238 |
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
239 |
"\"0\" allowfullscreen></iframe>"
|
240 |
|
241 |
-
#: app/features/contextual.php:117 app/features/mec/settings.php:
|
242 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
243 |
msgid "General Options"
|
244 |
msgstr "Allgemeine Einstellungen"
|
245 |
|
246 |
-
#: app/features/contextual.php:139 app/features/mec/settings.php:
|
247 |
#: app/libraries/main.php:568
|
248 |
msgid "Slugs/Permalinks"
|
249 |
msgstr "Slug/Permalinks"
|
@@ -252,7 +252,7 @@ msgstr "Slug/Permalinks"
|
|
252 |
msgid "Event Details/Single Event Page"
|
253 |
msgstr "Event Details / Einzelveranstaltungsseite"
|
254 |
|
255 |
-
#: app/features/contextual.php:166 app/features/mec/settings.php:
|
256 |
#: app/libraries/main.php:569
|
257 |
msgid "Currency Options"
|
258 |
msgstr "Währungseinstellungen"
|
@@ -261,18 +261,18 @@ msgstr "Währungseinstellungen"
|
|
261 |
msgid "Google Maps Options"
|
262 |
msgstr "Google Maps Einstellungen"
|
263 |
|
264 |
-
#: app/features/contextual.php:244 app/features/mec/settings.php:
|
265 |
#: app/libraries/main.php:570
|
266 |
msgid "Google Recaptcha Options"
|
267 |
msgstr "Google Recaptcha Einstellungen"
|
268 |
|
269 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
270 |
-
#: app/libraries/main.php:
|
271 |
msgid "Countdown Options"
|
272 |
msgstr "Countdown Einstellungsoptionen"
|
273 |
|
274 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
275 |
-
#: app/libraries/main.php:
|
276 |
msgid "Social Networks"
|
277 |
msgstr "Soziale Netzwerke"
|
278 |
|
@@ -280,36 +280,36 @@ msgstr "Soziale Netzwerke"
|
|
280 |
msgid "Next Event Module"
|
281 |
msgstr "Nächstes Veranstaltung Modul"
|
282 |
|
283 |
-
#: app/features/contextual.php:286 app/features/mec/settings.php:
|
284 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
285 |
msgid "Frontend Event Submission"
|
286 |
msgstr "Erstellung von Veranstaltungen im Frontend"
|
287 |
|
288 |
-
#: app/features/contextual.php:298 app/features/events.php:
|
289 |
-
#: app/libraries/main.php:
|
290 |
msgid "Exceptional Days"
|
291 |
msgstr "Herausgenommene Tage "
|
292 |
|
293 |
-
#: app/features/contextual.php:308 app/features/events.php:
|
294 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
295 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
296 |
-
#: app/libraries/main.php:
|
297 |
-
#: app/libraries/main.php:
|
298 |
msgid "Booking"
|
299 |
msgstr "Buchung / Reservierung"
|
300 |
|
301 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
302 |
-
#: app/features/mec/booking.php:833 app/libraries/main.php:
|
303 |
msgid "Coupons"
|
304 |
msgstr "Gutscheine"
|
305 |
|
306 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
307 |
-
#: app/libraries/main.php:
|
308 |
msgid "BuddyPress Integration"
|
309 |
msgstr "Buddy Press Integration"
|
310 |
|
311 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
312 |
-
#: app/libraries/main.php:
|
313 |
msgid "Mailchimp Integration"
|
314 |
msgstr "Mailchimp Integration"
|
315 |
|
@@ -317,8 +317,8 @@ msgstr "Mailchimp Integration"
|
|
317 |
msgid "MEC Activation"
|
318 |
msgstr "MEC Aktivierung"
|
319 |
|
320 |
-
#: app/features/dlfile.php:121 app/features/events.php:
|
321 |
-
#: app/features/mec/booking.php:349 app/features/mec/settings.php:
|
322 |
#, fuzzy
|
323 |
#| msgid "Download ICS file"
|
324 |
msgid "Downloadable File"
|
@@ -354,15 +354,15 @@ msgstr ""
|
|
354 |
msgid "File uploaded!"
|
355 |
msgstr "Das Bild ist hochgeladen"
|
356 |
|
357 |
-
#: app/features/events.php:
|
358 |
-
#: app/features/mec/dashboard.php:265 app/libraries/main.php:
|
359 |
-
#: app/libraries/main.php:
|
360 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
361 |
#: app/skins/yearly_view/tpl.php:71
|
362 |
msgid "Events"
|
363 |
msgstr "Veranstaltungen"
|
364 |
|
365 |
-
#: app/features/events.php:
|
366 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
367 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
368 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
@@ -372,222 +372,222 @@ msgstr "Veranstaltungen"
|
|
372 |
msgid "Event"
|
373 |
msgstr "Veranstaltung"
|
374 |
|
375 |
-
#: app/features/events.php:
|
376 |
msgid "Add Event"
|
377 |
msgstr "Veranstaltung hinzufügen"
|
378 |
|
379 |
-
#: app/features/events.php:
|
380 |
msgid "Add New Event"
|
381 |
msgstr "Neue Veranstaltung hinzufügen"
|
382 |
|
383 |
-
#: app/features/events.php:
|
384 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
385 |
#: app/skins/map/tpl.php:89
|
386 |
msgid "No events found!"
|
387 |
msgstr "Keine Veranstaltungen gefunden!"
|
388 |
|
389 |
-
#: app/features/events.php:
|
390 |
msgid "All Events"
|
391 |
msgstr "Alle Veranstaltungen"
|
392 |
|
393 |
-
#: app/features/events.php:
|
394 |
msgid "Edit Event"
|
395 |
msgstr "Event Bearbeiten"
|
396 |
|
397 |
-
#: app/features/events.php:
|
398 |
#: app/features/popup/event.php:252
|
399 |
msgid "View Event"
|
400 |
msgstr "Veranstaltung ansehen"
|
401 |
|
402 |
-
#: app/features/events.php:
|
403 |
msgid "No events found in Trash!"
|
404 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
405 |
|
406 |
-
#: app/features/events.php:
|
407 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
408 |
#: app/features/mec/meta_boxes/search_form.php:31
|
409 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
410 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
411 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
412 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
413 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
414 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
415 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
416 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
417 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
418 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
419 |
-
#: app/features/mec/settings.php:
|
420 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
421 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
422 |
-
#: app/libraries/main.php:
|
423 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
424 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
425 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
426 |
msgid "Category"
|
427 |
msgstr "Kategorie"
|
428 |
|
429 |
-
#: app/features/events.php:
|
430 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
431 |
#: app/features/mec/meta_boxes/filter.php:69
|
432 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
433 |
-
#: app/libraries/main.php:
|
434 |
msgid "Categories"
|
435 |
msgstr "Kategorien"
|
436 |
|
437 |
-
#: app/features/events.php:
|
438 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
439 |
#: app/features/speakers.php:71
|
440 |
#, php-format
|
441 |
msgid "All %s"
|
442 |
msgstr "Alle %s"
|
443 |
|
444 |
-
#: app/features/events.php:
|
445 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
446 |
#: app/features/speakers.php:72
|
447 |
#, php-format
|
448 |
msgid "Edit %s"
|
449 |
msgstr "Bearbeiten %s"
|
450 |
|
451 |
-
#: app/features/events.php:
|
452 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
453 |
#: app/features/speakers.php:73
|
454 |
#, php-format
|
455 |
msgid "View %s"
|
456 |
msgstr "Ansicht %s"
|
457 |
|
458 |
-
#: app/features/events.php:
|
459 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
460 |
#: app/features/speakers.php:74
|
461 |
#, php-format
|
462 |
msgid "Update %s"
|
463 |
msgstr "Update %s"
|
464 |
|
465 |
-
#: app/features/events.php:
|
466 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
467 |
#: app/features/speakers.php:75
|
468 |
#, php-format
|
469 |
msgid "Add New %s"
|
470 |
msgstr "Neu hinzufügen%s"
|
471 |
|
472 |
-
#: app/features/events.php:
|
473 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
474 |
#: app/features/speakers.php:76
|
475 |
#, php-format
|
476 |
msgid "New %s Name"
|
477 |
msgstr "Neuer %s Name"
|
478 |
|
479 |
-
#: app/features/events.php:
|
480 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
481 |
#: app/features/speakers.php:77
|
482 |
#, php-format
|
483 |
msgid "Popular %s"
|
484 |
msgstr "Beliebt %s"
|
485 |
|
486 |
-
#: app/features/events.php:
|
487 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
488 |
#: app/features/speakers.php:78
|
489 |
#, php-format
|
490 |
msgid "Search %s"
|
491 |
msgstr "Suche %s"
|
492 |
|
493 |
-
#: app/features/events.php:
|
494 |
msgid "Category Icon"
|
495 |
msgstr "Kategoriesymbol"
|
496 |
|
497 |
-
#: app/features/events.php:
|
498 |
msgid "Select icon"
|
499 |
msgstr "Wählen Sie ein Symbol"
|
500 |
|
501 |
-
#: app/features/events.php:
|
502 |
msgid "Event Details"
|
503 |
msgstr "Veranstaltungsdetails"
|
504 |
|
505 |
-
#: app/features/events.php:
|
506 |
#, fuzzy
|
507 |
#| msgid "Event Details"
|
508 |
msgid "FES Details"
|
509 |
msgstr "Veranstaltungsdetails"
|
510 |
|
511 |
-
#: app/features/events.php:
|
512 |
msgid "Date And Time"
|
513 |
msgstr "Datum und Uhrzeit"
|
514 |
|
515 |
-
#: app/features/events.php:
|
516 |
msgid "Event Repeating"
|
517 |
msgstr "Wiederholende Veranstaltung"
|
518 |
|
519 |
-
#: app/features/events.php:
|
520 |
#, fuzzy
|
521 |
#| msgid "Event Detail"
|
522 |
msgid "Event Data"
|
523 |
msgstr "Veranstaltungsdetails"
|
524 |
|
525 |
-
#: app/features/events.php:
|
526 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
527 |
msgid "Hourly Schedule"
|
528 |
msgstr "Stundenplan"
|
529 |
|
530 |
-
#: app/features/events.php:
|
531 |
msgid "Location/Venue"
|
532 |
msgstr "Ort"
|
533 |
|
534 |
-
#: app/features/events.php:
|
535 |
msgid "Links"
|
536 |
msgstr "Links"
|
537 |
|
538 |
-
#: app/features/events.php:
|
539 |
-
#: app/features/events.php:
|
540 |
-
#: app/features/ix.php:
|
541 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
542 |
#: app/features/mec/meta_boxes/search_form.php:46
|
543 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
544 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
545 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
546 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
547 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
548 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
549 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
550 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
551 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
552 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
553 |
-
#: app/features/mec/settings.php:
|
554 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
555 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
556 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
557 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
558 |
-
#: app/features/search.php:80 app/libraries/main.php:
|
559 |
-
#: app/libraries/main.php:
|
560 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
561 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
562 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
563 |
msgid "Organizer"
|
564 |
msgstr "Veranstalter"
|
565 |
|
566 |
-
#: app/features/events.php:
|
567 |
-
#: app/features/fes/form.php:836 app/features/mec/settings.php:
|
568 |
-
#: app/libraries/main.php:
|
569 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
570 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
571 |
#: app/skins/single/modern.php:237
|
572 |
msgid "Cost"
|
573 |
msgstr " Preis"
|
574 |
|
575 |
-
#: app/features/events.php:
|
576 |
#, fuzzy
|
577 |
#| msgid "On Event Start"
|
578 |
msgid "SEO Schema / Event Status"
|
579 |
msgstr "Am Event Start"
|
580 |
|
581 |
-
#: app/features/events.php:
|
582 |
msgid "Note for reviewer"
|
583 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
584 |
|
585 |
-
#: app/features/events.php:
|
586 |
msgid "Guest Data"
|
587 |
msgstr "Gäste Daten"
|
588 |
|
589 |
-
#: app/features/events.php:
|
590 |
-
#: app/features/events.php:
|
591 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
592 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
593 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
@@ -595,16 +595,16 @@ msgstr "Gäste Daten"
|
|
595 |
msgid "Name"
|
596 |
msgstr "Name"
|
597 |
|
598 |
-
#: app/features/events.php:
|
599 |
-
#: app/features/events.php:
|
600 |
-
#: app/features/events.php:
|
601 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
602 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
603 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
604 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
605 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
606 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
607 |
-
#: app/libraries/main.php:
|
608 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
609 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
610 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
@@ -613,21 +613,21 @@ msgstr "Name"
|
|
613 |
msgid "Email"
|
614 |
msgstr "E-Mail"
|
615 |
|
616 |
-
#: app/features/events.php:
|
617 |
msgid ""
|
618 |
"This event is imported from Google calendar so if you modify it, it would "
|
619 |
"overwrite in the next import from Google."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: app/features/events.php:
|
623 |
msgid "Date and Time"
|
624 |
msgstr "Datum und Uhrzeit"
|
625 |
|
626 |
-
#: app/features/events.php:
|
627 |
-
#: app/features/events.php:
|
628 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
629 |
-
#: app/features/ix.php:
|
630 |
-
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:
|
631 |
#: app/features/mec/meta_boxes/display_options.php:52
|
632 |
#: app/features/mec/meta_boxes/display_options.php:298
|
633 |
#: app/features/mec/meta_boxes/display_options.php:555
|
@@ -647,38 +647,38 @@ msgstr "Datum und Uhrzeit"
|
|
647 |
msgid "Start Date"
|
648 |
msgstr "Start Datum"
|
649 |
|
650 |
-
#: app/features/events.php:
|
651 |
-
#: app/features/events.php:
|
652 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
653 |
-
#: app/features/ix.php:
|
654 |
-
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:
|
655 |
#: app/features/popup/event.php:92
|
656 |
msgid "End Date"
|
657 |
msgstr "Ende Datum"
|
658 |
|
659 |
-
#: app/features/events.php:
|
660 |
#: app/features/popup/event.php:109
|
661 |
#, fuzzy
|
662 |
#| msgid "All Day Event"
|
663 |
msgid "All-day Event"
|
664 |
msgstr "Ganztägige Veranstaltung"
|
665 |
|
666 |
-
#: app/features/events.php:
|
667 |
msgid "Hide Event Time"
|
668 |
msgstr "Event / Veranstaltungszeit verbergen"
|
669 |
|
670 |
-
#: app/features/events.php:
|
671 |
msgid "Hide Event End Time"
|
672 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
673 |
|
674 |
-
#: app/features/events.php:
|
675 |
#: app/features/fes/form.php:329
|
676 |
#, fuzzy
|
677 |
#| msgid "Note to reviewer"
|
678 |
msgid "Notes on the time"
|
679 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
680 |
|
681 |
-
#: app/features/events.php:
|
682 |
#, fuzzy
|
683 |
#| msgid ""
|
684 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
@@ -690,16 +690,16 @@ msgstr ""
|
|
690 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
691 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
692 |
|
693 |
-
#: app/features/events.php:
|
694 |
-
#: app/features/events.php:
|
695 |
-
#: app/features/events.php:
|
696 |
-
#: app/features/events.php:
|
697 |
-
#: app/features/events.php:
|
698 |
-
#: app/features/events.php:
|
699 |
-
#: app/features/events.php:
|
700 |
-
#: app/features/events.php:
|
701 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
702 |
-
#: app/features/locations.php:
|
703 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
704 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
705 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
@@ -752,17 +752,17 @@ msgstr ""
|
|
752 |
#: app/features/mec/notifications.php:950
|
753 |
#: app/features/mec/notifications.php:961
|
754 |
#: app/features/mec/notifications.php:1086
|
755 |
-
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:
|
756 |
-
#: app/features/mec/settings.php:
|
757 |
-
#: app/features/mec/settings.php:
|
758 |
-
#: app/features/mec/settings.php:
|
759 |
-
#: app/features/mec/settings.php:
|
760 |
-
#: app/features/mec/settings.php:
|
761 |
-
#: app/features/mec/settings.php:
|
762 |
-
#: app/features/mec/settings.php:
|
763 |
-
#: app/features/mec/settings.php:
|
764 |
-
#: app/features/mec/settings.php:
|
765 |
-
#: app/features/mec/settings.php:
|
766 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
767 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
768 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
@@ -776,108 +776,108 @@ msgstr ""
|
|
776 |
msgid "Read More"
|
777 |
msgstr "Mehr lesen"
|
778 |
|
779 |
-
#: app/features/events.php:
|
780 |
#, fuzzy
|
781 |
#| msgid "Timezone: %s"
|
782 |
msgid "Timezone"
|
783 |
msgstr "Zeitzone: %s"
|
784 |
|
785 |
-
#: app/features/events.php:
|
786 |
-
#: app/features/events.php:
|
787 |
-
#: app/features/events.php:
|
788 |
-
#: app/features/events.php:
|
789 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
790 |
msgid "Inherit from global options"
|
791 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
792 |
|
793 |
-
#: app/features/events.php:
|
794 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
795 |
#, fuzzy
|
796 |
#| msgid "Countdown View"
|
797 |
msgid "Countdown Method"
|
798 |
msgstr "Countdownansicht"
|
799 |
|
800 |
-
#: app/features/events.php:
|
801 |
#, fuzzy
|
802 |
#| msgid "On Event Start"
|
803 |
msgid "Count to Event Start"
|
804 |
msgstr "Am Event Start"
|
805 |
|
806 |
-
#: app/features/events.php:
|
807 |
#, fuzzy
|
808 |
#| msgid "On Event End"
|
809 |
msgid "Count to Event End"
|
810 |
msgstr "Am Event Ende"
|
811 |
|
812 |
-
#: app/features/events.php:
|
813 |
msgid "Repeating"
|
814 |
msgstr "Wiederholen"
|
815 |
|
816 |
-
#: app/features/events.php:
|
817 |
msgid "Event Repeating (Recurring events)"
|
818 |
msgstr "Wiederholende Veranstaltung"
|
819 |
|
820 |
-
#: app/features/events.php:
|
821 |
msgid "Repeats"
|
822 |
msgstr "Wiederholend"
|
823 |
|
824 |
-
#: app/features/events.php:
|
825 |
-
#: app/features/mec.php:
|
826 |
#: app/skins/full_calendar/tpl.php:124
|
827 |
msgid "Daily"
|
828 |
msgstr "Täglich"
|
829 |
|
830 |
-
#: app/features/events.php:
|
831 |
msgid "Every Weekday"
|
832 |
msgstr "An jedem Wochentag"
|
833 |
|
834 |
-
#: app/features/events.php:
|
835 |
msgid "Every Weekend"
|
836 |
msgstr "An jedem Wochenende"
|
837 |
|
838 |
-
#: app/features/events.php:
|
839 |
msgid "Certain Weekdays"
|
840 |
msgstr "Bestimmte Wochentage"
|
841 |
|
842 |
-
#: app/features/events.php:
|
843 |
#: app/skins/default_full_calendar/tpl.php:76
|
844 |
#: app/skins/full_calendar/tpl.php:123
|
845 |
msgid "Weekly"
|
846 |
msgstr "Wöchentlich"
|
847 |
|
848 |
-
#: app/features/events.php:
|
849 |
-
#: app/features/mec.php:
|
850 |
#: app/skins/full_calendar/tpl.php:122
|
851 |
msgid "Monthly"
|
852 |
msgstr "Monatlich"
|
853 |
|
854 |
-
#: app/features/events.php:
|
855 |
-
#: app/features/mec.php:
|
856 |
#: app/skins/full_calendar/tpl.php:121
|
857 |
msgid "Yearly"
|
858 |
msgstr "Jährlich"
|
859 |
|
860 |
-
#: app/features/events.php:
|
861 |
msgid "Custom Days"
|
862 |
msgstr "Benutzerdefinierte Tage"
|
863 |
|
864 |
-
#: app/features/events.php:
|
865 |
msgid "Advanced"
|
866 |
msgstr "Fortgeschritten"
|
867 |
|
868 |
-
#: app/features/events.php:
|
869 |
msgid "Repeat Interval"
|
870 |
msgstr "Wiederholungsintervall"
|
871 |
|
872 |
-
#: app/features/events.php:
|
873 |
msgid "Repeat interval"
|
874 |
msgstr "Wiederholungsintervall"
|
875 |
|
876 |
-
#: app/features/events.php:
|
877 |
msgid "Week Days"
|
878 |
msgstr "Wochentage"
|
879 |
|
880 |
-
#: app/features/events.php:
|
881 |
#, fuzzy
|
882 |
#| msgid "Pro version of Modern Events Calendar"
|
883 |
msgid ""
|
@@ -885,83 +885,84 @@ msgid ""
|
|
885 |
"Calendar."
|
886 |
msgstr "Pro Version vom Modernen Event Calendar"
|
887 |
|
888 |
-
#: app/features/events.php:
|
889 |
-
#: app/features/events.php:
|
890 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
891 |
#: app/features/ix/import_g_calendar.php:51
|
892 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
|
|
893 |
msgid "Start"
|
894 |
msgstr "Start"
|
895 |
|
896 |
-
#: app/features/events.php:
|
897 |
-
#: app/features/events.php:
|
898 |
-
#: app/features/events.php:
|
899 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
900 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
901 |
#: app/libraries/hourlyschedule.php:119
|
902 |
msgid "Add"
|
903 |
msgstr "Hinzufügen"
|
904 |
|
905 |
-
#: app/features/events.php:
|
906 |
msgid "Custom Days Repeating"
|
907 |
msgstr "Benutzerdefinierte Wiederholende Tage"
|
908 |
|
909 |
-
#: app/features/events.php:
|
910 |
msgid ""
|
911 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
912 |
"start and end dates should be the same, If you have a multiple day event, "
|
913 |
"the start and end dates must be commensurate with the initial date."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: app/features/events.php:
|
917 |
-
#: app/features/events.php:
|
918 |
-
#: app/features/fes/form.php:417
|
919 |
msgid "End"
|
920 |
msgstr "Ende"
|
921 |
|
922 |
-
#: app/features/events.php:
|
923 |
msgid "First"
|
924 |
msgstr "Erster"
|
925 |
|
926 |
-
#: app/features/events.php:
|
927 |
msgid "Second"
|
928 |
msgstr "Zweiter"
|
929 |
|
930 |
-
#: app/features/events.php:
|
931 |
msgid "Third"
|
932 |
msgstr "Dritter"
|
933 |
|
934 |
-
#: app/features/events.php:
|
935 |
msgid "Fourth"
|
936 |
msgstr "Vierte"
|
937 |
|
938 |
-
#: app/features/events.php:
|
939 |
msgid "Last"
|
940 |
msgstr "Letzter"
|
941 |
|
942 |
-
#: app/features/events.php:
|
943 |
msgid "Ends Repeat"
|
944 |
msgstr "Wiederholung endet"
|
945 |
|
946 |
-
#: app/features/events.php:
|
947 |
msgid "Never"
|
948 |
msgstr "Niemals"
|
949 |
|
950 |
-
#: app/features/events.php:
|
951 |
msgid "On"
|
952 |
msgstr "Am"
|
953 |
|
954 |
-
#: app/features/events.php:
|
955 |
#: app/features/mec/booking.php:154
|
956 |
msgid "After"
|
957 |
msgstr "Nach"
|
958 |
|
959 |
-
#: app/features/events.php:
|
960 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
961 |
msgid "Occurrences times"
|
962 |
msgstr " mal vorkommen"
|
963 |
|
964 |
-
#: app/features/events.php:
|
965 |
#, fuzzy
|
966 |
#| msgid ""
|
967 |
#| "The event will finish after certain repeats. For example if you set it to "
|
@@ -973,36 +974,36 @@ msgstr ""
|
|
973 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
974 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
975 |
|
976 |
-
#: app/features/events.php:
|
977 |
#, fuzzy
|
978 |
#| msgid "Next Occurrence of Other Events"
|
979 |
msgid "Show only one occurrence of this event"
|
980 |
msgstr "Nächstes Auftreten von anderen Events."
|
981 |
|
982 |
-
#: app/features/events.php:
|
983 |
-
#: app/features/fes/form.php:833 app/features/ix.php:
|
984 |
-
#: app/features/ix.php:
|
985 |
-
#: app/libraries/main.php:
|
986 |
#: app/widgets/single.php:105
|
987 |
msgid "Event Cost"
|
988 |
msgstr ""
|
989 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
990 |
|
991 |
-
#: app/features/events.php:
|
992 |
#, fuzzy
|
993 |
#| msgid "Exceptional Days"
|
994 |
msgid "Exceptional Days (Exclude Dates)"
|
995 |
msgstr "Herausgenommene Tage "
|
996 |
|
997 |
-
#: app/features/events.php:
|
998 |
msgid "Exclude certain days"
|
999 |
msgstr "Ausschluss bestimmter Tage"
|
1000 |
|
1001 |
-
#: app/features/events.php:
|
1002 |
-
#: app/features/events.php:
|
1003 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
1004 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
1005 |
-
#: app/features/wc.php:83 app/libraries/main.php:
|
1006 |
#: app/modules/booking/steps/tickets.php:106
|
1007 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
1008 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
@@ -1010,34 +1011,34 @@ msgstr "Ausschluss bestimmter Tage"
|
|
1010 |
msgid "Date"
|
1011 |
msgstr "Datum"
|
1012 |
|
1013 |
-
#: app/features/events.php:
|
1014 |
msgid ""
|
1015 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
1016 |
"exclude only single day occurrences and you cannot exclude one day from "
|
1017 |
"multiple day occurrences."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: app/features/events.php:
|
1021 |
msgid "Day 1"
|
1022 |
msgstr "Tag 1"
|
1023 |
|
1024 |
-
#: app/features/events.php:
|
1025 |
-
#: app/features/mec/settings.php:
|
1026 |
msgid "Event Links"
|
1027 |
msgstr "Veranstaltungslinks"
|
1028 |
|
1029 |
-
#: app/features/events.php:
|
1030 |
-
#: app/features/fes/form.php:812 app/features/mec/settings.php:
|
1031 |
-
#: app/libraries/main.php:
|
1032 |
msgid "Event Link"
|
1033 |
msgstr "Veranstaltungslink"
|
1034 |
|
1035 |
-
#: app/features/events.php:
|
1036 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
1037 |
msgid "eg. http://yoursite.com/your-event"
|
1038 |
msgstr "z.B. http://yoursite.com/your-event"
|
1039 |
|
1040 |
-
#: app/features/events.php:
|
1041 |
#, fuzzy
|
1042 |
#| msgid ""
|
1043 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -1051,34 +1052,34 @@ msgstr ""
|
|
1051 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1052 |
"einschließlich http(s)://"
|
1053 |
|
1054 |
-
#: app/features/events.php:
|
1055 |
msgid "URL Shortener"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: app/features/events.php:
|
1059 |
-
#: app/features/fes/form.php:817 app/libraries/main.php:
|
1060 |
-
#: app/libraries/main.php:
|
1061 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1062 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1063 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
1064 |
msgid "More Info"
|
1065 |
msgstr "Mehr Informationen"
|
1066 |
|
1067 |
-
#: app/features/events.php:
|
1068 |
msgid "More Information"
|
1069 |
msgstr "z.B. Noch mehr Informationen "
|
1070 |
|
1071 |
-
#: app/features/events.php:
|
1072 |
-
#: app/features/mec.php:
|
1073 |
msgid "Current Window"
|
1074 |
msgstr "Aktuelles Fenster"
|
1075 |
|
1076 |
-
#: app/features/events.php:
|
1077 |
-
#: app/features/mec.php:
|
1078 |
msgid "New Window"
|
1079 |
msgstr "Neues Fenster"
|
1080 |
|
1081 |
-
#: app/features/events.php:
|
1082 |
msgid ""
|
1083 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1084 |
"Insert full link including http(s)://"
|
@@ -1089,131 +1090,134 @@ msgstr ""
|
|
1089 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1090 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1091 |
|
1092 |
-
#: app/features/events.php:
|
1093 |
msgid "Booking Options"
|
1094 |
msgstr "Buchungsoptionen"
|
1095 |
|
1096 |
-
#: app/features/events.php:
|
|
|
1097 |
#, fuzzy
|
1098 |
#| msgid "Total booking limits"
|
1099 |
msgid "Total User Booking Limits"
|
1100 |
msgstr "Gesamt Verfügbare Plätze"
|
1101 |
|
1102 |
-
#: app/features/events.php:
|
1103 |
-
#: app/libraries/book.php:63 app/libraries/main.php:
|
1104 |
#: app/modules/booking/steps/tickets.php:137
|
1105 |
#: app/modules/booking/steps/tickets.php:143
|
1106 |
msgid "Tickets"
|
1107 |
msgstr "Tickets"
|
1108 |
|
1109 |
-
#: app/features/events.php:
|
1110 |
msgid "Fees"
|
1111 |
msgstr "Gebühren"
|
1112 |
|
1113 |
-
#: app/features/events.php:
|
1114 |
-
#: app/features/mec/settings.php:
|
1115 |
msgid "Ticket Variations / Options"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: app/features/events.php:
|
1119 |
#: app/features/mec/support-page.php:118
|
1120 |
#, fuzzy
|
1121 |
#| msgid "Organizer Tel"
|
1122 |
msgid "Organizer Payment"
|
1123 |
msgstr "Organisator Telefon"
|
1124 |
|
1125 |
-
#: app/features/events.php:
|
1126 |
#, fuzzy
|
1127 |
#| msgid "Total booking limits"
|
1128 |
msgid "Total booking limit"
|
1129 |
msgstr "Gesamt Verfügbare Plätze"
|
1130 |
|
1131 |
-
#: app/features/events.php:
|
1132 |
-
#: app/features/events.php:
|
1133 |
#: app/modules/booking/steps/tickets.php:137
|
1134 |
#: app/modules/booking/steps/tickets.php:143
|
1135 |
#: app/skins/available_spot/tpl.php:140
|
1136 |
msgid "Unlimited"
|
1137 |
msgstr "Unlimitiert"
|
1138 |
|
1139 |
-
#: app/features/events.php:
|
1140 |
msgid ""
|
1141 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1142 |
"limitation number."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: app/features/events.php:
|
1146 |
#, fuzzy
|
1147 |
#| msgid "Choose your single event style."
|
1148 |
msgid "Read About A Booking System"
|
1149 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1150 |
|
1151 |
-
#: app/features/events.php:
|
1152 |
msgid "100"
|
1153 |
msgstr "z.B. 100"
|
1154 |
|
1155 |
-
#: app/features/events.php:
|
1156 |
#, fuzzy
|
1157 |
#| msgid "Discount Type"
|
1158 |
msgid "Discount per user roles"
|
1159 |
msgstr "Rabatt-Art"
|
1160 |
|
1161 |
-
#: app/features/events.php:
|
1162 |
msgid "5"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: app/features/events.php:
|
|
|
1166 |
#, fuzzy
|
1167 |
#| msgid "Next Occurrence"
|
1168 |
msgid "Book All Occurrences"
|
1169 |
msgstr "Nächstes Event"
|
1170 |
|
1171 |
-
#: app/features/events.php:
|
1172 |
msgid "Sell all occurrences by one booking"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: app/features/events.php:
|
1176 |
msgid ""
|
1177 |
"If you have a series of events and you want to sell all of them at once, "
|
1178 |
"this option is for you! For example a weekly yoga course or something "
|
1179 |
"similar."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: app/features/events.php:
|
|
|
1183 |
#, fuzzy
|
1184 |
#| msgid "General Options"
|
1185 |
msgid "Interval Options"
|
1186 |
msgstr "Allgemeine Einstellungen"
|
1187 |
|
1188 |
-
#: app/features/events.php:
|
1189 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1190 |
#, fuzzy
|
1191 |
#| msgid "Booking Form"
|
1192 |
msgid "Show Booking Form Interval"
|
1193 |
msgstr "Buchungsformular"
|
1194 |
|
1195 |
-
#: app/features/events.php:
|
1196 |
msgid "Minutes (e.g 5)"
|
1197 |
msgstr "Minuten (z.B. 5)"
|
1198 |
|
1199 |
-
#: app/features/events.php:
|
1200 |
msgid ""
|
1201 |
"You can show booking form only at certain times before event start. If you "
|
1202 |
"set this option to 30 then booking form will open only 30 minutes before "
|
1203 |
"starting the event! One day is 1440 minutes."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: app/features/events.php:
|
1207 |
msgid "Automatic Approval"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: app/features/events.php:
|
1211 |
#, fuzzy
|
1212 |
#| msgid "Email verification"
|
1213 |
msgid "Email Verification"
|
1214 |
msgstr "Email-Verifizierung"
|
1215 |
|
1216 |
-
#: app/features/events.php:
|
1217 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1218 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1219 |
#: app/features/mec/booking.php:868
|
@@ -1225,210 +1229,204 @@ msgstr "Email-Verifizierung"
|
|
1225 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1226 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1227 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1228 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1229 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1230 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1231 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1232 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1233 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1234 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1235 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1236 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1237 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1238 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1239 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1240 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1241 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1242 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1243 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1244 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1245 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1246 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1247 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1248 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1249 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1250 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1251 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1252 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1253 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1254 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1255 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1256 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1257 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1258 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1259 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1260 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1261 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1262 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1263 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1264 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1265 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1266 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1267 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1268 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1269 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1270 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1271 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1272 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1273 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1274 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1275 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1276 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1277 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1278 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1279 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1280 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1281 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1282 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1283 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1284 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1285 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1286 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1287 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1288 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1289 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1290 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1291 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1292 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1293 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1294 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1295 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1296 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1297 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1298 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1299 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1300 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1301 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1302 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1303 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1304 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1305 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1306 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1307 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1308 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1309 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1310 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1311 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1312 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1313 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1314 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1315 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1316 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1317 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1318 |
-
#: app/features/mec/modules.php:124 app/features/mec/settings.php:
|
1319 |
-
#: app/features/mec/settings.php:
|
1320 |
msgid "Disabled"
|
1321 |
msgstr "Deaktiviert"
|
1322 |
|
1323 |
-
#: app/features/events.php:
|
1324 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1325 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1326 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1327 |
-
#: app/features/mec/settings.php:
|
1328 |
msgid "Enabled"
|
1329 |
msgstr "Aktiviert"
|
1330 |
|
1331 |
-
#: app/features/events.php:
|
1332 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1333 |
-
#: app/libraries/main.php:
|
1334 |
msgid "Booking Confirmation"
|
1335 |
msgstr "Buchungsbestätigung"
|
1336 |
|
1337 |
-
#: app/features/events.php:
|
1338 |
-
#, fuzzy
|
1339 |
-
#| msgid "Total booking limits"
|
1340 |
-
msgid "Total user booking limits"
|
1341 |
-
msgstr "Gesamt Verfügbare Plätze"
|
1342 |
-
|
1343 |
-
#: app/features/events.php:1621
|
1344 |
msgid "12"
|
1345 |
msgstr "12"
|
1346 |
|
1347 |
-
#: app/features/events.php:
|
1348 |
#, fuzzy
|
1349 |
#| msgid "Payment Gateways"
|
1350 |
msgid "Disabled Gateways"
|
1351 |
msgstr "Zahlungs-Gateways"
|
1352 |
|
1353 |
-
#: app/features/events.php:
|
1354 |
msgid ""
|
1355 |
"You can disable some of the following payment gateways by checking them "
|
1356 |
"otherwise they will be enabled."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: app/features/events.php:
|
1360 |
msgid ""
|
1361 |
"You're translating an event so MEC will use the original event for tickets "
|
1362 |
"and booking. You can only translate the ticket name and description. Please "
|
1363 |
"define exact tickets that you defined in the original event here."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: app/features/events.php:
|
1367 |
msgid "Add Ticket"
|
1368 |
msgstr "Ticket hinzufügen"
|
1369 |
|
1370 |
-
#: app/features/events.php:
|
1371 |
#, fuzzy
|
1372 |
#| msgid "Ticket"
|
1373 |
msgid "Ticket ID"
|
1374 |
msgstr "Ticket"
|
1375 |
|
1376 |
-
#: app/features/events.php:
|
1377 |
-
#: app/features/events.php:
|
1378 |
-
#: app/features/ix.php:
|
1379 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1380 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1381 |
msgid "ID"
|
1382 |
msgstr "ID"
|
1383 |
|
1384 |
-
#: app/features/events.php:
|
1385 |
msgid "Ticket Name"
|
1386 |
msgstr "Ticket Name"
|
1387 |
|
1388 |
-
#: app/features/events.php:
|
1389 |
-
#: app/features/events.php:
|
1390 |
-
#: app/features/ix.php:
|
1391 |
msgid "Start Time"
|
1392 |
msgstr "Uhrzeit des Beginns"
|
1393 |
|
1394 |
-
#: app/features/events.php:
|
1395 |
-
#: app/features/events.php:
|
1396 |
-
#: app/features/ix.php:
|
1397 |
msgid "End Time"
|
1398 |
msgstr "Uhrzeit Ende"
|
1399 |
|
1400 |
-
#: app/features/events.php:
|
1401 |
-
#: app/features/events.php:
|
1402 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1403 |
msgid "Description"
|
1404 |
msgstr "Beschreibung"
|
1405 |
|
1406 |
-
#: app/features/events.php:
|
1407 |
-
#: app/features/events.php:
|
1408 |
#, fuzzy
|
1409 |
#| msgid "Description"
|
1410 |
msgid "Private Description"
|
1411 |
msgstr "Beschreibung"
|
1412 |
|
1413 |
-
#: app/features/events.php:
|
1414 |
#, php-format
|
1415 |
msgid ""
|
1416 |
"You can show it on the email notifications by placing "
|
1417 |
"%%ticket_private_description%% into the email template."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: app/features/events.php:
|
1421 |
-
#: app/features/events.php:
|
1422 |
-
#: app/features/events.php:
|
1423 |
-
#: app/features/events.php:
|
1424 |
-
#: app/features/events.php:
|
1425 |
-
#: app/features/events.php:
|
1426 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1427 |
#: app/features/mec/booking.php:582
|
1428 |
msgid "Price"
|
1429 |
msgstr "Preis"
|
1430 |
|
1431 |
-
#: app/features/events.php:
|
1432 |
#, fuzzy
|
1433 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1434 |
msgid ""
|
@@ -1436,104 +1434,104 @@ msgid ""
|
|
1436 |
"any symbols or characters."
|
1437 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1438 |
|
1439 |
-
#: app/features/events.php:
|
1440 |
-
#: app/features/events.php:
|
1441 |
msgid "Price Label"
|
1442 |
msgstr "Preisschild"
|
1443 |
|
1444 |
-
#: app/features/events.php:
|
1445 |
msgid "For showing on website. e.g. $15"
|
1446 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1447 |
|
1448 |
-
#: app/features/events.php:
|
1449 |
msgid "Available Tickets"
|
1450 |
msgstr "Verfügbare Tickets: %s "
|
1451 |
|
1452 |
-
#: app/features/events.php:
|
1453 |
msgid "Minimum Ticket e.g. 3"
|
1454 |
msgstr "Ticket minimum z.B. 3"
|
1455 |
|
1456 |
-
#: app/features/events.php:
|
1457 |
msgid "MinimumTicket"
|
1458 |
msgstr "Ticket minimum"
|
1459 |
|
1460 |
-
#: app/features/events.php:
|
1461 |
msgid "Set a number for the minimum ticket reservation possible"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: app/features/events.php:
|
1465 |
msgid "e.g. 0"
|
1466 |
msgstr "z.B. 0"
|
1467 |
|
1468 |
-
#: app/features/events.php:
|
1469 |
msgid "Day"
|
1470 |
msgstr "Tag"
|
1471 |
|
1472 |
-
#: app/features/events.php:
|
1473 |
msgid "Hour"
|
1474 |
msgstr "Stunde"
|
1475 |
|
1476 |
-
#: app/features/events.php:
|
1477 |
#, php-format
|
1478 |
msgid "Stop selling ticket %s before event start."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: app/features/events.php:
|
1482 |
msgid "Price per Date"
|
1483 |
msgstr "Preis pro Datum"
|
1484 |
|
1485 |
-
#: app/features/events.php:
|
1486 |
-
#: app/features/events.php:
|
1487 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1488 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1489 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1490 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1491 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1492 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1493 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1494 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1495 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1496 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1497 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1498 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1499 |
-
#: app/features/mec/settings.php:
|
1500 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1501 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1502 |
msgid "Label"
|
1503 |
msgstr "Label"
|
1504 |
|
1505 |
-
#: app/features/events.php:
|
1506 |
-
#: app/features/events.php:
|
1507 |
-
#: app/features/events.php:
|
1508 |
-
#: app/features/events.php:
|
1509 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1510 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1511 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1512 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1513 |
-
#: app/libraries/main.php:
|
1514 |
-
#: app/libraries/main.php:
|
1515 |
-
#: app/libraries/main.php:
|
1516 |
-
#: app/libraries/main.php:
|
1517 |
-
#: app/libraries/main.php:
|
1518 |
-
#: app/libraries/main.php:
|
1519 |
-
#: app/libraries/main.php:
|
1520 |
-
#: app/libraries/main.php:
|
1521 |
msgid "Remove"
|
1522 |
msgstr "Entfernen"
|
1523 |
|
1524 |
-
#: app/features/events.php:
|
1525 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1526 |
msgid "Fee Title"
|
1527 |
msgstr "Gebühren Name"
|
1528 |
|
1529 |
-
#: app/features/events.php:
|
1530 |
-
#: app/features/events.php:
|
1531 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1532 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1533 |
msgid "Amount"
|
1534 |
msgstr "Betrag"
|
1535 |
|
1536 |
-
#: app/features/events.php:
|
1537 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1538 |
msgid ""
|
1539 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1542,25 +1540,25 @@ msgstr ""
|
|
1542 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1543 |
"sonst als Prozentsatz"
|
1544 |
|
1545 |
-
#: app/features/events.php:
|
1546 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1547 |
msgid "Percent"
|
1548 |
msgstr "Prozent"
|
1549 |
|
1550 |
-
#: app/features/events.php:
|
1551 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1552 |
msgid "Amount (Per Ticket)"
|
1553 |
msgstr "Betrag (pro Ticket)"
|
1554 |
|
1555 |
-
#: app/features/events.php:
|
1556 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1557 |
msgid "Amount (Per Booking)"
|
1558 |
msgstr "Betrag (pro Buchung)"
|
1559 |
|
1560 |
-
#: app/features/events.php:
|
1561 |
-
#: app/features/events.php:
|
1562 |
-
#: app/features/fes/form.php:256 app/features/ix.php:
|
1563 |
-
#: app/features/ix.php:
|
1564 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1565 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1566 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
@@ -1568,87 +1566,87 @@ msgstr "Betrag (pro Buchung)"
|
|
1568 |
msgid "Title"
|
1569 |
msgstr "Titel"
|
1570 |
|
1571 |
-
#: app/features/events.php:
|
1572 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1573 |
msgid "Option Price"
|
1574 |
msgstr "Preis Optionen"
|
1575 |
|
1576 |
-
#: app/features/events.php:
|
1577 |
-
#: app/features/events.php:
|
1578 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1579 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1580 |
msgid "Maximum Per Ticket"
|
1581 |
msgstr "Maximum pro Ticket"
|
1582 |
|
1583 |
-
#: app/features/events.php:
|
1584 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1585 |
#, fuzzy
|
1586 |
#| msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1587 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1588 |
msgstr "Maximum pro Ticket. Leerlassen für unendlich."
|
1589 |
|
1590 |
-
#: app/features/events.php:
|
1591 |
msgid ""
|
1592 |
"You're translating an event so MEC will use the original event for booking "
|
1593 |
"form. You can only translate the field name and options. Please define exact "
|
1594 |
"fields that you defined in the original event here."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: app/features/events.php:
|
1598 |
#, fuzzy
|
1599 |
#| msgid "Attendees List"
|
1600 |
msgid "Per Attendee Fields"
|
1601 |
msgstr "Teilnehmer Liste"
|
1602 |
|
1603 |
-
#: app/features/events.php:
|
1604 |
-
#: app/libraries/main.php:
|
1605 |
msgid "MEC Name"
|
1606 |
msgstr "MEC Name"
|
1607 |
|
1608 |
-
#: app/features/events.php:
|
1609 |
-
#: app/libraries/main.php:
|
1610 |
msgid "MEC Email"
|
1611 |
msgstr "MEC Email"
|
1612 |
|
1613 |
-
#: app/features/events.php:
|
1614 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1615 |
-
#: app/features/mec/single.php:190 app/libraries/main.php:
|
1616 |
msgid "Text"
|
1617 |
msgstr "Text"
|
1618 |
|
1619 |
-
#: app/features/events.php:
|
1620 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1621 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1622 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1623 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1624 |
-
#: app/libraries/main.php:
|
1625 |
msgid "Tel"
|
1626 |
msgstr "Tel"
|
1627 |
|
1628 |
-
#: app/features/events.php:
|
1629 |
-
#: app/libraries/main.php:
|
1630 |
msgid "File"
|
1631 |
msgstr "Datei"
|
1632 |
|
1633 |
-
#: app/features/events.php:
|
1634 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1635 |
-
#: app/features/mec/single.php:195 app/libraries/main.php:
|
1636 |
msgid "Textarea"
|
1637 |
msgstr "Textbereich"
|
1638 |
|
1639 |
-
#: app/features/events.php:
|
1640 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1641 |
-
#: app/features/mec/single.php:197 app/libraries/main.php:
|
1642 |
msgid "Checkboxes"
|
1643 |
msgstr "Checkboxes"
|
1644 |
|
1645 |
-
#: app/features/events.php:
|
1646 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1647 |
-
#: app/features/mec/single.php:198 app/libraries/main.php:
|
1648 |
msgid "Radio Buttons"
|
1649 |
msgstr "Radio Buttons"
|
1650 |
|
1651 |
-
#: app/features/events.php:
|
1652 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1653 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1654 |
#: app/features/mec/meta_boxes/search_form.php:41
|
@@ -1656,142 +1654,139 @@ msgstr "Radio Buttons"
|
|
1656 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1657 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1658 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1659 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1660 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1661 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1662 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1663 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1664 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1665 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1666 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1667 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1668 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1669 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1670 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1671 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1672 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1673 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1674 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1675 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1676 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1677 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1678 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1679 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1680 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1681 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1682 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1683 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1684 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1685 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1686 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1687 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1688 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1689 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1690 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1691 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1692 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1693 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1694 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1695 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1696 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1697 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1698 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1699 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1700 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1701 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1702 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1703 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1704 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1705 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1706 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1707 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1708 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1709 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1710 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1711 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1712 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1713 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1714 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1715 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1716 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1717 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1718 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1719 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1720 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1721 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1722 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1723 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1724 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1725 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1726 |
-
#: app/features/mec/
|
1727 |
-
#: app/features/mec/meta_boxes/search_form.php:799
|
1728 |
-
#: app/features/mec/meta_boxes/search_form.php:813
|
1729 |
-
#: app/features/mec/single.php:199 app/libraries/main.php:3712
|
1730 |
msgid "Dropdown"
|
1731 |
msgstr "Dropdown"
|
1732 |
|
1733 |
-
#: app/features/events.php:
|
1734 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1735 |
-
#: app/libraries/main.php:
|
1736 |
msgid "Agreement"
|
1737 |
msgstr "Zustimmung"
|
1738 |
|
1739 |
-
#: app/features/events.php:
|
1740 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1741 |
-
#: app/features/mec/single.php:196 app/libraries/main.php:
|
1742 |
msgid "Paragraph"
|
1743 |
msgstr "Absatz"
|
1744 |
|
1745 |
-
#: app/features/events.php:
|
1746 |
#, fuzzy
|
1747 |
#| msgid "Required Field"
|
1748 |
msgid "Fixed Fields"
|
1749 |
msgstr "Pflichtfeld"
|
1750 |
|
1751 |
-
#: app/features/events.php:
|
1752 |
-
#: app/features/events.php:
|
1753 |
#, php-format
|
1754 |
msgid "Show all %s"
|
1755 |
msgstr "Zeige alle %s"
|
1756 |
|
1757 |
-
#: app/features/events.php:
|
1758 |
msgid "labels"
|
1759 |
msgstr "Labels + Eventstatus"
|
1760 |
|
1761 |
-
#: app/features/events.php:
|
1762 |
msgid "locations"
|
1763 |
msgstr "Orte"
|
1764 |
|
1765 |
-
#: app/features/events.php:
|
1766 |
msgid "organizers"
|
1767 |
msgstr "Veranstalter"
|
1768 |
|
1769 |
-
#: app/features/events.php:
|
1770 |
msgid "Attendees List"
|
1771 |
msgstr "Teilnehmer Liste"
|
1772 |
|
1773 |
-
#: app/features/events.php:
|
1774 |
-
#: app/features/ix.php:
|
1775 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1776 |
-
#: app/features/locations.php:
|
1777 |
-
#: app/features/locations.php:
|
1778 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1779 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1780 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1781 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1782 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1783 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1784 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1785 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1786 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1787 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1788 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1789 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1790 |
-
#: app/features/mec/settings.php:
|
1791 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1792 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1793 |
-
#: app/libraries/main.php:
|
1794 |
-
#: app/libraries/main.php:
|
1795 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1796 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1797 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
@@ -1799,103 +1794,103 @@ msgstr "Teilnehmer Liste"
|
|
1799 |
msgid "Location"
|
1800 |
msgstr "Ort"
|
1801 |
|
1802 |
-
#: app/features/events.php:
|
1803 |
msgid "Repeat"
|
1804 |
msgstr "Wiederholen"
|
1805 |
|
1806 |
-
#: app/features/events.php:
|
1807 |
msgid "Author"
|
1808 |
msgstr "Autor"
|
1809 |
|
1810 |
-
#: app/features/events.php:
|
1811 |
#, fuzzy
|
1812 |
#| msgid "iCal Export"
|
1813 |
msgid "iCal / Outlook Export"
|
1814 |
msgstr "ical Export"
|
1815 |
|
1816 |
-
#: app/features/events.php:
|
1817 |
msgid "CSV Export"
|
1818 |
msgstr "CSV Export"
|
1819 |
|
1820 |
-
#: app/features/events.php:
|
1821 |
msgid "MS Excel Export"
|
1822 |
msgstr "MS Excel Export"
|
1823 |
|
1824 |
-
#: app/features/events.php:
|
1825 |
msgid "XML Export"
|
1826 |
msgstr "XML Export"
|
1827 |
|
1828 |
-
#: app/features/events.php:
|
1829 |
msgid "JSON Export"
|
1830 |
msgstr "JSON Export"
|
1831 |
|
1832 |
-
#: app/features/events.php:
|
1833 |
-
#: app/features/events.php:
|
1834 |
msgid "Duplicate"
|
1835 |
msgstr "Kopie"
|
1836 |
|
1837 |
-
#: app/features/events.php:
|
1838 |
-
#: app/features/ix.php:
|
1839 |
msgid "Link"
|
1840 |
msgstr "Link"
|
1841 |
|
1842 |
-
#: app/features/events.php:
|
1843 |
-
#: app/features/ix.php:
|
1844 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1845 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1846 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1847 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1848 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1849 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1850 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1851 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1852 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1853 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1854 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1855 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1856 |
msgid "Address"
|
1857 |
msgstr "Adresse"
|
1858 |
|
1859 |
-
#: app/features/events.php:
|
1860 |
#, php-format
|
1861 |
msgid "%s Tel"
|
1862 |
msgstr "%s Tel"
|
1863 |
|
1864 |
-
#: app/features/events.php:
|
1865 |
#, php-format
|
1866 |
msgid "%s Email"
|
1867 |
msgstr "%s Email"
|
1868 |
|
1869 |
-
#: app/features/events.php:
|
1870 |
-
#: app/features/mec/settings.php:
|
1871 |
msgid "Featured Image"
|
1872 |
msgstr "Ausgewähltes Bild"
|
1873 |
|
1874 |
-
#: app/features/events.php:
|
1875 |
-
#: app/features/profile/profile.php:183 app/libraries/main.php:
|
1876 |
-
#: app/libraries/main.php:
|
1877 |
msgid "Ticket"
|
1878 |
msgstr "Ticket"
|
1879 |
|
1880 |
-
#: app/features/events.php:
|
1881 |
msgid "Variations"
|
1882 |
msgstr "Variationen"
|
1883 |
|
1884 |
-
#: app/features/events.php:
|
1885 |
msgid "Unknown"
|
1886 |
msgstr "Unbekannt"
|
1887 |
|
1888 |
-
#: app/features/events.php:
|
1889 |
msgid ""
|
1890 |
"If you want to send an email, first select your attendees and then click in "
|
1891 |
"the button below, please."
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: app/features/events.php:
|
1895 |
msgid "Send Email"
|
1896 |
msgstr "E-Mail senden"
|
1897 |
|
1898 |
-
#: app/features/events.php:
|
1899 |
msgid "No Attendees Found!"
|
1900 |
msgstr "Keine Teilnehmer gefunden!"
|
1901 |
|
@@ -1906,10 +1901,12 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
|
1906 |
|
1907 |
#: app/features/fes.php:94 app/features/fes.php:175
|
1908 |
#: app/features/login/login.php:19 app/features/profile.php:74
|
|
|
1909 |
msgid "Login"
|
1910 |
msgstr "Login"
|
1911 |
|
1912 |
#: app/features/fes.php:94 app/features/fes.php:175 app/features/profile.php:74
|
|
|
1913 |
msgid "Register"
|
1914 |
msgstr "Anmelden"
|
1915 |
|
@@ -1939,8 +1936,8 @@ msgstr "Die Veranstaltung wurde entfernt."
|
|
1939 |
msgid "Order Time"
|
1940 |
msgstr "Uhrzeit Bestellung"
|
1941 |
|
1942 |
-
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:
|
1943 |
-
#: app/libraries/main.php:
|
1944 |
msgid "Transaction ID"
|
1945 |
msgstr "Transaktions-ID"
|
1946 |
|
@@ -1948,7 +1945,7 @@ msgstr "Transaktions-ID"
|
|
1948 |
msgid "Total Price"
|
1949 |
msgstr "Gesamt Preis"
|
1950 |
|
1951 |
-
#: app/features/fes.php:243 app/libraries/main.php:
|
1952 |
msgid "Gateway"
|
1953 |
msgstr "Gateway"
|
1954 |
|
@@ -2028,8 +2025,8 @@ msgstr "Die Veranstaltung wurde veröffentlicht."
|
|
2028 |
msgid "Go back to events list"
|
2029 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
2030 |
|
2031 |
-
#: app/features/fes/form.php:264 app/features/mec/settings.php:
|
2032 |
-
#: app/features/mec/settings.php:
|
2033 |
msgid "Excerpt"
|
2034 |
msgstr ""
|
2035 |
|
@@ -2132,8 +2129,8 @@ msgstr "Bild entfernen"
|
|
2132 |
#: app/features/fes/form.php:891 app/features/labels.php:61
|
2133 |
#: app/features/labels.php:221 app/features/mec.php:460
|
2134 |
#: app/features/mec/meta_boxes/filter.php:72
|
2135 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
2136 |
-
#: app/libraries/main.php:
|
2137 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
2138 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
2139 |
msgid "Labels"
|
@@ -2151,11 +2148,11 @@ msgstr ""
|
|
2151 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
2152 |
|
2153 |
#: app/features/fes/form.php:959 app/features/mec.php:467
|
2154 |
-
#: app/features/mec/modules.php:51 app/features/mec/settings.php:
|
2155 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2156 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2157 |
-
#: app/libraries/main.php:
|
2158 |
-
#: app/libraries/main.php:
|
2159 |
msgid "Speakers"
|
2160 |
msgstr "Sprecher"
|
2161 |
|
@@ -2169,7 +2166,7 @@ msgstr "Sprecher Namen"
|
|
2169 |
msgid "Separate names with commas: Justin, Chris"
|
2170 |
msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
|
2171 |
|
2172 |
-
#: app/features/fes/form.php:1003 app/modules/booking/steps/form.php:
|
2173 |
msgid "Submit"
|
2174 |
msgstr "Buchung abschließen"
|
2175 |
|
@@ -2207,7 +2204,7 @@ msgid "MEC - Import / Export"
|
|
2207 |
msgstr "MEC - Import / Export"
|
2208 |
|
2209 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2210 |
-
#: app/libraries/main.php:
|
2211 |
msgid "Import / Export"
|
2212 |
msgstr "Import / Export"
|
2213 |
|
@@ -2225,27 +2222,27 @@ msgstr "Der Datei Typ muss XML oder ICS sein."
|
|
2225 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: app/features/ix.php:265 app/libraries/main.php:
|
2229 |
-
#: app/libraries/main.php:
|
2230 |
msgid "Confirmed"
|
2231 |
msgstr "Bestätigt"
|
2232 |
|
2233 |
-
#: app/features/ix.php:266 app/libraries/main.php:
|
2234 |
-
#: app/libraries/main.php:
|
2235 |
msgid "Rejected"
|
2236 |
msgstr "Abgelehnt"
|
2237 |
|
2238 |
#: app/features/ix.php:270 app/features/mec/booking.php:1011
|
2239 |
#: app/features/mec/booking.php:1033 app/features/mec/modules.php:440
|
2240 |
#: app/features/mec/modules.php:462 app/features/mec/notifications.php:1312
|
2241 |
-
#: app/features/mec/notifications.php:1334 app/features/mec/settings.php:
|
2242 |
-
#: app/features/mec/settings.php:
|
2243 |
-
#: app/features/mec/single.php:468 app/libraries/main.php:
|
2244 |
msgid "Verified"
|
2245 |
msgstr "Verifiziert"
|
2246 |
|
2247 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2248 |
-
#: app/features/labels.php:143 app/libraries/main.php:
|
2249 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2250 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2251 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
@@ -2281,91 +2278,91 @@ msgstr "Der Datei Typ muss XML oder ICS sein."
|
|
2281 |
msgid "The events are imported successfully!"
|
2282 |
msgstr "Die Events wurden erfolgreich importiert!"
|
2283 |
|
2284 |
-
#: app/features/ix.php:
|
2285 |
msgid "Third Party plugin is not installed and activated!"
|
2286 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
2287 |
|
2288 |
-
#: app/features/ix.php:
|
2289 |
msgid "Third Party plugin is invalid!"
|
2290 |
msgstr "Drittanbieter-Plugin ist ungültig!"
|
2291 |
|
2292 |
-
#: app/features/ix.php:
|
2293 |
#, fuzzy
|
2294 |
#| msgid "Both of API key and Calendar ID are required!"
|
2295 |
msgid "API key and Calendar ID are required!"
|
2296 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
2297 |
|
2298 |
-
#: app/features/ix.php:
|
2299 |
#, fuzzy
|
2300 |
#| msgid "Please select some events to import!"
|
2301 |
msgid "Please select events to import!"
|
2302 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
2303 |
|
2304 |
-
#: app/features/ix.php:
|
2305 |
#, fuzzy
|
2306 |
#| msgid "Both of API key and Calendar ID are required!"
|
2307 |
msgid "API key and Group URL are required!"
|
2308 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
2309 |
|
2310 |
-
#: app/features/ix.php:
|
2311 |
msgid "Check at Meetup"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: app/features/ix.php:
|
2315 |
msgid "Organizer Tel"
|
2316 |
msgstr "Organisator Telefon"
|
2317 |
|
2318 |
-
#: app/features/ix.php:
|
2319 |
msgid "Organizer Email"
|
2320 |
msgstr "Organisator Email"
|
2321 |
|
2322 |
-
#: app/features/ix.php:
|
2323 |
#, fuzzy
|
2324 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2325 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2326 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2327 |
|
2328 |
-
#: app/features/ix.php:
|
2329 |
#, fuzzy, php-format
|
2330 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2331 |
msgid "All seems good! Please click %s to authenticate your app."
|
2332 |
msgstr ""
|
2333 |
"Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
|
2334 |
|
2335 |
-
#: app/features/ix.php:
|
2336 |
msgid "here"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: app/features/ix.php:
|
2340 |
#, fuzzy
|
2341 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2342 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2343 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2344 |
|
2345 |
-
#: app/features/ix.php:
|
2346 |
#, fuzzy, php-format
|
2347 |
#| msgid "%s events added to Google Calendar successfully."
|
2348 |
msgid "%s events added to Google Calendar with success."
|
2349 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
2350 |
|
2351 |
-
#: app/features/ix.php:
|
2352 |
#, fuzzy, php-format
|
2353 |
#| msgid "%s previously added events get updated."
|
2354 |
msgid "%s Updated previously added events."
|
2355 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
2356 |
|
2357 |
-
#: app/features/ix.php:
|
2358 |
#, php-format
|
2359 |
msgid "%s events failed to add for following reasons: %s"
|
2360 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
2361 |
|
2362 |
-
#: app/features/ix.php:
|
2363 |
#, fuzzy
|
2364 |
#| msgid "Please insert your facebook page's link."
|
2365 |
msgid "Please insert your Facebook page's link."
|
2366 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2367 |
|
2368 |
-
#: app/features/ix.php:
|
2369 |
#, fuzzy
|
2370 |
#| msgid ""
|
2371 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
@@ -2377,7 +2374,7 @@ msgstr ""
|
|
2377 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
2378 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
2379 |
|
2380 |
-
#: app/features/ix.php:
|
2381 |
msgid "Please insert your facebook page's link."
|
2382 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2383 |
|
@@ -2554,7 +2551,7 @@ msgstr "Zum Google Kalender hinzufügen"
|
|
2554 |
|
2555 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1013
|
2556 |
#: app/features/mec/modules.php:442 app/features/mec/notifications.php:1314
|
2557 |
-
#: app/features/mec/settings.php:
|
2558 |
msgid "Checking ..."
|
2559 |
msgstr "Überprüfung"
|
2560 |
|
@@ -3072,15 +3069,15 @@ msgstr "Zähler"
|
|
3072 |
msgid "Slug"
|
3073 |
msgstr "Slug"
|
3074 |
|
3075 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
3076 |
#, php-format
|
3077 |
msgid "Event %s"
|
3078 |
msgstr "Event %s"
|
3079 |
|
3080 |
#: app/features/locations.php:59 app/features/mec.php:461
|
3081 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
3082 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
3083 |
-
#: app/libraries/main.php:
|
3084 |
msgid "Locations"
|
3085 |
msgstr "Orte"
|
3086 |
|
@@ -3089,7 +3086,7 @@ msgid "Enter the location address"
|
|
3089 |
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
3090 |
|
3091 |
#: app/features/locations.php:130 app/features/locations.php:196
|
3092 |
-
#: app/features/locations.php:
|
3093 |
msgid "Latitude"
|
3094 |
msgstr "Breitengrad z.B. 49.0069646 "
|
3095 |
|
@@ -3098,7 +3095,7 @@ msgid "Geo latitude (Optional)"
|
|
3098 |
msgstr "Geologischer Breitengrad (Optional)"
|
3099 |
|
3100 |
#: app/features/locations.php:138 app/features/locations.php:200
|
3101 |
-
#: app/features/locations.php:
|
3102 |
msgid "Longitude"
|
3103 |
msgstr "Längengrad z.B. 8.4118636 "
|
3104 |
|
@@ -3107,7 +3104,7 @@ msgid "Geo longitude (Optional)"
|
|
3107 |
msgstr "Geologischer Längengrad (Optional)"
|
3108 |
|
3109 |
#: app/features/locations.php:146 app/features/locations.php:204
|
3110 |
-
#: app/features/locations.php:
|
3111 |
#, fuzzy
|
3112 |
#| msgid "Locations"
|
3113 |
msgid "Location Website"
|
@@ -3132,54 +3129,54 @@ msgid "Upload/Add image"
|
|
3132 |
msgstr "Bild hochladen/hinzufügen"
|
3133 |
|
3134 |
#: app/features/locations.php:161 app/features/locations.php:213
|
3135 |
-
#: app/features/locations.php:
|
3136 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
3137 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
3138 |
#: app/features/speakers.php:181 app/features/speakers.php:232
|
3139 |
msgid "Remove image"
|
3140 |
msgstr "Bild entfernen"
|
3141 |
|
3142 |
-
#: app/features/locations.php:
|
3143 |
msgid "Hide location"
|
3144 |
msgstr "Ort verbergen"
|
3145 |
|
3146 |
-
#: app/features/locations.php:
|
3147 |
msgid "Insert a new location"
|
3148 |
msgstr "Neuen Ort hinzufügen"
|
3149 |
|
3150 |
-
#: app/features/locations.php:
|
3151 |
msgid "Choose one of saved locations or insert new one below."
|
3152 |
msgstr ""
|
3153 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
3154 |
|
3155 |
-
#: app/features/locations.php:
|
3156 |
msgid "Location Name"
|
3157 |
msgstr "Name Veranstaltungsort"
|
3158 |
|
3159 |
-
#: app/features/locations.php:
|
3160 |
msgid "eg. City Hall"
|
3161 |
msgstr ""
|
3162 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
3163 |
"Westfalenhalle"
|
3164 |
|
3165 |
-
#: app/features/locations.php:
|
3166 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3167 |
msgid "Event Location"
|
3168 |
msgstr "Veranstaltungsort"
|
3169 |
|
3170 |
-
#: app/features/locations.php:
|
3171 |
msgid "eg. City hall, Manhattan, New York"
|
3172 |
msgstr ""
|
3173 |
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
3174 |
"Ring 1, 76297 Stutensee"
|
3175 |
|
3176 |
-
#: app/features/locations.php:
|
3177 |
#, fuzzy
|
3178 |
#| msgid "Longitude"
|
3179 |
msgid "Latitude/Longitude"
|
3180 |
msgstr "Längengrad z.B. 8.4118636 "
|
3181 |
|
3182 |
-
#: app/features/locations.php:
|
3183 |
msgid ""
|
3184 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
3185 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -3188,25 +3185,25 @@ msgid ""
|
|
3188 |
"the location on the map to find lat long coordinates."
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: app/features/locations.php:
|
3192 |
msgid "Get Latitude and Longitude"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: app/features/locations.php:
|
3196 |
#: app/features/popup/event.php:202
|
3197 |
msgid "Choose image"
|
3198 |
msgstr "Bild wählen"
|
3199 |
|
3200 |
-
#: app/features/locations.php:
|
3201 |
msgid "Don't show map in single event page"
|
3202 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
3203 |
|
3204 |
-
#: app/features/locations.php:
|
3205 |
-
#: app/libraries/main.php:
|
3206 |
msgid "Other Locations"
|
3207 |
msgstr "Andere Orte"
|
3208 |
|
3209 |
-
#: app/features/locations.php:
|
3210 |
#, fuzzy
|
3211 |
#| msgid ""
|
3212 |
#| "You can select extra organizers in addition to main organizer if you like."
|
@@ -3228,7 +3225,7 @@ msgstr ""
|
|
3228 |
msgid "Login successful, redirecting..."
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: app/features/login/login.php:11 app/modules/booking/steps/form.php:
|
3232 |
#, fuzzy
|
3233 |
#| msgid "API Password"
|
3234 |
msgid "Password"
|
@@ -3286,7 +3283,7 @@ msgstr "Support"
|
|
3286 |
#: app/features/mec.php:462 app/features/mec/dashboard.php:286
|
3287 |
#: app/features/mec/meta_boxes/filter.php:71
|
3288 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3289 |
-
#: app/libraries/main.php:
|
3290 |
msgid "Organizers"
|
3291 |
msgstr "Veranstalter"
|
3292 |
|
@@ -3325,7 +3322,7 @@ msgstr "Export"
|
|
3325 |
msgid "MEC - Go Pro"
|
3326 |
msgstr "Support"
|
3327 |
|
3328 |
-
#: app/features/mec.php:479 app/features/mec.php:
|
3329 |
#: app/features/mec/go-pro.php:9
|
3330 |
msgid "Go Pro"
|
3331 |
msgstr ""
|
@@ -3366,75 +3363,75 @@ msgstr "Filteroptionen"
|
|
3366 |
msgid "Search Form"
|
3367 |
msgstr "Suche Formular"
|
3368 |
|
3369 |
-
#: app/features/mec.php:
|
3370 |
msgid "Display content's images as Popup"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#: app/features/mec.php:
|
3374 |
msgid "Single Event Display Method"
|
3375 |
msgstr "Single Event Anzeigemethode"
|
3376 |
|
3377 |
-
#: app/features/mec.php:
|
3378 |
#, fuzzy
|
3379 |
#| msgid "Modal 1"
|
3380 |
msgid "Modal Popup"
|
3381 |
msgstr "Modal 1"
|
3382 |
|
3383 |
-
#: app/features/mec.php:
|
3384 |
#, fuzzy
|
3385 |
#| msgid "Disabled"
|
3386 |
msgid "Disable Link"
|
3387 |
msgstr "Deaktiviert"
|
3388 |
|
3389 |
-
#: app/features/mec.php:
|
3390 |
#, fuzzy
|
3391 |
#| msgid "Booking Options"
|
3392 |
msgid "Booking Button / Icon"
|
3393 |
msgstr "Buchungsoptionen"
|
3394 |
|
3395 |
-
#: app/features/mec.php:
|
3396 |
#, fuzzy
|
3397 |
#| msgid "Organizers"
|
3398 |
msgid "Display Organizers"
|
3399 |
msgstr "Veranstalter"
|
3400 |
|
3401 |
-
#: app/features/mec.php:
|
3402 |
msgid "Total Bookings"
|
3403 |
msgstr "Gesamte Buchungen"
|
3404 |
|
3405 |
-
#: app/features/mec.php:
|
3406 |
msgid "Modern Events Calendar (Lite)"
|
3407 |
msgstr "Moderner Event Kalender (Lite)"
|
3408 |
|
3409 |
-
#: app/features/mec.php:
|
3410 |
-
#: app/features/mec/settings.php:
|
3411 |
msgid "Upcoming Events"
|
3412 |
msgstr "Bevorstehende Events"
|
3413 |
|
3414 |
-
#: app/features/mec.php:
|
3415 |
#, fuzzy
|
3416 |
#| msgid "Update %s"
|
3417 |
msgid "News & Updates"
|
3418 |
msgstr "Update %s"
|
3419 |
|
3420 |
-
#: app/features/mec.php:
|
3421 |
msgid "Blog"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: app/features/mec.php:
|
3425 |
msgid "Help"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: app/features/mec.php:
|
3429 |
#, php-format
|
3430 |
msgid "Total Sells (%s)"
|
3431 |
msgstr "Alle Verkäufe (%s)"
|
3432 |
|
3433 |
-
#: app/features/mec.php:
|
3434 |
msgid "This Month"
|
3435 |
msgstr "Diesen Monat"
|
3436 |
|
3437 |
-
#: app/features/mec.php:
|
3438 |
msgid "Last Month"
|
3439 |
msgstr "Letzten Monat"
|
3440 |
|
@@ -3442,29 +3439,29 @@ msgstr "Letzten Monat"
|
|
3442 |
msgid "This Year"
|
3443 |
msgstr "Diese Jahr"
|
3444 |
|
3445 |
-
#: app/features/mec.php:
|
3446 |
msgid "Last Year"
|
3447 |
msgstr "Letztes Jahr"
|
3448 |
|
3449 |
-
#: app/features/mec.php:
|
3450 |
msgid "Bar"
|
3451 |
msgstr "Bar"
|
3452 |
|
3453 |
-
#: app/features/mec.php:
|
3454 |
msgid "Line"
|
3455 |
msgstr "Linie"
|
3456 |
|
3457 |
-
#: app/features/mec.php:
|
3458 |
msgid "Filter"
|
3459 |
msgstr "Filter"
|
3460 |
|
3461 |
-
#: app/features/mec.php:
|
3462 |
#, fuzzy
|
3463 |
#| msgid "Modern Events Calendar"
|
3464 |
msgid "Print Calendar"
|
3465 |
msgstr "Moderner Event Kalender "
|
3466 |
|
3467 |
-
#: app/features/mec.php:
|
3468 |
#, fuzzy
|
3469 |
#| msgid "Multiple Day Events"
|
3470 |
msgid "Display Events"
|
@@ -3489,7 +3486,7 @@ msgstr ""
|
|
3489 |
|
3490 |
#: app/features/mec/booking.php:78 app/features/mec/messages.php:13
|
3491 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3492 |
-
#: app/features/mec/settings.php:
|
3493 |
#: app/features/mec/styling.php:35
|
3494 |
msgid "Search..."
|
3495 |
msgstr "Suche…"
|
@@ -3506,9 +3503,9 @@ msgstr "Suche…"
|
|
3506 |
#: app/features/mec/notifications.php:1213
|
3507 |
#: app/features/mec/notifications.php:1225
|
3508 |
#: app/features/mec/notifications.php:1331
|
3509 |
-
#: app/features/mec/notifications.php:1345 app/features/mec/settings.php:
|
3510 |
-
#: app/features/mec/settings.php:
|
3511 |
-
#: app/features/mec/settings.php:
|
3512 |
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3513 |
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3514 |
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
@@ -3618,7 +3615,7 @@ msgid "User Registration"
|
|
3618 |
msgstr "Register Button"
|
3619 |
|
3620 |
#: app/features/mec/booking.php:168 app/features/mec/booking.php:176
|
3621 |
-
#: app/modules/booking/steps/form.php:
|
3622 |
#, fuzzy
|
3623 |
#| msgid "Register Button"
|
3624 |
msgid "Registration"
|
@@ -3722,8 +3719,8 @@ msgid ""
|
|
3722 |
msgstr ""
|
3723 |
|
3724 |
#: app/features/mec/booking.php:267 app/features/mec/booking.php:269
|
3725 |
-
#: app/features/mec/booking.php:279 app/features/mec/settings.php:
|
3726 |
-
#: app/features/mec/settings.php:
|
3727 |
msgid "Thank You Page"
|
3728 |
msgstr "Danke Seite"
|
3729 |
|
@@ -3736,15 +3733,15 @@ msgstr ""
|
|
3736 |
"es leer, wenn Sie es deaktivieren möchten."
|
3737 |
|
3738 |
#: app/features/mec/booking.php:287 app/features/mec/booking.php:292
|
3739 |
-
#: app/features/mec/settings.php:
|
3740 |
msgid "Thank You Page Time Interval"
|
3741 |
msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
|
3742 |
|
3743 |
-
#: app/features/mec/booking.php:289 app/features/mec/settings.php:
|
3744 |
msgid "2000 mean 2 seconds"
|
3745 |
msgstr "2000 bedeutet 2 Sekunden"
|
3746 |
|
3747 |
-
#: app/features/mec/booking.php:293 app/features/mec/settings.php:
|
3748 |
msgid ""
|
3749 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3750 |
"2000 means 2 seconds."
|
@@ -3812,7 +3809,7 @@ msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
|
3812 |
msgid "Send confirmation email in auto confirmation mode"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: app/features/mec/booking.php:413 app/libraries/main.php:
|
3816 |
#, fuzzy
|
3817 |
#| msgid "Booking"
|
3818 |
msgid "Booking Shortcode"
|
@@ -3846,7 +3843,7 @@ msgid ""
|
|
3846 |
msgstr ""
|
3847 |
|
3848 |
#: app/features/mec/booking.php:447 app/features/mec/booking.php:835
|
3849 |
-
#: app/libraries/main.php:
|
3850 |
msgid "Taxes / Fees"
|
3851 |
msgstr "Steuern/Gebühren"
|
3852 |
|
@@ -3858,7 +3855,7 @@ msgstr "Modul für Gebühren/Steuern aktivieren"
|
|
3858 |
msgid "Add Fee"
|
3859 |
msgstr "Gebühr hinzufügen"
|
3860 |
|
3861 |
-
#: app/features/mec/booking.php:524 app/libraries/main.php:
|
3862 |
msgid "Ticket Variations & Options"
|
3863 |
msgstr ""
|
3864 |
|
@@ -4008,20 +4005,20 @@ msgstr ""
|
|
4008 |
|
4009 |
#: app/features/mec/booking.php:1008 app/features/mec/messages.php:78
|
4010 |
#: app/features/mec/modules.php:437 app/features/mec/notifications.php:1309
|
4011 |
-
#: app/features/mec/settings.php:
|
4012 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:323
|
4013 |
msgid "Saved"
|
4014 |
msgstr "Gesichert"
|
4015 |
|
4016 |
#: app/features/mec/booking.php:1009 app/features/mec/messages.php:79
|
4017 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1310
|
4018 |
-
#: app/features/mec/settings.php:
|
4019 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:324
|
4020 |
msgid "Settings Saved!"
|
4021 |
msgstr "Einstellungen gespeichert!"
|
4022 |
|
4023 |
#: app/features/mec/booking.php:1035 app/features/mec/modules.php:464
|
4024 |
-
#: app/features/mec/notifications.php:1336 app/features/mec/settings.php:
|
4025 |
#: app/features/mec/single.php:470
|
4026 |
msgid "Please Refresh Page"
|
4027 |
msgstr "Bitte Seiten Refresh vornehmen"
|
@@ -4138,7 +4135,7 @@ msgid "Download Settings"
|
|
4138 |
msgstr "Einstellungen Herunterladen"
|
4139 |
|
4140 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4141 |
-
#: app/features/mec/support.php:66 app/libraries/main.php:
|
4142 |
msgid "Messages"
|
4143 |
msgstr "Nachrichten"
|
4144 |
|
@@ -4169,9 +4166,9 @@ msgstr "Skin"
|
|
4169 |
#: app/features/mec/meta_boxes/display_options.php:953
|
4170 |
#: app/features/mec/meta_boxes/display_options.php:1284
|
4171 |
#: app/features/mec/meta_boxes/display_options.php:1575
|
4172 |
-
#: app/features/mec/settings.php:
|
4173 |
-
#: app/features/mec/settings.php:
|
4174 |
-
#: app/features/mec/settings.php:
|
4175 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4176 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4177 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
@@ -4182,8 +4179,8 @@ msgstr "Klassisch"
|
|
4182 |
|
4183 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4184 |
#: app/features/mec/meta_boxes/display_options.php:289
|
4185 |
-
#: app/features/mec/settings.php:
|
4186 |
-
#: app/features/mec/settings.php:
|
4187 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4188 |
msgid "Minimal"
|
4189 |
msgstr "Minimal"
|
@@ -4194,10 +4191,10 @@ msgstr "Minimal"
|
|
4194 |
#: app/features/mec/meta_boxes/display_options.php:955
|
4195 |
#: app/features/mec/meta_boxes/display_options.php:1282
|
4196 |
#: app/features/mec/meta_boxes/display_options.php:1577
|
4197 |
-
#: app/features/mec/settings.php:
|
4198 |
-
#: app/features/mec/settings.php:
|
4199 |
-
#: app/features/mec/settings.php:
|
4200 |
-
#: app/features/mec/settings.php:
|
4201 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4202 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4203 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
@@ -4205,13 +4202,13 @@ msgid "Modern"
|
|
4205 |
msgstr "Modern"
|
4206 |
|
4207 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4208 |
-
#: app/features/mec/settings.php:
|
4209 |
#: app/features/popup/shortcode.php:83
|
4210 |
msgid "Standard"
|
4211 |
msgstr "Standard"
|
4212 |
|
4213 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4214 |
-
#: app/features/mec/settings.php:
|
4215 |
#: app/features/popup/shortcode.php:88
|
4216 |
msgid "Accordion"
|
4217 |
msgstr "Accordion"
|
@@ -4614,9 +4611,9 @@ msgstr "Zeige Monatsteilung"
|
|
4614 |
#: app/features/mec/meta_boxes/display_options.php:954
|
4615 |
#: app/features/mec/meta_boxes/display_options.php:1283
|
4616 |
#: app/features/mec/meta_boxes/display_options.php:1576
|
4617 |
-
#: app/features/mec/settings.php:
|
4618 |
-
#: app/features/mec/settings.php:
|
4619 |
-
#: app/features/mec/settings.php:
|
4620 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4621 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4622 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
@@ -4626,8 +4623,8 @@ msgstr "Clean"
|
|
4626 |
#: app/features/mec/meta_boxes/display_options.php:291
|
4627 |
#: app/features/mec/meta_boxes/display_options.php:693
|
4628 |
#: app/features/mec/meta_boxes/display_options.php:957
|
4629 |
-
#: app/features/mec/settings.php:
|
4630 |
-
#: app/features/mec/settings.php:
|
4631 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4632 |
#: app/features/popup/shortcode.php:219
|
4633 |
msgid "Simple"
|
@@ -4641,8 +4638,8 @@ msgstr "Farbenfroh"
|
|
4641 |
#: app/features/mec/meta_boxes/display_options.php:293
|
4642 |
#: app/features/mec/meta_boxes/display_options.php:692
|
4643 |
#: app/features/mec/meta_boxes/display_options.php:956
|
4644 |
-
#: app/features/mec/settings.php:
|
4645 |
-
#: app/features/mec/settings.php:
|
4646 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4647 |
#: app/features/popup/shortcode.php:214
|
4648 |
msgid "Novel"
|
@@ -4692,15 +4689,15 @@ msgstr "Standardansicht"
|
|
4692 |
|
4693 |
#: app/features/mec/meta_boxes/display_options.php:679
|
4694 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4695 |
-
#: app/libraries/main.php:364 app/libraries/main.php:
|
4696 |
-
#: app/libraries/main.php:
|
4697 |
msgid "List View"
|
4698 |
msgstr "Listenansicht"
|
4699 |
|
4700 |
#: app/features/mec/meta_boxes/display_options.php:680
|
4701 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4702 |
-
#: app/libraries/main.php:365 app/libraries/main.php:
|
4703 |
-
#: app/libraries/main.php:
|
4704 |
msgid "Grid View"
|
4705 |
msgstr "Rasterdarstellung"
|
4706 |
|
@@ -4714,8 +4711,8 @@ msgstr "Stundenplan"
|
|
4714 |
|
4715 |
#: app/features/mec/meta_boxes/display_options.php:682
|
4716 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4717 |
-
#: app/libraries/main.php:368 app/libraries/main.php:
|
4718 |
-
#: app/libraries/main.php:
|
4719 |
msgid "Yearly View"
|
4720 |
msgstr "Jahresansicht"
|
4721 |
|
@@ -4726,15 +4723,15 @@ msgstr "Monatliche Kalenderansicht"
|
|
4726 |
|
4727 |
#: app/features/mec/meta_boxes/display_options.php:684
|
4728 |
#: app/features/mec/meta_boxes/display_options.php:794
|
4729 |
-
#: app/libraries/main.php:371 app/libraries/main.php:
|
4730 |
-
#: app/libraries/main.php:
|
4731 |
msgid "Weekly View"
|
4732 |
msgstr "Wochenansicht"
|
4733 |
|
4734 |
#: app/features/mec/meta_boxes/display_options.php:685
|
4735 |
#: app/features/mec/meta_boxes/display_options.php:804
|
4736 |
-
#: app/libraries/main.php:370 app/libraries/main.php:
|
4737 |
-
#: app/libraries/main.php:
|
4738 |
msgid "Daily View"
|
4739 |
msgstr "Tagesansicht"
|
4740 |
|
@@ -5181,7 +5178,7 @@ msgstr "Geben Sie die gewünschten Tags (Schlagworte) durch Komma getrennt ein"
|
|
5181 |
msgid "Choose your desired authors for filtering the events."
|
5182 |
msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
|
5183 |
|
5184 |
-
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:
|
5185 |
msgid "Expired Events"
|
5186 |
msgstr "Abgelaufene Events"
|
5187 |
|
@@ -5246,86 +5243,81 @@ msgid "Show Search Form"
|
|
5246 |
msgstr "Such Formular anzeigen"
|
5247 |
|
5248 |
#: app/features/mec/meta_boxes/search_form.php:53
|
5249 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5250 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5251 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5252 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5253 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5254 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5255 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5256 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5257 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5258 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5259 |
-
#: app/features/mec/settings.php:
|
5260 |
#: app/features/mec/single.php:386 app/features/search.php:86
|
5261 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5262 |
-
#: app/libraries/main.php:
|
5263 |
#: app/libraries/skins.php:1016 app/modules/speakers/details.php:18
|
5264 |
msgid "Speaker"
|
5265 |
msgstr "Sprecher"
|
5266 |
|
5267 |
#: app/features/mec/meta_boxes/search_form.php:60
|
5268 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5269 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5270 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5271 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5272 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5273 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5274 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5275 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5276 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5277 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5278 |
-
#: app/features/mec/settings.php:
|
5279 |
#: app/features/mec/single.php:395 app/features/search.php:92
|
5280 |
#: app/libraries/skins.php:1042
|
5281 |
msgid "Tag"
|
5282 |
msgstr "Schlagwort"
|
5283 |
|
5284 |
#: app/features/mec/meta_boxes/search_form.php:77
|
5285 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5286 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5287 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5288 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5289 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5290 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5291 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5292 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5293 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5294 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5295 |
#, fuzzy
|
5296 |
#| msgid "Address"
|
5297 |
msgid "Address Input"
|
5298 |
msgstr "Adresse"
|
5299 |
|
5300 |
#: app/features/mec/meta_boxes/search_form.php:81
|
5301 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5302 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5303 |
-
|
5304 |
-
|
5305 |
-
|
5306 |
-
|
5307 |
-
#: app/features/mec/meta_boxes/search_form.php:634
|
5308 |
-
#: app/features/mec/meta_boxes/search_form.php:704
|
5309 |
-
#: app/features/mec/meta_boxes/search_form.php:810
|
5310 |
-
msgid "Month Filter"
|
5311 |
-
msgstr "Monatsfilter"
|
5312 |
|
5313 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5314 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5315 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5316 |
-
|
5317 |
-
|
5318 |
-
#: app/features/mec/meta_boxes/search_form.php:438
|
5319 |
-
#: app/features/mec/meta_boxes/search_form.php:501
|
5320 |
-
#: app/features/mec/meta_boxes/search_form.php:571
|
5321 |
-
#: app/features/mec/meta_boxes/search_form.php:641
|
5322 |
-
#: app/features/mec/meta_boxes/search_form.php:711
|
5323 |
-
#: app/features/mec/meta_boxes/search_form.php:817
|
5324 |
-
msgid "Text Search"
|
5325 |
-
msgstr "Textsuche"
|
5326 |
|
5327 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5328 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5329 |
#: app/features/mec/meta_boxes/search_form.php:231
|
5330 |
#: app/features/mec/meta_boxes/search_form.php:301
|
5331 |
#: app/features/mec/meta_boxes/search_form.php:371
|
@@ -5335,15 +5327,39 @@ msgstr "Textsuche"
|
|
5335 |
#: app/features/mec/meta_boxes/search_form.php:644
|
5336 |
#: app/features/mec/meta_boxes/search_form.php:714
|
5337 |
#: app/features/mec/meta_boxes/search_form.php:820
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5338 |
msgid "Text Input"
|
5339 |
msgstr "Text eingeben"
|
5340 |
|
5341 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5342 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5343 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5344 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5345 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5346 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5347 |
msgid "No Search Options"
|
5348 |
msgstr "Keine Suchoptionen"
|
5349 |
|
@@ -5369,7 +5385,7 @@ msgid ""
|
|
5369 |
"new menu on the Dashboard > MEC"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: app/features/mec/modules.php:66 app/libraries/main.php:
|
5373 |
#, fuzzy
|
5374 |
#| msgid "Google Maps Options"
|
5375 |
msgid "Map Options"
|
@@ -5393,8 +5409,8 @@ msgstr "Google Maps API"
|
|
5393 |
msgid "Google Map Options"
|
5394 |
msgstr "Google Maps Einstellungen"
|
5395 |
|
5396 |
-
#: app/features/mec/modules.php:85 app/features/mec/settings.php:
|
5397 |
-
#: app/features/mec/settings.php:
|
5398 |
msgid "Required!"
|
5399 |
msgstr "Erforderlich (Pflichtfeld)"
|
5400 |
|
@@ -5462,7 +5478,7 @@ msgstr ""
|
|
5462 |
msgid "Fullscreen Button"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
-
#: app/features/mec/modules.php:176 app/libraries/main.php:
|
5466 |
msgid "Export Options"
|
5467 |
msgstr "Export Optionen"
|
5468 |
|
@@ -5477,7 +5493,7 @@ msgstr ""
|
|
5477 |
msgid "Google Calendar"
|
5478 |
msgstr "Google Calendar"
|
5479 |
|
5480 |
-
#: app/features/mec/modules.php:203 app/libraries/main.php:
|
5481 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5482 |
#: app/widgets/single.php:101
|
5483 |
msgid "Local Time"
|
@@ -5489,7 +5505,7 @@ msgstr ""
|
|
5489 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
5490 |
"Eventseite"
|
5491 |
|
5492 |
-
#: app/features/mec/modules.php:217 app/libraries/main.php:
|
5493 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5494 |
msgid "QR Code"
|
5495 |
msgstr "QR Code"
|
@@ -5500,7 +5516,7 @@ msgstr ""
|
|
5500 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
5501 |
"an"
|
5502 |
|
5503 |
-
#: app/features/mec/modules.php:235 app/libraries/main.php:
|
5504 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5505 |
msgid "Weather"
|
5506 |
msgstr "Wetter"
|
@@ -5541,7 +5557,7 @@ msgstr ""
|
|
5541 |
msgid "Show social network module"
|
5542 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
5543 |
|
5544 |
-
#: app/features/mec/modules.php:308 app/libraries/main.php:
|
5545 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5546 |
msgid "Next Event"
|
5547 |
msgstr "Nächstes Event"
|
@@ -5602,7 +5618,7 @@ msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
|
5602 |
msgid "Add events menu to user profile"
|
5603 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
5604 |
|
5605 |
-
#: app/features/mec/modules.php:385 app/libraries/main.php:
|
5606 |
#, fuzzy
|
5607 |
#| msgid "Mailchimp Integration"
|
5608 |
msgid "LearnDash Integration"
|
@@ -6313,7 +6329,7 @@ msgstr "Download ICS Datei"
|
|
6313 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6314 |
msgstr ""
|
6315 |
|
6316 |
-
#: app/features/mec/notifications.php:160 app/libraries/main.php:
|
6317 |
msgid "Booking Verification"
|
6318 |
msgstr "Verifizierung der Buchung"
|
6319 |
|
@@ -6360,7 +6376,7 @@ msgid "Booking cancellation link."
|
|
6360 |
msgstr "Link zur Stornierung der Buchung"
|
6361 |
|
6362 |
#: app/features/mec/notifications.php:402 app/features/notifications.php:157
|
6363 |
-
#: app/libraries/main.php:
|
6364 |
#, fuzzy
|
6365 |
#| msgid "Booking Verification"
|
6366 |
msgid "Booking Rejection"
|
@@ -6396,7 +6412,7 @@ msgid "Send the email to the booked user"
|
|
6396 |
msgstr "Sendet die Email zum Buchungs "
|
6397 |
|
6398 |
#: app/features/mec/notifications.php:540 app/features/notifications.php:163
|
6399 |
-
#: app/libraries/main.php:
|
6400 |
msgid "Booking Cancellation"
|
6401 |
msgstr "Buchung stornieren"
|
6402 |
|
@@ -6418,7 +6434,7 @@ msgstr ""
|
|
6418 |
msgid "Admin booking management link."
|
6419 |
msgstr "Admin-link zur Buchungsverwaltung"
|
6420 |
|
6421 |
-
#: app/features/mec/notifications.php:662 app/libraries/main.php:
|
6422 |
msgid "Admin"
|
6423 |
msgstr "Admin"
|
6424 |
|
@@ -6435,7 +6451,7 @@ msgstr ""
|
|
6435 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6436 |
|
6437 |
#: app/features/mec/notifications.php:784 app/features/notifications.php:169
|
6438 |
-
#: app/libraries/main.php:
|
6439 |
#, fuzzy
|
6440 |
#| msgid "Event Color"
|
6441 |
msgid "Event Soldout"
|
@@ -6458,7 +6474,7 @@ msgstr ""
|
|
6458 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6459 |
|
6460 |
#: app/features/mec/notifications.php:893 app/features/notifications.php:166
|
6461 |
-
#: app/libraries/main.php:
|
6462 |
msgid "Booking Reminder"
|
6463 |
msgstr "Buchungs Erinnerung"
|
6464 |
|
@@ -6488,8 +6504,8 @@ msgstr ""
|
|
6488 |
msgid "only once per hour"
|
6489 |
msgstr "nur einmal pro Tag"
|
6490 |
|
6491 |
-
#: app/features/mec/notifications.php:956 app/libraries/main.php:
|
6492 |
-
#: app/libraries/main.php:
|
6493 |
#, fuzzy
|
6494 |
#| msgid "Hour"
|
6495 |
msgid "Hours"
|
@@ -6504,7 +6520,7 @@ msgid "Please, insert comma to separate reminder hours."
|
|
6504 |
msgstr ""
|
6505 |
|
6506 |
#: app/features/mec/notifications.php:1026 app/features/popup/event.php:253
|
6507 |
-
#: app/libraries/main.php:
|
6508 |
msgid "New Event"
|
6509 |
msgstr "Neue Veranstaltung"
|
6510 |
|
@@ -6540,8 +6556,8 @@ msgid "Status of event"
|
|
6540 |
msgstr "Status der Veranstaltung"
|
6541 |
|
6542 |
#: app/features/mec/notifications.php:1103
|
6543 |
-
#: app/features/mec/notifications.php:1188 app/features/mec/settings.php:
|
6544 |
-
#: app/features/mec/settings.php:
|
6545 |
msgid "Event Note"
|
6546 |
msgstr "Veranstaltungsnotiz"
|
6547 |
|
@@ -6550,7 +6566,7 @@ msgstr "Veranstaltungsnotiz"
|
|
6550 |
msgid "Admin events management link."
|
6551 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
6552 |
|
6553 |
-
#: app/features/mec/notifications.php:1117 app/libraries/main.php:
|
6554 |
msgid "User Event Publishing"
|
6555 |
msgstr "Nutzer Event wurde veröffentlicht."
|
6556 |
|
@@ -6570,7 +6586,7 @@ msgstr ""
|
|
6570 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
6571 |
"Übermittlung oder dem Backend versandt."
|
6572 |
|
6573 |
-
#: app/features/mec/notifications.php:1200 app/libraries/main.php:
|
6574 |
#, fuzzy
|
6575 |
#| msgid "Notifications"
|
6576 |
msgid "Notifications Per Event"
|
@@ -6652,52 +6668,52 @@ msgstr "E-Mail Inhalt darf nicht leer sein!"
|
|
6652 |
msgid "There was an error please try again!"
|
6653 |
msgstr "Es ist ein Fehler aufgetreten, bitte erneut Versuchen!"
|
6654 |
|
6655 |
-
#: app/features/mec/settings.php:
|
6656 |
msgid "Hide Events"
|
6657 |
msgstr "Events verbergen"
|
6658 |
|
6659 |
-
#: app/features/mec/settings.php:
|
6660 |
msgid "On Event Start"
|
6661 |
msgstr "Am Event Start"
|
6662 |
|
6663 |
-
#: app/features/mec/settings.php:
|
6664 |
msgid "+1 Hour after start"
|
6665 |
msgstr "+1 Stunde nach dem Start"
|
6666 |
|
6667 |
-
#: app/features/mec/settings.php:
|
6668 |
msgid "+2 Hours after start"
|
6669 |
msgstr "+2 Stunden nach dem Start"
|
6670 |
|
6671 |
-
#: app/features/mec/settings.php:
|
6672 |
msgid "On Event End"
|
6673 |
msgstr "Am Event Ende"
|
6674 |
|
6675 |
-
#: app/features/mec/settings.php:
|
6676 |
msgid ""
|
6677 |
"This option is for showing start/end time of events on frontend of website."
|
6678 |
msgstr ""
|
6679 |
"Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
|
6680 |
"anzuzeigen"
|
6681 |
|
6682 |
-
#: app/features/mec/settings.php:
|
6683 |
msgid "Multiple Day Events"
|
6684 |
msgstr "Mehrtagesveranstaltung"
|
6685 |
|
6686 |
-
#: app/features/mec/settings.php:
|
6687 |
#, fuzzy
|
6688 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
6689 |
msgid "Show only first day on List/Grid/Slider/Agenda skins"
|
6690 |
msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
|
6691 |
|
6692 |
-
#: app/features/mec/settings.php:
|
6693 |
msgid "Show only first day on all skins"
|
6694 |
msgstr "Nur den ersten Tag in allen Ansichten zeigen"
|
6695 |
|
6696 |
-
#: app/features/mec/settings.php:
|
6697 |
msgid "Show all days"
|
6698 |
msgstr "Alle Tage anzeigen"
|
6699 |
|
6700 |
-
#: app/features/mec/settings.php:
|
6701 |
msgid ""
|
6702 |
"For showing all days of multiple day events on frontend or only show the "
|
6703 |
"first day."
|
@@ -6705,68 +6721,68 @@ msgstr ""
|
|
6705 |
"Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
|
6706 |
"den ersten Tag anzeigen"
|
6707 |
|
6708 |
-
#: app/features/mec/settings.php:
|
6709 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6710 |
msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
|
6711 |
|
6712 |
-
#: app/features/mec/settings.php:
|
6713 |
#, fuzzy
|
6714 |
#| msgid "No Search Options"
|
6715 |
msgid "Sender Name"
|
6716 |
msgstr "Keine Suchoptionen"
|
6717 |
|
6718 |
-
#: app/features/mec/settings.php:
|
6719 |
msgid "e.g. Webnus"
|
6720 |
msgstr "z.B. Webnus"
|
6721 |
|
6722 |
-
#: app/features/mec/settings.php:
|
6723 |
msgid "Sender Email"
|
6724 |
msgstr "Absender (E-Mail)"
|
6725 |
|
6726 |
-
#: app/features/mec/settings.php:
|
6727 |
msgid "e.g. info@webnus.biz"
|
6728 |
msgstr "z.B. info@webnus.biz"
|
6729 |
|
6730 |
-
#: app/features/mec/settings.php:
|
6731 |
msgid "Exclude Date Suffix"
|
6732 |
msgstr "Ausschlussdatum Suffix"
|
6733 |
|
6734 |
-
#: app/features/mec/settings.php:
|
6735 |
msgid "Remove suffix from calendars"
|
6736 |
msgstr "Suffix aus den Kalendern entfernen"
|
6737 |
|
6738 |
-
#: app/features/mec/settings.php:
|
6739 |
#, fuzzy
|
6740 |
#| msgid "Remove suffix from calendars"
|
6741 |
msgid "Remove \"Th\" on calendar"
|
6742 |
msgstr "Suffix aus den Kalendern entfernen"
|
6743 |
|
6744 |
-
#: app/features/mec/settings.php:
|
6745 |
msgid ""
|
6746 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
6747 |
"showing just '12' )"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
-
#: app/features/mec/settings.php:
|
6751 |
msgid "Schema"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
-
#: app/features/mec/settings.php:
|
6755 |
#, fuzzy
|
6756 |
#| msgid "Enable coupons module"
|
6757 |
msgid "Enable Schema Code"
|
6758 |
msgstr "Gutscheinmodul aktivieren"
|
6759 |
|
6760 |
-
#: app/features/mec/settings.php:
|
6761 |
msgid "You can enable/disable Schema scripts"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: app/features/mec/settings.php:
|
6765 |
-
#: app/libraries/main.php:
|
6766 |
msgid "Weekdays"
|
6767 |
msgstr "Wochentage"
|
6768 |
|
6769 |
-
#: app/features/mec/settings.php:
|
6770 |
#, fuzzy
|
6771 |
#| msgid ""
|
6772 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
@@ -6779,11 +6795,11 @@ msgstr ""
|
|
6779 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
6780 |
"Donnerstag und Freitag gesetzt."
|
6781 |
|
6782 |
-
#: app/features/mec/settings.php:
|
6783 |
msgid "Weekends"
|
6784 |
msgstr "Wochenenden"
|
6785 |
|
6786 |
-
#: app/features/mec/settings.php:
|
6787 |
#, fuzzy
|
6788 |
#| msgid ""
|
6789 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
@@ -6796,159 +6812,159 @@ msgstr ""
|
|
6796 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
6797 |
"Donnerstag und Freitag gesetzt."
|
6798 |
|
6799 |
-
#: app/features/mec/settings.php:
|
6800 |
#, fuzzy
|
6801 |
#| msgid "Date Format"
|
6802 |
msgid "Datepicker Format"
|
6803 |
msgstr "Datumsformat"
|
6804 |
|
6805 |
-
#: app/features/mec/settings.php:
|
6806 |
msgid "(Y-m-d)"
|
6807 |
msgstr ""
|
6808 |
|
6809 |
-
#: app/features/mec/settings.php:
|
6810 |
msgid "(d-m-Y)"
|
6811 |
msgstr ""
|
6812 |
|
6813 |
-
#: app/features/mec/settings.php:
|
6814 |
msgid "(Y/m/d)"
|
6815 |
msgstr ""
|
6816 |
|
6817 |
-
#: app/features/mec/settings.php:
|
6818 |
msgid "(m/d/Y)"
|
6819 |
msgstr ""
|
6820 |
|
6821 |
-
#: app/features/mec/settings.php:
|
6822 |
msgid "(Y.m.d)"
|
6823 |
msgstr ""
|
6824 |
|
6825 |
-
#: app/features/mec/settings.php:
|
6826 |
msgid "(d.m.Y)"
|
6827 |
msgstr ""
|
6828 |
|
6829 |
-
#: app/features/mec/settings.php:
|
6830 |
msgid "Midnight Hour"
|
6831 |
msgstr "Mitternacht"
|
6832 |
|
6833 |
-
#: app/features/mec/settings.php:
|
6834 |
msgid "12 AM"
|
6835 |
msgstr "00:00"
|
6836 |
|
6837 |
-
#: app/features/mec/settings.php:
|
6838 |
msgid "1 AM"
|
6839 |
msgstr "01:00"
|
6840 |
|
6841 |
-
#: app/features/mec/settings.php:
|
6842 |
msgid "2 AM"
|
6843 |
msgstr "02:00"
|
6844 |
|
6845 |
-
#: app/features/mec/settings.php:
|
6846 |
msgid "3 AM"
|
6847 |
msgstr "03:00"
|
6848 |
|
6849 |
-
#: app/features/mec/settings.php:
|
6850 |
msgid "4 AM"
|
6851 |
msgstr "04:00"
|
6852 |
|
6853 |
-
#: app/features/mec/settings.php:
|
6854 |
msgid "5 AM"
|
6855 |
msgstr "05:00"
|
6856 |
|
6857 |
-
#: app/features/mec/settings.php:
|
6858 |
msgid ""
|
6859 |
"12 AM is midnight by default but you can change it if your event ends after "
|
6860 |
"12 AM and you don't want those events considered as multiple days events!"
|
6861 |
msgstr ""
|
6862 |
|
6863 |
-
#: app/features/mec/settings.php:
|
6864 |
#, fuzzy
|
6865 |
#| msgid "Add Shortcode"
|
6866 |
msgid "Open \"Add Event\" as Popup"
|
6867 |
msgstr "Shortcode hinzufügen"
|
6868 |
|
6869 |
-
#: app/features/mec/settings.php:
|
6870 |
-
#: app/features/mec/settings.php:
|
6871 |
#, fuzzy
|
6872 |
#| msgid "Enabled"
|
6873 |
msgid "Enable"
|
6874 |
msgstr "Aktiviert"
|
6875 |
|
6876 |
-
#: app/features/mec/settings.php:
|
6877 |
#, fuzzy
|
6878 |
#| msgid "Add Shortcode"
|
6879 |
msgid "Open \"Add Shortcode\" as Popup"
|
6880 |
msgstr "Shortcode hinzufügen"
|
6881 |
|
6882 |
-
#: app/features/mec/settings.php:
|
6883 |
#, fuzzy
|
6884 |
#| msgid "Featured Image"
|
6885 |
msgid "Include Event Featured Image in Feed"
|
6886 |
msgstr "Ausgewähltes Bild"
|
6887 |
|
6888 |
-
#: app/features/mec/settings.php:
|
6889 |
msgid "Archive Pages"
|
6890 |
msgstr ""
|
6891 |
|
6892 |
-
#: app/features/mec/settings.php:
|
6893 |
msgid "Archive Page Title"
|
6894 |
msgstr "Titel der Archivseite"
|
6895 |
|
6896 |
-
#: app/features/mec/settings.php:
|
6897 |
#, fuzzy
|
6898 |
#| msgid "Default value is Events"
|
6899 |
msgid "Default value is Events - It's title of the page"
|
6900 |
msgstr "Der Standardwert ist Ereignisse (Events)"
|
6901 |
|
6902 |
-
#: app/features/mec/settings.php:
|
6903 |
msgid "Archive Page Skin"
|
6904 |
msgstr "Skin Seite Archiv"
|
6905 |
|
6906 |
-
#: app/features/mec/settings.php:
|
6907 |
#, fuzzy
|
6908 |
#| msgid "Edit shortcodes"
|
6909 |
msgid "Put shortcode..."
|
6910 |
msgstr "Shortcode ändern"
|
6911 |
|
6912 |
-
#: app/features/mec/settings.php:
|
6913 |
-
#: app/features/mec/settings.php:
|
6914 |
-
#: app/features/mec/settings.php:
|
6915 |
-
#: app/features/mec/settings.php:
|
6916 |
-
#: app/features/mec/settings.php:
|
6917 |
#, fuzzy
|
6918 |
#| msgid "The event is ongoing."
|
6919 |
msgid "There is no skins"
|
6920 |
msgstr "Die Veranstaltung ist im Gange."
|
6921 |
|
6922 |
-
#: app/features/mec/settings.php:
|
6923 |
#: app/features/mec/single.php:73
|
6924 |
msgid "Modern Style"
|
6925 |
msgstr "Moderner Stil"
|
6926 |
|
6927 |
-
#: app/features/mec/settings.php:
|
6928 |
msgid "colorful"
|
6929 |
msgstr "Farbenfroh"
|
6930 |
|
6931 |
-
#: app/features/mec/settings.php:
|
6932 |
#, fuzzy
|
6933 |
#| msgid "Plain Style"
|
6934 |
msgid "Clean Style"
|
6935 |
msgstr "Einfacher schlichter Stil"
|
6936 |
|
6937 |
-
#: app/features/mec/settings.php:
|
6938 |
#, fuzzy
|
6939 |
#| msgid "Default value is Calendar/Monthly View"
|
6940 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
6941 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
6942 |
|
6943 |
-
#: app/features/mec/settings.php:
|
6944 |
msgid "See Demo"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
-
#: app/features/mec/settings.php:
|
6948 |
msgid "Category Page Skin"
|
6949 |
msgstr "Kategorie Seiten Skin"
|
6950 |
|
6951 |
-
#: app/features/mec/settings.php:
|
6952 |
#, fuzzy
|
6953 |
#| msgid "Default value is Calendar/Monthly View"
|
6954 |
msgid ""
|
@@ -6956,23 +6972,23 @@ msgid ""
|
|
6956 |
"categories."
|
6957 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
6958 |
|
6959 |
-
#: app/features/mec/settings.php:
|
6960 |
msgid "Category Events Method"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
-
#: app/features/mec/settings.php:
|
6964 |
msgid "Default value is Upcoming Events"
|
6965 |
msgstr ""
|
6966 |
|
6967 |
-
#: app/features/mec/settings.php:
|
6968 |
msgid "Events Archive Status"
|
6969 |
msgstr "Events Archiv Status"
|
6970 |
|
6971 |
-
#: app/features/mec/settings.php:
|
6972 |
msgid "Enabled (Recommended)"
|
6973 |
msgstr "Ist aktiviert (empfohlen)"
|
6974 |
|
6975 |
-
#: app/features/mec/settings.php:
|
6976 |
msgid ""
|
6977 |
"If you disable it, then you should create a page as archive page of MEC. "
|
6978 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
@@ -6982,18 +6998,18 @@ msgstr ""
|
|
6982 |
"erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
|
6983 |
"werden alle MEC-Rewrite-Regeln deaktiviert."
|
6984 |
|
6985 |
-
#: app/features/mec/settings.php:
|
6986 |
msgid "Main Slug"
|
6987 |
msgstr "Main Slug"
|
6988 |
|
6989 |
-
#: app/features/mec/settings.php:
|
6990 |
msgid ""
|
6991 |
"Default value is events. You can not have a page with this name. MEC allows "
|
6992 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
6993 |
"applicability and forward-compatibility of the links."
|
6994 |
msgstr ""
|
6995 |
|
6996 |
-
#: app/features/mec/settings.php:
|
6997 |
#, fuzzy
|
6998 |
#| msgid ""
|
6999 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
@@ -7003,11 +7019,11 @@ msgstr ""
|
|
7003 |
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
7004 |
"und Zahlen."
|
7005 |
|
7006 |
-
#: app/features/mec/settings.php:
|
7007 |
msgid "Category Slug"
|
7008 |
msgstr "Category Slug"
|
7009 |
|
7010 |
-
#: app/features/mec/settings.php:
|
7011 |
#, fuzzy
|
7012 |
#| msgid ""
|
7013 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
@@ -7023,117 +7039,117 @@ msgstr ""
|
|
7023 |
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
7024 |
"category"
|
7025 |
|
7026 |
-
#: app/features/mec/settings.php:
|
7027 |
msgid "Currency"
|
7028 |
msgstr "Währung"
|
7029 |
|
7030 |
-
#: app/features/mec/settings.php:
|
7031 |
msgid "Currency Sign"
|
7032 |
msgstr "Währungssymbol"
|
7033 |
|
7034 |
-
#: app/features/mec/settings.php:
|
7035 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7036 |
msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
|
7037 |
|
7038 |
-
#: app/features/mec/settings.php:
|
7039 |
msgid "Currency Position"
|
7040 |
msgstr "Position des Währungssymbols"
|
7041 |
|
7042 |
-
#: app/features/mec/settings.php:
|
7043 |
msgid "Before $10"
|
7044 |
msgstr "Vor €10"
|
7045 |
|
7046 |
-
#: app/features/mec/settings.php:
|
7047 |
msgid "After 10$"
|
7048 |
msgstr "Nach 10€"
|
7049 |
|
7050 |
-
#: app/features/mec/settings.php:
|
7051 |
msgid "Thousand Separator"
|
7052 |
msgstr "Tausendertrennzeichen"
|
7053 |
|
7054 |
-
#: app/features/mec/settings.php:
|
7055 |
msgid "Decimal Separator"
|
7056 |
msgstr "Dezimaltrennzeichen"
|
7057 |
|
7058 |
-
#: app/features/mec/settings.php:
|
7059 |
msgid "No decimal"
|
7060 |
msgstr "Keine Dezimale"
|
7061 |
|
7062 |
-
#: app/features/mec/settings.php:
|
7063 |
msgid "Enable Google Recaptcha"
|
7064 |
msgstr "Google Recaptcha aktivieren"
|
7065 |
|
7066 |
-
#: app/features/mec/settings.php:
|
7067 |
msgid "Enable on booking form"
|
7068 |
msgstr "Auf dem Buchungsformular aktivieren"
|
7069 |
|
7070 |
-
#: app/features/mec/settings.php:
|
7071 |
#, fuzzy
|
7072 |
#| msgid "Enable on \"Frontend Event Submittion\" form"
|
7073 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7074 |
msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
|
7075 |
|
7076 |
-
#: app/features/mec/settings.php:
|
7077 |
msgid "Site Key"
|
7078 |
msgstr "Site Key (Seitenschlüssel)"
|
7079 |
|
7080 |
-
#: app/features/mec/settings.php:
|
7081 |
msgid "Secret Key"
|
7082 |
msgstr "Geheimschlüssel"
|
7083 |
|
7084 |
-
#: app/features/mec/settings.php:
|
7085 |
msgid "Time Format"
|
7086 |
msgstr "Zeitformat"
|
7087 |
|
7088 |
-
#: app/features/mec/settings.php:
|
7089 |
msgid "12 hours format with AM/PM"
|
7090 |
msgstr "12-Stunden-Format mit AM/FM"
|
7091 |
|
7092 |
-
#: app/features/mec/settings.php:
|
7093 |
msgid "24 hours format"
|
7094 |
msgstr "24-Stunden-Format"
|
7095 |
|
7096 |
-
#: app/features/mec/settings.php:
|
7097 |
msgid "This option, affects the selection of Start/End time."
|
7098 |
msgstr ""
|
7099 |
|
7100 |
-
#: app/features/mec/settings.php:
|
7101 |
msgid "Events List Page"
|
7102 |
msgstr "Seite Liste der Veranstaltungen"
|
7103 |
|
7104 |
-
#: app/features/mec/settings.php:
|
7105 |
#, php-format
|
7106 |
msgid "Put %s shortcode into the page."
|
7107 |
msgstr "%s shortcode in die Seite einfügen"
|
7108 |
|
7109 |
-
#: app/features/mec/settings.php:
|
7110 |
msgid "Add/Edit Events Page"
|
7111 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
7112 |
|
7113 |
-
#: app/features/mec/settings.php:
|
7114 |
#, fuzzy
|
7115 |
#| msgid "On Event Start"
|
7116 |
msgid "New Events Status"
|
7117 |
msgstr "Am Event Start"
|
7118 |
|
7119 |
-
#: app/features/mec/settings.php:
|
7120 |
#, fuzzy
|
7121 |
#| msgid "WordPress"
|
7122 |
msgid "Let WordPress decide"
|
7123 |
msgstr "WordPress"
|
7124 |
|
7125 |
-
#: app/features/mec/settings.php:
|
7126 |
-
#: app/libraries/main.php:
|
7127 |
msgid "Pending"
|
7128 |
msgstr "Ausstehend"
|
7129 |
|
7130 |
-
#: app/features/mec/settings.php:
|
7131 |
#, fuzzy
|
7132 |
#| msgid "Publishable Key"
|
7133 |
msgid "Publish"
|
7134 |
msgstr "publizierbarer Schlüssel"
|
7135 |
|
7136 |
-
#: app/features/mec/settings.php:
|
7137 |
#, fuzzy
|
7138 |
#| msgid ""
|
7139 |
#| "User redirects to this page after new event submission. Leave it empty if "
|
@@ -7145,31 +7161,31 @@ msgstr ""
|
|
7145 |
"Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
|
7146 |
"es leer, wenn Sie es deaktivieren möchten."
|
7147 |
|
7148 |
-
#: app/features/mec/settings.php:
|
7149 |
#, fuzzy
|
7150 |
#| msgid "Thank You Page"
|
7151 |
msgid "Thank You Page URL"
|
7152 |
msgstr "Danke Seite"
|
7153 |
|
7154 |
-
#: app/features/mec/settings.php:
|
7155 |
msgid "If filled it will use instead of thank you page set above."
|
7156 |
msgstr ""
|
7157 |
|
7158 |
-
#: app/features/mec/settings.php:
|
7159 |
#, fuzzy
|
7160 |
#| msgid "Amount (Per Ticket)"
|
7161 |
msgid "Maximum File Size"
|
7162 |
msgstr "Betrag (pro Ticket)"
|
7163 |
|
7164 |
-
#: app/features/mec/settings.php:
|
7165 |
msgid "in KB"
|
7166 |
msgstr ""
|
7167 |
|
7168 |
-
#: app/features/mec/settings.php:
|
7169 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7170 |
msgstr ""
|
7171 |
|
7172 |
-
#: app/features/mec/settings.php:
|
7173 |
#, fuzzy
|
7174 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7175 |
msgid "Enable event submission by guest (Not logged in) users"
|
@@ -7177,73 +7193,91 @@ msgstr ""
|
|
7177 |
"Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
|
7178 |
"erlauben"
|
7179 |
|
7180 |
-
#: app/features/mec/settings.php:
|
7181 |
msgid "Enable mandatory email and name for guest user"
|
7182 |
msgstr ""
|
7183 |
"Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
|
7184 |
|
7185 |
-
#: app/features/mec/settings.php:
|
7186 |
msgid ""
|
7187 |
"Automatically create users after event publish and assign event to the "
|
7188 |
"created user"
|
7189 |
msgstr ""
|
7190 |
|
7191 |
-
#: app/features/mec/settings.php:
|
7192 |
msgid "Frontend Event Submission Sections"
|
7193 |
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
7194 |
|
7195 |
-
#: app/features/mec/settings.php:
|
7196 |
#, fuzzy
|
7197 |
#| msgid "Event Details"
|
7198 |
msgid "Event Data Fields"
|
7199 |
msgstr "Veranstaltungsdetails"
|
7200 |
|
7201 |
-
#: app/features/mec/settings.php:
|
7202 |
msgid "Event Categories"
|
7203 |
msgstr "Veranstaltungskategorien"
|
7204 |
|
7205 |
-
#: app/features/mec/settings.php:
|
7206 |
msgid "Event Labels"
|
7207 |
msgstr "Event Labels"
|
7208 |
|
7209 |
-
#: app/features/mec/settings.php:
|
7210 |
msgid "Event Tags"
|
7211 |
msgstr "Event Schlagworte"
|
7212 |
|
7213 |
-
#: app/features/mec/settings.php:
|
7214 |
msgid "Event Organizer"
|
7215 |
msgstr "Veranstaltungsmanager"
|
7216 |
|
7217 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7218 |
#, fuzzy
|
7219 |
#| msgid "Fees/Taxes Options"
|
7220 |
msgid "Fees / Taxes Options"
|
7221 |
msgstr "Gebühren/Steuer Optionen"
|
7222 |
|
7223 |
-
#: app/features/mec/settings.php:
|
7224 |
msgid "SEO Schema"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
-
#: app/features/mec/settings.php:
|
7228 |
#: app/features/occurrences.php:102
|
7229 |
#, fuzzy
|
7230 |
#| msgid "Occurrences times"
|
7231 |
msgid "Occurrences"
|
7232 |
msgstr " mal vorkommen"
|
7233 |
|
7234 |
-
#: app/features/mec/settings.php:
|
7235 |
#, fuzzy
|
7236 |
#| msgid "Edit Event"
|
7237 |
msgid "Virtual Event"
|
7238 |
msgstr "Event Bearbeiten"
|
7239 |
|
7240 |
-
#: app/features/mec/settings.php:
|
7241 |
#, fuzzy
|
7242 |
#| msgid "Book Event"
|
7243 |
msgid "Zoom Event"
|
7244 |
msgstr "Veranstaltung buchen"
|
7245 |
|
7246 |
-
#: app/features/mec/settings.php:
|
7247 |
#, php-format
|
7248 |
msgid ""
|
7249 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -7255,125 +7289,138 @@ msgstr ""
|
|
7255 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
7256 |
"erhalten."
|
7257 |
|
7258 |
-
#: app/features/mec/settings.php:
|
7259 |
#, fuzzy
|
7260 |
#| msgid "Visibility"
|
7261 |
msgid "Note visibility"
|
7262 |
msgstr "Sichtbarkeit"
|
7263 |
|
7264 |
-
#: app/features/mec/settings.php:
|
7265 |
msgid "Always"
|
7266 |
msgstr "Immer"
|
7267 |
|
7268 |
-
#: app/features/mec/settings.php:
|
7269 |
msgid "While event is not published"
|
7270 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
7271 |
|
7272 |
-
#: app/features/mec/settings.php:
|
7273 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7274 |
msgstr ""
|
7275 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
7276 |
"Ereignis im Backend bearbeitet."
|
7277 |
|
7278 |
-
#: app/features/mec/settings.php:
|
7279 |
#, fuzzy
|
7280 |
#| msgid "Required Field"
|
7281 |
msgid "Required Fields"
|
7282 |
msgstr "Pflichtfeld"
|
7283 |
|
7284 |
-
#: app/features/mec/settings.php:
|
7285 |
#, fuzzy
|
7286 |
#| msgid "Description"
|
7287 |
msgid "Event Description"
|
7288 |
msgstr "Beschreibung"
|
7289 |
|
7290 |
-
#: app/features/mec/settings.php:
|
7291 |
-
#: app/libraries/main.php:
|
7292 |
msgid "More Info Link"
|
7293 |
msgstr "Link Mehr Informationen"
|
7294 |
|
7295 |
-
#: app/features/mec/settings.php:
|
7296 |
msgid "User Profile"
|
7297 |
msgstr "Benutzer Profil"
|
7298 |
|
7299 |
-
#: app/features/mec/settings.php:
|
7300 |
#, php-format
|
7301 |
msgid ""
|
7302 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
7303 |
"history of their bookings."
|
7304 |
msgstr ""
|
7305 |
|
7306 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7307 |
msgid "Search Bar"
|
7308 |
msgstr "Suche"
|
7309 |
|
7310 |
-
#: app/features/mec/settings.php:
|
7311 |
#, php-format
|
7312 |
msgid ""
|
7313 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
7314 |
msgstr ""
|
7315 |
|
7316 |
-
#: app/features/mec/settings.php:
|
7317 |
msgid "Ajax Live mode"
|
7318 |
msgstr ""
|
7319 |
|
7320 |
-
#: app/features/mec/settings.php:
|
7321 |
msgid "Ajax mode"
|
7322 |
msgstr ""
|
7323 |
|
7324 |
-
#: app/features/mec/settings.php:
|
7325 |
msgid ""
|
7326 |
"if you enable this option, the search button will disappear. To use this "
|
7327 |
"feature, text input field must be enabled."
|
7328 |
msgstr ""
|
7329 |
|
7330 |
-
#: app/features/mec/settings.php:
|
7331 |
#, fuzzy
|
7332 |
#| msgid "Modern Style"
|
7333 |
msgid "Modern Type"
|
7334 |
msgstr "Moderner Stil"
|
7335 |
|
7336 |
-
#: app/features/mec/settings.php:
|
7337 |
msgid "Search bar fields"
|
7338 |
msgstr "Such Felder"
|
7339 |
|
7340 |
-
#: app/features/mec/settings.php:
|
7341 |
#, fuzzy
|
7342 |
#| msgid "Text Input"
|
7343 |
msgid "Text input"
|
7344 |
msgstr "Text eingeben"
|
7345 |
|
7346 |
-
#: app/features/mec/settings.php:
|
7347 |
msgid "Enable Mailchimp Integration"
|
7348 |
msgstr "Mailchimp Integration deaktivieren"
|
7349 |
|
7350 |
-
#: app/features/mec/settings.php:
|
7351 |
-
#: app/features/mec/settings.php:
|
7352 |
-
#: app/features/mec/settings.php:
|
7353 |
msgid "API Key"
|
7354 |
msgstr "API Schlüssel"
|
7355 |
|
7356 |
-
#: app/features/mec/settings.php:
|
7357 |
-
#: app/features/mec/settings.php:
|
7358 |
-
#: app/features/mec/settings.php:
|
7359 |
msgid "List ID"
|
7360 |
msgstr "List ID"
|
7361 |
|
7362 |
-
#: app/features/mec/settings.php:
|
7363 |
msgid "Subscription Status"
|
7364 |
msgstr "Buchungsstatus"
|
7365 |
|
7366 |
-
#: app/features/mec/settings.php:
|
7367 |
msgid "Subscribe automatically"
|
7368 |
msgstr "automatisch Anmelden/Abonnieren"
|
7369 |
|
7370 |
-
#: app/features/mec/settings.php:
|
7371 |
msgid "Subscribe by verification"
|
7372 |
msgstr ""
|
7373 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
7374 |
" "
|
7375 |
|
7376 |
-
#: app/features/mec/settings.php:
|
7377 |
#, fuzzy
|
7378 |
#| msgid ""
|
7379 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
@@ -7385,146 +7432,146 @@ msgstr ""
|
|
7385 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
7386 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
7387 |
|
7388 |
-
#: app/features/mec/settings.php:
|
7389 |
#, fuzzy
|
7390 |
#| msgid "Mailchimp Integration"
|
7391 |
msgid "Campaign Monitor Integration"
|
7392 |
msgstr "Mailchimp Integration"
|
7393 |
|
7394 |
-
#: app/features/mec/settings.php:
|
7395 |
#, fuzzy
|
7396 |
#| msgid "Enable Mailchimp Integration"
|
7397 |
msgid "Enable Campaign Monitor Integration"
|
7398 |
msgstr "Mailchimp Integration deaktivieren"
|
7399 |
|
7400 |
-
#: app/features/mec/settings.php:
|
7401 |
#, fuzzy
|
7402 |
#| msgid "Mailchimp Integration"
|
7403 |
msgid "MailerLite Integration"
|
7404 |
msgstr "Mailchimp Integration"
|
7405 |
|
7406 |
-
#: app/features/mec/settings.php:
|
7407 |
#, fuzzy
|
7408 |
#| msgid "Enable Mailchimp Integration"
|
7409 |
msgid "Enable MailerLite Integration"
|
7410 |
msgstr "Mailchimp Integration deaktivieren"
|
7411 |
|
7412 |
-
#: app/features/mec/settings.php:
|
7413 |
msgid "Group ID"
|
7414 |
msgstr "Gruppen ID "
|
7415 |
|
7416 |
-
#: app/features/mec/settings.php:
|
7417 |
#, fuzzy
|
7418 |
#| msgid "BuddyPress Integration"
|
7419 |
msgid "Constant Contact Integration"
|
7420 |
msgstr "Buddy Press Integration"
|
7421 |
|
7422 |
-
#: app/features/mec/settings.php:
|
7423 |
#, fuzzy
|
7424 |
#| msgid "Enable Mailchimp Integration"
|
7425 |
msgid "Enable constantcontact Integration"
|
7426 |
msgstr "Mailchimp Integration deaktivieren"
|
7427 |
|
7428 |
-
#: app/features/mec/settings.php:
|
7429 |
#, fuzzy
|
7430 |
#| msgid "Facebook Page Link"
|
7431 |
msgid "Access Token"
|
7432 |
msgstr "Facebook Seiten Link"
|
7433 |
|
7434 |
-
#: app/features/mec/settings.php:
|
7435 |
#, fuzzy
|
7436 |
#| msgid "Select icon"
|
7437 |
msgid "Select List"
|
7438 |
msgstr "Wählen Sie ein Symbol"
|
7439 |
|
7440 |
-
#: app/features/mec/settings.php:
|
7441 |
msgid ""
|
7442 |
"Please fill in the API key and Access Token field and save settings. after "
|
7443 |
"that, please refresh the page and select a list."
|
7444 |
msgstr ""
|
7445 |
|
7446 |
-
#: app/features/mec/settings.php:
|
7447 |
#, fuzzy
|
7448 |
#| msgid "Mailchimp Integration"
|
7449 |
msgid "Active Campaign Integration"
|
7450 |
msgstr "Mailchimp Integration"
|
7451 |
|
7452 |
-
#: app/features/mec/settings.php:
|
7453 |
#, fuzzy
|
7454 |
#| msgid "Enable Mailchimp Integration"
|
7455 |
msgid "Enable Active Campaign Integration"
|
7456 |
msgstr "Mailchimp Integration deaktivieren"
|
7457 |
|
7458 |
-
#: app/features/mec/settings.php:
|
7459 |
msgid "API URL"
|
7460 |
msgstr ""
|
7461 |
|
7462 |
-
#: app/features/mec/settings.php:
|
7463 |
#, fuzzy
|
7464 |
#| msgid "Mailchimp Integration"
|
7465 |
msgid "AWeber Integration"
|
7466 |
msgstr "Mailchimp Integration"
|
7467 |
|
7468 |
-
#: app/features/mec/settings.php:
|
7469 |
#, fuzzy
|
7470 |
#| msgid "Enable Mailchimp Integration"
|
7471 |
msgid "Enable AWeber Integration"
|
7472 |
msgstr "Mailchimp Integration deaktivieren"
|
7473 |
|
7474 |
-
#: app/features/mec/settings.php:
|
7475 |
#, fuzzy, php-format
|
7476 |
#| msgid "Third Party plugin is not installed and activated!"
|
7477 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7478 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7479 |
|
7480 |
-
#: app/features/mec/settings.php:
|
7481 |
#, php-format
|
7482 |
msgid "More information about the list ID can be found %s."
|
7483 |
msgstr ""
|
7484 |
|
7485 |
-
#: app/features/mec/settings.php:
|
7486 |
#, fuzzy
|
7487 |
#| msgid "Mailchimp Integration"
|
7488 |
msgid "MailPoet Integration"
|
7489 |
msgstr "Mailchimp Integration"
|
7490 |
|
7491 |
-
#: app/features/mec/settings.php:
|
7492 |
#, fuzzy
|
7493 |
#| msgid "Enable Mailchimp Integration"
|
7494 |
msgid "Enable MailPoet Integration"
|
7495 |
msgstr "Mailchimp Integration deaktivieren"
|
7496 |
|
7497 |
-
#: app/features/mec/settings.php:
|
7498 |
#: app/skins/default_full_calendar/tpl.php:78
|
7499 |
#: app/skins/full_calendar/tpl.php:125
|
7500 |
msgid "List"
|
7501 |
msgstr "Liste / Listenansicht"
|
7502 |
|
7503 |
-
#: app/features/mec/settings.php:
|
7504 |
#, fuzzy, php-format
|
7505 |
#| msgid "Third Party plugin is not installed and activated!"
|
7506 |
msgid "%s plugin should be installed and activated."
|
7507 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7508 |
|
7509 |
-
#: app/features/mec/settings.php:
|
7510 |
#, fuzzy
|
7511 |
#| msgid "Mailchimp Integration"
|
7512 |
msgid "Sendfox Integration"
|
7513 |
msgstr "Mailchimp Integration"
|
7514 |
|
7515 |
-
#: app/features/mec/settings.php:
|
7516 |
#, fuzzy
|
7517 |
#| msgid "Enable Mailchimp Integration"
|
7518 |
msgid "Enable Sendfox Integration"
|
7519 |
msgstr "Mailchimp Integration deaktivieren"
|
7520 |
|
7521 |
-
#: app/features/mec/settings.php:
|
7522 |
#, fuzzy, php-format
|
7523 |
#| msgid "Third Party plugin is not installed and activated!"
|
7524 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7525 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7526 |
|
7527 |
-
#: app/features/mec/single.php:38 app/libraries/main.php:
|
7528 |
#, fuzzy
|
7529 |
#| msgid "Single Event Style"
|
7530 |
msgid "Single Event Page"
|
@@ -7646,13 +7693,13 @@ msgid ""
|
|
7646 |
"the settings page.' tab"
|
7647 |
msgstr ""
|
7648 |
|
7649 |
-
#: app/features/mec/single.php:162 app/libraries/main.php:
|
7650 |
#, fuzzy
|
7651 |
#| msgid "Custom Styles"
|
7652 |
msgid "Custom Fields"
|
7653 |
msgstr "Benutzerdefinierte Stile"
|
7654 |
|
7655 |
-
#: app/features/mec/single.php:192 app/libraries/main.php:
|
7656 |
msgid "URL"
|
7657 |
msgstr ""
|
7658 |
|
@@ -7701,7 +7748,7 @@ msgstr ""
|
|
7701 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
7702 |
"ausschließen."
|
7703 |
|
7704 |
-
#: app/features/mec/single.php:286 app/libraries/main.php:
|
7705 |
msgid "Additional Organizers"
|
7706 |
msgstr "Zusätzliche Organisatoren"
|
7707 |
|
@@ -7733,7 +7780,7 @@ msgstr ""
|
|
7733 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
7734 |
"bearbeiten und auf der Seite für einzelne Events an."
|
7735 |
|
7736 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
7737 |
#: app/skins/single.php:170 app/skins/single.php:435
|
7738 |
msgid "Related Events"
|
7739 |
msgstr "Vorgeschlagene Veranstaltungen"
|
@@ -7748,7 +7795,7 @@ msgstr ""
|
|
7748 |
msgid "Select Taxonomies:"
|
7749 |
msgstr "Klassifizierung "
|
7750 |
|
7751 |
-
#: app/features/mec/single.php:360 app/libraries/main.php:
|
7752 |
#, fuzzy
|
7753 |
#| msgid "Next/Previous Buttons"
|
7754 |
msgid "Next / Previous Events"
|
@@ -7758,7 +7805,7 @@ msgstr "Schaltfläche \"Nächste/Letzte\""
|
|
7758 |
msgid "Display next / previous events based on taxonomy in single event page."
|
7759 |
msgstr ""
|
7760 |
|
7761 |
-
#: app/features/mec/single.php:402 app/libraries/main.php:
|
7762 |
#, fuzzy
|
7763 |
#| msgid "Next Occurrence"
|
7764 |
msgid "Edit Per Occurrences"
|
@@ -7794,7 +7841,7 @@ msgid "Default Font"
|
|
7794 |
msgstr "Standardschriftart des Themas "
|
7795 |
|
7796 |
#: app/features/mec/styling.php:50 app/features/mec/support.php:52
|
7797 |
-
#: app/libraries/main.php:
|
7798 |
msgid "Styling Options"
|
7799 |
msgstr "Styling-Optionen"
|
7800 |
|
@@ -7977,7 +8024,7 @@ msgstr ""
|
|
7977 |
msgid "MEC Settings"
|
7978 |
msgstr "MEC - Einstellungen"
|
7979 |
|
7980 |
-
#: app/features/mec/support-page.php:99 app/libraries/main.php:
|
7981 |
#, fuzzy
|
7982 |
#| msgid "Single Event Style"
|
7983 |
msgid "Single Event"
|
@@ -8342,7 +8389,7 @@ msgstr ""
|
|
8342 |
msgid "Create a support ticket"
|
8343 |
msgstr "Erstelle ein Support-Ticket"
|
8344 |
|
8345 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
8346 |
msgid "Custom CSS"
|
8347 |
msgstr "Custom CSS"
|
8348 |
|
@@ -8460,12 +8507,6 @@ msgstr "Nächstes Event"
|
|
8460 |
msgid "Delete"
|
8461 |
msgstr ""
|
8462 |
|
8463 |
-
#: app/features/occurrences.php:385
|
8464 |
-
#, fuzzy
|
8465 |
-
#| msgid "Total booking limits"
|
8466 |
-
msgid "Total Booking Limit"
|
8467 |
-
msgstr "Gesamt Verfügbare Plätze"
|
8468 |
-
|
8469 |
#: app/features/occurrences.php:393 app/features/schema.php:70
|
8470 |
#, fuzzy
|
8471 |
#| msgid "Hourly Schedule"
|
@@ -8601,8 +8642,8 @@ msgstr "z.B.. max@mustermann.com"
|
|
8601 |
msgid "eg. https://webnus.net"
|
8602 |
msgstr "http://webnus.net"
|
8603 |
|
8604 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
8605 |
-
#: app/libraries/main.php:
|
8606 |
msgid "Other Organizers"
|
8607 |
msgstr "Andere Veranstalter"
|
8608 |
|
@@ -8679,7 +8720,7 @@ msgid "Prev"
|
|
8679 |
msgstr ""
|
8680 |
|
8681 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8682 |
-
#: app/modules/booking/steps/form.php:
|
8683 |
#: app/modules/booking/steps/tickets.php:180 app/skins/countdown/tpl.php:123
|
8684 |
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
8685 |
msgid "Next"
|
@@ -8792,7 +8833,7 @@ msgstr "Neuen Shortcode hinzufügen"
|
|
8792 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8793 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
8794 |
|
8795 |
-
#: app/features/profile/profile.php:20 app/libraries/main.php:
|
8796 |
msgid "Your booking already canceled!"
|
8797 |
msgstr "Ihre Buchung wurde bereits storniert."
|
8798 |
|
@@ -8800,11 +8841,11 @@ msgstr "Ihre Buchung wurde bereits storniert."
|
|
8800 |
msgid "#"
|
8801 |
msgstr ""
|
8802 |
|
8803 |
-
#: app/features/profile/profile.php:61 app/libraries/main.php:
|
8804 |
msgid "Status"
|
8805 |
msgstr ""
|
8806 |
|
8807 |
-
#: app/features/profile/profile.php:64 app/libraries/main.php:
|
8808 |
msgid "Attendees"
|
8809 |
msgstr "Teilnehmer"
|
8810 |
|
@@ -8864,9 +8905,10 @@ msgstr "Suche %s"
|
|
8864 |
msgid "No search result."
|
8865 |
msgstr "Kein Suchergebnis"
|
8866 |
|
8867 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
8868 |
-
#: app/libraries/main.php:
|
8869 |
-
#: app/libraries/render.php:
|
|
|
8870 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8871 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8872 |
#: app/modules/next-event/details.php:154
|
@@ -8973,6 +9015,12 @@ msgid ""
|
|
8973 |
"section and speaker widget section!"
|
8974 |
msgstr ""
|
8975 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8976 |
#: app/features/wc.php:103 app/libraries/notifications.php:1250
|
8977 |
#: app/libraries/notifications.php:1265 app/libraries/notifications.php:1276
|
8978 |
#: app/libraries/notifications.php:1549 app/libraries/notifications.php:1550
|
@@ -9112,33 +9160,33 @@ msgstr "bis zum Beispiel 08:45 Uhr"
|
|
9112 |
msgid "New Day"
|
9113 |
msgstr "Neuer Tag"
|
9114 |
|
9115 |
-
#: app/libraries/main.php:366 app/libraries/main.php:
|
9116 |
-
#: app/libraries/main.php:
|
9117 |
msgid "Agenda View"
|
9118 |
msgstr "Agendaansicht"
|
9119 |
|
9120 |
-
#: app/libraries/main.php:367 app/libraries/main.php:
|
9121 |
-
#: app/libraries/main.php:
|
9122 |
msgid "Full Calendar"
|
9123 |
msgstr "Ganzer Kalender"
|
9124 |
|
9125 |
-
#: app/libraries/main.php:369 app/libraries/main.php:
|
9126 |
-
#: app/libraries/main.php:
|
9127 |
msgid "Calendar/Monthly View"
|
9128 |
msgstr "Kalender-/Monatsansicht"
|
9129 |
|
9130 |
-
#: app/libraries/main.php:372 app/libraries/main.php:
|
9131 |
-
#: app/libraries/main.php:
|
9132 |
msgid "Timetable View"
|
9133 |
msgstr "Stundenplan"
|
9134 |
|
9135 |
-
#: app/libraries/main.php:373 app/libraries/main.php:
|
9136 |
-
#: app/libraries/main.php:
|
9137 |
msgid "Masonry View"
|
9138 |
msgstr "Kachel Ansicht"
|
9139 |
|
9140 |
-
#: app/libraries/main.php:374 app/libraries/main.php:
|
9141 |
-
#: app/libraries/main.php:
|
9142 |
msgid "Map View"
|
9143 |
msgstr "Kartenansicht"
|
9144 |
|
@@ -9168,62 +9216,62 @@ msgstr "Slideransicht"
|
|
9168 |
msgid "Timeline View"
|
9169 |
msgstr "Stundenplan"
|
9170 |
|
9171 |
-
#: app/libraries/main.php:419 app/libraries/main.php:
|
9172 |
-
#: app/libraries/main.php:
|
9173 |
msgid "SU"
|
9174 |
msgstr "SO"
|
9175 |
|
9176 |
-
#: app/libraries/main.php:420 app/libraries/main.php:
|
9177 |
-
#: app/libraries/main.php:
|
9178 |
msgid "MO"
|
9179 |
msgstr "MO"
|
9180 |
|
9181 |
-
#: app/libraries/main.php:421 app/libraries/main.php:
|
9182 |
-
#: app/libraries/main.php:
|
9183 |
msgid "TU"
|
9184 |
msgstr "DI"
|
9185 |
|
9186 |
-
#: app/libraries/main.php:422 app/libraries/main.php:
|
9187 |
-
#: app/libraries/main.php:
|
9188 |
msgid "WE"
|
9189 |
msgstr "MI"
|
9190 |
|
9191 |
-
#: app/libraries/main.php:423 app/libraries/main.php:
|
9192 |
-
#: app/libraries/main.php:
|
9193 |
msgid "TH"
|
9194 |
msgstr "DO"
|
9195 |
|
9196 |
-
#: app/libraries/main.php:424 app/libraries/main.php:
|
9197 |
-
#: app/libraries/main.php:
|
9198 |
msgid "FR"
|
9199 |
msgstr "FR"
|
9200 |
|
9201 |
-
#: app/libraries/main.php:425 app/libraries/main.php:
|
9202 |
-
#: app/libraries/main.php:
|
9203 |
msgid "SA"
|
9204 |
msgstr "SA"
|
9205 |
|
9206 |
-
#: app/libraries/main.php:
|
9207 |
msgid "Additional Locations"
|
9208 |
msgstr "Zusätzliche Locations"
|
9209 |
|
9210 |
-
#: app/libraries/main.php:
|
9211 |
#, fuzzy
|
9212 |
#| msgid "Upload/Add image"
|
9213 |
msgid "Upload Field"
|
9214 |
msgstr "Bild hochladen/hinzufügen"
|
9215 |
|
9216 |
-
#: app/libraries/main.php:
|
9217 |
#, fuzzy
|
9218 |
#| msgid "Social Module : "
|
9219 |
msgid "Modules"
|
9220 |
msgstr "Social Modul:"
|
9221 |
|
9222 |
-
#: app/libraries/main.php:
|
9223 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9224 |
msgstr ""
|
9225 |
|
9226 |
-
#: app/libraries/main.php:
|
9227 |
msgid ""
|
9228 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9229 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -9231,429 +9279,429 @@ msgid ""
|
|
9231 |
"below:"
|
9232 |
msgstr ""
|
9233 |
|
9234 |
-
#: app/libraries/main.php:
|
9235 |
msgid ""
|
9236 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9237 |
"products) and Woo products at the same time."
|
9238 |
msgstr ""
|
9239 |
|
9240 |
-
#: app/libraries/main.php:
|
9241 |
msgid ""
|
9242 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9243 |
"other websites without MEC. Use JSON output features to make your Apps "
|
9244 |
"compatible with MEC."
|
9245 |
msgstr ""
|
9246 |
|
9247 |
-
#: app/libraries/main.php:
|
9248 |
msgid ""
|
9249 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9250 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9251 |
"you can set these up in the admin panel."
|
9252 |
msgstr ""
|
9253 |
|
9254 |
-
#: app/libraries/main.php:
|
9255 |
msgid ""
|
9256 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9257 |
"pages can contain ticket purchase information, information about registered "
|
9258 |
"events. Users can now log in to purchase tickets."
|
9259 |
msgstr ""
|
9260 |
|
9261 |
-
#: app/libraries/main.php:
|
9262 |
msgid "find out more"
|
9263 |
msgstr ""
|
9264 |
|
9265 |
-
#: app/libraries/main.php:
|
9266 |
msgid "Events at this location"
|
9267 |
msgstr "Veranstaltungen an diesem Ort "
|
9268 |
|
9269 |
-
#: app/libraries/main.php:
|
9270 |
msgid "Event at this location"
|
9271 |
msgstr "Veranstaltung an diesem Ort "
|
9272 |
|
9273 |
-
#: app/libraries/main.php:
|
9274 |
msgid "Facebook"
|
9275 |
msgstr "Facebook"
|
9276 |
|
9277 |
-
#: app/libraries/main.php:
|
9278 |
msgid "Twitter"
|
9279 |
msgstr "Twitter"
|
9280 |
|
9281 |
-
#: app/libraries/main.php:
|
9282 |
msgid "Linkedin"
|
9283 |
msgstr "Linkedin"
|
9284 |
|
9285 |
-
#: app/libraries/main.php:
|
9286 |
msgid "VK"
|
9287 |
msgstr ""
|
9288 |
|
9289 |
-
#: app/libraries/main.php:
|
9290 |
msgid "Tumblr"
|
9291 |
msgstr ""
|
9292 |
|
9293 |
-
#: app/libraries/main.php:
|
9294 |
msgid "Pinterest"
|
9295 |
msgstr ""
|
9296 |
|
9297 |
-
#: app/libraries/main.php:
|
9298 |
msgid "Flipboard"
|
9299 |
msgstr ""
|
9300 |
|
9301 |
-
#: app/libraries/main.php:
|
9302 |
#, fuzzy
|
9303 |
#| msgid "Tickets"
|
9304 |
msgid "GetPocket"
|
9305 |
msgstr "Tickets"
|
9306 |
|
9307 |
-
#: app/libraries/main.php:
|
9308 |
msgid "Reddit"
|
9309 |
msgstr ""
|
9310 |
|
9311 |
-
#: app/libraries/main.php:
|
9312 |
msgid "WhatsApp"
|
9313 |
msgstr ""
|
9314 |
|
9315 |
-
#: app/libraries/main.php:
|
9316 |
msgid "Telegram"
|
9317 |
msgstr ""
|
9318 |
|
9319 |
-
#: app/libraries/main.php:
|
9320 |
msgid "Share on Facebook"
|
9321 |
msgstr "Teilen auf Facebook"
|
9322 |
|
9323 |
-
#: app/libraries/main.php:
|
9324 |
msgid "Tweet"
|
9325 |
msgstr "Tweet"
|
9326 |
|
9327 |
-
#: app/libraries/main.php:
|
9328 |
#, fuzzy
|
9329 |
#| msgid "Share on Facebook"
|
9330 |
msgid "Share on Tumblr"
|
9331 |
msgstr "Teilen auf Facebook"
|
9332 |
|
9333 |
-
#: app/libraries/main.php:
|
9334 |
msgid "Share on Pinterest"
|
9335 |
msgstr ""
|
9336 |
|
9337 |
-
#: app/libraries/main.php:
|
9338 |
#, fuzzy
|
9339 |
#| msgid "Share on Facebook"
|
9340 |
msgid "Share on Flipboard"
|
9341 |
msgstr "Teilen auf Facebook"
|
9342 |
|
9343 |
-
#: app/libraries/main.php:
|
9344 |
#, fuzzy
|
9345 |
#| msgid "Share on Facebook"
|
9346 |
msgid "Share on GetPocket"
|
9347 |
msgstr "Teilen auf Facebook"
|
9348 |
|
9349 |
-
#: app/libraries/main.php:
|
9350 |
#, fuzzy
|
9351 |
#| msgid "Share on Facebook"
|
9352 |
msgid "Share on Reddit"
|
9353 |
msgstr "Teilen auf Facebook"
|
9354 |
|
9355 |
-
#: app/libraries/main.php:
|
9356 |
msgid "Share on Telegram"
|
9357 |
msgstr ""
|
9358 |
|
9359 |
-
#: app/libraries/main.php:
|
9360 |
msgid "Share on WhatsApp"
|
9361 |
msgstr ""
|
9362 |
|
9363 |
-
#: app/libraries/main.php:
|
9364 |
#, fuzzy
|
9365 |
#| msgid "Shortcode"
|
9366 |
msgid "Custom Shortcode"
|
9367 |
msgstr "Shortcode"
|
9368 |
|
9369 |
-
#: app/libraries/main.php:
|
9370 |
#, fuzzy
|
9371 |
#| msgid "The events are imported successfully!"
|
9372 |
msgid "Your booking has been verified successfully!"
|
9373 |
msgstr "Die Events wurden erfolgreich importiert!"
|
9374 |
|
9375 |
-
#: app/libraries/main.php:
|
9376 |
msgid "Your booking already verified!"
|
9377 |
msgstr "Ihre Buchung wurde bereits verifiziert."
|
9378 |
|
9379 |
-
#: app/libraries/main.php:
|
9380 |
msgid "Your booking cannot verify!"
|
9381 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
9382 |
|
9383 |
-
#: app/libraries/main.php:
|
9384 |
msgid "Your booking successfully canceled."
|
9385 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
9386 |
|
9387 |
-
#: app/libraries/main.php:
|
9388 |
#, fuzzy
|
9389 |
#| msgid "The event is finished."
|
9390 |
msgid "The event is already finished!"
|
9391 |
msgstr "Das Event ist beendet"
|
9392 |
|
9393 |
-
#: app/libraries/main.php:
|
9394 |
msgid "The cancelation window is not started yet."
|
9395 |
msgstr ""
|
9396 |
|
9397 |
-
#: app/libraries/main.php:
|
9398 |
msgid "The cancelation window is passed."
|
9399 |
msgstr ""
|
9400 |
|
9401 |
-
#: app/libraries/main.php:
|
9402 |
msgid "Your booking cannot be canceled."
|
9403 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
9404 |
|
9405 |
-
#: app/libraries/main.php:
|
9406 |
msgid "You canceled the payment successfully."
|
9407 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
9408 |
|
9409 |
-
#: app/libraries/main.php:
|
9410 |
msgid "You returned from payment gateway successfully."
|
9411 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
9412 |
|
9413 |
-
#: app/libraries/main.php:
|
9414 |
msgid "Cannot find the invoice!"
|
9415 |
msgstr "Die Buchung kann nicht gefunden werden."
|
9416 |
|
9417 |
-
#: app/libraries/main.php:
|
9418 |
msgid "Invoice is invalid."
|
9419 |
msgstr "Die Buchung ist ungültig."
|
9420 |
|
9421 |
-
#: app/libraries/main.php:
|
9422 |
msgid ""
|
9423 |
"Your booking still is not confirmed. You can download it after confirmation!"
|
9424 |
msgstr ""
|
9425 |
|
9426 |
-
#: app/libraries/main.php:
|
9427 |
msgid "Booking Not Confirmed."
|
9428 |
msgstr "Die Buchung ist nicht Bestätigt."
|
9429 |
|
9430 |
-
#: app/libraries/main.php:
|
9431 |
msgid "Cannot find the booking!"
|
9432 |
msgstr "Die Buchung kann nicht gefunden werden!"
|
9433 |
|
9434 |
-
#: app/libraries/main.php:
|
9435 |
msgid "Booking is invalid."
|
9436 |
msgstr "Buchung ist ungültig."
|
9437 |
|
9438 |
-
#: app/libraries/main.php:
|
9439 |
#, php-format
|
9440 |
msgid "%s Invoice"
|
9441 |
msgstr "% s Rechnung"
|
9442 |
|
9443 |
-
#: app/libraries/main.php:
|
9444 |
#, fuzzy
|
9445 |
#| msgid "Date And Time"
|
9446 |
msgid "Date & Time"
|
9447 |
msgstr "Datum und Uhrzeit"
|
9448 |
|
9449 |
-
#: app/libraries/main.php:
|
9450 |
#, fuzzy
|
9451 |
#| msgid "Booking Price"
|
9452 |
msgid "Booking Fields"
|
9453 |
msgstr "Buchungspreis"
|
9454 |
|
9455 |
-
#: app/libraries/main.php:
|
9456 |
msgid "Billing"
|
9457 |
msgstr "Abrechnung"
|
9458 |
|
9459 |
-
#: app/libraries/main.php:
|
9460 |
#, fuzzy
|
9461 |
#| msgid "Coupon"
|
9462 |
msgid "Coupon Code"
|
9463 |
msgstr "Gutschein"
|
9464 |
|
9465 |
-
#: app/libraries/main.php:
|
9466 |
msgid "Total"
|
9467 |
msgstr "Gesamt"
|
9468 |
|
9469 |
-
#: app/libraries/main.php:
|
9470 |
msgid "Payment"
|
9471 |
msgstr "Bezahlung"
|
9472 |
|
9473 |
-
#: app/libraries/main.php:
|
9474 |
msgid "Payment Time"
|
9475 |
msgstr "Bezahlung "
|
9476 |
|
9477 |
-
#: app/libraries/main.php:
|
9478 |
msgid "Request is not valid."
|
9479 |
msgstr "Die Anfrage ist ungültig!"
|
9480 |
|
9481 |
-
#: app/libraries/main.php:
|
9482 |
msgid "iCal export stopped!"
|
9483 |
msgstr "iCal Export wurde unterbrochen!"
|
9484 |
|
9485 |
-
#: app/libraries/main.php:
|
9486 |
-
#: app/libraries/main.php:
|
9487 |
-
#: app/libraries/main.php:
|
9488 |
-
#: app/libraries/main.php:
|
9489 |
-
#: app/libraries/main.php:
|
9490 |
-
#: app/libraries/main.php:
|
9491 |
-
#: app/libraries/main.php:
|
9492 |
-
#: app/libraries/main.php:
|
9493 |
msgid "Sort"
|
9494 |
msgstr "Sortieren"
|
9495 |
|
9496 |
-
#: app/libraries/main.php:
|
9497 |
-
#: app/libraries/main.php:
|
9498 |
-
#: app/libraries/main.php:
|
9499 |
-
#: app/libraries/main.php:
|
9500 |
-
#: app/libraries/main.php:
|
9501 |
-
#: app/libraries/main.php:
|
9502 |
-
#: app/libraries/main.php:
|
9503 |
msgid "Required Field"
|
9504 |
msgstr "Pflichtfeld"
|
9505 |
|
9506 |
-
#: app/libraries/main.php:
|
9507 |
-
#: app/libraries/main.php:
|
9508 |
-
#: app/libraries/main.php:
|
9509 |
-
#: app/libraries/main.php:
|
9510 |
-
#: app/libraries/main.php:
|
9511 |
-
#: app/libraries/main.php:
|
9512 |
-
#: app/libraries/main.php:
|
9513 |
msgid "Insert a label for this field"
|
9514 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
9515 |
|
9516 |
-
#: app/libraries/main.php:
|
9517 |
msgid "HTML and shortcode are allowed."
|
9518 |
msgstr "HTML und shortcodes sind erlaubt."
|
9519 |
|
9520 |
-
#: app/libraries/main.php:
|
9521 |
-
#: app/libraries/main.php:
|
9522 |
msgid "Option"
|
9523 |
msgstr "Option"
|
9524 |
|
9525 |
-
#: app/libraries/main.php:
|
9526 |
#, php-format
|
9527 |
msgid "Instead of %s, the page title with a link will be show."
|
9528 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
9529 |
|
9530 |
-
#: app/libraries/main.php:
|
9531 |
msgid "Agreement Page"
|
9532 |
msgstr "Zustimmungsseite"
|
9533 |
|
9534 |
-
#: app/libraries/main.php:
|
9535 |
msgid "Checked by default"
|
9536 |
msgstr ""
|
9537 |
|
9538 |
-
#: app/libraries/main.php:
|
9539 |
msgid "Unchecked by default"
|
9540 |
msgstr ""
|
9541 |
|
9542 |
-
#: app/libraries/main.php:
|
9543 |
msgid "Insert a label for this option"
|
9544 |
msgstr "Ein neues Label für diese Option einfügen"
|
9545 |
|
9546 |
-
#: app/libraries/main.php:
|
9547 |
msgid "Free"
|
9548 |
msgstr "kostenfrei"
|
9549 |
|
9550 |
-
#: app/libraries/main.php:
|
9551 |
msgid "M.E. Calender"
|
9552 |
msgstr "M.E. Calender"
|
9553 |
|
9554 |
-
#: app/libraries/main.php:
|
9555 |
#, php-format
|
9556 |
msgid "Copy of %s"
|
9557 |
msgstr "Kopie von %s"
|
9558 |
|
9559 |
-
#: app/libraries/main.php:
|
9560 |
msgid "Booked an event."
|
9561 |
msgstr "Eine Veranstaltung wurde gebucht."
|
9562 |
|
9563 |
-
#: app/libraries/main.php:
|
9564 |
#, php-format
|
9565 |
msgid "%s booked %s event."
|
9566 |
msgstr "%s gebuchtes %s Event"
|
9567 |
|
9568 |
-
#: app/libraries/main.php:
|
9569 |
msgid "Taxonomies"
|
9570 |
msgstr "Klassifizierung "
|
9571 |
|
9572 |
-
#: app/libraries/main.php:
|
9573 |
msgid "Category Plural Label"
|
9574 |
msgstr "Kategorien"
|
9575 |
|
9576 |
-
#: app/libraries/main.php:
|
9577 |
msgid "Category Singular Label"
|
9578 |
msgstr "Kategorie"
|
9579 |
|
9580 |
-
#: app/libraries/main.php:
|
9581 |
msgid "Label Plural Label"
|
9582 |
msgstr "Labels"
|
9583 |
|
9584 |
-
#: app/libraries/main.php:
|
9585 |
msgid "Label Singular Label"
|
9586 |
msgstr "Label"
|
9587 |
|
9588 |
-
#: app/libraries/main.php:
|
9589 |
msgid "label"
|
9590 |
msgstr "label"
|
9591 |
|
9592 |
-
#: app/libraries/main.php:
|
9593 |
msgid "Location Plural Label"
|
9594 |
msgstr "Veranstaltungsorte"
|
9595 |
|
9596 |
-
#: app/libraries/main.php:
|
9597 |
msgid "Location Singular Label"
|
9598 |
msgstr "Veranstaltungsort"
|
9599 |
|
9600 |
-
#: app/libraries/main.php:
|
9601 |
msgid "Organizer Plural Label"
|
9602 |
msgstr "Veranstalter"
|
9603 |
|
9604 |
-
#: app/libraries/main.php:
|
9605 |
msgid "Organizer Singular Label"
|
9606 |
msgstr "Veranstalter"
|
9607 |
|
9608 |
-
#: app/libraries/main.php:
|
9609 |
#, fuzzy
|
9610 |
#| msgid "Label Plural Label"
|
9611 |
msgid "Speaker Plural Label"
|
9612 |
msgstr "Labels"
|
9613 |
|
9614 |
-
#: app/libraries/main.php:
|
9615 |
#, fuzzy
|
9616 |
#| msgid "Label Singular Label"
|
9617 |
msgid "Speaker Singular Label"
|
9618 |
msgstr "Label"
|
9619 |
|
9620 |
-
#: app/libraries/main.php:
|
9621 |
msgid "Sunday abbreviation"
|
9622 |
msgstr "Sonntag Abkürzung"
|
9623 |
|
9624 |
-
#: app/libraries/main.php:
|
9625 |
msgid "Monday abbreviation"
|
9626 |
msgstr "Montag Abkürzung"
|
9627 |
|
9628 |
-
#: app/libraries/main.php:
|
9629 |
msgid "Tuesday abbreviation"
|
9630 |
msgstr "Dienstag Abkürzung"
|
9631 |
|
9632 |
-
#: app/libraries/main.php:
|
9633 |
msgid "Wednesday abbreviation"
|
9634 |
msgstr "Mittwoch Abkürzung"
|
9635 |
|
9636 |
-
#: app/libraries/main.php:
|
9637 |
msgid "Thursday abbreviation"
|
9638 |
msgstr "Donnerstag Abkürzung"
|
9639 |
|
9640 |
-
#: app/libraries/main.php:
|
9641 |
msgid "Friday abbreviation"
|
9642 |
msgstr "Freitag Abkürzung"
|
9643 |
|
9644 |
-
#: app/libraries/main.php:
|
9645 |
msgid "Saturday abbreviation"
|
9646 |
msgstr "Samstag Abkürzung "
|
9647 |
|
9648 |
-
#: app/libraries/main.php:
|
9649 |
msgid "Others"
|
9650 |
msgstr "Andere"
|
9651 |
|
9652 |
-
#: app/libraries/main.php:
|
9653 |
msgid "Booking Success Message"
|
9654 |
msgstr "Buchung erfolgreich Mitteilung"
|
9655 |
|
9656 |
-
#: app/libraries/main.php:
|
9657 |
#, fuzzy
|
9658 |
#| msgid ""
|
9659 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -9665,60 +9713,60 @@ msgstr ""
|
|
9665 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
9666 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
9667 |
|
9668 |
-
#: app/libraries/main.php:
|
9669 |
#, fuzzy
|
9670 |
#| msgid "Booking Success Message"
|
9671 |
msgid "Booking Restriction Message 1"
|
9672 |
msgstr "Buchung erfolgreich Mitteilung"
|
9673 |
|
9674 |
-
#: app/libraries/main.php:
|
9675 |
#, php-format
|
9676 |
msgid ""
|
9677 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9678 |
"tickets."
|
9679 |
msgstr ""
|
9680 |
|
9681 |
-
#: app/libraries/main.php:
|
9682 |
#, fuzzy
|
9683 |
#| msgid "Booking Success Message"
|
9684 |
msgid "Booking Restriction Message 2"
|
9685 |
msgstr "Buchung erfolgreich Mitteilung"
|
9686 |
|
9687 |
-
#: app/libraries/main.php:
|
9688 |
#, php-format
|
9689 |
msgid ""
|
9690 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9691 |
"tickets."
|
9692 |
msgstr ""
|
9693 |
|
9694 |
-
#: app/libraries/main.php:
|
9695 |
#, fuzzy
|
9696 |
#| msgid "Booking Success Message"
|
9697 |
msgid "Booking IP Restriction Message"
|
9698 |
msgstr "Buchung erfolgreich Mitteilung"
|
9699 |
|
9700 |
-
#: app/libraries/main.php:
|
9701 |
#, php-format
|
9702 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9703 |
msgstr ""
|
9704 |
|
9705 |
-
#: app/libraries/main.php:
|
9706 |
#, fuzzy
|
9707 |
#| msgid "Booking Options"
|
9708 |
msgid "Booking Button"
|
9709 |
msgstr "Buchungsoptionen"
|
9710 |
|
9711 |
-
#: app/libraries/main.php:
|
9712 |
#: app/modules/booking/steps/tickets.php:102
|
9713 |
msgid "Book Event"
|
9714 |
msgstr "Veranstaltung buchen"
|
9715 |
|
9716 |
-
#: app/libraries/main.php:
|
9717 |
#: app/widgets/single.php:133
|
9718 |
msgid "Register Button"
|
9719 |
msgstr "Register Button"
|
9720 |
|
9721 |
-
#: app/libraries/main.php:
|
9722 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9723 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:104
|
9724 |
#: app/skins/grid/render.php:163 app/skins/grid/render.php:223
|
@@ -9736,11 +9784,11 @@ msgstr "Register Button"
|
|
9736 |
msgid "REGISTER"
|
9737 |
msgstr "ANMELDEN"
|
9738 |
|
9739 |
-
#: app/libraries/main.php:
|
9740 |
msgid "View Detail Button"
|
9741 |
msgstr "Ansicht Detail Button"
|
9742 |
|
9743 |
-
#: app/libraries/main.php:
|
9744 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9745 |
#: app/skins/grid/render.php:104 app/skins/grid/render.php:163
|
9746 |
#: app/skins/grid/render.php:223 app/skins/grid/render.php:245
|
@@ -9752,138 +9800,138 @@ msgstr "Ansicht Detail Button"
|
|
9752 |
msgid "View Detail"
|
9753 |
msgstr "Details "
|
9754 |
|
9755 |
-
#: app/libraries/main.php:
|
9756 |
msgid "Event Detail Button"
|
9757 |
msgstr "Event Detail Button"
|
9758 |
|
9759 |
-
#: app/libraries/main.php:
|
9760 |
msgid "Event Detail"
|
9761 |
msgstr "Veranstaltungsdetails"
|
9762 |
|
9763 |
-
#: app/libraries/main.php:
|
9764 |
msgid "Ticket (Singular)"
|
9765 |
msgstr "Ticket"
|
9766 |
|
9767 |
-
#: app/libraries/main.php:
|
9768 |
msgid "Tickets (Plural)"
|
9769 |
msgstr "Tickets"
|
9770 |
|
9771 |
-
#: app/libraries/main.php:
|
9772 |
msgid "EventON"
|
9773 |
msgstr "EventON"
|
9774 |
|
9775 |
-
#: app/libraries/main.php:
|
9776 |
msgid "The Events Calendar"
|
9777 |
msgstr "The Events Calendar"
|
9778 |
|
9779 |
-
#: app/libraries/main.php:
|
9780 |
msgid "Events Schedule WP Plugin"
|
9781 |
msgstr "Event Zeitplan WP-Plugin"
|
9782 |
|
9783 |
-
#: app/libraries/main.php:
|
9784 |
msgid "Calendarize It"
|
9785 |
msgstr ""
|
9786 |
|
9787 |
-
#: app/libraries/main.php:
|
9788 |
#, fuzzy
|
9789 |
#| msgid "No Search Options"
|
9790 |
msgid "Event Espresso"
|
9791 |
msgstr "Keine Suchoptionen"
|
9792 |
|
9793 |
-
#: app/libraries/main.php:
|
9794 |
msgid "Events Manager (Recurring)"
|
9795 |
msgstr "Wiederholende Veranstaltung"
|
9796 |
|
9797 |
-
#: app/libraries/main.php:
|
9798 |
msgid "Events Manager (Single)"
|
9799 |
msgstr "Moderner Event Kalender"
|
9800 |
|
9801 |
-
#: app/libraries/main.php:
|
9802 |
#, fuzzy
|
9803 |
#| msgid "Events Manager (Single)"
|
9804 |
msgid "WP Event Manager"
|
9805 |
msgstr "Moderner Event Kalender"
|
9806 |
|
9807 |
-
#: app/libraries/main.php:
|
9808 |
msgid "Waiting"
|
9809 |
msgstr "in Bearbeitung"
|
9810 |
|
9811 |
-
#: app/libraries/main.php:
|
9812 |
#, fuzzy
|
9813 |
#| msgid "Sunday"
|
9814 |
msgid "Sun"
|
9815 |
msgstr "Sonntag"
|
9816 |
|
9817 |
-
#: app/libraries/main.php:
|
9818 |
#, fuzzy
|
9819 |
#| msgid "Month"
|
9820 |
msgid "Mon"
|
9821 |
msgstr "Monat "
|
9822 |
|
9823 |
-
#: app/libraries/main.php:
|
9824 |
#, fuzzy
|
9825 |
#| msgid "Tel"
|
9826 |
msgid "Tue"
|
9827 |
msgstr "Tel"
|
9828 |
|
9829 |
-
#: app/libraries/main.php:
|
9830 |
msgid "Wed"
|
9831 |
msgstr ""
|
9832 |
|
9833 |
-
#: app/libraries/main.php:
|
9834 |
msgid "Thu"
|
9835 |
msgstr ""
|
9836 |
|
9837 |
-
#: app/libraries/main.php:
|
9838 |
#, fuzzy
|
9839 |
#| msgid "Friday"
|
9840 |
msgid "Fri"
|
9841 |
msgstr "Freitag"
|
9842 |
|
9843 |
-
#: app/libraries/main.php:
|
9844 |
#, fuzzy
|
9845 |
#| msgid "Start"
|
9846 |
msgid "Sat"
|
9847 |
msgstr "Start"
|
9848 |
|
9849 |
-
#: app/libraries/main.php:
|
9850 |
-
#: app/libraries/render.php:
|
9851 |
msgid "Skin controller does not exist."
|
9852 |
msgstr "Skin contoller existiert nicht."
|
9853 |
|
9854 |
-
#: app/libraries/main.php:
|
9855 |
msgid "Sold Out"
|
9856 |
msgstr "Ausgebucht"
|
9857 |
|
9858 |
-
#: app/libraries/main.php:
|
9859 |
msgid "Last Few Tickets"
|
9860 |
msgstr "Nur noch wenige Tickets verfügbar."
|
9861 |
|
9862 |
-
#: app/libraries/main.php:
|
9863 |
#, fuzzy
|
9864 |
#| msgid "minutes"
|
9865 |
msgid "Minutes"
|
9866 |
msgstr "Minuten"
|
9867 |
|
9868 |
-
#: app/libraries/main.php:
|
9869 |
msgid "AM / PM"
|
9870 |
msgstr ""
|
9871 |
|
9872 |
-
#: app/libraries/main.php:
|
9873 |
msgid "AM"
|
9874 |
msgstr "AM"
|
9875 |
|
9876 |
-
#: app/libraries/main.php:
|
9877 |
msgid "PM"
|
9878 |
msgstr "PM"
|
9879 |
|
9880 |
-
#: app/libraries/main.php:
|
9881 |
#, fuzzy
|
9882 |
#| msgid "Loading..."
|
9883 |
msgid "Ongoing..."
|
9884 |
msgstr "Laden…"
|
9885 |
|
9886 |
-
#: app/libraries/main.php:
|
9887 |
#, fuzzy
|
9888 |
#| msgid "Expired Events"
|
9889 |
msgid "Expired!"
|
@@ -10022,7 +10070,7 @@ msgid "Apply Coupon"
|
|
10022 |
msgstr "Gutschein verwenden"
|
10023 |
|
10024 |
#: app/modules/booking/steps/checkout.php:138
|
10025 |
-
#: app/modules/booking/steps/form.php:
|
10026 |
msgid "Back"
|
10027 |
msgstr "Zurück"
|
10028 |
|
@@ -10034,19 +10082,19 @@ msgstr "Kostenlose Buchung"
|
|
10034 |
msgid "Attendee's Form"
|
10035 |
msgstr "Teilnahmeformular"
|
10036 |
|
10037 |
-
#: app/modules/booking/steps/form.php:
|
10038 |
msgid "Fill other attendees information like the first form."
|
10039 |
msgstr ""
|
10040 |
"Teilnehmer Informationen für die weiteren Tickets übernehmen. (Das Ticket "
|
10041 |
"ist nicht an einen Namen gebunden)"
|
10042 |
|
10043 |
-
#: app/modules/booking/steps/form.php:
|
10044 |
#, fuzzy
|
10045 |
#| msgid "API Username"
|
10046 |
msgid "Username"
|
10047 |
msgstr "API Nutzername"
|
10048 |
|
10049 |
-
#: app/modules/booking/steps/form.php:
|
10050 |
#: app/modules/booking/steps/tickets.php:180
|
10051 |
msgid "Add to Cart"
|
10052 |
msgstr "in den Warenkorb legen"
|
@@ -10435,6 +10483,11 @@ msgstr "z.B. Webnus"
|
|
10435 |
msgid "http://webnus.net"
|
10436 |
msgstr "http://webnus.net"
|
10437 |
|
|
|
|
|
|
|
|
|
|
|
10438 |
#~ msgid "Your booking successfully verified."
|
10439 |
#~ msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
10440 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-12-16 12:21+0330\n"
|
6 |
+
"PO-Revision-Date: 2020-12-16 12:22+0330\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
19 |
|
20 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
21 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
22 |
+
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1186
|
23 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
24 |
#: app/widgets/MEC.php:33
|
25 |
msgid "Modern Events Calendar"
|
26 |
msgstr "Moderner Event Kalender "
|
89 |
msgstr "Neuen Shortcode hinzufügen"
|
90 |
|
91 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
92 |
+
#: app/features/mec/settings.php:794
|
93 |
msgid "Event Color"
|
94 |
msgstr "Farbe der Veranstaltung"
|
95 |
|
102 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
103 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
104 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
105 |
+
#: app/libraries/main.php:650
|
106 |
msgid "Settings"
|
107 |
msgstr "Einstellungen"
|
108 |
|
109 |
+
#: app/features/contextual.php:62 app/features/events.php:1445
|
110 |
+
#: app/features/events.php:2385 app/features/mec/booking.php:607
|
111 |
+
#: app/features/mec/booking.php:873 app/features/mec/settings.php:882
|
112 |
+
#: app/features/mec/support.php:29 app/libraries/main.php:602
|
113 |
msgid "Booking Form"
|
114 |
msgstr "Buchungsformular"
|
115 |
|
135 |
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
136 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
137 |
|
138 |
+
#: app/features/contextual.php:70 app/features/events.php:1453
|
139 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
140 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:604
|
141 |
msgid "Payment Gateways"
|
142 |
msgstr "Zahlungs-Gateways"
|
143 |
|
151 |
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
152 |
"\"0\" allowfullscreen></iframe>"
|
153 |
|
154 |
+
#: app/features/contextual.php:77 app/features/events.php:353
|
155 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
156 |
+
#: app/libraries/main.php:798
|
157 |
msgid "Notifications"
|
158 |
msgstr "Benachrichtigungen"
|
159 |
|
238 |
"height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
|
239 |
"\"0\" allowfullscreen></iframe>"
|
240 |
|
241 |
+
#: app/features/contextual.php:117 app/features/mec/settings.php:66
|
242 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
243 |
msgid "General Options"
|
244 |
msgstr "Allgemeine Einstellungen"
|
245 |
|
246 |
+
#: app/features/contextual.php:139 app/features/mec/settings.php:490
|
247 |
#: app/libraries/main.php:568
|
248 |
msgid "Slugs/Permalinks"
|
249 |
msgstr "Slug/Permalinks"
|
252 |
msgid "Event Details/Single Event Page"
|
253 |
msgstr "Event Details / Einzelveranstaltungsseite"
|
254 |
|
255 |
+
#: app/features/contextual.php:166 app/features/mec/settings.php:522
|
256 |
#: app/libraries/main.php:569
|
257 |
msgid "Currency Options"
|
258 |
msgstr "Währungseinstellungen"
|
261 |
msgid "Google Maps Options"
|
262 |
msgstr "Google Maps Einstellungen"
|
263 |
|
264 |
+
#: app/features/contextual.php:244 app/features/mec/settings.php:579
|
265 |
#: app/libraries/main.php:570
|
266 |
msgid "Google Recaptcha Options"
|
267 |
msgstr "Google Recaptcha Einstellungen"
|
268 |
|
269 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
270 |
+
#: app/libraries/main.php:588
|
271 |
msgid "Countdown Options"
|
272 |
msgstr "Countdown Einstellungsoptionen"
|
273 |
|
274 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
275 |
+
#: app/libraries/main.php:614
|
276 |
msgid "Social Networks"
|
277 |
msgstr "Soziale Netzwerke"
|
278 |
|
280 |
msgid "Next Event Module"
|
281 |
msgstr "Nächstes Veranstaltung Modul"
|
282 |
|
283 |
+
#: app/features/contextual.php:286 app/features/mec/settings.php:619
|
284 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
285 |
msgid "Frontend Event Submission"
|
286 |
msgstr "Erstellung von Veranstaltungen im Frontend"
|
287 |
|
288 |
+
#: app/features/contextual.php:298 app/features/events.php:346
|
289 |
+
#: app/libraries/main.php:589
|
290 |
msgid "Exceptional Days"
|
291 |
msgstr "Herausgenommene Tage "
|
292 |
|
293 |
+
#: app/features/contextual.php:308 app/features/events.php:316
|
294 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
295 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
296 |
+
#: app/libraries/main.php:597 app/libraries/main.php:628
|
297 |
+
#: app/libraries/main.php:715
|
298 |
msgid "Booking"
|
299 |
msgstr "Buchung / Reservierung"
|
300 |
|
301 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
302 |
+
#: app/features/mec/booking.php:833 app/libraries/main.php:599
|
303 |
msgid "Coupons"
|
304 |
msgstr "Gutscheine"
|
305 |
|
306 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
307 |
+
#: app/libraries/main.php:616
|
308 |
msgid "BuddyPress Integration"
|
309 |
msgstr "Buddy Press Integration"
|
310 |
|
311 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:1095
|
312 |
+
#: app/libraries/main.php:575
|
313 |
msgid "Mailchimp Integration"
|
314 |
msgstr "Mailchimp Integration"
|
315 |
|
317 |
msgid "MEC Activation"
|
318 |
msgstr "MEC Aktivierung"
|
319 |
|
320 |
+
#: app/features/dlfile.php:121 app/features/events.php:1450
|
321 |
+
#: app/features/mec/booking.php:349 app/features/mec/settings.php:916
|
322 |
#, fuzzy
|
323 |
#| msgid "Download ICS file"
|
324 |
msgid "Downloadable File"
|
354 |
msgid "File uploaded!"
|
355 |
msgstr "Das Bild ist hochgeladen"
|
356 |
|
357 |
+
#: app/features/events.php:168 app/features/ix/export.php:34
|
358 |
+
#: app/features/mec/dashboard.php:265 app/libraries/main.php:5603
|
359 |
+
#: app/libraries/main.php:5623 app/skins/daily_view/tpl.php:82
|
360 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
361 |
#: app/skins/yearly_view/tpl.php:71
|
362 |
msgid "Events"
|
363 |
msgstr "Veranstaltungen"
|
364 |
|
365 |
+
#: app/features/events.php:169 app/features/fes.php:243
|
366 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
367 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
368 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
372 |
msgid "Event"
|
373 |
msgstr "Veranstaltung"
|
374 |
|
375 |
+
#: app/features/events.php:170 app/features/mec.php:457
|
376 |
msgid "Add Event"
|
377 |
msgstr "Veranstaltung hinzufügen"
|
378 |
|
379 |
+
#: app/features/events.php:171 app/features/mec/dashboard.php:140
|
380 |
msgid "Add New Event"
|
381 |
msgstr "Neue Veranstaltung hinzufügen"
|
382 |
|
383 |
+
#: app/features/events.php:172 app/features/ix.php:4403
|
384 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
385 |
#: app/skins/map/tpl.php:89
|
386 |
msgid "No events found!"
|
387 |
msgstr "Keine Veranstaltungen gefunden!"
|
388 |
|
389 |
+
#: app/features/events.php:173
|
390 |
msgid "All Events"
|
391 |
msgstr "Alle Veranstaltungen"
|
392 |
|
393 |
+
#: app/features/events.php:174
|
394 |
msgid "Edit Event"
|
395 |
msgstr "Event Bearbeiten"
|
396 |
|
397 |
+
#: app/features/events.php:175 app/features/fes/list.php:87
|
398 |
#: app/features/popup/event.php:252
|
399 |
msgid "View Event"
|
400 |
msgstr "Veranstaltung ansehen"
|
401 |
|
402 |
+
#: app/features/events.php:176
|
403 |
msgid "No events found in Trash!"
|
404 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
405 |
|
406 |
+
#: app/features/events.php:193 app/features/events.php:3471
|
407 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
408 |
#: app/features/mec/meta_boxes/search_form.php:31
|
409 |
+
#: app/features/mec/meta_boxes/search_form.php:102
|
410 |
+
#: app/features/mec/meta_boxes/search_form.php:173
|
411 |
+
#: app/features/mec/meta_boxes/search_form.php:244
|
412 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
413 |
+
#: app/features/mec/meta_boxes/search_form.php:384
|
414 |
+
#: app/features/mec/meta_boxes/search_form.php:454
|
415 |
+
#: app/features/mec/meta_boxes/search_form.php:517
|
416 |
+
#: app/features/mec/meta_boxes/search_form.php:587
|
417 |
+
#: app/features/mec/meta_boxes/search_form.php:657
|
418 |
+
#: app/features/mec/meta_boxes/search_form.php:763
|
419 |
+
#: app/features/mec/settings.php:988 app/features/mec/settings.php:1048
|
420 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
421 |
+
#: app/features/search.php:68 app/libraries/main.php:6486
|
422 |
+
#: app/libraries/main.php:6540 app/libraries/skins.php:938
|
423 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
424 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
425 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
426 |
msgid "Category"
|
427 |
msgstr "Kategorie"
|
428 |
|
429 |
+
#: app/features/events.php:194 app/features/events.php:3426
|
430 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
431 |
#: app/features/mec/meta_boxes/filter.php:69
|
432 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6485
|
433 |
+
#: app/libraries/main.php:6539
|
434 |
msgid "Categories"
|
435 |
msgstr "Kategorien"
|
436 |
|
437 |
+
#: app/features/events.php:204 app/features/labels.php:71
|
438 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
439 |
#: app/features/speakers.php:71
|
440 |
#, php-format
|
441 |
msgid "All %s"
|
442 |
msgstr "Alle %s"
|
443 |
|
444 |
+
#: app/features/events.php:205 app/features/labels.php:72
|
445 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
446 |
#: app/features/speakers.php:72
|
447 |
#, php-format
|
448 |
msgid "Edit %s"
|
449 |
msgstr "Bearbeiten %s"
|
450 |
|
451 |
+
#: app/features/events.php:206 app/features/labels.php:73
|
452 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
453 |
#: app/features/speakers.php:73
|
454 |
#, php-format
|
455 |
msgid "View %s"
|
456 |
msgstr "Ansicht %s"
|
457 |
|
458 |
+
#: app/features/events.php:207 app/features/labels.php:74
|
459 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
460 |
#: app/features/speakers.php:74
|
461 |
#, php-format
|
462 |
msgid "Update %s"
|
463 |
msgstr "Update %s"
|
464 |
|
465 |
+
#: app/features/events.php:208 app/features/labels.php:75
|
466 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
467 |
#: app/features/speakers.php:75
|
468 |
#, php-format
|
469 |
msgid "Add New %s"
|
470 |
msgstr "Neu hinzufügen%s"
|
471 |
|
472 |
+
#: app/features/events.php:209 app/features/labels.php:76
|
473 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
474 |
#: app/features/speakers.php:76
|
475 |
#, php-format
|
476 |
msgid "New %s Name"
|
477 |
msgstr "Neuer %s Name"
|
478 |
|
479 |
+
#: app/features/events.php:210 app/features/labels.php:77
|
480 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
481 |
#: app/features/speakers.php:77
|
482 |
#, php-format
|
483 |
msgid "Popular %s"
|
484 |
msgstr "Beliebt %s"
|
485 |
|
486 |
+
#: app/features/events.php:211 app/features/labels.php:78
|
487 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
488 |
#: app/features/speakers.php:78
|
489 |
#, php-format
|
490 |
msgid "Search %s"
|
491 |
msgstr "Suche %s"
|
492 |
|
493 |
+
#: app/features/events.php:236 app/features/events.php:257
|
494 |
msgid "Category Icon"
|
495 |
msgstr "Kategoriesymbol"
|
496 |
|
497 |
+
#: app/features/events.php:239 app/features/events.php:262
|
498 |
msgid "Select icon"
|
499 |
msgstr "Wählen Sie ein Symbol"
|
500 |
|
501 |
+
#: app/features/events.php:311
|
502 |
msgid "Event Details"
|
503 |
msgstr "Veranstaltungsdetails"
|
504 |
|
505 |
+
#: app/features/events.php:342
|
506 |
#, fuzzy
|
507 |
#| msgid "Event Details"
|
508 |
msgid "FES Details"
|
509 |
msgstr "Veranstaltungsdetails"
|
510 |
|
511 |
+
#: app/features/events.php:343
|
512 |
msgid "Date And Time"
|
513 |
msgstr "Datum und Uhrzeit"
|
514 |
|
515 |
+
#: app/features/events.php:344 app/features/fes/form.php:366
|
516 |
msgid "Event Repeating"
|
517 |
msgstr "Wiederholende Veranstaltung"
|
518 |
|
519 |
+
#: app/features/events.php:345 app/features/events.php:1179
|
520 |
#, fuzzy
|
521 |
#| msgid "Event Detail"
|
522 |
msgid "Event Data"
|
523 |
msgstr "Veranstaltungsdetails"
|
524 |
|
525 |
+
#: app/features/events.php:347 app/features/mec/settings.php:824
|
526 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
527 |
msgid "Hourly Schedule"
|
528 |
msgstr "Stundenplan"
|
529 |
|
530 |
+
#: app/features/events.php:348
|
531 |
msgid "Location/Venue"
|
532 |
msgstr "Ort"
|
533 |
|
534 |
+
#: app/features/events.php:349
|
535 |
msgid "Links"
|
536 |
msgstr "Links"
|
537 |
|
538 |
+
#: app/features/events.php:350 app/features/events.php:3473
|
539 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
540 |
+
#: app/features/ix.php:4034
|
541 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
542 |
#: app/features/mec/meta_boxes/search_form.php:46
|
543 |
+
#: app/features/mec/meta_boxes/search_form.php:117
|
544 |
+
#: app/features/mec/meta_boxes/search_form.php:188
|
545 |
+
#: app/features/mec/meta_boxes/search_form.php:259
|
546 |
+
#: app/features/mec/meta_boxes/search_form.php:329
|
547 |
+
#: app/features/mec/meta_boxes/search_form.php:399
|
548 |
+
#: app/features/mec/meta_boxes/search_form.php:469
|
549 |
+
#: app/features/mec/meta_boxes/search_form.php:532
|
550 |
+
#: app/features/mec/meta_boxes/search_form.php:602
|
551 |
+
#: app/features/mec/meta_boxes/search_form.php:672
|
552 |
+
#: app/features/mec/meta_boxes/search_form.php:778
|
553 |
+
#: app/features/mec/settings.php:1060 app/features/mec/single.php:335
|
554 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
555 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
556 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
557 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
558 |
+
#: app/features/search.php:80 app/libraries/main.php:6492
|
559 |
+
#: app/libraries/main.php:6546 app/libraries/skins.php:990
|
560 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
561 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
562 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
563 |
msgid "Organizer"
|
564 |
msgstr "Veranstalter"
|
565 |
|
566 |
+
#: app/features/events.php:351 app/features/events.php:1166
|
567 |
+
#: app/features/fes/form.php:836 app/features/mec/settings.php:985
|
568 |
+
#: app/libraries/main.php:6523 app/libraries/main.php:6572
|
569 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
570 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
571 |
#: app/skins/single/modern.php:237
|
572 |
msgid "Cost"
|
573 |
msgstr " Preis"
|
574 |
|
575 |
+
#: app/features/events.php:352
|
576 |
#, fuzzy
|
577 |
#| msgid "On Event Start"
|
578 |
msgid "SEO Schema / Event Status"
|
579 |
msgstr "Am Event Start"
|
580 |
|
581 |
+
#: app/features/events.php:505
|
582 |
msgid "Note for reviewer"
|
583 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
584 |
|
585 |
+
#: app/features/events.php:511
|
586 |
msgid "Guest Data"
|
587 |
msgstr "Gäste Daten"
|
588 |
|
589 |
+
#: app/features/events.php:512 app/features/events.php:2371
|
590 |
+
#: app/features/events.php:3985 app/features/fes.php:243
|
591 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
592 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
593 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
595 |
msgid "Name"
|
596 |
msgstr "Name"
|
597 |
|
598 |
+
#: app/features/events.php:513 app/features/events.php:2380
|
599 |
+
#: app/features/events.php:2447 app/features/events.php:2536
|
600 |
+
#: app/features/events.php:3988 app/features/fes.php:243
|
601 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
602 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
603 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
604 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
605 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
606 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1903
|
607 |
+
#: app/libraries/main.php:1972 app/libraries/main.php:3424
|
608 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
609 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
610 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
613 |
msgid "Email"
|
614 |
msgstr "E-Mail"
|
615 |
|
616 |
+
#: app/features/events.php:522
|
617 |
msgid ""
|
618 |
"This event is imported from Google calendar so if you modify it, it would "
|
619 |
"overwrite in the next import from Google."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: app/features/events.php:526 app/features/fes/form.php:278
|
623 |
msgid "Date and Time"
|
624 |
msgstr "Datum und Uhrzeit"
|
625 |
|
626 |
+
#: app/features/events.php:529 app/features/events.php:533
|
627 |
+
#: app/features/events.php:3474 app/features/events.php:3662
|
628 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
629 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
630 |
+
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1406
|
631 |
#: app/features/mec/meta_boxes/display_options.php:52
|
632 |
#: app/features/mec/meta_boxes/display_options.php:298
|
633 |
#: app/features/mec/meta_boxes/display_options.php:555
|
647 |
msgid "Start Date"
|
648 |
msgstr "Start Datum"
|
649 |
|
650 |
+
#: app/features/events.php:548 app/features/events.php:552
|
651 |
+
#: app/features/events.php:3475 app/features/events.php:3662
|
652 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
653 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
654 |
+
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1407
|
655 |
#: app/features/popup/event.php:92
|
656 |
msgid "End Date"
|
657 |
msgstr "Ende Datum"
|
658 |
|
659 |
+
#: app/features/events.php:575 app/features/fes/form.php:319
|
660 |
#: app/features/popup/event.php:109
|
661 |
#, fuzzy
|
662 |
#| msgid "All Day Event"
|
663 |
msgid "All-day Event"
|
664 |
msgstr "Ganztägige Veranstaltung"
|
665 |
|
666 |
+
#: app/features/events.php:585 app/features/fes/form.php:322
|
667 |
msgid "Hide Event Time"
|
668 |
msgstr "Event / Veranstaltungszeit verbergen"
|
669 |
|
670 |
+
#: app/features/events.php:595 app/features/fes/form.php:325
|
671 |
msgid "Hide Event End Time"
|
672 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
673 |
|
674 |
+
#: app/features/events.php:600 app/features/events.php:604
|
675 |
#: app/features/fes/form.php:329
|
676 |
#, fuzzy
|
677 |
#| msgid "Note to reviewer"
|
678 |
msgid "Notes on the time"
|
679 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
680 |
|
681 |
+
#: app/features/events.php:605 app/features/fes/form.php:330
|
682 |
#, fuzzy
|
683 |
#| msgid ""
|
684 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
690 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
691 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
692 |
|
693 |
+
#: app/features/events.php:607 app/features/events.php:776
|
694 |
+
#: app/features/events.php:1129 app/features/events.php:1278
|
695 |
+
#: app/features/events.php:1415 app/features/events.php:1530
|
696 |
+
#: app/features/events.php:1765 app/features/events.php:1780
|
697 |
+
#: app/features/events.php:1957 app/features/events.php:1970
|
698 |
+
#: app/features/events.php:2122 app/features/events.php:2158
|
699 |
+
#: app/features/events.php:2256 app/features/events.php:2271
|
700 |
+
#: app/features/events.php:2301 app/features/events.php:2314
|
701 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
702 |
+
#: app/features/locations.php:335 app/features/mec/booking.php:117
|
703 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
704 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
705 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
752 |
#: app/features/mec/notifications.php:950
|
753 |
#: app/features/mec/notifications.php:961
|
754 |
#: app/features/mec/notifications.php:1086
|
755 |
+
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:81
|
756 |
+
#: app/features/mec/settings.php:100 app/features/mec/settings.php:147
|
757 |
+
#: app/features/mec/settings.php:182 app/features/mec/settings.php:203
|
758 |
+
#: app/features/mec/settings.php:248 app/features/mec/settings.php:291
|
759 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
760 |
+
#: app/features/mec/settings.php:462 app/features/mec/settings.php:479
|
761 |
+
#: app/features/mec/settings.php:498 app/features/mec/settings.php:512
|
762 |
+
#: app/features/mec/settings.php:540 app/features/mec/settings.php:631
|
763 |
+
#: app/features/mec/settings.php:956 app/features/mec/settings.php:972
|
764 |
+
#: app/features/mec/settings.php:1110 app/features/mec/settings.php:1123
|
765 |
+
#: app/features/mec/settings.php:1139 app/features/mec/single.php:46
|
766 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
767 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
768 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
776 |
msgid "Read More"
|
777 |
msgstr "Mehr lesen"
|
778 |
|
779 |
+
#: app/features/events.php:617 app/features/fes/form.php:337
|
780 |
#, fuzzy
|
781 |
#| msgid "Timezone: %s"
|
782 |
msgid "Timezone"
|
783 |
msgstr "Zeitzone: %s"
|
784 |
|
785 |
+
#: app/features/events.php:622 app/features/events.php:635
|
786 |
+
#: app/features/events.php:1606 app/features/events.php:1616
|
787 |
+
#: app/features/events.php:1639 app/features/events.php:2084
|
788 |
+
#: app/features/events.php:2216 app/features/events.php:2402
|
789 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
790 |
msgid "Inherit from global options"
|
791 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
792 |
|
793 |
+
#: app/features/events.php:631 app/features/events.php:634
|
794 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
795 |
#, fuzzy
|
796 |
#| msgid "Countdown View"
|
797 |
msgid "Countdown Method"
|
798 |
msgstr "Countdownansicht"
|
799 |
|
800 |
+
#: app/features/events.php:636 app/features/fes/form.php:356
|
801 |
#, fuzzy
|
802 |
#| msgid "On Event Start"
|
803 |
msgid "Count to Event Start"
|
804 |
msgstr "Am Event Start"
|
805 |
|
806 |
+
#: app/features/events.php:637 app/features/fes/form.php:357
|
807 |
#, fuzzy
|
808 |
#| msgid "On Event End"
|
809 |
msgid "Count to Event End"
|
810 |
msgstr "Am Event Ende"
|
811 |
|
812 |
+
#: app/features/events.php:645
|
813 |
msgid "Repeating"
|
814 |
msgstr "Wiederholen"
|
815 |
|
816 |
+
#: app/features/events.php:654
|
817 |
msgid "Event Repeating (Recurring events)"
|
818 |
msgstr "Wiederholende Veranstaltung"
|
819 |
|
820 |
+
#: app/features/events.php:658 app/features/fes/form.php:370
|
821 |
msgid "Repeats"
|
822 |
msgstr "Wiederholend"
|
823 |
|
824 |
+
#: app/features/events.php:666 app/features/fes/form.php:372
|
825 |
+
#: app/features/mec.php:1409 app/skins/default_full_calendar/tpl.php:77
|
826 |
#: app/skins/full_calendar/tpl.php:124
|
827 |
msgid "Daily"
|
828 |
msgstr "Täglich"
|
829 |
|
830 |
+
#: app/features/events.php:673 app/features/fes/form.php:373
|
831 |
msgid "Every Weekday"
|
832 |
msgstr "An jedem Wochentag"
|
833 |
|
834 |
+
#: app/features/events.php:680 app/features/fes/form.php:374
|
835 |
msgid "Every Weekend"
|
836 |
msgstr "An jedem Wochenende"
|
837 |
|
838 |
+
#: app/features/events.php:687 app/features/fes/form.php:375
|
839 |
msgid "Certain Weekdays"
|
840 |
msgstr "Bestimmte Wochentage"
|
841 |
|
842 |
+
#: app/features/events.php:694 app/features/fes/form.php:376
|
843 |
#: app/skins/default_full_calendar/tpl.php:76
|
844 |
#: app/skins/full_calendar/tpl.php:123
|
845 |
msgid "Weekly"
|
846 |
msgstr "Wöchentlich"
|
847 |
|
848 |
+
#: app/features/events.php:701 app/features/fes/form.php:377
|
849 |
+
#: app/features/mec.php:1410 app/skins/default_full_calendar/tpl.php:75
|
850 |
#: app/skins/full_calendar/tpl.php:122
|
851 |
msgid "Monthly"
|
852 |
msgstr "Monatlich"
|
853 |
|
854 |
+
#: app/features/events.php:708 app/features/fes/form.php:378
|
855 |
+
#: app/features/mec.php:1411 app/skins/default_full_calendar/tpl.php:74
|
856 |
#: app/skins/full_calendar/tpl.php:121
|
857 |
msgid "Yearly"
|
858 |
msgstr "Jährlich"
|
859 |
|
860 |
+
#: app/features/events.php:715 app/features/fes/form.php:379
|
861 |
msgid "Custom Days"
|
862 |
msgstr "Benutzerdefinierte Tage"
|
863 |
|
864 |
+
#: app/features/events.php:722 app/features/fes/form.php:380
|
865 |
msgid "Advanced"
|
866 |
msgstr "Fortgeschritten"
|
867 |
|
868 |
+
#: app/features/events.php:727 app/features/fes/form.php:384
|
869 |
msgid "Repeat Interval"
|
870 |
msgstr "Wiederholungsintervall"
|
871 |
|
872 |
+
#: app/features/events.php:729 app/features/fes/form.php:385
|
873 |
msgid "Repeat interval"
|
874 |
msgstr "Wiederholungsintervall"
|
875 |
|
876 |
+
#: app/features/events.php:733 app/features/fes/form.php:388
|
877 |
msgid "Week Days"
|
878 |
msgstr "Wochentage"
|
879 |
|
880 |
+
#: app/features/events.php:750
|
881 |
#, fuzzy
|
882 |
#| msgid "Pro version of Modern Events Calendar"
|
883 |
msgid ""
|
885 |
"Calendar."
|
886 |
msgstr "Pro Version vom Modernen Event Calendar"
|
887 |
|
888 |
+
#: app/features/events.php:756 app/features/events.php:1848
|
889 |
+
#: app/features/events.php:1876 app/features/events.php:2026
|
890 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
891 |
#: app/features/ix/import_g_calendar.php:51
|
892 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
893 |
+
#: app/libraries/skins.php:1142
|
894 |
msgid "Start"
|
895 |
msgstr "Start"
|
896 |
|
897 |
+
#: app/features/events.php:769 app/features/events.php:1272
|
898 |
+
#: app/features/events.php:1832 app/features/events.php:2015
|
899 |
+
#: app/features/events.php:2095 app/features/events.php:2228
|
900 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
901 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
902 |
#: app/libraries/hourlyschedule.php:119
|
903 |
msgid "Add"
|
904 |
msgstr "Hinzufügen"
|
905 |
|
906 |
+
#: app/features/events.php:772 app/features/fes/form.php:435
|
907 |
msgid "Custom Days Repeating"
|
908 |
msgstr "Benutzerdefinierte Wiederholende Tage"
|
909 |
|
910 |
+
#: app/features/events.php:775 app/features/fes/form.php:438
|
911 |
msgid ""
|
912 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
913 |
"start and end dates should be the same, If you have a multiple day event, "
|
914 |
"the start and end dates must be commensurate with the initial date."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: app/features/events.php:786 app/features/events.php:1852
|
918 |
+
#: app/features/events.php:1880 app/features/events.php:2030
|
919 |
+
#: app/features/fes/form.php:417 app/libraries/skins.php:1145
|
920 |
msgid "End"
|
921 |
msgstr "Ende"
|
922 |
|
923 |
+
#: app/features/events.php:863 app/features/fes/form.php:511
|
924 |
msgid "First"
|
925 |
msgstr "Erster"
|
926 |
|
927 |
+
#: app/features/events.php:905 app/features/fes/form.php:553
|
928 |
msgid "Second"
|
929 |
msgstr "Zweiter"
|
930 |
|
931 |
+
#: app/features/events.php:947 app/features/fes/form.php:595
|
932 |
msgid "Third"
|
933 |
msgstr "Dritter"
|
934 |
|
935 |
+
#: app/features/events.php:989 app/features/fes/form.php:637
|
936 |
msgid "Fourth"
|
937 |
msgstr "Vierte"
|
938 |
|
939 |
+
#: app/features/events.php:1031 app/features/fes/form.php:679
|
940 |
msgid "Last"
|
941 |
msgstr "Letzter"
|
942 |
|
943 |
+
#: app/features/events.php:1078 app/features/fes/form.php:725
|
944 |
msgid "Ends Repeat"
|
945 |
msgstr "Wiederholung endet"
|
946 |
|
947 |
+
#: app/features/events.php:1090 app/features/fes/form.php:729
|
948 |
msgid "Never"
|
949 |
msgstr "Niemals"
|
950 |
|
951 |
+
#: app/features/events.php:1102 app/features/fes/form.php:734
|
952 |
msgid "On"
|
953 |
msgstr "Am"
|
954 |
|
955 |
+
#: app/features/events.php:1118 app/features/fes/form.php:741
|
956 |
#: app/features/mec/booking.php:154
|
957 |
msgid "After"
|
958 |
msgstr "Nach"
|
959 |
|
960 |
+
#: app/features/events.php:1122 app/features/events.php:1126
|
961 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
962 |
msgid "Occurrences times"
|
963 |
msgstr " mal vorkommen"
|
964 |
|
965 |
+
#: app/features/events.php:1127
|
966 |
#, fuzzy
|
967 |
#| msgid ""
|
968 |
#| "The event will finish after certain repeats. For example if you set it to "
|
974 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
975 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
976 |
|
977 |
+
#: app/features/events.php:1143 app/features/fes/form.php:760
|
978 |
#, fuzzy
|
979 |
#| msgid "Next Occurrence of Other Events"
|
980 |
msgid "Show only one occurrence of this event"
|
981 |
msgstr "Nächstes Auftreten von anderen Events."
|
982 |
|
983 |
+
#: app/features/events.php:1162 app/features/events.php:3662
|
984 |
+
#: app/features/fes/form.php:833 app/features/ix.php:3992
|
985 |
+
#: app/features/ix.php:4034 app/features/mec/settings.php:770
|
986 |
+
#: app/libraries/main.php:6522 app/libraries/main.php:6571
|
987 |
#: app/widgets/single.php:105
|
988 |
msgid "Event Cost"
|
989 |
msgstr ""
|
990 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
991 |
|
992 |
+
#: app/features/events.php:1259
|
993 |
#, fuzzy
|
994 |
#| msgid "Exceptional Days"
|
995 |
msgid "Exceptional Days (Exclude Dates)"
|
996 |
msgstr "Herausgenommene Tage "
|
997 |
|
998 |
+
#: app/features/events.php:1265 app/features/events.php:1275
|
999 |
msgid "Exclude certain days"
|
1000 |
msgstr "Ausschluss bestimmter Tage"
|
1001 |
|
1002 |
+
#: app/features/events.php:1270 app/features/events.php:2448
|
1003 |
+
#: app/features/events.php:2537 app/features/fes.php:243
|
1004 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
1005 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
1006 |
+
#: app/features/wc.php:83 app/libraries/main.php:3511
|
1007 |
#: app/modules/booking/steps/tickets.php:106
|
1008 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
1009 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
1011 |
msgid "Date"
|
1012 |
msgstr "Datum"
|
1013 |
|
1014 |
+
#: app/features/events.php:1276
|
1015 |
msgid ""
|
1016 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
1017 |
"exclude only single day occurrences and you cannot exclude one day from "
|
1018 |
"multiple day occurrences."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: app/features/events.php:1334 app/libraries/render.php:566
|
1022 |
msgid "Day 1"
|
1023 |
msgstr "Tag 1"
|
1024 |
|
1025 |
+
#: app/features/events.php:1378 app/features/fes/form.php:810
|
1026 |
+
#: app/features/mec/settings.php:764
|
1027 |
msgid "Event Links"
|
1028 |
msgstr "Veranstaltungslinks"
|
1029 |
|
1030 |
+
#: app/features/events.php:1381 app/features/events.php:1389
|
1031 |
+
#: app/features/fes/form.php:812 app/features/mec/settings.php:986
|
1032 |
+
#: app/libraries/main.php:6520 app/libraries/main.php:6569
|
1033 |
msgid "Event Link"
|
1034 |
msgstr "Veranstaltungslink"
|
1035 |
|
1036 |
+
#: app/features/events.php:1384 app/features/events.php:1402
|
1037 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
1038 |
msgid "eg. http://yoursite.com/your-event"
|
1039 |
msgstr "z.B. http://yoursite.com/your-event"
|
1040 |
|
1041 |
+
#: app/features/events.php:1390
|
1042 |
#, fuzzy
|
1043 |
#| msgid ""
|
1044 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
1052 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1053 |
"einschließlich http(s)://"
|
1054 |
|
1055 |
+
#: app/features/events.php:1392
|
1056 |
msgid "URL Shortener"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: app/features/events.php:1399 app/features/events.php:1412
|
1060 |
+
#: app/features/fes/form.php:817 app/libraries/main.php:6521
|
1061 |
+
#: app/libraries/main.php:6570 app/skins/single.php:1126
|
1062 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1063 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1064 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
1065 |
msgid "More Info"
|
1066 |
msgstr "Mehr Informationen"
|
1067 |
|
1068 |
+
#: app/features/events.php:1405 app/features/fes/form.php:819
|
1069 |
msgid "More Information"
|
1070 |
msgstr "z.B. Noch mehr Informationen "
|
1071 |
|
1072 |
+
#: app/features/events.php:1407 app/features/fes/form.php:821
|
1073 |
+
#: app/features/mec.php:1008 app/features/popup/shortcode.php:477
|
1074 |
msgid "Current Window"
|
1075 |
msgstr "Aktuelles Fenster"
|
1076 |
|
1077 |
+
#: app/features/events.php:1408 app/features/fes/form.php:822
|
1078 |
+
#: app/features/mec.php:1009 app/features/popup/shortcode.php:481
|
1079 |
msgid "New Window"
|
1080 |
msgstr "Neues Fenster"
|
1081 |
|
1082 |
+
#: app/features/events.php:1413 app/features/fes/form.php:824
|
1083 |
msgid ""
|
1084 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1085 |
"Insert full link including http(s)://"
|
1090 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1091 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1092 |
|
1093 |
+
#: app/features/events.php:1436 app/features/mec/settings.php:832
|
1094 |
msgid "Booking Options"
|
1095 |
msgstr "Buchungsoptionen"
|
1096 |
|
1097 |
+
#: app/features/events.php:1437 app/features/events.php:1628
|
1098 |
+
#: app/features/mec/settings.php:869
|
1099 |
#, fuzzy
|
1100 |
#| msgid "Total booking limits"
|
1101 |
msgid "Total User Booking Limits"
|
1102 |
msgstr "Gesamt Verfügbare Plätze"
|
1103 |
|
1104 |
+
#: app/features/events.php:1438 app/features/events.php:1684
|
1105 |
+
#: app/libraries/book.php:63 app/libraries/main.php:6525
|
1106 |
#: app/modules/booking/steps/tickets.php:137
|
1107 |
#: app/modules/booking/steps/tickets.php:143
|
1108 |
msgid "Tickets"
|
1109 |
msgstr "Tickets"
|
1110 |
|
1111 |
+
#: app/features/events.php:1440 app/features/events.php:2072
|
1112 |
msgid "Fees"
|
1113 |
msgstr "Gebühren"
|
1114 |
|
1115 |
+
#: app/features/events.php:1443 app/features/events.php:2204
|
1116 |
+
#: app/features/mec/settings.php:894
|
1117 |
msgid "Ticket Variations / Options"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: app/features/events.php:1447 app/features/mec/booking.php:904
|
1121 |
#: app/features/mec/support-page.php:118
|
1122 |
#, fuzzy
|
1123 |
#| msgid "Organizer Tel"
|
1124 |
msgid "Organizer Payment"
|
1125 |
msgstr "Organisator Telefon"
|
1126 |
|
1127 |
+
#: app/features/events.php:1512 app/features/events.php:1526
|
1128 |
#, fuzzy
|
1129 |
#| msgid "Total booking limits"
|
1130 |
msgid "Total booking limit"
|
1131 |
msgstr "Gesamt Verfügbare Plätze"
|
1132 |
|
1133 |
+
#: app/features/events.php:1523 app/features/events.php:1801
|
1134 |
+
#: app/features/events.php:1984 app/modules/booking/default.php:98
|
1135 |
#: app/modules/booking/steps/tickets.php:137
|
1136 |
#: app/modules/booking/steps/tickets.php:143
|
1137 |
#: app/skins/available_spot/tpl.php:140
|
1138 |
msgid "Unlimited"
|
1139 |
msgstr "Unlimitiert"
|
1140 |
|
1141 |
+
#: app/features/events.php:1529
|
1142 |
msgid ""
|
1143 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1144 |
"limitation number."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: app/features/events.php:1531
|
1148 |
#, fuzzy
|
1149 |
#| msgid "Choose your single event style."
|
1150 |
msgid "Read About A Booking System"
|
1151 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1152 |
|
1153 |
+
#: app/features/events.php:1539
|
1154 |
msgid "100"
|
1155 |
msgstr "z.B. 100"
|
1156 |
|
1157 |
+
#: app/features/events.php:1544
|
1158 |
#, fuzzy
|
1159 |
#| msgid "Discount Type"
|
1160 |
msgid "Discount per user roles"
|
1161 |
msgstr "Rabatt-Art"
|
1162 |
|
1163 |
+
#: app/features/events.php:1550
|
1164 |
msgid "5"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: app/features/events.php:1556 app/features/events.php:1570
|
1168 |
+
#: app/features/mec/settings.php:851
|
1169 |
#, fuzzy
|
1170 |
#| msgid "Next Occurrence"
|
1171 |
msgid "Book All Occurrences"
|
1172 |
msgstr "Nächstes Event"
|
1173 |
|
1174 |
+
#: app/features/events.php:1567
|
1175 |
msgid "Sell all occurrences by one booking"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: app/features/events.php:1573
|
1179 |
msgid ""
|
1180 |
"If you have a series of events and you want to sell all of them at once, "
|
1181 |
"this option is for you! For example a weekly yoga course or something "
|
1182 |
"similar."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: app/features/events.php:1584 app/features/mec/booking.php:129
|
1186 |
+
#: app/features/mec/settings.php:857
|
1187 |
#, fuzzy
|
1188 |
#| msgid "General Options"
|
1189 |
msgid "Interval Options"
|
1190 |
msgstr "Allgemeine Einstellungen"
|
1191 |
|
1192 |
+
#: app/features/events.php:1586 app/features/events.php:1591
|
1193 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1194 |
#, fuzzy
|
1195 |
#| msgid "Booking Form"
|
1196 |
msgid "Show Booking Form Interval"
|
1197 |
msgstr "Buchungsformular"
|
1198 |
|
1199 |
+
#: app/features/events.php:1588 app/features/mec/booking.php:133
|
1200 |
msgid "Minutes (e.g 5)"
|
1201 |
msgstr "Minuten (z.B. 5)"
|
1202 |
|
1203 |
+
#: app/features/events.php:1592 app/features/mec/booking.php:137
|
1204 |
msgid ""
|
1205 |
"You can show booking form only at certain times before event start. If you "
|
1206 |
"set this option to 30 then booking form will open only 30 minutes before "
|
1207 |
"starting the event! One day is 1440 minutes."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: app/features/events.php:1601 app/features/mec/settings.php:863
|
1211 |
msgid "Automatic Approval"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: app/features/events.php:1603 app/features/notifications.php:160
|
1215 |
#, fuzzy
|
1216 |
#| msgid "Email verification"
|
1217 |
msgid "Email Verification"
|
1218 |
msgstr "Email-Verifizierung"
|
1219 |
|
1220 |
+
#: app/features/events.php:1607 app/features/events.php:1617
|
1221 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1222 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1223 |
#: app/features/mec/booking.php:868
|
1229 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1230 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1231 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1232 |
+
#: app/features/mec/meta_boxes/search_form.php:91
|
1233 |
+
#: app/features/mec/meta_boxes/search_form.php:104
|
1234 |
+
#: app/features/mec/meta_boxes/search_form.php:111
|
1235 |
+
#: app/features/mec/meta_boxes/search_form.php:119
|
1236 |
+
#: app/features/mec/meta_boxes/search_form.php:126
|
1237 |
+
#: app/features/mec/meta_boxes/search_form.php:133
|
1238 |
+
#: app/features/mec/meta_boxes/search_form.php:140
|
1239 |
+
#: app/features/mec/meta_boxes/search_form.php:147
|
1240 |
+
#: app/features/mec/meta_boxes/search_form.php:154
|
1241 |
+
#: app/features/mec/meta_boxes/search_form.php:162
|
1242 |
+
#: app/features/mec/meta_boxes/search_form.php:175
|
1243 |
+
#: app/features/mec/meta_boxes/search_form.php:182
|
1244 |
+
#: app/features/mec/meta_boxes/search_form.php:190
|
1245 |
+
#: app/features/mec/meta_boxes/search_form.php:197
|
1246 |
+
#: app/features/mec/meta_boxes/search_form.php:204
|
1247 |
+
#: app/features/mec/meta_boxes/search_form.php:211
|
1248 |
+
#: app/features/mec/meta_boxes/search_form.php:218
|
1249 |
+
#: app/features/mec/meta_boxes/search_form.php:225
|
1250 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
1251 |
+
#: app/features/mec/meta_boxes/search_form.php:246
|
1252 |
+
#: app/features/mec/meta_boxes/search_form.php:253
|
1253 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
1254 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
1255 |
+
#: app/features/mec/meta_boxes/search_form.php:275
|
1256 |
+
#: app/features/mec/meta_boxes/search_form.php:282
|
1257 |
+
#: app/features/mec/meta_boxes/search_form.php:289
|
1258 |
+
#: app/features/mec/meta_boxes/search_form.php:296
|
1259 |
+
#: app/features/mec/meta_boxes/search_form.php:303
|
1260 |
+
#: app/features/mec/meta_boxes/search_form.php:316
|
1261 |
+
#: app/features/mec/meta_boxes/search_form.php:323
|
1262 |
+
#: app/features/mec/meta_boxes/search_form.php:331
|
1263 |
+
#: app/features/mec/meta_boxes/search_form.php:338
|
1264 |
+
#: app/features/mec/meta_boxes/search_form.php:345
|
1265 |
+
#: app/features/mec/meta_boxes/search_form.php:352
|
1266 |
+
#: app/features/mec/meta_boxes/search_form.php:359
|
1267 |
+
#: app/features/mec/meta_boxes/search_form.php:366
|
1268 |
+
#: app/features/mec/meta_boxes/search_form.php:373
|
1269 |
+
#: app/features/mec/meta_boxes/search_form.php:386
|
1270 |
+
#: app/features/mec/meta_boxes/search_form.php:393
|
1271 |
+
#: app/features/mec/meta_boxes/search_form.php:401
|
1272 |
+
#: app/features/mec/meta_boxes/search_form.php:408
|
1273 |
+
#: app/features/mec/meta_boxes/search_form.php:415
|
1274 |
+
#: app/features/mec/meta_boxes/search_form.php:422
|
1275 |
+
#: app/features/mec/meta_boxes/search_form.php:429
|
1276 |
+
#: app/features/mec/meta_boxes/search_form.php:436
|
1277 |
+
#: app/features/mec/meta_boxes/search_form.php:443
|
1278 |
+
#: app/features/mec/meta_boxes/search_form.php:456
|
1279 |
+
#: app/features/mec/meta_boxes/search_form.php:463
|
1280 |
+
#: app/features/mec/meta_boxes/search_form.php:471
|
1281 |
+
#: app/features/mec/meta_boxes/search_form.php:478
|
1282 |
+
#: app/features/mec/meta_boxes/search_form.php:485
|
1283 |
+
#: app/features/mec/meta_boxes/search_form.php:492
|
1284 |
+
#: app/features/mec/meta_boxes/search_form.php:499
|
1285 |
+
#: app/features/mec/meta_boxes/search_form.php:506
|
1286 |
+
#: app/features/mec/meta_boxes/search_form.php:519
|
1287 |
+
#: app/features/mec/meta_boxes/search_form.php:526
|
1288 |
+
#: app/features/mec/meta_boxes/search_form.php:534
|
1289 |
+
#: app/features/mec/meta_boxes/search_form.php:541
|
1290 |
+
#: app/features/mec/meta_boxes/search_form.php:548
|
1291 |
+
#: app/features/mec/meta_boxes/search_form.php:555
|
1292 |
+
#: app/features/mec/meta_boxes/search_form.php:562
|
1293 |
+
#: app/features/mec/meta_boxes/search_form.php:569
|
1294 |
+
#: app/features/mec/meta_boxes/search_form.php:576
|
1295 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1296 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
1297 |
+
#: app/features/mec/meta_boxes/search_form.php:604
|
1298 |
+
#: app/features/mec/meta_boxes/search_form.php:611
|
1299 |
+
#: app/features/mec/meta_boxes/search_form.php:618
|
1300 |
+
#: app/features/mec/meta_boxes/search_form.php:625
|
1301 |
+
#: app/features/mec/meta_boxes/search_form.php:632
|
1302 |
+
#: app/features/mec/meta_boxes/search_form.php:639
|
1303 |
+
#: app/features/mec/meta_boxes/search_form.php:646
|
1304 |
+
#: app/features/mec/meta_boxes/search_form.php:659
|
1305 |
+
#: app/features/mec/meta_boxes/search_form.php:666
|
1306 |
+
#: app/features/mec/meta_boxes/search_form.php:674
|
1307 |
+
#: app/features/mec/meta_boxes/search_form.php:681
|
1308 |
+
#: app/features/mec/meta_boxes/search_form.php:688
|
1309 |
+
#: app/features/mec/meta_boxes/search_form.php:695
|
1310 |
+
#: app/features/mec/meta_boxes/search_form.php:702
|
1311 |
+
#: app/features/mec/meta_boxes/search_form.php:709
|
1312 |
+
#: app/features/mec/meta_boxes/search_form.php:716
|
1313 |
+
#: app/features/mec/meta_boxes/search_form.php:765
|
1314 |
+
#: app/features/mec/meta_boxes/search_form.php:772
|
1315 |
+
#: app/features/mec/meta_boxes/search_form.php:780
|
1316 |
+
#: app/features/mec/meta_boxes/search_form.php:787
|
1317 |
+
#: app/features/mec/meta_boxes/search_form.php:794
|
1318 |
+
#: app/features/mec/meta_boxes/search_form.php:801
|
1319 |
+
#: app/features/mec/meta_boxes/search_form.php:808
|
1320 |
+
#: app/features/mec/meta_boxes/search_form.php:815
|
1321 |
+
#: app/features/mec/meta_boxes/search_form.php:822
|
1322 |
+
#: app/features/mec/modules.php:124 app/features/mec/settings.php:112
|
1323 |
+
#: app/features/mec/settings.php:474
|
1324 |
msgid "Disabled"
|
1325 |
msgstr "Deaktiviert"
|
1326 |
|
1327 |
+
#: app/features/events.php:1608 app/features/events.php:1618
|
1328 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1329 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1330 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1331 |
+
#: app/features/mec/settings.php:113
|
1332 |
msgid "Enabled"
|
1333 |
msgstr "Aktiviert"
|
1334 |
|
1335 |
+
#: app/features/events.php:1613 app/features/mec/booking.php:376
|
1336 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1337 |
+
#: app/libraries/main.php:629
|
1338 |
msgid "Booking Confirmation"
|
1339 |
msgstr "Buchungsbestätigung"
|
1340 |
|
1341 |
+
#: app/features/events.php:1642
|
|
|
|
|
|
|
|
|
|
|
|
|
1342 |
msgid "12"
|
1343 |
msgstr "12"
|
1344 |
|
1345 |
+
#: app/features/events.php:1649
|
1346 |
#, fuzzy
|
1347 |
#| msgid "Payment Gateways"
|
1348 |
msgid "Disabled Gateways"
|
1349 |
msgstr "Zahlungs-Gateways"
|
1350 |
|
1351 |
+
#: app/features/events.php:1650
|
1352 |
msgid ""
|
1353 |
"You can disable some of the following payment gateways by checking them "
|
1354 |
"otherwise they will be enabled."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: app/features/events.php:1687
|
1358 |
msgid ""
|
1359 |
"You're translating an event so MEC will use the original event for tickets "
|
1360 |
"and booking. You can only translate the ticket name and description. Please "
|
1361 |
"define exact tickets that you defined in the original event here."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: app/features/events.php:1692
|
1365 |
msgid "Add Ticket"
|
1366 |
msgstr "Ticket hinzufügen"
|
1367 |
|
1368 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1369 |
#, fuzzy
|
1370 |
#| msgid "Ticket"
|
1371 |
msgid "Ticket ID"
|
1372 |
msgstr "Ticket"
|
1373 |
|
1374 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1375 |
+
#: app/features/events.php:3662 app/features/fes.php:243
|
1376 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1377 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1378 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1379 |
msgid "ID"
|
1380 |
msgstr "ID"
|
1381 |
|
1382 |
+
#: app/features/events.php:1707 app/features/events.php:1903
|
1383 |
msgid "Ticket Name"
|
1384 |
msgstr "Ticket Name"
|
1385 |
|
1386 |
+
#: app/features/events.php:1712 app/features/events.php:1907
|
1387 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1388 |
+
#: app/features/ix.php:4034
|
1389 |
msgid "Start Time"
|
1390 |
msgstr "Uhrzeit des Beginns"
|
1391 |
|
1392 |
+
#: app/features/events.php:1725 app/features/events.php:1920
|
1393 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1394 |
+
#: app/features/ix.php:4034
|
1395 |
msgid "End Time"
|
1396 |
msgstr "Uhrzeit Ende"
|
1397 |
|
1398 |
+
#: app/features/events.php:1741 app/features/events.php:1935
|
1399 |
+
#: app/features/events.php:3662 app/libraries/hourlyschedule.php:65
|
1400 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1401 |
msgid "Description"
|
1402 |
msgstr "Beschreibung"
|
1403 |
|
1404 |
+
#: app/features/events.php:1746 app/features/events.php:1749
|
1405 |
+
#: app/features/events.php:1939 app/features/events.php:1942
|
1406 |
#, fuzzy
|
1407 |
#| msgid "Description"
|
1408 |
msgid "Private Description"
|
1409 |
msgstr "Beschreibung"
|
1410 |
|
1411 |
+
#: app/features/events.php:1750 app/features/events.php:1943
|
1412 |
#, php-format
|
1413 |
msgid ""
|
1414 |
"You can show it on the email notifications by placing "
|
1415 |
"%%ticket_private_description%% into the email template."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: app/features/events.php:1758 app/features/events.php:1762
|
1419 |
+
#: app/features/events.php:1856 app/features/events.php:1883
|
1420 |
+
#: app/features/events.php:1951 app/features/events.php:1954
|
1421 |
+
#: app/features/events.php:2032 app/features/events.php:2249
|
1422 |
+
#: app/features/events.php:2253 app/features/events.php:2295
|
1423 |
+
#: app/features/events.php:2298 app/features/mec/booking.php:547
|
1424 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1425 |
#: app/features/mec/booking.php:582
|
1426 |
msgid "Price"
|
1427 |
msgstr "Preis"
|
1428 |
|
1429 |
+
#: app/features/events.php:1763 app/features/events.php:1955
|
1430 |
#, fuzzy
|
1431 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1432 |
msgid ""
|
1434 |
"any symbols or characters."
|
1435 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1436 |
|
1437 |
+
#: app/features/events.php:1772 app/features/events.php:1777
|
1438 |
+
#: app/features/events.php:1964 app/features/events.php:1967
|
1439 |
msgid "Price Label"
|
1440 |
msgstr "Preisschild"
|
1441 |
|
1442 |
+
#: app/features/events.php:1778 app/features/events.php:1968
|
1443 |
msgid "For showing on website. e.g. $15"
|
1444 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1445 |
|
1446 |
+
#: app/features/events.php:1788 app/features/events.php:1978
|
1447 |
msgid "Available Tickets"
|
1448 |
msgstr "Verfügbare Tickets: %s "
|
1449 |
|
1450 |
+
#: app/features/events.php:1805 app/features/events.php:1988
|
1451 |
msgid "Minimum Ticket e.g. 3"
|
1452 |
msgstr "Ticket minimum z.B. 3"
|
1453 |
|
1454 |
+
#: app/features/events.php:1808 app/features/events.php:1991
|
1455 |
msgid "MinimumTicket"
|
1456 |
msgstr "Ticket minimum"
|
1457 |
|
1458 |
+
#: app/features/events.php:1810 app/features/events.php:1993
|
1459 |
msgid "Set a number for the minimum ticket reservation possible"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: app/features/events.php:1818 app/features/events.php:2001
|
1463 |
msgid "e.g. 0"
|
1464 |
msgstr "z.B. 0"
|
1465 |
|
1466 |
+
#: app/features/events.php:1820 app/features/events.php:2003
|
1467 |
msgid "Day"
|
1468 |
msgstr "Tag"
|
1469 |
|
1470 |
+
#: app/features/events.php:1821 app/features/events.php:2004
|
1471 |
msgid "Hour"
|
1472 |
msgstr "Stunde"
|
1473 |
|
1474 |
+
#: app/features/events.php:1823 app/features/events.php:2006
|
1475 |
#, php-format
|
1476 |
msgid "Stop selling ticket %s before event start."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: app/features/events.php:1830 app/features/events.php:2013
|
1480 |
msgid "Price per Date"
|
1481 |
msgstr "Preis pro Datum"
|
1482 |
|
1483 |
+
#: app/features/events.php:1860 app/features/events.php:1886
|
1484 |
+
#: app/features/events.php:2034 app/features/labels.php:60
|
1485 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1486 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1487 |
+
#: app/features/mec/meta_boxes/search_form.php:138
|
1488 |
+
#: app/features/mec/meta_boxes/search_form.php:209
|
1489 |
+
#: app/features/mec/meta_boxes/search_form.php:280
|
1490 |
+
#: app/features/mec/meta_boxes/search_form.php:350
|
1491 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
1492 |
+
#: app/features/mec/meta_boxes/search_form.php:490
|
1493 |
+
#: app/features/mec/meta_boxes/search_form.php:553
|
1494 |
+
#: app/features/mec/meta_boxes/search_form.php:623
|
1495 |
+
#: app/features/mec/meta_boxes/search_form.php:693
|
1496 |
+
#: app/features/mec/meta_boxes/search_form.php:799
|
1497 |
+
#: app/features/mec/settings.php:989 app/features/mec/settings.php:1080
|
1498 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1499 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1500 |
msgid "Label"
|
1501 |
msgstr "Label"
|
1502 |
|
1503 |
+
#: app/features/events.php:1862 app/features/events.php:1888
|
1504 |
+
#: app/features/events.php:2036 app/features/events.php:2135
|
1505 |
+
#: app/features/events.php:2171 app/features/events.php:2278
|
1506 |
+
#: app/features/events.php:2320 app/features/mec/booking.php:486
|
1507 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1508 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1509 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1510 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1511 |
+
#: app/libraries/main.php:3346 app/libraries/main.php:3375
|
1512 |
+
#: app/libraries/main.php:3404 app/libraries/main.php:3433
|
1513 |
+
#: app/libraries/main.php:3462 app/libraries/main.php:3491
|
1514 |
+
#: app/libraries/main.php:3520 app/libraries/main.php:3549
|
1515 |
+
#: app/libraries/main.php:3578 app/libraries/main.php:3599
|
1516 |
+
#: app/libraries/main.php:3630 app/libraries/main.php:3676
|
1517 |
+
#: app/libraries/main.php:3722 app/libraries/main.php:3771
|
1518 |
+
#: app/libraries/main.php:3811
|
1519 |
msgid "Remove"
|
1520 |
msgstr "Entfernen"
|
1521 |
|
1522 |
+
#: app/features/events.php:2109 app/features/events.php:2147
|
1523 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1524 |
msgid "Fee Title"
|
1525 |
msgstr "Gebühren Name"
|
1526 |
|
1527 |
+
#: app/features/events.php:2115 app/features/events.php:2119
|
1528 |
+
#: app/features/events.php:2152 app/features/events.php:2155
|
1529 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1530 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1531 |
msgid "Amount"
|
1532 |
msgstr "Betrag"
|
1533 |
|
1534 |
+
#: app/features/events.php:2120 app/features/events.php:2156
|
1535 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1536 |
msgid ""
|
1537 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1540 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1541 |
"sonst als Prozentsatz"
|
1542 |
|
1543 |
+
#: app/features/events.php:2129 app/features/events.php:2165
|
1544 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1545 |
msgid "Percent"
|
1546 |
msgstr "Prozent"
|
1547 |
|
1548 |
+
#: app/features/events.php:2130 app/features/events.php:2166
|
1549 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1550 |
msgid "Amount (Per Ticket)"
|
1551 |
msgstr "Betrag (pro Ticket)"
|
1552 |
|
1553 |
+
#: app/features/events.php:2131 app/features/events.php:2167
|
1554 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1555 |
msgid "Amount (Per Booking)"
|
1556 |
msgstr "Betrag (pro Buchung)"
|
1557 |
|
1558 |
+
#: app/features/events.php:2243 app/features/events.php:2290
|
1559 |
+
#: app/features/events.php:3470 app/features/events.php:3662
|
1560 |
+
#: app/features/fes/form.php:256 app/features/ix.php:3992
|
1561 |
+
#: app/features/ix.php:4034 app/features/mec/booking.php:543
|
1562 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1563 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1564 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
1566 |
msgid "Title"
|
1567 |
msgstr "Titel"
|
1568 |
|
1569 |
+
#: app/features/events.php:2254 app/features/events.php:2299
|
1570 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1571 |
msgid "Option Price"
|
1572 |
msgstr "Preis Optionen"
|
1573 |
|
1574 |
+
#: app/features/events.php:2264 app/features/events.php:2268
|
1575 |
+
#: app/features/events.php:2308 app/features/events.php:2311
|
1576 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1577 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1578 |
msgid "Maximum Per Ticket"
|
1579 |
msgstr "Maximum pro Ticket"
|
1580 |
|
1581 |
+
#: app/features/events.php:2269 app/features/events.php:2312
|
1582 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1583 |
#, fuzzy
|
1584 |
#| msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1585 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1586 |
msgstr "Maximum pro Ticket. Leerlassen für unendlich."
|
1587 |
|
1588 |
+
#: app/features/events.php:2388
|
1589 |
msgid ""
|
1590 |
"You're translating an event so MEC will use the original event for booking "
|
1591 |
"form. You can only translate the field name and options. Please define exact "
|
1592 |
"fields that you defined in the original event here."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: app/features/events.php:2414 app/features/mec/booking.php:609
|
1596 |
#, fuzzy
|
1597 |
#| msgid "Attendees List"
|
1598 |
msgid "Per Attendee Fields"
|
1599 |
msgstr "Teilnehmer Liste"
|
1600 |
|
1601 |
+
#: app/features/events.php:2444 app/features/mec/booking.php:642
|
1602 |
+
#: app/libraries/main.php:3366
|
1603 |
msgid "MEC Name"
|
1604 |
msgstr "MEC Name"
|
1605 |
|
1606 |
+
#: app/features/events.php:2445 app/features/mec/booking.php:643
|
1607 |
+
#: app/libraries/main.php:3395
|
1608 |
msgid "MEC Email"
|
1609 |
msgstr "MEC Email"
|
1610 |
|
1611 |
+
#: app/features/events.php:2446 app/features/events.php:2535
|
1612 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1613 |
+
#: app/features/mec/single.php:190 app/libraries/main.php:3337
|
1614 |
msgid "Text"
|
1615 |
msgstr "Text"
|
1616 |
|
1617 |
+
#: app/features/events.php:2449 app/features/events.php:2538
|
1618 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1619 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1620 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1621 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1622 |
+
#: app/libraries/main.php:3540
|
1623 |
msgid "Tel"
|
1624 |
msgstr "Tel"
|
1625 |
|
1626 |
+
#: app/features/events.php:2450 app/features/mec/booking.php:648
|
1627 |
+
#: app/libraries/main.php:3482
|
1628 |
msgid "File"
|
1629 |
msgstr "Datei"
|
1630 |
|
1631 |
+
#: app/features/events.php:2451 app/features/events.php:2539
|
1632 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1633 |
+
#: app/features/mec/single.php:195 app/libraries/main.php:3569
|
1634 |
msgid "Textarea"
|
1635 |
msgstr "Textbereich"
|
1636 |
|
1637 |
+
#: app/features/events.php:2452 app/features/events.php:2540
|
1638 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1639 |
+
#: app/features/mec/single.php:197 app/libraries/main.php:3621
|
1640 |
msgid "Checkboxes"
|
1641 |
msgstr "Checkboxes"
|
1642 |
|
1643 |
+
#: app/features/events.php:2453 app/features/events.php:2541
|
1644 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1645 |
+
#: app/features/mec/single.php:198 app/libraries/main.php:3667
|
1646 |
msgid "Radio Buttons"
|
1647 |
msgstr "Radio Buttons"
|
1648 |
|
1649 |
+
#: app/features/events.php:2454 app/features/events.php:2542
|
1650 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1651 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1652 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1654 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1655 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1656 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1657 |
+
#: app/features/mec/meta_boxes/search_form.php:105
|
1658 |
+
#: app/features/mec/meta_boxes/search_form.php:112
|
1659 |
+
#: app/features/mec/meta_boxes/search_form.php:120
|
1660 |
+
#: app/features/mec/meta_boxes/search_form.php:127
|
1661 |
+
#: app/features/mec/meta_boxes/search_form.php:134
|
1662 |
+
#: app/features/mec/meta_boxes/search_form.php:141
|
1663 |
+
#: app/features/mec/meta_boxes/search_form.php:176
|
1664 |
+
#: app/features/mec/meta_boxes/search_form.php:183
|
1665 |
+
#: app/features/mec/meta_boxes/search_form.php:191
|
1666 |
+
#: app/features/mec/meta_boxes/search_form.php:198
|
1667 |
+
#: app/features/mec/meta_boxes/search_form.php:205
|
1668 |
+
#: app/features/mec/meta_boxes/search_form.php:212
|
1669 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
1670 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
1671 |
+
#: app/features/mec/meta_boxes/search_form.php:262
|
1672 |
+
#: app/features/mec/meta_boxes/search_form.php:269
|
1673 |
+
#: app/features/mec/meta_boxes/search_form.php:276
|
1674 |
+
#: app/features/mec/meta_boxes/search_form.php:283
|
1675 |
+
#: app/features/mec/meta_boxes/search_form.php:297
|
1676 |
+
#: app/features/mec/meta_boxes/search_form.php:317
|
1677 |
+
#: app/features/mec/meta_boxes/search_form.php:324
|
1678 |
+
#: app/features/mec/meta_boxes/search_form.php:332
|
1679 |
+
#: app/features/mec/meta_boxes/search_form.php:339
|
1680 |
+
#: app/features/mec/meta_boxes/search_form.php:346
|
1681 |
+
#: app/features/mec/meta_boxes/search_form.php:353
|
1682 |
+
#: app/features/mec/meta_boxes/search_form.php:367
|
1683 |
+
#: app/features/mec/meta_boxes/search_form.php:387
|
1684 |
+
#: app/features/mec/meta_boxes/search_form.php:394
|
1685 |
+
#: app/features/mec/meta_boxes/search_form.php:402
|
1686 |
+
#: app/features/mec/meta_boxes/search_form.php:409
|
1687 |
+
#: app/features/mec/meta_boxes/search_form.php:416
|
1688 |
+
#: app/features/mec/meta_boxes/search_form.php:423
|
1689 |
+
#: app/features/mec/meta_boxes/search_form.php:437
|
1690 |
+
#: app/features/mec/meta_boxes/search_form.php:457
|
1691 |
+
#: app/features/mec/meta_boxes/search_form.php:464
|
1692 |
+
#: app/features/mec/meta_boxes/search_form.php:472
|
1693 |
+
#: app/features/mec/meta_boxes/search_form.php:479
|
1694 |
+
#: app/features/mec/meta_boxes/search_form.php:486
|
1695 |
+
#: app/features/mec/meta_boxes/search_form.php:493
|
1696 |
+
#: app/features/mec/meta_boxes/search_form.php:520
|
1697 |
+
#: app/features/mec/meta_boxes/search_form.php:527
|
1698 |
+
#: app/features/mec/meta_boxes/search_form.php:535
|
1699 |
+
#: app/features/mec/meta_boxes/search_form.php:542
|
1700 |
+
#: app/features/mec/meta_boxes/search_form.php:549
|
1701 |
+
#: app/features/mec/meta_boxes/search_form.php:556
|
1702 |
+
#: app/features/mec/meta_boxes/search_form.php:570
|
1703 |
+
#: app/features/mec/meta_boxes/search_form.php:590
|
1704 |
+
#: app/features/mec/meta_boxes/search_form.php:597
|
1705 |
+
#: app/features/mec/meta_boxes/search_form.php:605
|
1706 |
+
#: app/features/mec/meta_boxes/search_form.php:612
|
1707 |
+
#: app/features/mec/meta_boxes/search_form.php:619
|
1708 |
+
#: app/features/mec/meta_boxes/search_form.php:626
|
1709 |
+
#: app/features/mec/meta_boxes/search_form.php:640
|
1710 |
+
#: app/features/mec/meta_boxes/search_form.php:660
|
1711 |
+
#: app/features/mec/meta_boxes/search_form.php:667
|
1712 |
+
#: app/features/mec/meta_boxes/search_form.php:675
|
1713 |
+
#: app/features/mec/meta_boxes/search_form.php:682
|
1714 |
+
#: app/features/mec/meta_boxes/search_form.php:689
|
1715 |
+
#: app/features/mec/meta_boxes/search_form.php:696
|
1716 |
+
#: app/features/mec/meta_boxes/search_form.php:710
|
1717 |
+
#: app/features/mec/meta_boxes/search_form.php:766
|
1718 |
+
#: app/features/mec/meta_boxes/search_form.php:773
|
1719 |
+
#: app/features/mec/meta_boxes/search_form.php:781
|
1720 |
+
#: app/features/mec/meta_boxes/search_form.php:788
|
1721 |
+
#: app/features/mec/meta_boxes/search_form.php:795
|
1722 |
+
#: app/features/mec/meta_boxes/search_form.php:802
|
1723 |
+
#: app/features/mec/meta_boxes/search_form.php:816
|
1724 |
+
#: app/features/mec/single.php:199 app/libraries/main.php:3713
|
|
|
|
|
|
|
1725 |
msgid "Dropdown"
|
1726 |
msgstr "Dropdown"
|
1727 |
|
1728 |
+
#: app/features/events.php:2455 app/features/events.php:2543
|
1729 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1730 |
+
#: app/libraries/main.php:3762
|
1731 |
msgid "Agreement"
|
1732 |
msgstr "Zustimmung"
|
1733 |
|
1734 |
+
#: app/features/events.php:2456 app/features/events.php:2544
|
1735 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1736 |
+
#: app/features/mec/single.php:196 app/libraries/main.php:3598
|
1737 |
msgid "Paragraph"
|
1738 |
msgstr "Absatz"
|
1739 |
|
1740 |
+
#: app/features/events.php:2505 app/features/mec/booking.php:707
|
1741 |
#, fuzzy
|
1742 |
#| msgid "Required Field"
|
1743 |
msgid "Fixed Fields"
|
1744 |
msgstr "Pflichtfeld"
|
1745 |
|
1746 |
+
#: app/features/events.php:3372 app/features/events.php:3390
|
1747 |
+
#: app/features/events.php:3408 app/features/events.php:3426
|
1748 |
#, php-format
|
1749 |
msgid "Show all %s"
|
1750 |
msgstr "Zeige alle %s"
|
1751 |
|
1752 |
+
#: app/features/events.php:3372
|
1753 |
msgid "labels"
|
1754 |
msgstr "Labels + Eventstatus"
|
1755 |
|
1756 |
+
#: app/features/events.php:3390
|
1757 |
msgid "locations"
|
1758 |
msgstr "Orte"
|
1759 |
|
1760 |
+
#: app/features/events.php:3408
|
1761 |
msgid "organizers"
|
1762 |
msgstr "Veranstalter"
|
1763 |
|
1764 |
+
#: app/features/events.php:3442
|
1765 |
msgid "Attendees List"
|
1766 |
msgstr "Teilnehmer Liste"
|
1767 |
|
1768 |
+
#: app/features/events.php:3472 app/features/events.php:3662
|
1769 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1770 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1771 |
+
#: app/features/locations.php:323 app/features/locations.php:325
|
1772 |
+
#: app/features/locations.php:334
|
1773 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1774 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1775 |
+
#: app/features/mec/meta_boxes/search_form.php:109
|
1776 |
+
#: app/features/mec/meta_boxes/search_form.php:180
|
1777 |
+
#: app/features/mec/meta_boxes/search_form.php:251
|
1778 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
1779 |
+
#: app/features/mec/meta_boxes/search_form.php:391
|
1780 |
+
#: app/features/mec/meta_boxes/search_form.php:461
|
1781 |
+
#: app/features/mec/meta_boxes/search_form.php:524
|
1782 |
+
#: app/features/mec/meta_boxes/search_form.php:594
|
1783 |
+
#: app/features/mec/meta_boxes/search_form.php:664
|
1784 |
+
#: app/features/mec/meta_boxes/search_form.php:770
|
1785 |
+
#: app/features/mec/settings.php:1054 app/features/mec/single.php:339
|
1786 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1787 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1788 |
+
#: app/libraries/main.php:2688 app/libraries/main.php:6490
|
1789 |
+
#: app/libraries/main.php:6544 app/libraries/skins.php:964
|
1790 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1791 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1792 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1794 |
msgid "Location"
|
1795 |
msgstr "Ort"
|
1796 |
|
1797 |
+
#: app/features/events.php:3477
|
1798 |
msgid "Repeat"
|
1799 |
msgstr "Wiederholen"
|
1800 |
|
1801 |
+
#: app/features/events.php:3478
|
1802 |
msgid "Author"
|
1803 |
msgstr "Autor"
|
1804 |
|
1805 |
+
#: app/features/events.php:3599 app/features/events.php:3600
|
1806 |
#, fuzzy
|
1807 |
#| msgid "iCal Export"
|
1808 |
msgid "iCal / Outlook Export"
|
1809 |
msgstr "ical Export"
|
1810 |
|
1811 |
+
#: app/features/events.php:3602 app/features/events.php:3603
|
1812 |
msgid "CSV Export"
|
1813 |
msgstr "CSV Export"
|
1814 |
|
1815 |
+
#: app/features/events.php:3605 app/features/events.php:3606
|
1816 |
msgid "MS Excel Export"
|
1817 |
msgstr "MS Excel Export"
|
1818 |
|
1819 |
+
#: app/features/events.php:3608 app/features/events.php:3609
|
1820 |
msgid "XML Export"
|
1821 |
msgstr "XML Export"
|
1822 |
|
1823 |
+
#: app/features/events.php:3611 app/features/events.php:3612
|
1824 |
msgid "JSON Export"
|
1825 |
msgstr "JSON Export"
|
1826 |
|
1827 |
+
#: app/features/events.php:3614 app/features/events.php:3615
|
1828 |
+
#: app/features/events.php:3771
|
1829 |
msgid "Duplicate"
|
1830 |
msgstr "Kopie"
|
1831 |
|
1832 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1833 |
+
#: app/features/ix.php:4034
|
1834 |
msgid "Link"
|
1835 |
msgstr "Link"
|
1836 |
|
1837 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1838 |
+
#: app/features/ix.php:4034 app/features/locations.php:110
|
1839 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1840 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1841 |
+
#: app/features/mec/meta_boxes/search_form.php:145
|
1842 |
+
#: app/features/mec/meta_boxes/search_form.php:216
|
1843 |
+
#: app/features/mec/meta_boxes/search_form.php:287
|
1844 |
+
#: app/features/mec/meta_boxes/search_form.php:357
|
1845 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
1846 |
+
#: app/features/mec/meta_boxes/search_form.php:497
|
1847 |
+
#: app/features/mec/meta_boxes/search_form.php:560
|
1848 |
+
#: app/features/mec/meta_boxes/search_form.php:630
|
1849 |
+
#: app/features/mec/meta_boxes/search_form.php:700
|
1850 |
+
#: app/features/mec/meta_boxes/search_form.php:806
|
1851 |
msgid "Address"
|
1852 |
msgstr "Adresse"
|
1853 |
|
1854 |
+
#: app/features/events.php:3662
|
1855 |
#, php-format
|
1856 |
msgid "%s Tel"
|
1857 |
msgstr "%s Tel"
|
1858 |
|
1859 |
+
#: app/features/events.php:3662
|
1860 |
#, php-format
|
1861 |
msgid "%s Email"
|
1862 |
msgstr "%s Email"
|
1863 |
|
1864 |
+
#: app/features/events.php:3662 app/features/fes/form.php:850
|
1865 |
+
#: app/features/mec/settings.php:776
|
1866 |
msgid "Featured Image"
|
1867 |
msgstr "Ausgewähltes Bild"
|
1868 |
|
1869 |
+
#: app/features/events.php:3991 app/features/fes.php:243
|
1870 |
+
#: app/features/profile/profile.php:183 app/libraries/main.php:2772
|
1871 |
+
#: app/libraries/main.php:6524
|
1872 |
msgid "Ticket"
|
1873 |
msgstr "Ticket"
|
1874 |
|
1875 |
+
#: app/features/events.php:3994 app/features/profile/profile.php:186
|
1876 |
msgid "Variations"
|
1877 |
msgstr "Variationen"
|
1878 |
|
1879 |
+
#: app/features/events.php:4009 app/features/fes.php:317
|
1880 |
msgid "Unknown"
|
1881 |
msgstr "Unbekannt"
|
1882 |
|
1883 |
+
#: app/features/events.php:4035
|
1884 |
msgid ""
|
1885 |
"If you want to send an email, first select your attendees and then click in "
|
1886 |
"the button below, please."
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: app/features/events.php:4035 app/features/mec/report.php:58
|
1890 |
msgid "Send Email"
|
1891 |
msgstr "E-Mail senden"
|
1892 |
|
1893 |
+
#: app/features/events.php:4039
|
1894 |
msgid "No Attendees Found!"
|
1895 |
msgstr "Keine Teilnehmer gefunden!"
|
1896 |
|
1901 |
|
1902 |
#: app/features/fes.php:94 app/features/fes.php:175
|
1903 |
#: app/features/login/login.php:19 app/features/profile.php:74
|
1904 |
+
#: app/features/userevents.php:58
|
1905 |
msgid "Login"
|
1906 |
msgstr "Login"
|
1907 |
|
1908 |
#: app/features/fes.php:94 app/features/fes.php:175 app/features/profile.php:74
|
1909 |
+
#: app/features/userevents.php:58
|
1910 |
msgid "Register"
|
1911 |
msgstr "Anmelden"
|
1912 |
|
1936 |
msgid "Order Time"
|
1937 |
msgstr "Uhrzeit Bestellung"
|
1938 |
|
1939 |
+
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2720
|
1940 |
+
#: app/libraries/main.php:2835
|
1941 |
msgid "Transaction ID"
|
1942 |
msgstr "Transaktions-ID"
|
1943 |
|
1945 |
msgid "Total Price"
|
1946 |
msgstr "Gesamt Preis"
|
1947 |
|
1948 |
+
#: app/features/fes.php:243 app/libraries/main.php:2830
|
1949 |
msgid "Gateway"
|
1950 |
msgstr "Gateway"
|
1951 |
|
2025 |
msgid "Go back to events list"
|
2026 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
2027 |
|
2028 |
+
#: app/features/fes/form.php:264 app/features/mec/settings.php:908
|
2029 |
+
#: app/features/mec/settings.php:984
|
2030 |
msgid "Excerpt"
|
2031 |
msgstr ""
|
2032 |
|
2129 |
#: app/features/fes/form.php:891 app/features/labels.php:61
|
2130 |
#: app/features/labels.php:221 app/features/mec.php:460
|
2131 |
#: app/features/mec/meta_boxes/filter.php:72
|
2132 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6487
|
2133 |
+
#: app/libraries/main.php:6541 app/skins/single.php:1156
|
2134 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
2135 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
2136 |
msgid "Labels"
|
2148 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
2149 |
|
2150 |
#: app/features/fes/form.php:959 app/features/mec.php:467
|
2151 |
+
#: app/features/mec/modules.php:51 app/features/mec/settings.php:818
|
2152 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2153 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2154 |
+
#: app/libraries/main.php:608 app/libraries/main.php:6493
|
2155 |
+
#: app/libraries/main.php:6547 app/modules/speakers/details.php:18
|
2156 |
msgid "Speakers"
|
2157 |
msgstr "Sprecher"
|
2158 |
|
2166 |
msgid "Separate names with commas: Justin, Chris"
|
2167 |
msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
|
2168 |
|
2169 |
+
#: app/features/fes/form.php:1003 app/modules/booking/steps/form.php:349
|
2170 |
msgid "Submit"
|
2171 |
msgstr "Buchung abschließen"
|
2172 |
|
2204 |
msgstr "MEC - Import / Export"
|
2205 |
|
2206 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2207 |
+
#: app/libraries/main.php:858
|
2208 |
msgid "Import / Export"
|
2209 |
msgstr "Import / Export"
|
2210 |
|
2222 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: app/features/ix.php:265 app/libraries/main.php:6772
|
2226 |
+
#: app/libraries/main.php:6792
|
2227 |
msgid "Confirmed"
|
2228 |
msgstr "Bestätigt"
|
2229 |
|
2230 |
+
#: app/features/ix.php:266 app/libraries/main.php:6773
|
2231 |
+
#: app/libraries/main.php:6800
|
2232 |
msgid "Rejected"
|
2233 |
msgstr "Abgelehnt"
|
2234 |
|
2235 |
#: app/features/ix.php:270 app/features/mec/booking.php:1011
|
2236 |
#: app/features/mec/booking.php:1033 app/features/mec/modules.php:440
|
2237 |
#: app/features/mec/modules.php:462 app/features/mec/notifications.php:1312
|
2238 |
+
#: app/features/mec/notifications.php:1334 app/features/mec/settings.php:1418
|
2239 |
+
#: app/features/mec/settings.php:1440 app/features/mec/single.php:446
|
2240 |
+
#: app/features/mec/single.php:468 app/libraries/main.php:6820
|
2241 |
msgid "Verified"
|
2242 |
msgstr "Verifiziert"
|
2243 |
|
2244 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2245 |
+
#: app/features/labels.php:143 app/libraries/main.php:6821
|
2246 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2247 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2248 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
2278 |
msgid "The events are imported successfully!"
|
2279 |
msgstr "Die Events wurden erfolgreich importiert!"
|
2280 |
|
2281 |
+
#: app/features/ix.php:1178
|
2282 |
msgid "Third Party plugin is not installed and activated!"
|
2283 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
2284 |
|
2285 |
+
#: app/features/ix.php:1202
|
2286 |
msgid "Third Party plugin is invalid!"
|
2287 |
msgstr "Drittanbieter-Plugin ist ungültig!"
|
2288 |
|
2289 |
+
#: app/features/ix.php:3177 app/features/ix.php:3235
|
2290 |
#, fuzzy
|
2291 |
#| msgid "Both of API key and Calendar ID are required!"
|
2292 |
msgid "API key and Calendar ID are required!"
|
2293 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
2294 |
|
2295 |
+
#: app/features/ix.php:3230 app/features/ix.php:3675 app/features/ix.php:4410
|
2296 |
#, fuzzy
|
2297 |
#| msgid "Please select some events to import!"
|
2298 |
msgid "Please select events to import!"
|
2299 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
2300 |
|
2301 |
+
#: app/features/ix.php:3617 app/features/ix.php:3680
|
2302 |
#, fuzzy
|
2303 |
#| msgid "Both of API key and Calendar ID are required!"
|
2304 |
msgid "API key and Group URL are required!"
|
2305 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
2306 |
|
2307 |
+
#: app/features/ix.php:3919
|
2308 |
msgid "Check at Meetup"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
2312 |
msgid "Organizer Tel"
|
2313 |
msgstr "Organisator Telefon"
|
2314 |
|
2315 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
2316 |
msgid "Organizer Email"
|
2317 |
msgstr "Organisator Email"
|
2318 |
|
2319 |
+
#: app/features/ix.php:4110
|
2320 |
#, fuzzy
|
2321 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2322 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2323 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2324 |
|
2325 |
+
#: app/features/ix.php:4133
|
2326 |
#, fuzzy, php-format
|
2327 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2328 |
msgid "All seems good! Please click %s to authenticate your app."
|
2329 |
msgstr ""
|
2330 |
"Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
|
2331 |
|
2332 |
+
#: app/features/ix.php:4133 app/features/mec/settings.php:1307
|
2333 |
msgid "here"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: app/features/ix.php:4187
|
2337 |
#, fuzzy
|
2338 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2339 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2340 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
2341 |
|
2342 |
+
#: app/features/ix.php:4332
|
2343 |
#, fuzzy, php-format
|
2344 |
#| msgid "%s events added to Google Calendar successfully."
|
2345 |
msgid "%s events added to Google Calendar with success."
|
2346 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
2347 |
|
2348 |
+
#: app/features/ix.php:4333
|
2349 |
#, fuzzy, php-format
|
2350 |
#| msgid "%s previously added events get updated."
|
2351 |
msgid "%s Updated previously added events."
|
2352 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
2353 |
|
2354 |
+
#: app/features/ix.php:4334
|
2355 |
#, php-format
|
2356 |
msgid "%s events failed to add for following reasons: %s"
|
2357 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
2358 |
|
2359 |
+
#: app/features/ix.php:4366
|
2360 |
#, fuzzy
|
2361 |
#| msgid "Please insert your facebook page's link."
|
2362 |
msgid "Please insert your Facebook page's link."
|
2363 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2364 |
|
2365 |
+
#: app/features/ix.php:4377 app/features/ix.php:4419
|
2366 |
#, fuzzy
|
2367 |
#| msgid ""
|
2368 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
2374 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
2375 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
2376 |
|
2377 |
+
#: app/features/ix.php:4414
|
2378 |
msgid "Please insert your facebook page's link."
|
2379 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
2380 |
|
2551 |
|
2552 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1013
|
2553 |
#: app/features/mec/modules.php:442 app/features/mec/notifications.php:1314
|
2554 |
+
#: app/features/mec/settings.php:1420 app/features/mec/single.php:448
|
2555 |
msgid "Checking ..."
|
2556 |
msgstr "Überprüfung"
|
2557 |
|
3069 |
msgid "Slug"
|
3070 |
msgstr "Slug"
|
3071 |
|
3072 |
+
#: app/features/labels.php:221 app/features/locations.php:323
|
3073 |
#, php-format
|
3074 |
msgid "Event %s"
|
3075 |
msgstr "Event %s"
|
3076 |
|
3077 |
#: app/features/locations.php:59 app/features/mec.php:461
|
3078 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
3079 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6489
|
3080 |
+
#: app/libraries/main.php:6543
|
3081 |
msgid "Locations"
|
3082 |
msgstr "Orte"
|
3083 |
|
3086 |
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
3087 |
|
3088 |
#: app/features/locations.php:130 app/features/locations.php:196
|
3089 |
+
#: app/features/locations.php:368 app/features/popup/event.php:147
|
3090 |
msgid "Latitude"
|
3091 |
msgstr "Breitengrad z.B. 49.0069646 "
|
3092 |
|
3095 |
msgstr "Geologischer Breitengrad (Optional)"
|
3096 |
|
3097 |
#: app/features/locations.php:138 app/features/locations.php:200
|
3098 |
+
#: app/features/locations.php:369 app/features/popup/event.php:148
|
3099 |
msgid "Longitude"
|
3100 |
msgstr "Längengrad z.B. 8.4118636 "
|
3101 |
|
3104 |
msgstr "Geologischer Längengrad (Optional)"
|
3105 |
|
3106 |
#: app/features/locations.php:146 app/features/locations.php:204
|
3107 |
+
#: app/features/locations.php:379
|
3108 |
#, fuzzy
|
3109 |
#| msgid "Locations"
|
3110 |
msgid "Location Website"
|
3129 |
msgstr "Bild hochladen/hinzufügen"
|
3130 |
|
3131 |
#: app/features/locations.php:161 app/features/locations.php:213
|
3132 |
+
#: app/features/locations.php:387 app/features/locations.php:394
|
3133 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
3134 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
3135 |
#: app/features/speakers.php:181 app/features/speakers.php:232
|
3136 |
msgid "Remove image"
|
3137 |
msgstr "Bild entfernen"
|
3138 |
|
3139 |
+
#: app/features/locations.php:326 app/features/popup/event.php:117
|
3140 |
msgid "Hide location"
|
3141 |
msgstr "Ort verbergen"
|
3142 |
|
3143 |
+
#: app/features/locations.php:327 app/features/popup/event.php:118
|
3144 |
msgid "Insert a new location"
|
3145 |
msgstr "Neuen Ort hinzufügen"
|
3146 |
|
3147 |
+
#: app/features/locations.php:335
|
3148 |
msgid "Choose one of saved locations or insert new one below."
|
3149 |
msgstr ""
|
3150 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
3151 |
|
3152 |
+
#: app/features/locations.php:342 app/features/popup/event.php:139
|
3153 |
msgid "Location Name"
|
3154 |
msgstr "Name Veranstaltungsort"
|
3155 |
|
3156 |
+
#: app/features/locations.php:343 app/features/popup/event.php:140
|
3157 |
msgid "eg. City Hall"
|
3158 |
msgstr ""
|
3159 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
3160 |
"Westfalenhalle"
|
3161 |
|
3162 |
+
#: app/features/locations.php:346 app/features/mec/settings.php:806
|
3163 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3164 |
msgid "Event Location"
|
3165 |
msgstr "Veranstaltungsort"
|
3166 |
|
3167 |
+
#: app/features/locations.php:347 app/features/popup/event.php:144
|
3168 |
msgid "eg. City hall, Manhattan, New York"
|
3169 |
msgstr ""
|
3170 |
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
3171 |
"Ring 1, 76297 Stutensee"
|
3172 |
|
3173 |
+
#: app/features/locations.php:372 app/features/popup/event.php:151
|
3174 |
#, fuzzy
|
3175 |
#| msgid "Longitude"
|
3176 |
msgid "Latitude/Longitude"
|
3177 |
msgstr "Längengrad z.B. 8.4118636 "
|
3178 |
|
3179 |
+
#: app/features/locations.php:373 app/features/popup/event.php:152
|
3180 |
msgid ""
|
3181 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
3182 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
3185 |
"the location on the map to find lat long coordinates."
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: app/features/locations.php:373 app/features/popup/event.php:152
|
3189 |
msgid "Get Latitude and Longitude"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: app/features/locations.php:386 app/features/organizers.php:298
|
3193 |
#: app/features/popup/event.php:202
|
3194 |
msgid "Choose image"
|
3195 |
msgstr "Bild wählen"
|
3196 |
|
3197 |
+
#: app/features/locations.php:400 app/features/popup/event.php:135
|
3198 |
msgid "Don't show map in single event page"
|
3199 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
3200 |
|
3201 |
+
#: app/features/locations.php:403 app/libraries/main.php:6527
|
3202 |
+
#: app/libraries/main.php:6574
|
3203 |
msgid "Other Locations"
|
3204 |
msgstr "Andere Orte"
|
3205 |
|
3206 |
+
#: app/features/locations.php:405
|
3207 |
#, fuzzy
|
3208 |
#| msgid ""
|
3209 |
#| "You can select extra organizers in addition to main organizer if you like."
|
3225 |
msgid "Login successful, redirecting..."
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: app/features/login/login.php:11 app/modules/booking/steps/form.php:333
|
3229 |
#, fuzzy
|
3230 |
#| msgid "API Password"
|
3231 |
msgid "Password"
|
3283 |
#: app/features/mec.php:462 app/features/mec/dashboard.php:286
|
3284 |
#: app/features/mec/meta_boxes/filter.php:71
|
3285 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3286 |
+
#: app/libraries/main.php:6491 app/libraries/main.php:6545
|
3287 |
msgid "Organizers"
|
3288 |
msgstr "Veranstalter"
|
3289 |
|
3322 |
msgid "MEC - Go Pro"
|
3323 |
msgstr "Support"
|
3324 |
|
3325 |
+
#: app/features/mec.php:479 app/features/mec.php:1288
|
3326 |
#: app/features/mec/go-pro.php:9
|
3327 |
msgid "Go Pro"
|
3328 |
msgstr ""
|
3363 |
msgid "Search Form"
|
3364 |
msgstr "Suche Formular"
|
3365 |
|
3366 |
+
#: app/features/mec.php:989
|
3367 |
msgid "Display content's images as Popup"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: app/features/mec.php:1003 app/features/popup/shortcode.php:473
|
3371 |
msgid "Single Event Display Method"
|
3372 |
msgstr "Single Event Anzeigemethode"
|
3373 |
|
3374 |
+
#: app/features/mec.php:1010 app/features/popup/shortcode.php:485
|
3375 |
#, fuzzy
|
3376 |
#| msgid "Modal 1"
|
3377 |
msgid "Modal Popup"
|
3378 |
msgstr "Modal 1"
|
3379 |
|
3380 |
+
#: app/features/mec.php:1011
|
3381 |
#, fuzzy
|
3382 |
#| msgid "Disabled"
|
3383 |
msgid "Disable Link"
|
3384 |
msgstr "Deaktiviert"
|
3385 |
|
3386 |
+
#: app/features/mec.php:1024
|
3387 |
#, fuzzy
|
3388 |
#| msgid "Booking Options"
|
3389 |
msgid "Booking Button / Icon"
|
3390 |
msgstr "Buchungsoptionen"
|
3391 |
|
3392 |
+
#: app/features/mec.php:1037
|
3393 |
#, fuzzy
|
3394 |
#| msgid "Organizers"
|
3395 |
msgid "Display Organizers"
|
3396 |
msgstr "Veranstalter"
|
3397 |
|
3398 |
+
#: app/features/mec.php:1194 app/features/mec.php:1367
|
3399 |
msgid "Total Bookings"
|
3400 |
msgstr "Gesamte Buchungen"
|
3401 |
|
3402 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
3403 |
msgid "Modern Events Calendar (Lite)"
|
3404 |
msgstr "Moderner Event Kalender (Lite)"
|
3405 |
|
3406 |
+
#: app/features/mec.php:1219 app/features/mec/dashboard.php:297
|
3407 |
+
#: app/features/mec/settings.php:456
|
3408 |
msgid "Upcoming Events"
|
3409 |
msgstr "Bevorstehende Events"
|
3410 |
|
3411 |
+
#: app/features/mec.php:1274
|
3412 |
#, fuzzy
|
3413 |
#| msgid "Update %s"
|
3414 |
msgid "News & Updates"
|
3415 |
msgstr "Update %s"
|
3416 |
|
3417 |
+
#: app/features/mec.php:1287
|
3418 |
msgid "Blog"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: app/features/mec.php:1287
|
3422 |
msgid "Help"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: app/features/mec.php:1342
|
3426 |
#, php-format
|
3427 |
msgid "Total Sells (%s)"
|
3428 |
msgstr "Alle Verkäufe (%s)"
|
3429 |
|
3430 |
+
#: app/features/mec.php:1376
|
3431 |
msgid "This Month"
|
3432 |
msgstr "Diesen Monat"
|
3433 |
|
3434 |
+
#: app/features/mec.php:1382
|
3435 |
msgid "Last Month"
|
3436 |
msgstr "Letzten Monat"
|
3437 |
|
3439 |
msgid "This Year"
|
3440 |
msgstr "Diese Jahr"
|
3441 |
|
3442 |
+
#: app/features/mec.php:1394
|
3443 |
msgid "Last Year"
|
3444 |
msgstr "Letztes Jahr"
|
3445 |
|
3446 |
+
#: app/features/mec.php:1414
|
3447 |
msgid "Bar"
|
3448 |
msgstr "Bar"
|
3449 |
|
3450 |
+
#: app/features/mec.php:1415
|
3451 |
msgid "Line"
|
3452 |
msgstr "Linie"
|
3453 |
|
3454 |
+
#: app/features/mec.php:1417
|
3455 |
msgid "Filter"
|
3456 |
msgstr "Filter"
|
3457 |
|
3458 |
+
#: app/features/mec.php:1441
|
3459 |
#, fuzzy
|
3460 |
#| msgid "Modern Events Calendar"
|
3461 |
msgid "Print Calendar"
|
3462 |
msgstr "Moderner Event Kalender "
|
3463 |
|
3464 |
+
#: app/features/mec.php:1456
|
3465 |
#, fuzzy
|
3466 |
#| msgid "Multiple Day Events"
|
3467 |
msgid "Display Events"
|
3486 |
|
3487 |
#: app/features/mec/booking.php:78 app/features/mec/messages.php:13
|
3488 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3489 |
+
#: app/features/mec/settings.php:47 app/features/mec/single.php:19
|
3490 |
#: app/features/mec/styling.php:35
|
3491 |
msgid "Search..."
|
3492 |
msgstr "Suche…"
|
3503 |
#: app/features/mec/notifications.php:1213
|
3504 |
#: app/features/mec/notifications.php:1225
|
3505 |
#: app/features/mec/notifications.php:1331
|
3506 |
+
#: app/features/mec/notifications.php:1345 app/features/mec/settings.php:49
|
3507 |
+
#: app/features/mec/settings.php:1369 app/features/mec/settings.php:1379
|
3508 |
+
#: app/features/mec/settings.php:1437 app/features/mec/settings.php:1451
|
3509 |
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3510 |
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3511 |
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
3615 |
msgstr "Register Button"
|
3616 |
|
3617 |
#: app/features/mec/booking.php:168 app/features/mec/booking.php:176
|
3618 |
+
#: app/modules/booking/steps/form.php:327
|
3619 |
#, fuzzy
|
3620 |
#| msgid "Register Button"
|
3621 |
msgid "Registration"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
#: app/features/mec/booking.php:267 app/features/mec/booking.php:269
|
3722 |
+
#: app/features/mec/booking.php:279 app/features/mec/settings.php:674
|
3723 |
+
#: app/features/mec/settings.php:684
|
3724 |
msgid "Thank You Page"
|
3725 |
msgstr "Danke Seite"
|
3726 |
|
3733 |
"es leer, wenn Sie es deaktivieren möchten."
|
3734 |
|
3735 |
#: app/features/mec/booking.php:287 app/features/mec/booking.php:292
|
3736 |
+
#: app/features/mec/settings.php:707 app/features/mec/settings.php:712
|
3737 |
msgid "Thank You Page Time Interval"
|
3738 |
msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
|
3739 |
|
3740 |
+
#: app/features/mec/booking.php:289 app/features/mec/settings.php:709
|
3741 |
msgid "2000 mean 2 seconds"
|
3742 |
msgstr "2000 bedeutet 2 Sekunden"
|
3743 |
|
3744 |
+
#: app/features/mec/booking.php:293 app/features/mec/settings.php:713
|
3745 |
msgid ""
|
3746 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3747 |
"2000 means 2 seconds."
|
3809 |
msgid "Send confirmation email in auto confirmation mode"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: app/features/mec/booking.php:413 app/libraries/main.php:598
|
3813 |
#, fuzzy
|
3814 |
#| msgid "Booking"
|
3815 |
msgid "Booking Shortcode"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
#: app/features/mec/booking.php:447 app/features/mec/booking.php:835
|
3846 |
+
#: app/libraries/main.php:600
|
3847 |
msgid "Taxes / Fees"
|
3848 |
msgstr "Steuern/Gebühren"
|
3849 |
|
3855 |
msgid "Add Fee"
|
3856 |
msgstr "Gebühr hinzufügen"
|
3857 |
|
3858 |
+
#: app/features/mec/booking.php:524 app/libraries/main.php:601
|
3859 |
msgid "Ticket Variations & Options"
|
3860 |
msgstr ""
|
3861 |
|
4005 |
|
4006 |
#: app/features/mec/booking.php:1008 app/features/mec/messages.php:78
|
4007 |
#: app/features/mec/modules.php:437 app/features/mec/notifications.php:1309
|
4008 |
+
#: app/features/mec/settings.php:1415 app/features/mec/single.php:443
|
4009 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:323
|
4010 |
msgid "Saved"
|
4011 |
msgstr "Gesichert"
|
4012 |
|
4013 |
#: app/features/mec/booking.php:1009 app/features/mec/messages.php:79
|
4014 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1310
|
4015 |
+
#: app/features/mec/settings.php:1416 app/features/mec/single.php:444
|
4016 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:324
|
4017 |
msgid "Settings Saved!"
|
4018 |
msgstr "Einstellungen gespeichert!"
|
4019 |
|
4020 |
#: app/features/mec/booking.php:1035 app/features/mec/modules.php:464
|
4021 |
+
#: app/features/mec/notifications.php:1336 app/features/mec/settings.php:1442
|
4022 |
#: app/features/mec/single.php:470
|
4023 |
msgid "Please Refresh Page"
|
4024 |
msgstr "Bitte Seiten Refresh vornehmen"
|
4135 |
msgstr "Einstellungen Herunterladen"
|
4136 |
|
4137 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4138 |
+
#: app/features/mec/support.php:66 app/libraries/main.php:851
|
4139 |
msgid "Messages"
|
4140 |
msgstr "Nachrichten"
|
4141 |
|
4166 |
#: app/features/mec/meta_boxes/display_options.php:953
|
4167 |
#: app/features/mec/meta_boxes/display_options.php:1284
|
4168 |
#: app/features/mec/meta_boxes/display_options.php:1575
|
4169 |
+
#: app/features/mec/settings.php:317 app/features/mec/settings.php:341
|
4170 |
+
#: app/features/mec/settings.php:350 app/features/mec/settings.php:394
|
4171 |
+
#: app/features/mec/settings.php:418 app/features/mec/settings.php:427
|
4172 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4173 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4174 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
4179 |
|
4180 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4181 |
#: app/features/mec/meta_boxes/display_options.php:289
|
4182 |
+
#: app/features/mec/settings.php:342 app/features/mec/settings.php:352
|
4183 |
+
#: app/features/mec/settings.php:419 app/features/mec/settings.php:429
|
4184 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4185 |
msgid "Minimal"
|
4186 |
msgstr "Minimal"
|
4191 |
#: app/features/mec/meta_boxes/display_options.php:955
|
4192 |
#: app/features/mec/meta_boxes/display_options.php:1282
|
4193 |
#: app/features/mec/meta_boxes/display_options.php:1577
|
4194 |
+
#: app/features/mec/settings.php:319 app/features/mec/settings.php:332
|
4195 |
+
#: app/features/mec/settings.php:343 app/features/mec/settings.php:353
|
4196 |
+
#: app/features/mec/settings.php:396 app/features/mec/settings.php:409
|
4197 |
+
#: app/features/mec/settings.php:420 app/features/mec/settings.php:430
|
4198 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4199 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4200 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
4202 |
msgstr "Modern"
|
4203 |
|
4204 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4205 |
+
#: app/features/mec/settings.php:344 app/features/mec/settings.php:421
|
4206 |
#: app/features/popup/shortcode.php:83
|
4207 |
msgid "Standard"
|
4208 |
msgstr "Standard"
|
4209 |
|
4210 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4211 |
+
#: app/features/mec/settings.php:345 app/features/mec/settings.php:422
|
4212 |
#: app/features/popup/shortcode.php:88
|
4213 |
msgid "Accordion"
|
4214 |
msgstr "Accordion"
|
4611 |
#: app/features/mec/meta_boxes/display_options.php:954
|
4612 |
#: app/features/mec/meta_boxes/display_options.php:1283
|
4613 |
#: app/features/mec/meta_boxes/display_options.php:1576
|
4614 |
+
#: app/features/mec/settings.php:318 app/features/mec/settings.php:333
|
4615 |
+
#: app/features/mec/settings.php:351 app/features/mec/settings.php:395
|
4616 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:428
|
4617 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4618 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4619 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
4623 |
#: app/features/mec/meta_boxes/display_options.php:291
|
4624 |
#: app/features/mec/meta_boxes/display_options.php:693
|
4625 |
#: app/features/mec/meta_boxes/display_options.php:957
|
4626 |
+
#: app/features/mec/settings.php:321 app/features/mec/settings.php:354
|
4627 |
+
#: app/features/mec/settings.php:398 app/features/mec/settings.php:431
|
4628 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4629 |
#: app/features/popup/shortcode.php:219
|
4630 |
msgid "Simple"
|
4638 |
#: app/features/mec/meta_boxes/display_options.php:293
|
4639 |
#: app/features/mec/meta_boxes/display_options.php:692
|
4640 |
#: app/features/mec/meta_boxes/display_options.php:956
|
4641 |
+
#: app/features/mec/settings.php:320 app/features/mec/settings.php:356
|
4642 |
+
#: app/features/mec/settings.php:397 app/features/mec/settings.php:433
|
4643 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4644 |
#: app/features/popup/shortcode.php:214
|
4645 |
msgid "Novel"
|
4689 |
|
4690 |
#: app/features/mec/meta_boxes/display_options.php:679
|
4691 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4692 |
+
#: app/libraries/main.php:364 app/libraries/main.php:2121
|
4693 |
+
#: app/libraries/main.php:2146
|
4694 |
msgid "List View"
|
4695 |
msgstr "Listenansicht"
|
4696 |
|
4697 |
#: app/features/mec/meta_boxes/display_options.php:680
|
4698 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4699 |
+
#: app/libraries/main.php:365 app/libraries/main.php:2122
|
4700 |
+
#: app/libraries/main.php:2147
|
4701 |
msgid "Grid View"
|
4702 |
msgstr "Rasterdarstellung"
|
4703 |
|
4711 |
|
4712 |
#: app/features/mec/meta_boxes/display_options.php:682
|
4713 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4714 |
+
#: app/libraries/main.php:368 app/libraries/main.php:2115
|
4715 |
+
#: app/libraries/main.php:2140
|
4716 |
msgid "Yearly View"
|
4717 |
msgstr "Jahresansicht"
|
4718 |
|
4723 |
|
4724 |
#: app/features/mec/meta_boxes/display_options.php:684
|
4725 |
#: app/features/mec/meta_boxes/display_options.php:794
|
4726 |
+
#: app/libraries/main.php:371 app/libraries/main.php:2117
|
4727 |
+
#: app/libraries/main.php:2142
|
4728 |
msgid "Weekly View"
|
4729 |
msgstr "Wochenansicht"
|
4730 |
|
4731 |
#: app/features/mec/meta_boxes/display_options.php:685
|
4732 |
#: app/features/mec/meta_boxes/display_options.php:804
|
4733 |
+
#: app/libraries/main.php:370 app/libraries/main.php:2118
|
4734 |
+
#: app/libraries/main.php:2143
|
4735 |
msgid "Daily View"
|
4736 |
msgstr "Tagesansicht"
|
4737 |
|
5178 |
msgid "Choose your desired authors for filtering the events."
|
5179 |
msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
|
5180 |
|
5181 |
+
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:457
|
5182 |
msgid "Expired Events"
|
5183 |
msgstr "Abgelaufene Events"
|
5184 |
|
5243 |
msgstr "Such Formular anzeigen"
|
5244 |
|
5245 |
#: app/features/mec/meta_boxes/search_form.php:53
|
5246 |
+
#: app/features/mec/meta_boxes/search_form.php:124
|
5247 |
+
#: app/features/mec/meta_boxes/search_form.php:195
|
5248 |
+
#: app/features/mec/meta_boxes/search_form.php:266
|
5249 |
+
#: app/features/mec/meta_boxes/search_form.php:336
|
5250 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
5251 |
+
#: app/features/mec/meta_boxes/search_form.php:476
|
5252 |
+
#: app/features/mec/meta_boxes/search_form.php:539
|
5253 |
+
#: app/features/mec/meta_boxes/search_form.php:609
|
5254 |
+
#: app/features/mec/meta_boxes/search_form.php:679
|
5255 |
+
#: app/features/mec/meta_boxes/search_form.php:785
|
5256 |
+
#: app/features/mec/settings.php:1067 app/features/mec/single.php:344
|
5257 |
#: app/features/mec/single.php:386 app/features/search.php:86
|
5258 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5259 |
+
#: app/libraries/main.php:6494 app/libraries/main.php:6548
|
5260 |
#: app/libraries/skins.php:1016 app/modules/speakers/details.php:18
|
5261 |
msgid "Speaker"
|
5262 |
msgstr "Sprecher"
|
5263 |
|
5264 |
#: app/features/mec/meta_boxes/search_form.php:60
|
5265 |
+
#: app/features/mec/meta_boxes/search_form.php:131
|
5266 |
+
#: app/features/mec/meta_boxes/search_form.php:202
|
5267 |
+
#: app/features/mec/meta_boxes/search_form.php:273
|
5268 |
+
#: app/features/mec/meta_boxes/search_form.php:343
|
5269 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
5270 |
+
#: app/features/mec/meta_boxes/search_form.php:483
|
5271 |
+
#: app/features/mec/meta_boxes/search_form.php:546
|
5272 |
+
#: app/features/mec/meta_boxes/search_form.php:616
|
5273 |
+
#: app/features/mec/meta_boxes/search_form.php:686
|
5274 |
+
#: app/features/mec/meta_boxes/search_form.php:792
|
5275 |
+
#: app/features/mec/settings.php:1074 app/features/mec/single.php:353
|
5276 |
#: app/features/mec/single.php:395 app/features/search.php:92
|
5277 |
#: app/libraries/skins.php:1042
|
5278 |
msgid "Tag"
|
5279 |
msgstr "Schlagwort"
|
5280 |
|
5281 |
#: app/features/mec/meta_boxes/search_form.php:77
|
5282 |
+
#: app/features/mec/meta_boxes/search_form.php:148
|
5283 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
5284 |
+
#: app/features/mec/meta_boxes/search_form.php:290
|
5285 |
+
#: app/features/mec/meta_boxes/search_form.php:360
|
5286 |
+
#: app/features/mec/meta_boxes/search_form.php:430
|
5287 |
+
#: app/features/mec/meta_boxes/search_form.php:500
|
5288 |
+
#: app/features/mec/meta_boxes/search_form.php:563
|
5289 |
+
#: app/features/mec/meta_boxes/search_form.php:633
|
5290 |
+
#: app/features/mec/meta_boxes/search_form.php:703
|
5291 |
+
#: app/features/mec/meta_boxes/search_form.php:809
|
5292 |
#, fuzzy
|
5293 |
#| msgid "Address"
|
5294 |
msgid "Address Input"
|
5295 |
msgstr "Adresse"
|
5296 |
|
5297 |
#: app/features/mec/meta_boxes/search_form.php:81
|
5298 |
+
#: app/features/mec/meta_boxes/search_form.php:152
|
5299 |
+
#: app/features/mec/meta_boxes/search_form.php:223
|
5300 |
+
#, fuzzy
|
5301 |
+
#| msgid "Filter"
|
5302 |
+
msgid "Date Filter"
|
5303 |
+
msgstr "Filter"
|
|
|
|
|
|
|
|
|
|
|
5304 |
|
5305 |
+
#: app/features/mec/meta_boxes/search_form.php:84
|
5306 |
+
#: app/features/mec/meta_boxes/search_form.php:155
|
5307 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
5308 |
+
msgid "Year & Month Dropdown"
|
5309 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5310 |
|
5311 |
+
#: app/features/mec/meta_boxes/search_form.php:85
|
5312 |
+
#: app/features/mec/meta_boxes/search_form.php:156
|
5313 |
+
#: app/features/mec/meta_boxes/search_form.php:227
|
5314 |
+
#, fuzzy
|
5315 |
+
#| msgid "Date Format"
|
5316 |
+
msgid "Date Picker"
|
5317 |
+
msgstr "Datumsformat"
|
5318 |
+
|
5319 |
+
#: app/features/mec/meta_boxes/search_form.php:89
|
5320 |
+
#: app/features/mec/meta_boxes/search_form.php:160
|
5321 |
#: app/features/mec/meta_boxes/search_form.php:231
|
5322 |
#: app/features/mec/meta_boxes/search_form.php:301
|
5323 |
#: app/features/mec/meta_boxes/search_form.php:371
|
5327 |
#: app/features/mec/meta_boxes/search_form.php:644
|
5328 |
#: app/features/mec/meta_boxes/search_form.php:714
|
5329 |
#: app/features/mec/meta_boxes/search_form.php:820
|
5330 |
+
msgid "Text Search"
|
5331 |
+
msgstr "Textsuche"
|
5332 |
+
|
5333 |
+
#: app/features/mec/meta_boxes/search_form.php:92
|
5334 |
+
#: app/features/mec/meta_boxes/search_form.php:163
|
5335 |
+
#: app/features/mec/meta_boxes/search_form.php:234
|
5336 |
+
#: app/features/mec/meta_boxes/search_form.php:304
|
5337 |
+
#: app/features/mec/meta_boxes/search_form.php:374
|
5338 |
+
#: app/features/mec/meta_boxes/search_form.php:444
|
5339 |
+
#: app/features/mec/meta_boxes/search_form.php:507
|
5340 |
+
#: app/features/mec/meta_boxes/search_form.php:577
|
5341 |
+
#: app/features/mec/meta_boxes/search_form.php:647
|
5342 |
+
#: app/features/mec/meta_boxes/search_form.php:717
|
5343 |
+
#: app/features/mec/meta_boxes/search_form.php:823
|
5344 |
msgid "Text Input"
|
5345 |
msgstr "Text eingeben"
|
5346 |
|
5347 |
+
#: app/features/mec/meta_boxes/search_form.php:294
|
5348 |
+
#: app/features/mec/meta_boxes/search_form.php:364
|
5349 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
5350 |
+
#: app/features/mec/meta_boxes/search_form.php:567
|
5351 |
+
#: app/features/mec/meta_boxes/search_form.php:637
|
5352 |
+
#: app/features/mec/meta_boxes/search_form.php:707
|
5353 |
+
#: app/features/mec/meta_boxes/search_form.php:813
|
5354 |
+
msgid "Month Filter"
|
5355 |
+
msgstr "Monatsfilter"
|
5356 |
+
|
5357 |
+
#: app/features/mec/meta_boxes/search_form.php:726
|
5358 |
+
#: app/features/mec/meta_boxes/search_form.php:732
|
5359 |
+
#: app/features/mec/meta_boxes/search_form.php:738
|
5360 |
+
#: app/features/mec/meta_boxes/search_form.php:744
|
5361 |
+
#: app/features/mec/meta_boxes/search_form.php:750
|
5362 |
+
#: app/features/mec/meta_boxes/search_form.php:756
|
5363 |
msgid "No Search Options"
|
5364 |
msgstr "Keine Suchoptionen"
|
5365 |
|
5385 |
"new menu on the Dashboard > MEC"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: app/features/mec/modules.php:66 app/libraries/main.php:609
|
5389 |
#, fuzzy
|
5390 |
#| msgid "Google Maps Options"
|
5391 |
msgid "Map Options"
|
5409 |
msgid "Google Map Options"
|
5410 |
msgstr "Google Maps Einstellungen"
|
5411 |
|
5412 |
+
#: app/features/mec/modules.php:85 app/features/mec/settings.php:1110
|
5413 |
+
#: app/features/mec/settings.php:1123
|
5414 |
msgid "Required!"
|
5415 |
msgstr "Erforderlich (Pflichtfeld)"
|
5416 |
|
5478 |
msgid "Fullscreen Button"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: app/features/mec/modules.php:176 app/libraries/main.php:610
|
5482 |
msgid "Export Options"
|
5483 |
msgstr "Export Optionen"
|
5484 |
|
5493 |
msgid "Google Calendar"
|
5494 |
msgstr "Google Calendar"
|
5495 |
|
5496 |
+
#: app/features/mec/modules.php:203 app/libraries/main.php:611
|
5497 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5498 |
#: app/widgets/single.php:101
|
5499 |
msgid "Local Time"
|
5505 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
5506 |
"Eventseite"
|
5507 |
|
5508 |
+
#: app/features/mec/modules.php:217 app/libraries/main.php:612
|
5509 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5510 |
msgid "QR Code"
|
5511 |
msgstr "QR Code"
|
5516 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
5517 |
"an"
|
5518 |
|
5519 |
+
#: app/features/mec/modules.php:235 app/libraries/main.php:613
|
5520 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5521 |
msgid "Weather"
|
5522 |
msgstr "Wetter"
|
5557 |
msgid "Show social network module"
|
5558 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
5559 |
|
5560 |
+
#: app/features/mec/modules.php:308 app/libraries/main.php:615
|
5561 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5562 |
msgid "Next Event"
|
5563 |
msgstr "Nächstes Event"
|
5618 |
msgid "Add events menu to user profile"
|
5619 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
5620 |
|
5621 |
+
#: app/features/mec/modules.php:385 app/libraries/main.php:617
|
5622 |
#, fuzzy
|
5623 |
#| msgid "Mailchimp Integration"
|
5624 |
msgid "LearnDash Integration"
|
6329 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
+
#: app/features/mec/notifications.php:160 app/libraries/main.php:631
|
6333 |
msgid "Booking Verification"
|
6334 |
msgstr "Verifizierung der Buchung"
|
6335 |
|
6376 |
msgstr "Link zur Stornierung der Buchung"
|
6377 |
|
6378 |
#: app/features/mec/notifications.php:402 app/features/notifications.php:157
|
6379 |
+
#: app/libraries/main.php:630
|
6380 |
#, fuzzy
|
6381 |
#| msgid "Booking Verification"
|
6382 |
msgid "Booking Rejection"
|
6412 |
msgstr "Sendet die Email zum Buchungs "
|
6413 |
|
6414 |
#: app/features/mec/notifications.php:540 app/features/notifications.php:163
|
6415 |
+
#: app/libraries/main.php:632
|
6416 |
msgid "Booking Cancellation"
|
6417 |
msgstr "Buchung stornieren"
|
6418 |
|
6434 |
msgid "Admin booking management link."
|
6435 |
msgstr "Admin-link zur Buchungsverwaltung"
|
6436 |
|
6437 |
+
#: app/features/mec/notifications.php:662 app/libraries/main.php:635
|
6438 |
msgid "Admin"
|
6439 |
msgstr "Admin"
|
6440 |
|
6451 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6452 |
|
6453 |
#: app/features/mec/notifications.php:784 app/features/notifications.php:169
|
6454 |
+
#: app/libraries/main.php:634
|
6455 |
#, fuzzy
|
6456 |
#| msgid "Event Color"
|
6457 |
msgid "Event Soldout"
|
6474 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
6475 |
|
6476 |
#: app/features/mec/notifications.php:893 app/features/notifications.php:166
|
6477 |
+
#: app/libraries/main.php:633 app/libraries/notifications.php:733
|
6478 |
msgid "Booking Reminder"
|
6479 |
msgstr "Buchungs Erinnerung"
|
6480 |
|
6504 |
msgid "only once per hour"
|
6505 |
msgstr "nur einmal pro Tag"
|
6506 |
|
6507 |
+
#: app/features/mec/notifications.php:956 app/libraries/main.php:7582
|
6508 |
+
#: app/libraries/main.php:7599
|
6509 |
#, fuzzy
|
6510 |
#| msgid "Hour"
|
6511 |
msgid "Hours"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
#: app/features/mec/notifications.php:1026 app/features/popup/event.php:253
|
6523 |
+
#: app/libraries/main.php:621
|
6524 |
msgid "New Event"
|
6525 |
msgstr "Neue Veranstaltung"
|
6526 |
|
6556 |
msgstr "Status der Veranstaltung"
|
6557 |
|
6558 |
#: app/features/mec/notifications.php:1103
|
6559 |
+
#: app/features/mec/notifications.php:1188 app/features/mec/settings.php:951
|
6560 |
+
#: app/features/mec/settings.php:955 app/features/notifications.php:140
|
6561 |
msgid "Event Note"
|
6562 |
msgstr "Veranstaltungsnotiz"
|
6563 |
|
6566 |
msgid "Admin events management link."
|
6567 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
6568 |
|
6569 |
+
#: app/features/mec/notifications.php:1117 app/libraries/main.php:622
|
6570 |
msgid "User Event Publishing"
|
6571 |
msgstr "Nutzer Event wurde veröffentlicht."
|
6572 |
|
6586 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
6587 |
"Übermittlung oder dem Backend versandt."
|
6588 |
|
6589 |
+
#: app/features/mec/notifications.php:1200 app/libraries/main.php:638
|
6590 |
#, fuzzy
|
6591 |
#| msgid "Notifications"
|
6592 |
msgid "Notifications Per Event"
|
6668 |
msgid "There was an error please try again!"
|
6669 |
msgstr "Es ist ein Fehler aufgetreten, bitte erneut Versuchen!"
|
6670 |
|
6671 |
+
#: app/features/mec/settings.php:69 app/features/mec/settings.php:80
|
6672 |
msgid "Hide Events"
|
6673 |
msgstr "Events verbergen"
|
6674 |
|
6675 |
+
#: app/features/mec/settings.php:72
|
6676 |
msgid "On Event Start"
|
6677 |
msgstr "Am Event Start"
|
6678 |
|
6679 |
+
#: app/features/mec/settings.php:73
|
6680 |
msgid "+1 Hour after start"
|
6681 |
msgstr "+1 Stunde nach dem Start"
|
6682 |
|
6683 |
+
#: app/features/mec/settings.php:74
|
6684 |
msgid "+2 Hours after start"
|
6685 |
msgstr "+2 Stunden nach dem Start"
|
6686 |
|
6687 |
+
#: app/features/mec/settings.php:75
|
6688 |
msgid "On Event End"
|
6689 |
msgstr "Am Event Ende"
|
6690 |
|
6691 |
+
#: app/features/mec/settings.php:81
|
6692 |
msgid ""
|
6693 |
"This option is for showing start/end time of events on frontend of website."
|
6694 |
msgstr ""
|
6695 |
"Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
|
6696 |
"anzuzeigen"
|
6697 |
|
6698 |
+
#: app/features/mec/settings.php:90 app/features/mec/settings.php:99
|
6699 |
msgid "Multiple Day Events"
|
6700 |
msgstr "Mehrtagesveranstaltung"
|
6701 |
|
6702 |
+
#: app/features/mec/settings.php:93
|
6703 |
#, fuzzy
|
6704 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
6705 |
msgid "Show only first day on List/Grid/Slider/Agenda skins"
|
6706 |
msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
|
6707 |
|
6708 |
+
#: app/features/mec/settings.php:94
|
6709 |
msgid "Show only first day on all skins"
|
6710 |
msgstr "Nur den ersten Tag in allen Ansichten zeigen"
|
6711 |
|
6712 |
+
#: app/features/mec/settings.php:95
|
6713 |
msgid "Show all days"
|
6714 |
msgstr "Alle Tage anzeigen"
|
6715 |
|
6716 |
+
#: app/features/mec/settings.php:100
|
6717 |
msgid ""
|
6718 |
"For showing all days of multiple day events on frontend or only show the "
|
6719 |
"first day."
|
6721 |
"Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
|
6722 |
"den ersten Tag anzeigen"
|
6723 |
|
6724 |
+
#: app/features/mec/settings.php:109
|
6725 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6726 |
msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
|
6727 |
|
6728 |
+
#: app/features/mec/settings.php:120
|
6729 |
#, fuzzy
|
6730 |
#| msgid "No Search Options"
|
6731 |
msgid "Sender Name"
|
6732 |
msgstr "Keine Suchoptionen"
|
6733 |
|
6734 |
+
#: app/features/mec/settings.php:123
|
6735 |
msgid "e.g. Webnus"
|
6736 |
msgstr "z.B. Webnus"
|
6737 |
|
6738 |
+
#: app/features/mec/settings.php:130
|
6739 |
msgid "Sender Email"
|
6740 |
msgstr "Absender (E-Mail)"
|
6741 |
|
6742 |
+
#: app/features/mec/settings.php:133
|
6743 |
msgid "e.g. info@webnus.biz"
|
6744 |
msgstr "z.B. info@webnus.biz"
|
6745 |
|
6746 |
+
#: app/features/mec/settings.php:139
|
6747 |
msgid "Exclude Date Suffix"
|
6748 |
msgstr "Ausschlussdatum Suffix"
|
6749 |
|
6750 |
+
#: app/features/mec/settings.php:142
|
6751 |
msgid "Remove suffix from calendars"
|
6752 |
msgstr "Suffix aus den Kalendern entfernen"
|
6753 |
|
6754 |
+
#: app/features/mec/settings.php:146
|
6755 |
#, fuzzy
|
6756 |
#| msgid "Remove suffix from calendars"
|
6757 |
msgid "Remove \"Th\" on calendar"
|
6758 |
msgstr "Suffix aus den Kalendern entfernen"
|
6759 |
|
6760 |
+
#: app/features/mec/settings.php:147
|
6761 |
msgid ""
|
6762 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
6763 |
"showing just '12' )"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: app/features/mec/settings.php:154 app/features/mec/settings.php:161
|
6767 |
msgid "Schema"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
+
#: app/features/mec/settings.php:157
|
6771 |
#, fuzzy
|
6772 |
#| msgid "Enable coupons module"
|
6773 |
msgid "Enable Schema Code"
|
6774 |
msgstr "Gutscheinmodul aktivieren"
|
6775 |
|
6776 |
+
#: app/features/mec/settings.php:162
|
6777 |
msgid "You can enable/disable Schema scripts"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: app/features/mec/settings.php:171 app/features/mec/settings.php:181
|
6781 |
+
#: app/libraries/main.php:6498 app/libraries/main.php:6552
|
6782 |
msgid "Weekdays"
|
6783 |
msgstr "Wochentage"
|
6784 |
|
6785 |
+
#: app/features/mec/settings.php:182
|
6786 |
#, fuzzy
|
6787 |
#| msgid ""
|
6788 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
6795 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
6796 |
"Donnerstag und Freitag gesetzt."
|
6797 |
|
6798 |
+
#: app/features/mec/settings.php:192 app/features/mec/settings.php:202
|
6799 |
msgid "Weekends"
|
6800 |
msgstr "Wochenenden"
|
6801 |
|
6802 |
+
#: app/features/mec/settings.php:203
|
6803 |
#, fuzzy
|
6804 |
#| msgid ""
|
6805 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
6812 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
6813 |
"Donnerstag und Freitag gesetzt."
|
6814 |
|
6815 |
+
#: app/features/mec/settings.php:212
|
6816 |
#, fuzzy
|
6817 |
#| msgid "Date Format"
|
6818 |
msgid "Datepicker Format"
|
6819 |
msgstr "Datumsformat"
|
6820 |
|
6821 |
+
#: app/features/mec/settings.php:220
|
6822 |
msgid "(Y-m-d)"
|
6823 |
msgstr ""
|
6824 |
|
6825 |
+
#: app/features/mec/settings.php:221
|
6826 |
msgid "(d-m-Y)"
|
6827 |
msgstr ""
|
6828 |
|
6829 |
+
#: app/features/mec/settings.php:224
|
6830 |
msgid "(Y/m/d)"
|
6831 |
msgstr ""
|
6832 |
|
6833 |
+
#: app/features/mec/settings.php:225
|
6834 |
msgid "(m/d/Y)"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
+
#: app/features/mec/settings.php:228
|
6838 |
msgid "(Y.m.d)"
|
6839 |
msgstr ""
|
6840 |
|
6841 |
+
#: app/features/mec/settings.php:229
|
6842 |
msgid "(d.m.Y)"
|
6843 |
msgstr ""
|
6844 |
|
6845 |
+
#: app/features/mec/settings.php:235 app/features/mec/settings.php:247
|
6846 |
msgid "Midnight Hour"
|
6847 |
msgstr "Mitternacht"
|
6848 |
|
6849 |
+
#: app/features/mec/settings.php:238
|
6850 |
msgid "12 AM"
|
6851 |
msgstr "00:00"
|
6852 |
|
6853 |
+
#: app/features/mec/settings.php:239
|
6854 |
msgid "1 AM"
|
6855 |
msgstr "01:00"
|
6856 |
|
6857 |
+
#: app/features/mec/settings.php:240
|
6858 |
msgid "2 AM"
|
6859 |
msgstr "02:00"
|
6860 |
|
6861 |
+
#: app/features/mec/settings.php:241
|
6862 |
msgid "3 AM"
|
6863 |
msgstr "03:00"
|
6864 |
|
6865 |
+
#: app/features/mec/settings.php:242
|
6866 |
msgid "4 AM"
|
6867 |
msgstr "04:00"
|
6868 |
|
6869 |
+
#: app/features/mec/settings.php:243
|
6870 |
msgid "5 AM"
|
6871 |
msgstr "05:00"
|
6872 |
|
6873 |
+
#: app/features/mec/settings.php:248
|
6874 |
msgid ""
|
6875 |
"12 AM is midnight by default but you can change it if your event ends after "
|
6876 |
"12 AM and you don't want those events considered as multiple days events!"
|
6877 |
msgstr ""
|
6878 |
|
6879 |
+
#: app/features/mec/settings.php:256
|
6880 |
#, fuzzy
|
6881 |
#| msgid "Add Shortcode"
|
6882 |
msgid "Open \"Add Event\" as Popup"
|
6883 |
msgstr "Shortcode hinzufügen"
|
6884 |
|
6885 |
+
#: app/features/mec/settings.php:259 app/features/mec/settings.php:267
|
6886 |
+
#: app/features/mec/settings.php:275 app/features/mec/single.php:111
|
6887 |
#, fuzzy
|
6888 |
#| msgid "Enabled"
|
6889 |
msgid "Enable"
|
6890 |
msgstr "Aktiviert"
|
6891 |
|
6892 |
+
#: app/features/mec/settings.php:264
|
6893 |
#, fuzzy
|
6894 |
#| msgid "Add Shortcode"
|
6895 |
msgid "Open \"Add Shortcode\" as Popup"
|
6896 |
msgstr "Shortcode hinzufügen"
|
6897 |
|
6898 |
+
#: app/features/mec/settings.php:272
|
6899 |
#, fuzzy
|
6900 |
#| msgid "Featured Image"
|
6901 |
msgid "Include Event Featured Image in Feed"
|
6902 |
msgstr "Ausgewähltes Bild"
|
6903 |
|
6904 |
+
#: app/features/mec/settings.php:282 app/libraries/main.php:567
|
6905 |
msgid "Archive Pages"
|
6906 |
msgstr ""
|
6907 |
|
6908 |
+
#: app/features/mec/settings.php:285 app/features/mec/settings.php:290
|
6909 |
msgid "Archive Page Title"
|
6910 |
msgstr "Titel der Archivseite"
|
6911 |
|
6912 |
+
#: app/features/mec/settings.php:291
|
6913 |
#, fuzzy
|
6914 |
#| msgid "Default value is Events"
|
6915 |
msgid "Default value is Events - It's title of the page"
|
6916 |
msgstr "Der Standardwert ist Ereignisse (Events)"
|
6917 |
|
6918 |
+
#: app/features/mec/settings.php:299 app/features/mec/settings.php:367
|
6919 |
msgid "Archive Page Skin"
|
6920 |
msgstr "Skin Seite Archiv"
|
6921 |
|
6922 |
+
#: app/features/mec/settings.php:307 app/features/mec/settings.php:384
|
6923 |
#, fuzzy
|
6924 |
#| msgid "Edit shortcodes"
|
6925 |
msgid "Put shortcode..."
|
6926 |
msgstr "Shortcode ändern"
|
6927 |
|
6928 |
+
#: app/features/mec/settings.php:310 app/features/mec/settings.php:325
|
6929 |
+
#: app/features/mec/settings.php:328 app/features/mec/settings.php:337
|
6930 |
+
#: app/features/mec/settings.php:363 app/features/mec/settings.php:387
|
6931 |
+
#: app/features/mec/settings.php:402 app/features/mec/settings.php:405
|
6932 |
+
#: app/features/mec/settings.php:414 app/features/mec/settings.php:440
|
6933 |
#, fuzzy
|
6934 |
#| msgid "The event is ongoing."
|
6935 |
msgid "There is no skins"
|
6936 |
msgstr "Die Veranstaltung ist im Gange."
|
6937 |
|
6938 |
+
#: app/features/mec/settings.php:313 app/features/mec/settings.php:390
|
6939 |
#: app/features/mec/single.php:73
|
6940 |
msgid "Modern Style"
|
6941 |
msgstr "Moderner Stil"
|
6942 |
|
6943 |
+
#: app/features/mec/settings.php:355 app/features/mec/settings.php:432
|
6944 |
msgid "colorful"
|
6945 |
msgstr "Farbenfroh"
|
6946 |
|
6947 |
+
#: app/features/mec/settings.php:360 app/features/mec/settings.php:437
|
6948 |
#, fuzzy
|
6949 |
#| msgid "Plain Style"
|
6950 |
msgid "Clean Style"
|
6951 |
msgstr "Einfacher schlichter Stil"
|
6952 |
|
6953 |
+
#: app/features/mec/settings.php:368
|
6954 |
#, fuzzy
|
6955 |
#| msgid "Default value is Calendar/Monthly View"
|
6956 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
6957 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
6958 |
|
6959 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
6960 |
msgid "See Demo"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
+
#: app/features/mec/settings.php:376 app/features/mec/settings.php:444
|
6964 |
msgid "Category Page Skin"
|
6965 |
msgstr "Kategorie Seiten Skin"
|
6966 |
|
6967 |
+
#: app/features/mec/settings.php:445
|
6968 |
#, fuzzy
|
6969 |
#| msgid "Default value is Calendar/Monthly View"
|
6970 |
msgid ""
|
6972 |
"categories."
|
6973 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
6974 |
|
6975 |
+
#: app/features/mec/settings.php:453 app/features/mec/settings.php:461
|
6976 |
msgid "Category Events Method"
|
6977 |
msgstr ""
|
6978 |
|
6979 |
+
#: app/features/mec/settings.php:462
|
6980 |
msgid "Default value is Upcoming Events"
|
6981 |
msgstr ""
|
6982 |
|
6983 |
+
#: app/features/mec/settings.php:470 app/features/mec/settings.php:478
|
6984 |
msgid "Events Archive Status"
|
6985 |
msgstr "Events Archiv Status"
|
6986 |
|
6987 |
+
#: app/features/mec/settings.php:473
|
6988 |
msgid "Enabled (Recommended)"
|
6989 |
msgstr "Ist aktiviert (empfohlen)"
|
6990 |
|
6991 |
+
#: app/features/mec/settings.php:479
|
6992 |
msgid ""
|
6993 |
"If you disable it, then you should create a page as archive page of MEC. "
|
6994 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
6998 |
"erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
|
6999 |
"werden alle MEC-Rewrite-Regeln deaktiviert."
|
7000 |
|
7001 |
+
#: app/features/mec/settings.php:492 app/features/mec/settings.php:497
|
7002 |
msgid "Main Slug"
|
7003 |
msgstr "Main Slug"
|
7004 |
|
7005 |
+
#: app/features/mec/settings.php:498
|
7006 |
msgid ""
|
7007 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7008 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
7009 |
"applicability and forward-compatibility of the links."
|
7010 |
msgstr ""
|
7011 |
|
7012 |
+
#: app/features/mec/settings.php:502 app/features/mec/settings.php:516
|
7013 |
#, fuzzy
|
7014 |
#| msgid ""
|
7015 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
7019 |
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
7020 |
"und Zahlen."
|
7021 |
|
7022 |
+
#: app/features/mec/settings.php:506 app/features/mec/settings.php:511
|
7023 |
msgid "Category Slug"
|
7024 |
msgstr "Category Slug"
|
7025 |
|
7026 |
+
#: app/features/mec/settings.php:512
|
7027 |
#, fuzzy
|
7028 |
#| msgid ""
|
7029 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
7039 |
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
7040 |
"category"
|
7041 |
|
7042 |
+
#: app/features/mec/settings.php:524
|
7043 |
msgid "Currency"
|
7044 |
msgstr "Währung"
|
7045 |
|
7046 |
+
#: app/features/mec/settings.php:534 app/features/mec/settings.php:539
|
7047 |
msgid "Currency Sign"
|
7048 |
msgstr "Währungssymbol"
|
7049 |
|
7050 |
+
#: app/features/mec/settings.php:540
|
7051 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7052 |
msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
|
7053 |
|
7054 |
+
#: app/features/mec/settings.php:547
|
7055 |
msgid "Currency Position"
|
7056 |
msgstr "Position des Währungssymbols"
|
7057 |
|
7058 |
+
#: app/features/mec/settings.php:550
|
7059 |
msgid "Before $10"
|
7060 |
msgstr "Vor €10"
|
7061 |
|
7062 |
+
#: app/features/mec/settings.php:551
|
7063 |
msgid "After 10$"
|
7064 |
msgstr "Nach 10€"
|
7065 |
|
7066 |
+
#: app/features/mec/settings.php:556
|
7067 |
msgid "Thousand Separator"
|
7068 |
msgstr "Tausendertrennzeichen"
|
7069 |
|
7070 |
+
#: app/features/mec/settings.php:562
|
7071 |
msgid "Decimal Separator"
|
7072 |
msgstr "Dezimaltrennzeichen"
|
7073 |
|
7074 |
+
#: app/features/mec/settings.php:572
|
7075 |
msgid "No decimal"
|
7076 |
msgstr "Keine Dezimale"
|
7077 |
|
7078 |
+
#: app/features/mec/settings.php:583
|
7079 |
msgid "Enable Google Recaptcha"
|
7080 |
msgstr "Google Recaptcha aktivieren"
|
7081 |
|
7082 |
+
#: app/features/mec/settings.php:592
|
7083 |
msgid "Enable on booking form"
|
7084 |
msgstr "Auf dem Buchungsformular aktivieren"
|
7085 |
|
7086 |
+
#: app/features/mec/settings.php:600
|
7087 |
#, fuzzy
|
7088 |
#| msgid "Enable on \"Frontend Event Submittion\" form"
|
7089 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7090 |
msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
|
7091 |
|
7092 |
+
#: app/features/mec/settings.php:604
|
7093 |
msgid "Site Key"
|
7094 |
msgstr "Site Key (Seitenschlüssel)"
|
7095 |
|
7096 |
+
#: app/features/mec/settings.php:610
|
7097 |
msgid "Secret Key"
|
7098 |
msgstr "Geheimschlüssel"
|
7099 |
|
7100 |
+
#: app/features/mec/settings.php:622 app/features/mec/settings.php:630
|
7101 |
msgid "Time Format"
|
7102 |
msgstr "Zeitformat"
|
7103 |
|
7104 |
+
#: app/features/mec/settings.php:625
|
7105 |
msgid "12 hours format with AM/PM"
|
7106 |
msgstr "12-Stunden-Format mit AM/FM"
|
7107 |
|
7108 |
+
#: app/features/mec/settings.php:626
|
7109 |
msgid "24 hours format"
|
7110 |
msgstr "24-Stunden-Format"
|
7111 |
|
7112 |
+
#: app/features/mec/settings.php:631
|
7113 |
msgid "This option, affects the selection of Start/End time."
|
7114 |
msgstr ""
|
7115 |
|
7116 |
+
#: app/features/mec/settings.php:639
|
7117 |
msgid "Events List Page"
|
7118 |
msgstr "Seite Liste der Veranstaltungen"
|
7119 |
|
7120 |
+
#: app/features/mec/settings.php:648 app/features/mec/settings.php:660
|
7121 |
#, php-format
|
7122 |
msgid "Put %s shortcode into the page."
|
7123 |
msgstr "%s shortcode in die Seite einfügen"
|
7124 |
|
7125 |
+
#: app/features/mec/settings.php:651
|
7126 |
msgid "Add/Edit Events Page"
|
7127 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
7128 |
|
7129 |
+
#: app/features/mec/settings.php:663
|
7130 |
#, fuzzy
|
7131 |
#| msgid "On Event Start"
|
7132 |
msgid "New Events Status"
|
7133 |
msgstr "Am Event Start"
|
7134 |
|
7135 |
+
#: app/features/mec/settings.php:666
|
7136 |
#, fuzzy
|
7137 |
#| msgid "WordPress"
|
7138 |
msgid "Let WordPress decide"
|
7139 |
msgstr "WordPress"
|
7140 |
|
7141 |
+
#: app/features/mec/settings.php:667 app/libraries/main.php:6774
|
7142 |
+
#: app/libraries/main.php:6796
|
7143 |
msgid "Pending"
|
7144 |
msgstr "Ausstehend"
|
7145 |
|
7146 |
+
#: app/features/mec/settings.php:668
|
7147 |
#, fuzzy
|
7148 |
#| msgid "Publishable Key"
|
7149 |
msgid "Publish"
|
7150 |
msgstr "publizierbarer Schlüssel"
|
7151 |
|
7152 |
+
#: app/features/mec/settings.php:685
|
7153 |
#, fuzzy
|
7154 |
#| msgid ""
|
7155 |
#| "User redirects to this page after new event submission. Leave it empty if "
|
7161 |
"Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
|
7162 |
"es leer, wenn Sie es deaktivieren möchten."
|
7163 |
|
7164 |
+
#: app/features/mec/settings.php:692 app/features/mec/settings.php:697
|
7165 |
#, fuzzy
|
7166 |
#| msgid "Thank You Page"
|
7167 |
msgid "Thank You Page URL"
|
7168 |
msgstr "Danke Seite"
|
7169 |
|
7170 |
+
#: app/features/mec/settings.php:698
|
7171 |
msgid "If filled it will use instead of thank you page set above."
|
7172 |
msgstr ""
|
7173 |
|
7174 |
+
#: app/features/mec/settings.php:721 app/features/mec/settings.php:726
|
7175 |
#, fuzzy
|
7176 |
#| msgid "Amount (Per Ticket)"
|
7177 |
msgid "Maximum File Size"
|
7178 |
msgstr "Betrag (pro Ticket)"
|
7179 |
|
7180 |
+
#: app/features/mec/settings.php:723
|
7181 |
msgid "in KB"
|
7182 |
msgstr ""
|
7183 |
|
7184 |
+
#: app/features/mec/settings.php:727
|
7185 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7186 |
msgstr ""
|
7187 |
|
7188 |
+
#: app/features/mec/settings.php:736
|
7189 |
#, fuzzy
|
7190 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7191 |
msgid "Enable event submission by guest (Not logged in) users"
|
7193 |
"Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
|
7194 |
"erlauben"
|
7195 |
|
7196 |
+
#: app/features/mec/settings.php:743
|
7197 |
msgid "Enable mandatory email and name for guest user"
|
7198 |
msgstr ""
|
7199 |
"Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
|
7200 |
|
7201 |
+
#: app/features/mec/settings.php:749
|
7202 |
msgid ""
|
7203 |
"Automatically create users after event publish and assign event to the "
|
7204 |
"created user"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
+
#: app/features/mec/settings.php:754
|
7208 |
msgid "Frontend Event Submission Sections"
|
7209 |
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
7210 |
|
7211 |
+
#: app/features/mec/settings.php:758
|
7212 |
#, fuzzy
|
7213 |
#| msgid "Event Details"
|
7214 |
msgid "Event Data Fields"
|
7215 |
msgstr "Veranstaltungsdetails"
|
7216 |
|
7217 |
+
#: app/features/mec/settings.php:782 app/widgets/single.php:121
|
7218 |
msgid "Event Categories"
|
7219 |
msgstr "Veranstaltungskategorien"
|
7220 |
|
7221 |
+
#: app/features/mec/settings.php:788
|
7222 |
msgid "Event Labels"
|
7223 |
msgstr "Event Labels"
|
7224 |
|
7225 |
+
#: app/features/mec/settings.php:800
|
7226 |
msgid "Event Tags"
|
7227 |
msgstr "Event Schlagworte"
|
7228 |
|
7229 |
+
#: app/features/mec/settings.php:812 app/widgets/single.php:125
|
7230 |
msgid "Event Organizer"
|
7231 |
msgstr "Veranstaltungsmanager"
|
7232 |
|
7233 |
+
#: app/features/mec/settings.php:839 app/features/occurrences.php:385
|
7234 |
+
#, fuzzy
|
7235 |
+
#| msgid "Total booking limits"
|
7236 |
+
msgid "Total Booking Limit"
|
7237 |
+
msgstr "Gesamt Verfügbare Plätze"
|
7238 |
+
|
7239 |
+
#: app/features/mec/settings.php:845
|
7240 |
+
#, fuzzy
|
7241 |
+
#| msgid "Discount Type"
|
7242 |
+
msgid "Discount Per User Roles"
|
7243 |
+
msgstr "Rabatt-Art"
|
7244 |
+
|
7245 |
+
#: app/features/mec/settings.php:876
|
7246 |
+
#, fuzzy
|
7247 |
+
#| msgid "Ticket Variation"
|
7248 |
+
msgid "Ticket Options"
|
7249 |
+
msgstr "Ticket Variationen"
|
7250 |
+
|
7251 |
+
#: app/features/mec/settings.php:888
|
7252 |
#, fuzzy
|
7253 |
#| msgid "Fees/Taxes Options"
|
7254 |
msgid "Fees / Taxes Options"
|
7255 |
msgstr "Gebühren/Steuer Optionen"
|
7256 |
|
7257 |
+
#: app/features/mec/settings.php:902 app/features/schema.php:64
|
7258 |
msgid "SEO Schema"
|
7259 |
msgstr ""
|
7260 |
|
7261 |
+
#: app/features/mec/settings.php:925 app/features/occurrences.php:72
|
7262 |
#: app/features/occurrences.php:102
|
7263 |
#, fuzzy
|
7264 |
#| msgid "Occurrences times"
|
7265 |
msgid "Occurrences"
|
7266 |
msgstr " mal vorkommen"
|
7267 |
|
7268 |
+
#: app/features/mec/settings.php:934 app/widgets/single.php:165
|
7269 |
#, fuzzy
|
7270 |
#| msgid "Edit Event"
|
7271 |
msgid "Virtual Event"
|
7272 |
msgstr "Event Bearbeiten"
|
7273 |
|
7274 |
+
#: app/features/mec/settings.php:943
|
7275 |
#, fuzzy
|
7276 |
#| msgid "Book Event"
|
7277 |
msgid "Zoom Event"
|
7278 |
msgstr "Veranstaltung buchen"
|
7279 |
|
7280 |
+
#: app/features/mec/settings.php:956
|
7281 |
#, php-format
|
7282 |
msgid ""
|
7283 |
"Users can put a note for editors while they're submitting the event. Also "
|
7289 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
7290 |
"erhalten."
|
7291 |
|
7292 |
+
#: app/features/mec/settings.php:963 app/features/mec/settings.php:971
|
7293 |
#, fuzzy
|
7294 |
#| msgid "Visibility"
|
7295 |
msgid "Note visibility"
|
7296 |
msgstr "Sichtbarkeit"
|
7297 |
|
7298 |
+
#: app/features/mec/settings.php:966
|
7299 |
msgid "Always"
|
7300 |
msgstr "Immer"
|
7301 |
|
7302 |
+
#: app/features/mec/settings.php:967
|
7303 |
msgid "While event is not published"
|
7304 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
7305 |
|
7306 |
+
#: app/features/mec/settings.php:972
|
7307 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7308 |
msgstr ""
|
7309 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
7310 |
"Ereignis im Backend bearbeitet."
|
7311 |
|
7312 |
+
#: app/features/mec/settings.php:980
|
7313 |
#, fuzzy
|
7314 |
#| msgid "Required Field"
|
7315 |
msgid "Required Fields"
|
7316 |
msgstr "Pflichtfeld"
|
7317 |
|
7318 |
+
#: app/features/mec/settings.php:983
|
7319 |
#, fuzzy
|
7320 |
#| msgid "Description"
|
7321 |
msgid "Event Description"
|
7322 |
msgstr "Beschreibung"
|
7323 |
|
7324 |
+
#: app/features/mec/settings.php:987 app/libraries/main.php:6521
|
7325 |
+
#: app/libraries/main.php:6570
|
7326 |
msgid "More Info Link"
|
7327 |
msgstr "Link Mehr Informationen"
|
7328 |
|
7329 |
+
#: app/features/mec/settings.php:1000 app/libraries/main.php:572
|
7330 |
msgid "User Profile"
|
7331 |
msgstr "Benutzer Profil"
|
7332 |
|
7333 |
+
#: app/features/mec/settings.php:1002
|
7334 |
#, php-format
|
7335 |
msgid ""
|
7336 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
7337 |
"history of their bookings."
|
7338 |
msgstr ""
|
7339 |
|
7340 |
+
#: app/features/mec/settings.php:1007 app/libraries/main.php:573
|
7341 |
+
#, fuzzy
|
7342 |
+
#| msgid "Hide Events"
|
7343 |
+
msgid "User Events"
|
7344 |
+
msgstr "Events verbergen"
|
7345 |
+
|
7346 |
+
#: app/features/mec/settings.php:1009
|
7347 |
+
#, php-format
|
7348 |
+
msgid ""
|
7349 |
+
"Put %s shortcode into your desired page. Then users are able to see the "
|
7350 |
+
"their own events."
|
7351 |
+
msgstr ""
|
7352 |
+
|
7353 |
+
#: app/features/mec/settings.php:1021 app/libraries/main.php:574
|
7354 |
msgid "Search Bar"
|
7355 |
msgstr "Suche"
|
7356 |
|
7357 |
+
#: app/features/mec/settings.php:1023
|
7358 |
#, php-format
|
7359 |
msgid ""
|
7360 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: app/features/mec/settings.php:1027
|
7364 |
msgid "Ajax Live mode"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
+
#: app/features/mec/settings.php:1031
|
7368 |
msgid "Ajax mode"
|
7369 |
msgstr ""
|
7370 |
|
7371 |
+
#: app/features/mec/settings.php:1032
|
7372 |
msgid ""
|
7373 |
"if you enable this option, the search button will disappear. To use this "
|
7374 |
"feature, text input field must be enabled."
|
7375 |
msgstr ""
|
7376 |
|
7377 |
+
#: app/features/mec/settings.php:1040
|
7378 |
#, fuzzy
|
7379 |
#| msgid "Modern Style"
|
7380 |
msgid "Modern Type"
|
7381 |
msgstr "Moderner Stil"
|
7382 |
|
7383 |
+
#: app/features/mec/settings.php:1044
|
7384 |
msgid "Search bar fields"
|
7385 |
msgstr "Such Felder"
|
7386 |
|
7387 |
+
#: app/features/mec/settings.php:1086
|
7388 |
#, fuzzy
|
7389 |
#| msgid "Text Input"
|
7390 |
msgid "Text input"
|
7391 |
msgstr "Text eingeben"
|
7392 |
|
7393 |
+
#: app/features/mec/settings.php:1099
|
7394 |
msgid "Enable Mailchimp Integration"
|
7395 |
msgstr "Mailchimp Integration deaktivieren"
|
7396 |
|
7397 |
+
#: app/features/mec/settings.php:1104 app/features/mec/settings.php:1109
|
7398 |
+
#: app/features/mec/settings.php:1158 app/features/mec/settings.php:1182
|
7399 |
+
#: app/features/mec/settings.php:1206 app/features/mec/settings.php:1277
|
7400 |
msgid "API Key"
|
7401 |
msgstr "API Schlüssel"
|
7402 |
|
7403 |
+
#: app/features/mec/settings.php:1117 app/features/mec/settings.php:1122
|
7404 |
+
#: app/features/mec/settings.php:1164 app/features/mec/settings.php:1283
|
7405 |
+
#: app/features/mec/settings.php:1301 app/features/mec/settings.php:1349
|
7406 |
msgid "List ID"
|
7407 |
msgstr "List ID"
|
7408 |
|
7409 |
+
#: app/features/mec/settings.php:1130 app/features/mec/settings.php:1138
|
7410 |
msgid "Subscription Status"
|
7411 |
msgstr "Buchungsstatus"
|
7412 |
|
7413 |
+
#: app/features/mec/settings.php:1133
|
7414 |
msgid "Subscribe automatically"
|
7415 |
msgstr "automatisch Anmelden/Abonnieren"
|
7416 |
|
7417 |
+
#: app/features/mec/settings.php:1134
|
7418 |
msgid "Subscribe by verification"
|
7419 |
msgstr ""
|
7420 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
7421 |
" "
|
7422 |
|
7423 |
+
#: app/features/mec/settings.php:1139
|
7424 |
#, fuzzy
|
7425 |
#| msgid ""
|
7426 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
7432 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
7433 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
7434 |
|
7435 |
+
#: app/features/mec/settings.php:1149 app/libraries/main.php:576
|
7436 |
#, fuzzy
|
7437 |
#| msgid "Mailchimp Integration"
|
7438 |
msgid "Campaign Monitor Integration"
|
7439 |
msgstr "Mailchimp Integration"
|
7440 |
|
7441 |
+
#: app/features/mec/settings.php:1153
|
7442 |
#, fuzzy
|
7443 |
#| msgid "Enable Mailchimp Integration"
|
7444 |
msgid "Enable Campaign Monitor Integration"
|
7445 |
msgstr "Mailchimp Integration deaktivieren"
|
7446 |
|
7447 |
+
#: app/features/mec/settings.php:1173 app/libraries/main.php:577
|
7448 |
#, fuzzy
|
7449 |
#| msgid "Mailchimp Integration"
|
7450 |
msgid "MailerLite Integration"
|
7451 |
msgstr "Mailchimp Integration"
|
7452 |
|
7453 |
+
#: app/features/mec/settings.php:1177
|
7454 |
#, fuzzy
|
7455 |
#| msgid "Enable Mailchimp Integration"
|
7456 |
msgid "Enable MailerLite Integration"
|
7457 |
msgstr "Mailchimp Integration deaktivieren"
|
7458 |
|
7459 |
+
#: app/features/mec/settings.php:1188
|
7460 |
msgid "Group ID"
|
7461 |
msgstr "Gruppen ID "
|
7462 |
|
7463 |
+
#: app/features/mec/settings.php:1197 app/libraries/main.php:578
|
7464 |
#, fuzzy
|
7465 |
#| msgid "BuddyPress Integration"
|
7466 |
msgid "Constant Contact Integration"
|
7467 |
msgstr "Buddy Press Integration"
|
7468 |
|
7469 |
+
#: app/features/mec/settings.php:1201
|
7470 |
#, fuzzy
|
7471 |
#| msgid "Enable Mailchimp Integration"
|
7472 |
msgid "Enable constantcontact Integration"
|
7473 |
msgstr "Mailchimp Integration deaktivieren"
|
7474 |
|
7475 |
+
#: app/features/mec/settings.php:1212
|
7476 |
#, fuzzy
|
7477 |
#| msgid "Facebook Page Link"
|
7478 |
msgid "Access Token"
|
7479 |
msgstr "Facebook Seiten Link"
|
7480 |
|
7481 |
+
#: app/features/mec/settings.php:1236 app/features/mec/settings.php:1251
|
7482 |
#, fuzzy
|
7483 |
#| msgid "Select icon"
|
7484 |
msgid "Select List"
|
7485 |
msgstr "Wählen Sie ein Symbol"
|
7486 |
|
7487 |
+
#: app/features/mec/settings.php:1252
|
7488 |
msgid ""
|
7489 |
"Please fill in the API key and Access Token field and save settings. after "
|
7490 |
"that, please refresh the page and select a list."
|
7491 |
msgstr ""
|
7492 |
|
7493 |
+
#: app/features/mec/settings.php:1262 app/libraries/main.php:579
|
7494 |
#, fuzzy
|
7495 |
#| msgid "Mailchimp Integration"
|
7496 |
msgid "Active Campaign Integration"
|
7497 |
msgstr "Mailchimp Integration"
|
7498 |
|
7499 |
+
#: app/features/mec/settings.php:1266
|
7500 |
#, fuzzy
|
7501 |
#| msgid "Enable Mailchimp Integration"
|
7502 |
msgid "Enable Active Campaign Integration"
|
7503 |
msgstr "Mailchimp Integration deaktivieren"
|
7504 |
|
7505 |
+
#: app/features/mec/settings.php:1271
|
7506 |
msgid "API URL"
|
7507 |
msgstr ""
|
7508 |
|
7509 |
+
#: app/features/mec/settings.php:1292 app/libraries/main.php:580
|
7510 |
#, fuzzy
|
7511 |
#| msgid "Mailchimp Integration"
|
7512 |
msgid "AWeber Integration"
|
7513 |
msgstr "Mailchimp Integration"
|
7514 |
|
7515 |
+
#: app/features/mec/settings.php:1296
|
7516 |
#, fuzzy
|
7517 |
#| msgid "Enable Mailchimp Integration"
|
7518 |
msgid "Enable AWeber Integration"
|
7519 |
msgstr "Mailchimp Integration deaktivieren"
|
7520 |
|
7521 |
+
#: app/features/mec/settings.php:1306
|
7522 |
#, fuzzy, php-format
|
7523 |
#| msgid "Third Party plugin is not installed and activated!"
|
7524 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7525 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7526 |
|
7527 |
+
#: app/features/mec/settings.php:1307
|
7528 |
#, php-format
|
7529 |
msgid "More information about the list ID can be found %s."
|
7530 |
msgstr ""
|
7531 |
|
7532 |
+
#: app/features/mec/settings.php:1312 app/libraries/main.php:581
|
7533 |
#, fuzzy
|
7534 |
#| msgid "Mailchimp Integration"
|
7535 |
msgid "MailPoet Integration"
|
7536 |
msgstr "Mailchimp Integration"
|
7537 |
|
7538 |
+
#: app/features/mec/settings.php:1316
|
7539 |
#, fuzzy
|
7540 |
#| msgid "Enable Mailchimp Integration"
|
7541 |
msgid "Enable MailPoet Integration"
|
7542 |
msgstr "Mailchimp Integration deaktivieren"
|
7543 |
|
7544 |
+
#: app/features/mec/settings.php:1322
|
7545 |
#: app/skins/default_full_calendar/tpl.php:78
|
7546 |
#: app/skins/full_calendar/tpl.php:125
|
7547 |
msgid "List"
|
7548 |
msgstr "Liste / Listenansicht"
|
7549 |
|
7550 |
+
#: app/features/mec/settings.php:1333
|
7551 |
#, fuzzy, php-format
|
7552 |
#| msgid "Third Party plugin is not installed and activated!"
|
7553 |
msgid "%s plugin should be installed and activated."
|
7554 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7555 |
|
7556 |
+
#: app/features/mec/settings.php:1338 app/libraries/main.php:582
|
7557 |
#, fuzzy
|
7558 |
#| msgid "Mailchimp Integration"
|
7559 |
msgid "Sendfox Integration"
|
7560 |
msgstr "Mailchimp Integration"
|
7561 |
|
7562 |
+
#: app/features/mec/settings.php:1342
|
7563 |
#, fuzzy
|
7564 |
#| msgid "Enable Mailchimp Integration"
|
7565 |
msgid "Enable Sendfox Integration"
|
7566 |
msgstr "Mailchimp Integration deaktivieren"
|
7567 |
|
7568 |
+
#: app/features/mec/settings.php:1359
|
7569 |
#, fuzzy, php-format
|
7570 |
#| msgid "Third Party plugin is not installed and activated!"
|
7571 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7572 |
msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
|
7573 |
|
7574 |
+
#: app/features/mec/single.php:38 app/libraries/main.php:586
|
7575 |
#, fuzzy
|
7576 |
#| msgid "Single Event Style"
|
7577 |
msgid "Single Event Page"
|
7693 |
"the settings page.' tab"
|
7694 |
msgstr ""
|
7695 |
|
7696 |
+
#: app/features/mec/single.php:162 app/libraries/main.php:587
|
7697 |
#, fuzzy
|
7698 |
#| msgid "Custom Styles"
|
7699 |
msgid "Custom Fields"
|
7700 |
msgstr "Benutzerdefinierte Stile"
|
7701 |
|
7702 |
+
#: app/features/mec/single.php:192 app/libraries/main.php:3453
|
7703 |
msgid "URL"
|
7704 |
msgstr ""
|
7705 |
|
7748 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
7749 |
"ausschließen."
|
7750 |
|
7751 |
+
#: app/features/mec/single.php:286 app/libraries/main.php:590
|
7752 |
msgid "Additional Organizers"
|
7753 |
msgstr "Zusätzliche Organisatoren"
|
7754 |
|
7780 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
7781 |
"bearbeiten und auf der Seite für einzelne Events an."
|
7782 |
|
7783 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:592
|
7784 |
#: app/skins/single.php:170 app/skins/single.php:435
|
7785 |
msgid "Related Events"
|
7786 |
msgstr "Vorgeschlagene Veranstaltungen"
|
7795 |
msgid "Select Taxonomies:"
|
7796 |
msgstr "Klassifizierung "
|
7797 |
|
7798 |
+
#: app/features/mec/single.php:360 app/libraries/main.php:593
|
7799 |
#, fuzzy
|
7800 |
#| msgid "Next/Previous Buttons"
|
7801 |
msgid "Next / Previous Events"
|
7805 |
msgid "Display next / previous events based on taxonomy in single event page."
|
7806 |
msgstr ""
|
7807 |
|
7808 |
+
#: app/features/mec/single.php:402 app/libraries/main.php:639
|
7809 |
#, fuzzy
|
7810 |
#| msgid "Next Occurrence"
|
7811 |
msgid "Edit Per Occurrences"
|
7841 |
msgstr "Standardschriftart des Themas "
|
7842 |
|
7843 |
#: app/features/mec/styling.php:50 app/features/mec/support.php:52
|
7844 |
+
#: app/libraries/main.php:837
|
7845 |
msgid "Styling Options"
|
7846 |
msgstr "Styling-Optionen"
|
7847 |
|
8024 |
msgid "MEC Settings"
|
8025 |
msgstr "MEC - Einstellungen"
|
8026 |
|
8027 |
+
#: app/features/mec/support-page.php:99 app/libraries/main.php:691
|
8028 |
#, fuzzy
|
8029 |
#| msgid "Single Event Style"
|
8030 |
msgid "Single Event"
|
8389 |
msgid "Create a support ticket"
|
8390 |
msgstr "Erstelle ein Support-Ticket"
|
8391 |
|
8392 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:844
|
8393 |
msgid "Custom CSS"
|
8394 |
msgstr "Custom CSS"
|
8395 |
|
8507 |
msgid "Delete"
|
8508 |
msgstr ""
|
8509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8510 |
#: app/features/occurrences.php:393 app/features/schema.php:70
|
8511 |
#, fuzzy
|
8512 |
#| msgid "Hourly Schedule"
|
8642 |
msgid "eg. https://webnus.net"
|
8643 |
msgstr "http://webnus.net"
|
8644 |
|
8645 |
+
#: app/features/organizers.php:312 app/libraries/main.php:6526
|
8646 |
+
#: app/libraries/main.php:6573 app/skins/single.php:1314
|
8647 |
msgid "Other Organizers"
|
8648 |
msgstr "Andere Veranstalter"
|
8649 |
|
8720 |
msgstr ""
|
8721 |
|
8722 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8723 |
+
#: app/modules/booking/steps/form.php:349
|
8724 |
#: app/modules/booking/steps/tickets.php:180 app/skins/countdown/tpl.php:123
|
8725 |
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
8726 |
msgid "Next"
|
8833 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8834 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
8835 |
|
8836 |
+
#: app/features/profile/profile.php:20 app/libraries/main.php:2538
|
8837 |
msgid "Your booking already canceled!"
|
8838 |
msgstr "Ihre Buchung wurde bereits storniert."
|
8839 |
|
8841 |
msgid "#"
|
8842 |
msgstr ""
|
8843 |
|
8844 |
+
#: app/features/profile/profile.php:61 app/libraries/main.php:3785
|
8845 |
msgid "Status"
|
8846 |
msgstr ""
|
8847 |
|
8848 |
+
#: app/features/profile/profile.php:64 app/libraries/main.php:2756
|
8849 |
msgid "Attendees"
|
8850 |
msgstr "Teilnehmer"
|
8851 |
|
8905 |
msgid "No search result."
|
8906 |
msgstr "Kein Suchergebnis"
|
8907 |
|
8908 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:6528
|
8909 |
+
#: app/libraries/main.php:6575 app/libraries/notifications.php:1265
|
8910 |
+
#: app/libraries/render.php:538 app/libraries/render.php:730
|
8911 |
+
#: app/libraries/render.php:788 app/libraries/render.php:885
|
8912 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8913 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8914 |
#: app/modules/next-event/details.php:154
|
9015 |
"section and speaker widget section!"
|
9016 |
msgstr ""
|
9017 |
|
9018 |
+
#: app/features/userevents.php:58
|
9019 |
+
#, fuzzy, php-format
|
9020 |
+
#| msgid "Please %s/%s in order to submit new events."
|
9021 |
+
msgid "Please %s/%s in order to see your own events."
|
9022 |
+
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
9023 |
+
|
9024 |
#: app/features/wc.php:103 app/libraries/notifications.php:1250
|
9025 |
#: app/libraries/notifications.php:1265 app/libraries/notifications.php:1276
|
9026 |
#: app/libraries/notifications.php:1549 app/libraries/notifications.php:1550
|
9160 |
msgid "New Day"
|
9161 |
msgstr "Neuer Tag"
|
9162 |
|
9163 |
+
#: app/libraries/main.php:366 app/libraries/main.php:2123
|
9164 |
+
#: app/libraries/main.php:2148
|
9165 |
msgid "Agenda View"
|
9166 |
msgstr "Agendaansicht"
|
9167 |
|
9168 |
+
#: app/libraries/main.php:367 app/libraries/main.php:2114
|
9169 |
+
#: app/libraries/main.php:2139
|
9170 |
msgid "Full Calendar"
|
9171 |
msgstr "Ganzer Kalender"
|
9172 |
|
9173 |
+
#: app/libraries/main.php:369 app/libraries/main.php:2116
|
9174 |
+
#: app/libraries/main.php:2141
|
9175 |
msgid "Calendar/Monthly View"
|
9176 |
msgstr "Kalender-/Monatsansicht"
|
9177 |
|
9178 |
+
#: app/libraries/main.php:372 app/libraries/main.php:2119
|
9179 |
+
#: app/libraries/main.php:2144
|
9180 |
msgid "Timetable View"
|
9181 |
msgstr "Stundenplan"
|
9182 |
|
9183 |
+
#: app/libraries/main.php:373 app/libraries/main.php:2120
|
9184 |
+
#: app/libraries/main.php:2145
|
9185 |
msgid "Masonry View"
|
9186 |
msgstr "Kachel Ansicht"
|
9187 |
|
9188 |
+
#: app/libraries/main.php:374 app/libraries/main.php:2124
|
9189 |
+
#: app/libraries/main.php:2149
|
9190 |
msgid "Map View"
|
9191 |
msgstr "Kartenansicht"
|
9192 |
|
9216 |
msgid "Timeline View"
|
9217 |
msgstr "Stundenplan"
|
9218 |
|
9219 |
+
#: app/libraries/main.php:419 app/libraries/main.php:6500
|
9220 |
+
#: app/libraries/main.php:6554
|
9221 |
msgid "SU"
|
9222 |
msgstr "SO"
|
9223 |
|
9224 |
+
#: app/libraries/main.php:420 app/libraries/main.php:6501
|
9225 |
+
#: app/libraries/main.php:6555
|
9226 |
msgid "MO"
|
9227 |
msgstr "MO"
|
9228 |
|
9229 |
+
#: app/libraries/main.php:421 app/libraries/main.php:6502
|
9230 |
+
#: app/libraries/main.php:6556
|
9231 |
msgid "TU"
|
9232 |
msgstr "DI"
|
9233 |
|
9234 |
+
#: app/libraries/main.php:422 app/libraries/main.php:6503
|
9235 |
+
#: app/libraries/main.php:6557
|
9236 |
msgid "WE"
|
9237 |
msgstr "MI"
|
9238 |
|
9239 |
+
#: app/libraries/main.php:423 app/libraries/main.php:6504
|
9240 |
+
#: app/libraries/main.php:6558
|
9241 |
msgid "TH"
|
9242 |
msgstr "DO"
|
9243 |
|
9244 |
+
#: app/libraries/main.php:424 app/libraries/main.php:6505
|
9245 |
+
#: app/libraries/main.php:6559
|
9246 |
msgid "FR"
|
9247 |
msgstr "FR"
|
9248 |
|
9249 |
+
#: app/libraries/main.php:425 app/libraries/main.php:6506
|
9250 |
+
#: app/libraries/main.php:6560
|
9251 |
msgid "SA"
|
9252 |
msgstr "SA"
|
9253 |
|
9254 |
+
#: app/libraries/main.php:591
|
9255 |
msgid "Additional Locations"
|
9256 |
msgstr "Zusätzliche Locations"
|
9257 |
|
9258 |
+
#: app/libraries/main.php:603
|
9259 |
#, fuzzy
|
9260 |
#| msgid "Upload/Add image"
|
9261 |
msgid "Upload Field"
|
9262 |
msgstr "Bild hochladen/hinzufügen"
|
9263 |
|
9264 |
+
#: app/libraries/main.php:757
|
9265 |
#, fuzzy
|
9266 |
#| msgid "Social Module : "
|
9267 |
msgid "Modules"
|
9268 |
msgstr "Social Modul:"
|
9269 |
|
9270 |
+
#: app/libraries/main.php:925
|
9271 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9272 |
msgstr ""
|
9273 |
|
9274 |
+
#: app/libraries/main.php:932
|
9275 |
msgid ""
|
9276 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9277 |
"released. This is a revolution in the world of Event Calendars. We have "
|
9279 |
"below:"
|
9280 |
msgstr ""
|
9281 |
|
9282 |
+
#: app/libraries/main.php:934
|
9283 |
msgid ""
|
9284 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9285 |
"products) and Woo products at the same time."
|
9286 |
msgstr ""
|
9287 |
|
9288 |
+
#: app/libraries/main.php:935
|
9289 |
msgid ""
|
9290 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9291 |
"other websites without MEC. Use JSON output features to make your Apps "
|
9292 |
"compatible with MEC."
|
9293 |
msgstr ""
|
9294 |
|
9295 |
+
#: app/libraries/main.php:936
|
9296 |
msgid ""
|
9297 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9298 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9299 |
"you can set these up in the admin panel."
|
9300 |
msgstr ""
|
9301 |
|
9302 |
+
#: app/libraries/main.php:937
|
9303 |
msgid ""
|
9304 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9305 |
"pages can contain ticket purchase information, information about registered "
|
9306 |
"events. Users can now log in to purchase tickets."
|
9307 |
msgstr ""
|
9308 |
|
9309 |
+
#: app/libraries/main.php:939
|
9310 |
msgid "find out more"
|
9311 |
msgstr ""
|
9312 |
|
9313 |
+
#: app/libraries/main.php:1840
|
9314 |
msgid "Events at this location"
|
9315 |
msgstr "Veranstaltungen an diesem Ort "
|
9316 |
|
9317 |
+
#: app/libraries/main.php:1840
|
9318 |
msgid "Event at this location"
|
9319 |
msgstr "Veranstaltung an diesem Ort "
|
9320 |
|
9321 |
+
#: app/libraries/main.php:1892
|
9322 |
msgid "Facebook"
|
9323 |
msgstr "Facebook"
|
9324 |
|
9325 |
+
#: app/libraries/main.php:1893
|
9326 |
msgid "Twitter"
|
9327 |
msgstr "Twitter"
|
9328 |
|
9329 |
+
#: app/libraries/main.php:1894 app/libraries/main.php:1951
|
9330 |
msgid "Linkedin"
|
9331 |
msgstr "Linkedin"
|
9332 |
|
9333 |
+
#: app/libraries/main.php:1895 app/libraries/main.php:1987
|
9334 |
msgid "VK"
|
9335 |
msgstr ""
|
9336 |
|
9337 |
+
#: app/libraries/main.php:1896
|
9338 |
msgid "Tumblr"
|
9339 |
msgstr ""
|
9340 |
|
9341 |
+
#: app/libraries/main.php:1897
|
9342 |
msgid "Pinterest"
|
9343 |
msgstr ""
|
9344 |
|
9345 |
+
#: app/libraries/main.php:1898
|
9346 |
msgid "Flipboard"
|
9347 |
msgstr ""
|
9348 |
|
9349 |
+
#: app/libraries/main.php:1899
|
9350 |
#, fuzzy
|
9351 |
#| msgid "Tickets"
|
9352 |
msgid "GetPocket"
|
9353 |
msgstr "Tickets"
|
9354 |
|
9355 |
+
#: app/libraries/main.php:1900
|
9356 |
msgid "Reddit"
|
9357 |
msgstr ""
|
9358 |
|
9359 |
+
#: app/libraries/main.php:1901
|
9360 |
msgid "WhatsApp"
|
9361 |
msgstr ""
|
9362 |
|
9363 |
+
#: app/libraries/main.php:1902
|
9364 |
msgid "Telegram"
|
9365 |
msgstr ""
|
9366 |
|
9367 |
+
#: app/libraries/main.php:1921
|
9368 |
msgid "Share on Facebook"
|
9369 |
msgstr "Teilen auf Facebook"
|
9370 |
|
9371 |
+
#: app/libraries/main.php:1936
|
9372 |
msgid "Tweet"
|
9373 |
msgstr "Tweet"
|
9374 |
|
9375 |
+
#: app/libraries/main.php:2002
|
9376 |
#, fuzzy
|
9377 |
#| msgid "Share on Facebook"
|
9378 |
msgid "Share on Tumblr"
|
9379 |
msgstr "Teilen auf Facebook"
|
9380 |
|
9381 |
+
#: app/libraries/main.php:2018
|
9382 |
msgid "Share on Pinterest"
|
9383 |
msgstr ""
|
9384 |
|
9385 |
+
#: app/libraries/main.php:2034
|
9386 |
#, fuzzy
|
9387 |
#| msgid "Share on Facebook"
|
9388 |
msgid "Share on Flipboard"
|
9389 |
msgstr "Teilen auf Facebook"
|
9390 |
|
9391 |
+
#: app/libraries/main.php:2052
|
9392 |
#, fuzzy
|
9393 |
#| msgid "Share on Facebook"
|
9394 |
msgid "Share on GetPocket"
|
9395 |
msgstr "Teilen auf Facebook"
|
9396 |
|
9397 |
+
#: app/libraries/main.php:2068
|
9398 |
#, fuzzy
|
9399 |
#| msgid "Share on Facebook"
|
9400 |
msgid "Share on Reddit"
|
9401 |
msgstr "Teilen auf Facebook"
|
9402 |
|
9403 |
+
#: app/libraries/main.php:2084
|
9404 |
msgid "Share on Telegram"
|
9405 |
msgstr ""
|
9406 |
|
9407 |
+
#: app/libraries/main.php:2102
|
9408 |
msgid "Share on WhatsApp"
|
9409 |
msgstr ""
|
9410 |
|
9411 |
+
#: app/libraries/main.php:2125 app/libraries/main.php:2150
|
9412 |
#, fuzzy
|
9413 |
#| msgid "Shortcode"
|
9414 |
msgid "Custom Shortcode"
|
9415 |
msgstr "Shortcode"
|
9416 |
|
9417 |
+
#: app/libraries/main.php:2499 app/libraries/main.php:2510
|
9418 |
#, fuzzy
|
9419 |
#| msgid "The events are imported successfully!"
|
9420 |
msgid "Your booking has been verified successfully!"
|
9421 |
msgstr "Die Events wurden erfolgreich importiert!"
|
9422 |
|
9423 |
+
#: app/libraries/main.php:2504
|
9424 |
msgid "Your booking already verified!"
|
9425 |
msgstr "Ihre Buchung wurde bereits verifiziert."
|
9426 |
|
9427 |
+
#: app/libraries/main.php:2511
|
9428 |
msgid "Your booking cannot verify!"
|
9429 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
9430 |
|
9431 |
+
#: app/libraries/main.php:2533 app/libraries/main.php:2590
|
9432 |
msgid "Your booking successfully canceled."
|
9433 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
9434 |
|
9435 |
+
#: app/libraries/main.php:2550
|
9436 |
#, fuzzy
|
9437 |
#| msgid "The event is finished."
|
9438 |
msgid "The event is already finished!"
|
9439 |
msgstr "Das Event ist beendet"
|
9440 |
|
9441 |
+
#: app/libraries/main.php:2571
|
9442 |
msgid "The cancelation window is not started yet."
|
9443 |
msgstr ""
|
9444 |
|
9445 |
+
#: app/libraries/main.php:2583
|
9446 |
msgid "The cancelation window is passed."
|
9447 |
msgstr ""
|
9448 |
|
9449 |
+
#: app/libraries/main.php:2591
|
9450 |
msgid "Your booking cannot be canceled."
|
9451 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
9452 |
|
9453 |
+
#: app/libraries/main.php:2595
|
9454 |
msgid "You canceled the payment successfully."
|
9455 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
9456 |
|
9457 |
+
#: app/libraries/main.php:2599
|
9458 |
msgid "You returned from payment gateway successfully."
|
9459 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
9460 |
|
9461 |
+
#: app/libraries/main.php:2618
|
9462 |
msgid "Cannot find the invoice!"
|
9463 |
msgstr "Die Buchung kann nicht gefunden werden."
|
9464 |
|
9465 |
+
#: app/libraries/main.php:2618
|
9466 |
msgid "Invoice is invalid."
|
9467 |
msgstr "Die Buchung ist ungültig."
|
9468 |
|
9469 |
+
#: app/libraries/main.php:2638
|
9470 |
msgid ""
|
9471 |
"Your booking still is not confirmed. You can download it after confirmation!"
|
9472 |
msgstr ""
|
9473 |
|
9474 |
+
#: app/libraries/main.php:2638
|
9475 |
msgid "Booking Not Confirmed."
|
9476 |
msgstr "Die Buchung ist nicht Bestätigt."
|
9477 |
|
9478 |
+
#: app/libraries/main.php:2644
|
9479 |
msgid "Cannot find the booking!"
|
9480 |
msgstr "Die Buchung kann nicht gefunden werden!"
|
9481 |
|
9482 |
+
#: app/libraries/main.php:2644
|
9483 |
msgid "Booking is invalid."
|
9484 |
msgstr "Buchung ist ungültig."
|
9485 |
|
9486 |
+
#: app/libraries/main.php:2677
|
9487 |
#, php-format
|
9488 |
msgid "%s Invoice"
|
9489 |
msgstr "% s Rechnung"
|
9490 |
|
9491 |
+
#: app/libraries/main.php:2713
|
9492 |
#, fuzzy
|
9493 |
#| msgid "Date And Time"
|
9494 |
msgid "Date & Time"
|
9495 |
msgstr "Datum und Uhrzeit"
|
9496 |
|
9497 |
+
#: app/libraries/main.php:2730
|
9498 |
#, fuzzy
|
9499 |
#| msgid "Booking Price"
|
9500 |
msgid "Booking Fields"
|
9501 |
msgstr "Buchungspreis"
|
9502 |
|
9503 |
+
#: app/libraries/main.php:2802
|
9504 |
msgid "Billing"
|
9505 |
msgstr "Abrechnung"
|
9506 |
|
9507 |
+
#: app/libraries/main.php:2814
|
9508 |
#, fuzzy
|
9509 |
#| msgid "Coupon"
|
9510 |
msgid "Coupon Code"
|
9511 |
msgstr "Gutschein"
|
9512 |
|
9513 |
+
#: app/libraries/main.php:2819
|
9514 |
msgid "Total"
|
9515 |
msgstr "Gesamt"
|
9516 |
|
9517 |
+
#: app/libraries/main.php:2826
|
9518 |
msgid "Payment"
|
9519 |
msgstr "Bezahlung"
|
9520 |
|
9521 |
+
#: app/libraries/main.php:2843
|
9522 |
msgid "Payment Time"
|
9523 |
msgstr "Bezahlung "
|
9524 |
|
9525 |
+
#: app/libraries/main.php:2985
|
9526 |
msgid "Request is not valid."
|
9527 |
msgstr "Die Anfrage ist ungültig!"
|
9528 |
|
9529 |
+
#: app/libraries/main.php:2985
|
9530 |
msgid "iCal export stopped!"
|
9531 |
msgstr "iCal Export wurde unterbrochen!"
|
9532 |
|
9533 |
+
#: app/libraries/main.php:3336 app/libraries/main.php:3365
|
9534 |
+
#: app/libraries/main.php:3394 app/libraries/main.php:3423
|
9535 |
+
#: app/libraries/main.php:3452 app/libraries/main.php:3481
|
9536 |
+
#: app/libraries/main.php:3510 app/libraries/main.php:3539
|
9537 |
+
#: app/libraries/main.php:3568 app/libraries/main.php:3597
|
9538 |
+
#: app/libraries/main.php:3620 app/libraries/main.php:3666
|
9539 |
+
#: app/libraries/main.php:3712 app/libraries/main.php:3761
|
9540 |
+
#: app/libraries/main.php:3810
|
9541 |
msgid "Sort"
|
9542 |
msgstr "Sortieren"
|
9543 |
|
9544 |
+
#: app/libraries/main.php:3343 app/libraries/main.php:3372
|
9545 |
+
#: app/libraries/main.php:3401 app/libraries/main.php:3430
|
9546 |
+
#: app/libraries/main.php:3459 app/libraries/main.php:3488
|
9547 |
+
#: app/libraries/main.php:3517 app/libraries/main.php:3546
|
9548 |
+
#: app/libraries/main.php:3575 app/libraries/main.php:3627
|
9549 |
+
#: app/libraries/main.php:3673 app/libraries/main.php:3719
|
9550 |
+
#: app/libraries/main.php:3768
|
9551 |
msgid "Required Field"
|
9552 |
msgstr "Pflichtfeld"
|
9553 |
|
9554 |
+
#: app/libraries/main.php:3349 app/libraries/main.php:3378
|
9555 |
+
#: app/libraries/main.php:3407 app/libraries/main.php:3436
|
9556 |
+
#: app/libraries/main.php:3465 app/libraries/main.php:3494
|
9557 |
+
#: app/libraries/main.php:3523 app/libraries/main.php:3552
|
9558 |
+
#: app/libraries/main.php:3581 app/libraries/main.php:3633
|
9559 |
+
#: app/libraries/main.php:3679 app/libraries/main.php:3725
|
9560 |
+
#: app/libraries/main.php:3774
|
9561 |
msgid "Insert a label for this field"
|
9562 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
9563 |
|
9564 |
+
#: app/libraries/main.php:3603
|
9565 |
msgid "HTML and shortcode are allowed."
|
9566 |
msgstr "HTML und shortcodes sind erlaubt."
|
9567 |
|
9568 |
+
#: app/libraries/main.php:3646 app/libraries/main.php:3692
|
9569 |
+
#: app/libraries/main.php:3738
|
9570 |
msgid "Option"
|
9571 |
msgstr "Option"
|
9572 |
|
9573 |
+
#: app/libraries/main.php:3774
|
9574 |
#, php-format
|
9575 |
msgid "Instead of %s, the page title with a link will be show."
|
9576 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
9577 |
|
9578 |
+
#: app/libraries/main.php:3776
|
9579 |
msgid "Agreement Page"
|
9580 |
msgstr "Zustimmungsseite"
|
9581 |
|
9582 |
+
#: app/libraries/main.php:3787
|
9583 |
msgid "Checked by default"
|
9584 |
msgstr ""
|
9585 |
|
9586 |
+
#: app/libraries/main.php:3788
|
9587 |
msgid "Unchecked by default"
|
9588 |
msgstr ""
|
9589 |
|
9590 |
+
#: app/libraries/main.php:3812
|
9591 |
msgid "Insert a label for this option"
|
9592 |
msgstr "Ein neues Label für diese Option einfügen"
|
9593 |
|
9594 |
+
#: app/libraries/main.php:3825
|
9595 |
msgid "Free"
|
9596 |
msgstr "kostenfrei"
|
9597 |
|
9598 |
+
#: app/libraries/main.php:4498 app/libraries/main.php:6835
|
9599 |
msgid "M.E. Calender"
|
9600 |
msgstr "M.E. Calender"
|
9601 |
|
9602 |
+
#: app/libraries/main.php:4654
|
9603 |
#, php-format
|
9604 |
msgid "Copy of %s"
|
9605 |
msgstr "Kopie von %s"
|
9606 |
|
9607 |
+
#: app/libraries/main.php:5527
|
9608 |
msgid "Booked an event."
|
9609 |
msgstr "Eine Veranstaltung wurde gebucht."
|
9610 |
|
9611 |
+
#: app/libraries/main.php:5568
|
9612 |
#, php-format
|
9613 |
msgid "%s booked %s event."
|
9614 |
msgstr "%s gebuchtes %s Event"
|
9615 |
|
9616 |
+
#: app/libraries/main.php:6483 app/libraries/main.php:6537
|
9617 |
msgid "Taxonomies"
|
9618 |
msgstr "Klassifizierung "
|
9619 |
|
9620 |
+
#: app/libraries/main.php:6485 app/libraries/main.php:6539
|
9621 |
msgid "Category Plural Label"
|
9622 |
msgstr "Kategorien"
|
9623 |
|
9624 |
+
#: app/libraries/main.php:6486 app/libraries/main.php:6540
|
9625 |
msgid "Category Singular Label"
|
9626 |
msgstr "Kategorie"
|
9627 |
|
9628 |
+
#: app/libraries/main.php:6487 app/libraries/main.php:6541
|
9629 |
msgid "Label Plural Label"
|
9630 |
msgstr "Labels"
|
9631 |
|
9632 |
+
#: app/libraries/main.php:6488 app/libraries/main.php:6542
|
9633 |
msgid "Label Singular Label"
|
9634 |
msgstr "Label"
|
9635 |
|
9636 |
+
#: app/libraries/main.php:6488 app/libraries/main.php:6542
|
9637 |
msgid "label"
|
9638 |
msgstr "label"
|
9639 |
|
9640 |
+
#: app/libraries/main.php:6489 app/libraries/main.php:6543
|
9641 |
msgid "Location Plural Label"
|
9642 |
msgstr "Veranstaltungsorte"
|
9643 |
|
9644 |
+
#: app/libraries/main.php:6490 app/libraries/main.php:6544
|
9645 |
msgid "Location Singular Label"
|
9646 |
msgstr "Veranstaltungsort"
|
9647 |
|
9648 |
+
#: app/libraries/main.php:6491 app/libraries/main.php:6545
|
9649 |
msgid "Organizer Plural Label"
|
9650 |
msgstr "Veranstalter"
|
9651 |
|
9652 |
+
#: app/libraries/main.php:6492 app/libraries/main.php:6546
|
9653 |
msgid "Organizer Singular Label"
|
9654 |
msgstr "Veranstalter"
|
9655 |
|
9656 |
+
#: app/libraries/main.php:6493 app/libraries/main.php:6547
|
9657 |
#, fuzzy
|
9658 |
#| msgid "Label Plural Label"
|
9659 |
msgid "Speaker Plural Label"
|
9660 |
msgstr "Labels"
|
9661 |
|
9662 |
+
#: app/libraries/main.php:6494 app/libraries/main.php:6548
|
9663 |
#, fuzzy
|
9664 |
#| msgid "Label Singular Label"
|
9665 |
msgid "Speaker Singular Label"
|
9666 |
msgstr "Label"
|
9667 |
|
9668 |
+
#: app/libraries/main.php:6500 app/libraries/main.php:6554
|
9669 |
msgid "Sunday abbreviation"
|
9670 |
msgstr "Sonntag Abkürzung"
|
9671 |
|
9672 |
+
#: app/libraries/main.php:6501 app/libraries/main.php:6555
|
9673 |
msgid "Monday abbreviation"
|
9674 |
msgstr "Montag Abkürzung"
|
9675 |
|
9676 |
+
#: app/libraries/main.php:6502 app/libraries/main.php:6556
|
9677 |
msgid "Tuesday abbreviation"
|
9678 |
msgstr "Dienstag Abkürzung"
|
9679 |
|
9680 |
+
#: app/libraries/main.php:6503 app/libraries/main.php:6557
|
9681 |
msgid "Wednesday abbreviation"
|
9682 |
msgstr "Mittwoch Abkürzung"
|
9683 |
|
9684 |
+
#: app/libraries/main.php:6504 app/libraries/main.php:6558
|
9685 |
msgid "Thursday abbreviation"
|
9686 |
msgstr "Donnerstag Abkürzung"
|
9687 |
|
9688 |
+
#: app/libraries/main.php:6505 app/libraries/main.php:6559
|
9689 |
msgid "Friday abbreviation"
|
9690 |
msgstr "Freitag Abkürzung"
|
9691 |
|
9692 |
+
#: app/libraries/main.php:6506 app/libraries/main.php:6560
|
9693 |
msgid "Saturday abbreviation"
|
9694 |
msgstr "Samstag Abkürzung "
|
9695 |
|
9696 |
+
#: app/libraries/main.php:6510 app/libraries/main.php:6564
|
9697 |
msgid "Others"
|
9698 |
msgstr "Andere"
|
9699 |
|
9700 |
+
#: app/libraries/main.php:6512
|
9701 |
msgid "Booking Success Message"
|
9702 |
msgstr "Buchung erfolgreich Mitteilung"
|
9703 |
|
9704 |
+
#: app/libraries/main.php:6512
|
9705 |
#, fuzzy
|
9706 |
#| msgid ""
|
9707 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
9713 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
9714 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
9715 |
|
9716 |
+
#: app/libraries/main.php:6513
|
9717 |
#, fuzzy
|
9718 |
#| msgid "Booking Success Message"
|
9719 |
msgid "Booking Restriction Message 1"
|
9720 |
msgstr "Buchung erfolgreich Mitteilung"
|
9721 |
|
9722 |
+
#: app/libraries/main.php:6513
|
9723 |
#, php-format
|
9724 |
msgid ""
|
9725 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9726 |
"tickets."
|
9727 |
msgstr ""
|
9728 |
|
9729 |
+
#: app/libraries/main.php:6514
|
9730 |
#, fuzzy
|
9731 |
#| msgid "Booking Success Message"
|
9732 |
msgid "Booking Restriction Message 2"
|
9733 |
msgstr "Buchung erfolgreich Mitteilung"
|
9734 |
|
9735 |
+
#: app/libraries/main.php:6514
|
9736 |
#, php-format
|
9737 |
msgid ""
|
9738 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9739 |
"tickets."
|
9740 |
msgstr ""
|
9741 |
|
9742 |
+
#: app/libraries/main.php:6515
|
9743 |
#, fuzzy
|
9744 |
#| msgid "Booking Success Message"
|
9745 |
msgid "Booking IP Restriction Message"
|
9746 |
msgstr "Buchung erfolgreich Mitteilung"
|
9747 |
|
9748 |
+
#: app/libraries/main.php:6515
|
9749 |
#, php-format
|
9750 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9751 |
msgstr ""
|
9752 |
|
9753 |
+
#: app/libraries/main.php:6516
|
9754 |
#, fuzzy
|
9755 |
#| msgid "Booking Options"
|
9756 |
msgid "Booking Button"
|
9757 |
msgstr "Buchungsoptionen"
|
9758 |
|
9759 |
+
#: app/libraries/main.php:6516 app/libraries/skins.php:1304
|
9760 |
#: app/modules/booking/steps/tickets.php:102
|
9761 |
msgid "Book Event"
|
9762 |
msgstr "Veranstaltung buchen"
|
9763 |
|
9764 |
+
#: app/libraries/main.php:6517 app/libraries/main.php:6566
|
9765 |
#: app/widgets/single.php:133
|
9766 |
msgid "Register Button"
|
9767 |
msgstr "Register Button"
|
9768 |
|
9769 |
+
#: app/libraries/main.php:6517 app/libraries/main.php:6566
|
9770 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9771 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:104
|
9772 |
#: app/skins/grid/render.php:163 app/skins/grid/render.php:223
|
9784 |
msgid "REGISTER"
|
9785 |
msgstr "ANMELDEN"
|
9786 |
|
9787 |
+
#: app/libraries/main.php:6518 app/libraries/main.php:6567
|
9788 |
msgid "View Detail Button"
|
9789 |
msgstr "Ansicht Detail Button"
|
9790 |
|
9791 |
+
#: app/libraries/main.php:6518 app/libraries/main.php:6567
|
9792 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9793 |
#: app/skins/grid/render.php:104 app/skins/grid/render.php:163
|
9794 |
#: app/skins/grid/render.php:223 app/skins/grid/render.php:245
|
9800 |
msgid "View Detail"
|
9801 |
msgstr "Details "
|
9802 |
|
9803 |
+
#: app/libraries/main.php:6519 app/libraries/main.php:6568
|
9804 |
msgid "Event Detail Button"
|
9805 |
msgstr "Event Detail Button"
|
9806 |
|
9807 |
+
#: app/libraries/main.php:6519 app/libraries/main.php:6568
|
9808 |
msgid "Event Detail"
|
9809 |
msgstr "Veranstaltungsdetails"
|
9810 |
|
9811 |
+
#: app/libraries/main.php:6524
|
9812 |
msgid "Ticket (Singular)"
|
9813 |
msgstr "Ticket"
|
9814 |
|
9815 |
+
#: app/libraries/main.php:6525
|
9816 |
msgid "Tickets (Plural)"
|
9817 |
msgstr "Tickets"
|
9818 |
|
9819 |
+
#: app/libraries/main.php:6683
|
9820 |
msgid "EventON"
|
9821 |
msgstr "EventON"
|
9822 |
|
9823 |
+
#: app/libraries/main.php:6684
|
9824 |
msgid "The Events Calendar"
|
9825 |
msgstr "The Events Calendar"
|
9826 |
|
9827 |
+
#: app/libraries/main.php:6685
|
9828 |
msgid "Events Schedule WP Plugin"
|
9829 |
msgstr "Event Zeitplan WP-Plugin"
|
9830 |
|
9831 |
+
#: app/libraries/main.php:6686
|
9832 |
msgid "Calendarize It"
|
9833 |
msgstr ""
|
9834 |
|
9835 |
+
#: app/libraries/main.php:6687
|
9836 |
#, fuzzy
|
9837 |
#| msgid "No Search Options"
|
9838 |
msgid "Event Espresso"
|
9839 |
msgstr "Keine Suchoptionen"
|
9840 |
|
9841 |
+
#: app/libraries/main.php:6688
|
9842 |
msgid "Events Manager (Recurring)"
|
9843 |
msgstr "Wiederholende Veranstaltung"
|
9844 |
|
9845 |
+
#: app/libraries/main.php:6689
|
9846 |
msgid "Events Manager (Single)"
|
9847 |
msgstr "Moderner Event Kalender"
|
9848 |
|
9849 |
+
#: app/libraries/main.php:6690
|
9850 |
#, fuzzy
|
9851 |
#| msgid "Events Manager (Single)"
|
9852 |
msgid "WP Event Manager"
|
9853 |
msgstr "Moderner Event Kalender"
|
9854 |
|
9855 |
+
#: app/libraries/main.php:6822
|
9856 |
msgid "Waiting"
|
9857 |
msgstr "in Bearbeitung"
|
9858 |
|
9859 |
+
#: app/libraries/main.php:6865
|
9860 |
#, fuzzy
|
9861 |
#| msgid "Sunday"
|
9862 |
msgid "Sun"
|
9863 |
msgstr "Sonntag"
|
9864 |
|
9865 |
+
#: app/libraries/main.php:6865
|
9866 |
#, fuzzy
|
9867 |
#| msgid "Month"
|
9868 |
msgid "Mon"
|
9869 |
msgstr "Monat "
|
9870 |
|
9871 |
+
#: app/libraries/main.php:6865
|
9872 |
#, fuzzy
|
9873 |
#| msgid "Tel"
|
9874 |
msgid "Tue"
|
9875 |
msgstr "Tel"
|
9876 |
|
9877 |
+
#: app/libraries/main.php:6865
|
9878 |
msgid "Wed"
|
9879 |
msgstr ""
|
9880 |
|
9881 |
+
#: app/libraries/main.php:6865
|
9882 |
msgid "Thu"
|
9883 |
msgstr ""
|
9884 |
|
9885 |
+
#: app/libraries/main.php:6865
|
9886 |
#, fuzzy
|
9887 |
#| msgid "Friday"
|
9888 |
msgid "Fri"
|
9889 |
msgstr "Freitag"
|
9890 |
|
9891 |
+
#: app/libraries/main.php:6865
|
9892 |
#, fuzzy
|
9893 |
#| msgid "Start"
|
9894 |
msgid "Sat"
|
9895 |
msgstr "Start"
|
9896 |
|
9897 |
+
#: app/libraries/main.php:7031 app/libraries/render.php:80
|
9898 |
+
#: app/libraries/render.php:451
|
9899 |
msgid "Skin controller does not exist."
|
9900 |
msgstr "Skin contoller existiert nicht."
|
9901 |
|
9902 |
+
#: app/libraries/main.php:7246
|
9903 |
msgid "Sold Out"
|
9904 |
msgstr "Ausgebucht"
|
9905 |
|
9906 |
+
#: app/libraries/main.php:7257
|
9907 |
msgid "Last Few Tickets"
|
9908 |
msgstr "Nur noch wenige Tickets verfügbar."
|
9909 |
|
9910 |
+
#: app/libraries/main.php:7588 app/libraries/main.php:7605
|
9911 |
#, fuzzy
|
9912 |
#| msgid "minutes"
|
9913 |
msgid "Minutes"
|
9914 |
msgstr "Minuten"
|
9915 |
|
9916 |
+
#: app/libraries/main.php:7610
|
9917 |
msgid "AM / PM"
|
9918 |
msgstr ""
|
9919 |
|
9920 |
+
#: app/libraries/main.php:7611
|
9921 |
msgid "AM"
|
9922 |
msgstr "AM"
|
9923 |
|
9924 |
+
#: app/libraries/main.php:7612
|
9925 |
msgid "PM"
|
9926 |
msgstr "PM"
|
9927 |
|
9928 |
+
#: app/libraries/main.php:7620
|
9929 |
#, fuzzy
|
9930 |
#| msgid "Loading..."
|
9931 |
msgid "Ongoing..."
|
9932 |
msgstr "Laden…"
|
9933 |
|
9934 |
+
#: app/libraries/main.php:7621
|
9935 |
#, fuzzy
|
9936 |
#| msgid "Expired Events"
|
9937 |
msgid "Expired!"
|
10070 |
msgstr "Gutschein verwenden"
|
10071 |
|
10072 |
#: app/modules/booking/steps/checkout.php:138
|
10073 |
+
#: app/modules/booking/steps/form.php:348
|
10074 |
msgid "Back"
|
10075 |
msgstr "Zurück"
|
10076 |
|
10082 |
msgid "Attendee's Form"
|
10083 |
msgstr "Teilnahmeformular"
|
10084 |
|
10085 |
+
#: app/modules/booking/steps/form.php:318
|
10086 |
msgid "Fill other attendees information like the first form."
|
10087 |
msgstr ""
|
10088 |
"Teilnehmer Informationen für die weiteren Tickets übernehmen. (Das Ticket "
|
10089 |
"ist nicht an einen Namen gebunden)"
|
10090 |
|
10091 |
+
#: app/modules/booking/steps/form.php:329
|
10092 |
#, fuzzy
|
10093 |
#| msgid "API Username"
|
10094 |
msgid "Username"
|
10095 |
msgstr "API Nutzername"
|
10096 |
|
10097 |
+
#: app/modules/booking/steps/form.php:349
|
10098 |
#: app/modules/booking/steps/tickets.php:180
|
10099 |
msgid "Add to Cart"
|
10100 |
msgstr "in den Warenkorb legen"
|
10483 |
msgid "http://webnus.net"
|
10484 |
msgstr "http://webnus.net"
|
10485 |
|
10486 |
+
#, fuzzy
|
10487 |
+
#~| msgid "Total booking limits"
|
10488 |
+
#~ msgid "Total user booking limits"
|
10489 |
+
#~ msgstr "Gesamt Verfügbare Plätze"
|
10490 |
+
|
10491 |
#~ msgid "Your booking successfully verified."
|
10492 |
#~ msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
10493 |
|
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: 2020-12-
|
5 |
-
"PO-Revision-Date: 2020-12-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -18,8 +18,8 @@ msgstr ""
|
|
18 |
|
19 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
20 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
21 |
-
#: app/features/ix/thirdparty.php:26 app/features/mec.php:
|
22 |
-
#: app/features/mec.php:
|
23 |
#: app/widgets/MEC.php:33
|
24 |
msgid "Modern Events Calendar"
|
25 |
msgstr ""
|
@@ -76,7 +76,7 @@ msgid "Select Shortcode"
|
|
76 |
msgstr ""
|
77 |
|
78 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
79 |
-
#: app/features/mec/settings.php:
|
80 |
msgid "Event Color"
|
81 |
msgstr ""
|
82 |
|
@@ -87,14 +87,14 @@ msgstr ""
|
|
87 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
88 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
89 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
90 |
-
#: app/libraries/main.php:
|
91 |
msgid "Settings"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
95 |
-
#: app/features/events.php:
|
96 |
-
#: app/features/mec/booking.php:873 app/features/mec/
|
97 |
-
#: app/libraries/main.php:
|
98 |
msgid "Booking Form"
|
99 |
msgstr ""
|
100 |
|
@@ -107,9 +107,9 @@ msgid ""
|
|
107 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: app/features/contextual.php:70 app/features/events.php:
|
111 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
112 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
113 |
msgid "Payment Gateways"
|
114 |
msgstr ""
|
115 |
|
@@ -120,9 +120,9 @@ msgid ""
|
|
120 |
"\"0\" allowfullscreen></iframe>"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: app/features/contextual.php:77 app/features/events.php:
|
124 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
125 |
-
#: app/libraries/main.php:
|
126 |
msgid "Notifications"
|
127 |
msgstr ""
|
128 |
|
@@ -185,12 +185,12 @@ msgid ""
|
|
185 |
"\"0\" allowfullscreen></iframe>"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: app/features/contextual.php:117 app/features/mec/settings.php:
|
189 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
190 |
msgid "General Options"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: app/features/contextual.php:139 app/features/mec/settings.php:
|
194 |
#: app/libraries/main.php:568
|
195 |
msgid "Slugs/Permalinks"
|
196 |
msgstr ""
|
@@ -199,7 +199,7 @@ msgstr ""
|
|
199 |
msgid "Event Details/Single Event Page"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: app/features/contextual.php:166 app/features/mec/settings.php:
|
203 |
#: app/libraries/main.php:569
|
204 |
msgid "Currency Options"
|
205 |
msgstr ""
|
@@ -208,18 +208,18 @@ msgstr ""
|
|
208 |
msgid "Google Maps Options"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: app/features/contextual.php:244 app/features/mec/settings.php:
|
212 |
#: app/libraries/main.php:570
|
213 |
msgid "Google Recaptcha Options"
|
214 |
msgstr ""
|
215 |
|
216 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
217 |
-
#: app/libraries/main.php:
|
218 |
msgid "Countdown Options"
|
219 |
msgstr ""
|
220 |
|
221 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
222 |
-
#: app/libraries/main.php:
|
223 |
msgid "Social Networks"
|
224 |
msgstr ""
|
225 |
|
@@ -227,36 +227,36 @@ msgstr ""
|
|
227 |
msgid "Next Event Module"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: app/features/contextual.php:286 app/features/mec/settings.php:
|
231 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
232 |
msgid "Frontend Event Submission"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: app/features/contextual.php:298 app/features/events.php:
|
236 |
-
#: app/libraries/main.php:
|
237 |
msgid "Exceptional Days"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: app/features/contextual.php:308 app/features/events.php:
|
241 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
242 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
243 |
-
#: app/libraries/main.php:
|
244 |
-
#: app/libraries/main.php:
|
245 |
msgid "Booking"
|
246 |
msgstr ""
|
247 |
|
248 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
249 |
-
#: app/features/mec/booking.php:833 app/libraries/main.php:
|
250 |
msgid "Coupons"
|
251 |
msgstr ""
|
252 |
|
253 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
254 |
-
#: app/libraries/main.php:
|
255 |
msgid "BuddyPress Integration"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
259 |
-
#: app/libraries/main.php:
|
260 |
msgid "Mailchimp Integration"
|
261 |
msgstr ""
|
262 |
|
@@ -264,8 +264,8 @@ msgstr ""
|
|
264 |
msgid "MEC Activation"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: app/features/dlfile.php:121 app/features/events.php:
|
268 |
-
#: app/features/mec/booking.php:349 app/features/mec/settings.php:
|
269 |
msgid "Downloadable File"
|
270 |
msgstr ""
|
271 |
|
@@ -295,15 +295,15 @@ msgstr ""
|
|
295 |
msgid "File uploaded!"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: app/features/events.php:
|
299 |
-
#: app/features/mec/dashboard.php:265 app/libraries/main.php:
|
300 |
-
#: app/libraries/main.php:
|
301 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
302 |
#: app/skins/yearly_view/tpl.php:71
|
303 |
msgid "Events"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: app/features/events.php:
|
307 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
308 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
309 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
@@ -313,216 +313,216 @@ msgstr ""
|
|
313 |
msgid "Event"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: app/features/events.php:
|
317 |
msgid "Add Event"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: app/features/events.php:
|
321 |
msgid "Add New Event"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: app/features/events.php:
|
325 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
326 |
#: app/skins/map/tpl.php:89
|
327 |
msgid "No events found!"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: app/features/events.php:
|
331 |
msgid "All Events"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: app/features/events.php:
|
335 |
msgid "Edit Event"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: app/features/events.php:
|
339 |
#: app/features/popup/event.php:252
|
340 |
msgid "View Event"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: app/features/events.php:
|
344 |
msgid "No events found in Trash!"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: app/features/events.php:
|
348 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
349 |
#: app/features/mec/meta_boxes/search_form.php:31
|
350 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
351 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
352 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
353 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
354 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
355 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
356 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
357 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
358 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
359 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
360 |
-
#: app/features/mec/settings.php:
|
361 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
362 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
363 |
-
#: app/libraries/main.php:
|
364 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
365 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
366 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
367 |
msgid "Category"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: app/features/events.php:
|
371 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
372 |
#: app/features/mec/meta_boxes/filter.php:69
|
373 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
374 |
-
#: app/libraries/main.php:
|
375 |
msgid "Categories"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: app/features/events.php:
|
379 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
380 |
#: app/features/speakers.php:71
|
381 |
#, php-format
|
382 |
msgid "All %s"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: app/features/events.php:
|
386 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
387 |
#: app/features/speakers.php:72
|
388 |
#, php-format
|
389 |
msgid "Edit %s"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: app/features/events.php:
|
393 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
394 |
#: app/features/speakers.php:73
|
395 |
#, php-format
|
396 |
msgid "View %s"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: app/features/events.php:
|
400 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
401 |
#: app/features/speakers.php:74
|
402 |
#, php-format
|
403 |
msgid "Update %s"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: app/features/events.php:
|
407 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
408 |
#: app/features/speakers.php:75
|
409 |
#, php-format
|
410 |
msgid "Add New %s"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: app/features/events.php:
|
414 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
415 |
#: app/features/speakers.php:76
|
416 |
#, php-format
|
417 |
msgid "New %s Name"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: app/features/events.php:
|
421 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
422 |
#: app/features/speakers.php:77
|
423 |
#, php-format
|
424 |
msgid "Popular %s"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: app/features/events.php:
|
428 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
429 |
#: app/features/speakers.php:78
|
430 |
#, php-format
|
431 |
msgid "Search %s"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: app/features/events.php:
|
435 |
msgid "Category Icon"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: app/features/events.php:
|
439 |
msgid "Select icon"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: app/features/events.php:
|
443 |
msgid "Event Details"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: app/features/events.php:
|
447 |
msgid "FES Details"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: app/features/events.php:
|
451 |
msgid "Date And Time"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: app/features/events.php:
|
455 |
msgid "Event Repeating"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: app/features/events.php:
|
459 |
msgid "Event Data"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: app/features/events.php:
|
463 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
464 |
msgid "Hourly Schedule"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: app/features/events.php:
|
468 |
msgid "Location/Venue"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: app/features/events.php:
|
472 |
msgid "Links"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: app/features/events.php:
|
476 |
-
#: app/features/events.php:
|
477 |
-
#: app/features/ix.php:
|
478 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
479 |
#: app/features/mec/meta_boxes/search_form.php:46
|
480 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
481 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
482 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
483 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
484 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
485 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
486 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
487 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
488 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
489 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
490 |
-
#: app/features/mec/settings.php:
|
491 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
492 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
493 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
494 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
495 |
-
#: app/features/search.php:80 app/libraries/main.php:
|
496 |
-
#: app/libraries/main.php:
|
497 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
498 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
499 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
500 |
msgid "Organizer"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: app/features/events.php:
|
504 |
-
#: app/features/fes/form.php:836 app/features/mec/settings.php:
|
505 |
-
#: app/libraries/main.php:
|
506 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
507 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
508 |
#: app/skins/single/modern.php:237
|
509 |
msgid "Cost"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: app/features/events.php:
|
513 |
msgid "SEO Schema / Event Status"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: app/features/events.php:
|
517 |
msgid "Note for reviewer"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: app/features/events.php:
|
521 |
msgid "Guest Data"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: app/features/events.php:
|
525 |
-
#: app/features/events.php:
|
526 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
527 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
528 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
@@ -530,16 +530,16 @@ msgstr ""
|
|
530 |
msgid "Name"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: app/features/events.php:
|
534 |
-
#: app/features/events.php:
|
535 |
-
#: app/features/events.php:
|
536 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
537 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
538 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
539 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
540 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
541 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
542 |
-
#: app/libraries/main.php:
|
543 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
544 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
545 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
@@ -548,21 +548,21 @@ msgstr ""
|
|
548 |
msgid "Email"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: app/features/events.php:
|
552 |
msgid ""
|
553 |
"This event is imported from Google calendar so if you modify it, it would "
|
554 |
"overwrite in the next import from Google."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: app/features/events.php:
|
558 |
msgid "Date and Time"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: app/features/events.php:
|
562 |
-
#: app/features/events.php:
|
563 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
564 |
-
#: app/features/ix.php:
|
565 |
-
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:
|
566 |
#: app/features/mec/meta_boxes/display_options.php:52
|
567 |
#: app/features/mec/meta_boxes/display_options.php:298
|
568 |
#: app/features/mec/meta_boxes/display_options.php:555
|
@@ -582,49 +582,49 @@ msgstr ""
|
|
582 |
msgid "Start Date"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: app/features/events.php:
|
586 |
-
#: app/features/events.php:
|
587 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
588 |
-
#: app/features/ix.php:
|
589 |
-
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:
|
590 |
#: app/features/popup/event.php:92
|
591 |
msgid "End Date"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: app/features/events.php:
|
595 |
#: app/features/popup/event.php:109
|
596 |
msgid "All-day Event"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: app/features/events.php:
|
600 |
msgid "Hide Event Time"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/features/events.php:
|
604 |
msgid "Hide Event End Time"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: app/features/events.php:
|
608 |
#: app/features/fes/form.php:329
|
609 |
msgid "Notes on the time"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: app/features/events.php:
|
613 |
msgid ""
|
614 |
"It shows next to event time on the Single Event Page. You can enter notes "
|
615 |
"such as timezone in this field."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: app/features/events.php:
|
619 |
-
#: app/features/events.php:
|
620 |
-
#: app/features/events.php:
|
621 |
-
#: app/features/events.php:
|
622 |
-
#: app/features/events.php:
|
623 |
-
#: app/features/events.php:
|
624 |
-
#: app/features/events.php:
|
625 |
-
#: app/features/events.php:
|
626 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
627 |
-
#: app/features/locations.php:
|
628 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
629 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
630 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
@@ -677,17 +677,17 @@ msgstr ""
|
|
677 |
#: app/features/mec/notifications.php:950
|
678 |
#: app/features/mec/notifications.php:961
|
679 |
#: app/features/mec/notifications.php:1086
|
680 |
-
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:
|
681 |
-
#: app/features/mec/settings.php:
|
682 |
-
#: app/features/mec/settings.php:
|
683 |
-
#: app/features/mec/settings.php:
|
684 |
-
#: app/features/mec/settings.php:
|
685 |
-
#: app/features/mec/settings.php:
|
686 |
-
#: app/features/mec/settings.php:
|
687 |
-
#: app/features/mec/settings.php:
|
688 |
-
#: app/features/mec/settings.php:
|
689 |
-
#: app/features/mec/settings.php:
|
690 |
-
#: app/features/mec/settings.php:
|
691 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
692 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
693 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
@@ -701,212 +701,213 @@ msgstr ""
|
|
701 |
msgid "Read More"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: app/features/events.php:
|
705 |
msgid "Timezone"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: app/features/events.php:
|
709 |
-
#: app/features/events.php:
|
710 |
-
#: app/features/events.php:
|
711 |
-
#: app/features/events.php:
|
712 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
713 |
msgid "Inherit from global options"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: app/features/events.php:
|
717 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
718 |
msgid "Countdown Method"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: app/features/events.php:
|
722 |
msgid "Count to Event Start"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: app/features/events.php:
|
726 |
msgid "Count to Event End"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: app/features/events.php:
|
730 |
msgid "Repeating"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: app/features/events.php:
|
734 |
msgid "Event Repeating (Recurring events)"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: app/features/events.php:
|
738 |
msgid "Repeats"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: app/features/events.php:
|
742 |
-
#: app/features/mec.php:
|
743 |
#: app/skins/full_calendar/tpl.php:124
|
744 |
msgid "Daily"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: app/features/events.php:
|
748 |
msgid "Every Weekday"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: app/features/events.php:
|
752 |
msgid "Every Weekend"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: app/features/events.php:
|
756 |
msgid "Certain Weekdays"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: app/features/events.php:
|
760 |
#: app/skins/default_full_calendar/tpl.php:76
|
761 |
#: app/skins/full_calendar/tpl.php:123
|
762 |
msgid "Weekly"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: app/features/events.php:
|
766 |
-
#: app/features/mec.php:
|
767 |
#: app/skins/full_calendar/tpl.php:122
|
768 |
msgid "Monthly"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: app/features/events.php:
|
772 |
-
#: app/features/mec.php:
|
773 |
#: app/skins/full_calendar/tpl.php:121
|
774 |
msgid "Yearly"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: app/features/events.php:
|
778 |
msgid "Custom Days"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: app/features/events.php:
|
782 |
msgid "Advanced"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: app/features/events.php:
|
786 |
msgid "Repeat Interval"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: app/features/events.php:
|
790 |
msgid "Repeat interval"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: app/features/events.php:
|
794 |
msgid "Week Days"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: app/features/events.php:
|
798 |
msgid ""
|
799 |
"To add multiple occurrences per day you need Pro version of Modern Events "
|
800 |
"Calendar."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: app/features/events.php:
|
804 |
-
#: app/features/events.php:
|
805 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
806 |
#: app/features/ix/import_g_calendar.php:51
|
807 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
|
|
808 |
msgid "Start"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: app/features/events.php:
|
812 |
-
#: app/features/events.php:
|
813 |
-
#: app/features/events.php:
|
814 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
815 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
816 |
#: app/libraries/hourlyschedule.php:119
|
817 |
msgid "Add"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: app/features/events.php:
|
821 |
msgid "Custom Days Repeating"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: app/features/events.php:
|
825 |
msgid ""
|
826 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
827 |
"start and end dates should be the same, If you have a multiple day event, "
|
828 |
"the start and end dates must be commensurate with the initial date."
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: app/features/events.php:
|
832 |
-
#: app/features/events.php:
|
833 |
-
#: app/features/fes/form.php:417
|
834 |
msgid "End"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: app/features/events.php:
|
838 |
msgid "First"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: app/features/events.php:
|
842 |
msgid "Second"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: app/features/events.php:
|
846 |
msgid "Third"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: app/features/events.php:
|
850 |
msgid "Fourth"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: app/features/events.php:
|
854 |
msgid "Last"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: app/features/events.php:
|
858 |
msgid "Ends Repeat"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: app/features/events.php:
|
862 |
msgid "Never"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: app/features/events.php:
|
866 |
msgid "On"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: app/features/events.php:
|
870 |
#: app/features/mec/booking.php:154
|
871 |
msgid "After"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: app/features/events.php:
|
875 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
876 |
msgid "Occurrences times"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: app/features/events.php:
|
880 |
msgid ""
|
881 |
"The event will finish after certain repeats. For example if you set it to "
|
882 |
"10, the event will finish after 10 occurrences."
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: app/features/events.php:
|
886 |
msgid "Show only one occurrence of this event"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: app/features/events.php:
|
890 |
-
#: app/features/fes/form.php:833 app/features/ix.php:
|
891 |
-
#: app/features/ix.php:
|
892 |
-
#: app/libraries/main.php:
|
893 |
#: app/widgets/single.php:105
|
894 |
msgid "Event Cost"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: app/features/events.php:
|
898 |
msgid "Exceptional Days (Exclude Dates)"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: app/features/events.php:
|
902 |
msgid "Exclude certain days"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: app/features/events.php:
|
906 |
-
#: app/features/events.php:
|
907 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
908 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
909 |
-
#: app/features/wc.php:83 app/libraries/main.php:
|
910 |
#: app/modules/booking/steps/tickets.php:106
|
911 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
912 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
@@ -914,180 +915,183 @@ msgstr ""
|
|
914 |
msgid "Date"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: app/features/events.php:
|
918 |
msgid ""
|
919 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
920 |
"exclude only single day occurrences and you cannot exclude one day from "
|
921 |
"multiple day occurrences."
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: app/features/events.php:
|
925 |
msgid "Day 1"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: app/features/events.php:
|
929 |
-
#: app/features/mec/settings.php:
|
930 |
msgid "Event Links"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: app/features/events.php:
|
934 |
-
#: app/features/fes/form.php:812 app/features/mec/settings.php:
|
935 |
-
#: app/libraries/main.php:
|
936 |
msgid "Event Link"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: app/features/events.php:
|
940 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
941 |
msgid "eg. http://yoursite.com/your-event"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: app/features/events.php:
|
945 |
msgid ""
|
946 |
"If you fill it, it will replace the default event page link. Insert full "
|
947 |
"link including http(s):// - Also, if you use advertising URL, can use URL "
|
948 |
"Shortener"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: app/features/events.php:
|
952 |
msgid "URL Shortener"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: app/features/events.php:
|
956 |
-
#: app/features/fes/form.php:817 app/libraries/main.php:
|
957 |
-
#: app/libraries/main.php:
|
958 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
959 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
960 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
961 |
msgid "More Info"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: app/features/events.php:
|
965 |
msgid "More Information"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: app/features/events.php:
|
969 |
-
#: app/features/mec.php:
|
970 |
msgid "Current Window"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: app/features/events.php:
|
974 |
-
#: app/features/mec.php:
|
975 |
msgid "New Window"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: app/features/events.php:
|
979 |
msgid ""
|
980 |
"If you fill it, it will be shown in event details page as an optional link. "
|
981 |
"Insert full link including http(s)://"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: app/features/events.php:
|
985 |
msgid "Booking Options"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: app/features/events.php:
|
|
|
989 |
msgid "Total User Booking Limits"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: app/features/events.php:
|
993 |
-
#: app/libraries/book.php:63 app/libraries/main.php:
|
994 |
#: app/modules/booking/steps/tickets.php:137
|
995 |
#: app/modules/booking/steps/tickets.php:143
|
996 |
msgid "Tickets"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: app/features/events.php:
|
1000 |
msgid "Fees"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: app/features/events.php:
|
1004 |
-
#: app/features/mec/settings.php:
|
1005 |
msgid "Ticket Variations / Options"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: app/features/events.php:
|
1009 |
#: app/features/mec/support-page.php:118
|
1010 |
msgid "Organizer Payment"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: app/features/events.php:
|
1014 |
msgid "Total booking limit"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: app/features/events.php:
|
1018 |
-
#: app/features/events.php:
|
1019 |
#: app/modules/booking/steps/tickets.php:137
|
1020 |
#: app/modules/booking/steps/tickets.php:143
|
1021 |
#: app/skins/available_spot/tpl.php:140
|
1022 |
msgid "Unlimited"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: app/features/events.php:
|
1026 |
msgid ""
|
1027 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1028 |
"limitation number."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: app/features/events.php:
|
1032 |
msgid "Read About A Booking System"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: app/features/events.php:
|
1036 |
msgid "100"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: app/features/events.php:
|
1040 |
msgid "Discount per user roles"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: app/features/events.php:
|
1044 |
msgid "5"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: app/features/events.php:
|
|
|
1048 |
msgid "Book All Occurrences"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: app/features/events.php:
|
1052 |
msgid "Sell all occurrences by one booking"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: app/features/events.php:
|
1056 |
msgid ""
|
1057 |
"If you have a series of events and you want to sell all of them at once, "
|
1058 |
"this option is for you! For example a weekly yoga course or something "
|
1059 |
"similar."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: app/features/events.php:
|
|
|
1063 |
msgid "Interval Options"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: app/features/events.php:
|
1067 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1068 |
msgid "Show Booking Form Interval"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: app/features/events.php:
|
1072 |
msgid "Minutes (e.g 5)"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: app/features/events.php:
|
1076 |
msgid ""
|
1077 |
"You can show booking form only at certain times before event start. If you "
|
1078 |
"set this option to 30 then booking form will open only 30 minutes before "
|
1079 |
"starting the event! One day is 1440 minutes."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: app/features/events.php:
|
1083 |
msgid "Automatic Approval"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: app/features/events.php:
|
1087 |
msgid "Email Verification"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: app/features/events.php:
|
1091 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1092 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1093 |
#: app/features/mec/booking.php:868
|
@@ -1099,330 +1103,326 @@ msgstr ""
|
|
1099 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1100 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1101 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1102 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1103 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1104 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1105 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1106 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1107 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1108 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1109 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1110 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1111 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1112 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1113 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1114 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1115 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1116 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1117 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1118 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1119 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1120 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1121 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1122 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1123 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1124 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1125 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1126 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1127 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1128 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1129 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1130 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1131 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1132 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1133 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1134 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1135 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1136 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1137 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1138 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1139 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1140 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1141 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1142 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1143 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1144 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1145 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1146 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1147 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1148 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1149 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1150 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1151 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1152 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1153 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1154 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1155 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1156 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1157 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1158 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1159 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1160 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1161 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1162 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1163 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1164 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1165 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1166 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1167 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1168 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1169 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1170 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1171 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1172 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1173 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1174 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1175 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1176 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1177 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1178 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1179 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1180 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1181 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1182 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1183 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1184 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1185 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1186 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1187 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1188 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1189 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1190 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1191 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1192 |
-
#: app/features/mec/modules.php:124 app/features/mec/settings.php:
|
1193 |
-
#: app/features/mec/settings.php:
|
1194 |
msgid "Disabled"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: app/features/events.php:
|
1198 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1199 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1200 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1201 |
-
#: app/features/mec/settings.php:
|
1202 |
msgid "Enabled"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: app/features/events.php:
|
1206 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1207 |
-
#: app/libraries/main.php:
|
1208 |
msgid "Booking Confirmation"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: app/features/events.php:
|
1212 |
-
msgid "Total user booking limits"
|
1213 |
-
msgstr ""
|
1214 |
-
|
1215 |
-
#: app/features/events.php:1621
|
1216 |
msgid "12"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: app/features/events.php:
|
1220 |
msgid "Disabled Gateways"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: app/features/events.php:
|
1224 |
msgid ""
|
1225 |
"You can disable some of the following payment gateways by checking them "
|
1226 |
"otherwise they will be enabled."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: app/features/events.php:
|
1230 |
msgid ""
|
1231 |
"You're translating an event so MEC will use the original event for tickets "
|
1232 |
"and booking. You can only translate the ticket name and description. Please "
|
1233 |
"define exact tickets that you defined in the original event here."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: app/features/events.php:
|
1237 |
msgid "Add Ticket"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: app/features/events.php:
|
1241 |
msgid "Ticket ID"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: app/features/events.php:
|
1245 |
-
#: app/features/events.php:
|
1246 |
-
#: app/features/ix.php:
|
1247 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1248 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1249 |
msgid "ID"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: app/features/events.php:
|
1253 |
msgid "Ticket Name"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: app/features/events.php:
|
1257 |
-
#: app/features/events.php:
|
1258 |
-
#: app/features/ix.php:
|
1259 |
msgid "Start Time"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: app/features/events.php:
|
1263 |
-
#: app/features/events.php:
|
1264 |
-
#: app/features/ix.php:
|
1265 |
msgid "End Time"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: app/features/events.php:
|
1269 |
-
#: app/features/events.php:
|
1270 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1271 |
msgid "Description"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: app/features/events.php:
|
1275 |
-
#: app/features/events.php:
|
1276 |
msgid "Private Description"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: app/features/events.php:
|
1280 |
#, php-format
|
1281 |
msgid ""
|
1282 |
"You can show it on the email notifications by placing "
|
1283 |
"%%ticket_private_description%% into the email template."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: app/features/events.php:
|
1287 |
-
#: app/features/events.php:
|
1288 |
-
#: app/features/events.php:
|
1289 |
-
#: app/features/events.php:
|
1290 |
-
#: app/features/events.php:
|
1291 |
-
#: app/features/events.php:
|
1292 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1293 |
#: app/features/mec/booking.php:582
|
1294 |
msgid "Price"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: app/features/events.php:
|
1298 |
msgid ""
|
1299 |
"Insert 0 for free ticket. Only numbers please — Enter only the price without "
|
1300 |
"any symbols or characters."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: app/features/events.php:
|
1304 |
-
#: app/features/events.php:
|
1305 |
msgid "Price Label"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: app/features/events.php:
|
1309 |
msgid "For showing on website. e.g. $15"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: app/features/events.php:
|
1313 |
msgid "Available Tickets"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: app/features/events.php:
|
1317 |
msgid "Minimum Ticket e.g. 3"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: app/features/events.php:
|
1321 |
msgid "MinimumTicket"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: app/features/events.php:
|
1325 |
msgid "Set a number for the minimum ticket reservation possible"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: app/features/events.php:
|
1329 |
msgid "e.g. 0"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: app/features/events.php:
|
1333 |
msgid "Day"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: app/features/events.php:
|
1337 |
msgid "Hour"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: app/features/events.php:
|
1341 |
#, php-format
|
1342 |
msgid "Stop selling ticket %s before event start."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: app/features/events.php:
|
1346 |
msgid "Price per Date"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: app/features/events.php:
|
1350 |
-
#: app/features/events.php:
|
1351 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1352 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1353 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1354 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1355 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1356 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1357 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1358 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1359 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1360 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1361 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1362 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1363 |
-
#: app/features/mec/settings.php:
|
1364 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1365 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1366 |
msgid "Label"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: app/features/events.php:
|
1370 |
-
#: app/features/events.php:
|
1371 |
-
#: app/features/events.php:
|
1372 |
-
#: app/features/events.php:
|
1373 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1374 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1375 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1376 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1377 |
-
#: app/libraries/main.php:
|
1378 |
-
#: app/libraries/main.php:
|
1379 |
-
#: app/libraries/main.php:
|
1380 |
-
#: app/libraries/main.php:
|
1381 |
-
#: app/libraries/main.php:
|
1382 |
-
#: app/libraries/main.php:
|
1383 |
-
#: app/libraries/main.php:
|
1384 |
-
#: app/libraries/main.php:
|
1385 |
msgid "Remove"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: app/features/events.php:
|
1389 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1390 |
msgid "Fee Title"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: app/features/events.php:
|
1394 |
-
#: app/features/events.php:
|
1395 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1396 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1397 |
msgid "Amount"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: app/features/events.php:
|
1401 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1402 |
msgid ""
|
1403 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1404 |
"otherwise considered as percentage"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: app/features/events.php:
|
1408 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1409 |
msgid "Percent"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: app/features/events.php:
|
1413 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1414 |
msgid "Amount (Per Ticket)"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: app/features/events.php:
|
1418 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1419 |
msgid "Amount (Per Booking)"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: app/features/events.php:
|
1423 |
-
#: app/features/events.php:
|
1424 |
-
#: app/features/fes/form.php:256 app/features/ix.php:
|
1425 |
-
#: app/features/ix.php:
|
1426 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1427 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1428 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
@@ -1430,83 +1430,83 @@ msgstr ""
|
|
1430 |
msgid "Title"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: app/features/events.php:
|
1434 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1435 |
msgid "Option Price"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: app/features/events.php:
|
1439 |
-
#: app/features/events.php:
|
1440 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1441 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1442 |
msgid "Maximum Per Ticket"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: app/features/events.php:
|
1446 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1447 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: app/features/events.php:
|
1451 |
msgid ""
|
1452 |
"You're translating an event so MEC will use the original event for booking "
|
1453 |
"form. You can only translate the field name and options. Please define exact "
|
1454 |
"fields that you defined in the original event here."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: app/features/events.php:
|
1458 |
msgid "Per Attendee Fields"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: app/features/events.php:
|
1462 |
-
#: app/libraries/main.php:
|
1463 |
msgid "MEC Name"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: app/features/events.php:
|
1467 |
-
#: app/libraries/main.php:
|
1468 |
msgid "MEC Email"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: app/features/events.php:
|
1472 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1473 |
-
#: app/features/mec/single.php:190 app/libraries/main.php:
|
1474 |
msgid "Text"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: app/features/events.php:
|
1478 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1479 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1480 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1481 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1482 |
-
#: app/libraries/main.php:
|
1483 |
msgid "Tel"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: app/features/events.php:
|
1487 |
-
#: app/libraries/main.php:
|
1488 |
msgid "File"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: app/features/events.php:
|
1492 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1493 |
-
#: app/features/mec/single.php:195 app/libraries/main.php:
|
1494 |
msgid "Textarea"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: app/features/events.php:
|
1498 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1499 |
-
#: app/features/mec/single.php:197 app/libraries/main.php:
|
1500 |
msgid "Checkboxes"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: app/features/events.php:
|
1504 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1505 |
-
#: app/features/mec/single.php:198 app/libraries/main.php:
|
1506 |
msgid "Radio Buttons"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: app/features/events.php:
|
1510 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1511 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1512 |
#: app/features/mec/meta_boxes/search_form.php:41
|
@@ -1514,140 +1514,137 @@ msgstr ""
|
|
1514 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1515 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1516 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1517 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1518 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1519 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1520 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1521 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1522 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1523 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1524 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1525 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1526 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1527 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1528 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1529 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1530 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1531 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1532 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1533 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1534 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1535 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1536 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1537 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1538 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1539 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1540 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1541 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1542 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1543 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1544 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1545 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1546 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1547 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1548 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1549 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1550 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1551 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1552 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1553 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1554 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1555 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1556 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1557 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1558 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1559 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1560 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1561 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1562 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1563 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1564 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1565 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1566 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1567 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1568 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1569 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1570 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1571 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1572 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1573 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1574 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1575 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1576 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1577 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1578 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1579 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1580 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1581 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1582 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1583 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1584 |
-
#: app/features/mec/
|
1585 |
-
#: app/features/mec/meta_boxes/search_form.php:799
|
1586 |
-
#: app/features/mec/meta_boxes/search_form.php:813
|
1587 |
-
#: app/features/mec/single.php:199 app/libraries/main.php:3712
|
1588 |
msgid "Dropdown"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: app/features/events.php:
|
1592 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1593 |
-
#: app/libraries/main.php:
|
1594 |
msgid "Agreement"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: app/features/events.php:
|
1598 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1599 |
-
#: app/features/mec/single.php:196 app/libraries/main.php:
|
1600 |
msgid "Paragraph"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: app/features/events.php:
|
1604 |
msgid "Fixed Fields"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: app/features/events.php:
|
1608 |
-
#: app/features/events.php:
|
1609 |
#, php-format
|
1610 |
msgid "Show all %s"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: app/features/events.php:
|
1614 |
msgid "labels"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: app/features/events.php:
|
1618 |
msgid "locations"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: app/features/events.php:
|
1622 |
msgid "organizers"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: app/features/events.php:
|
1626 |
msgid "Attendees List"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: app/features/events.php:
|
1630 |
-
#: app/features/ix.php:
|
1631 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1632 |
-
#: app/features/locations.php:
|
1633 |
-
#: app/features/locations.php:
|
1634 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1635 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1636 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1637 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1638 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1639 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1640 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1641 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1642 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1643 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1644 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1645 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1646 |
-
#: app/features/mec/settings.php:
|
1647 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1648 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1649 |
-
#: app/libraries/main.php:
|
1650 |
-
#: app/libraries/main.php:
|
1651 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1652 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1653 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
@@ -1655,101 +1652,101 @@ msgstr ""
|
|
1655 |
msgid "Location"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: app/features/events.php:
|
1659 |
msgid "Repeat"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: app/features/events.php:
|
1663 |
msgid "Author"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: app/features/events.php:
|
1667 |
msgid "iCal / Outlook Export"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: app/features/events.php:
|
1671 |
msgid "CSV Export"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: app/features/events.php:
|
1675 |
msgid "MS Excel Export"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: app/features/events.php:
|
1679 |
msgid "XML Export"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: app/features/events.php:
|
1683 |
msgid "JSON Export"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: app/features/events.php:
|
1687 |
-
#: app/features/events.php:
|
1688 |
msgid "Duplicate"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: app/features/events.php:
|
1692 |
-
#: app/features/ix.php:
|
1693 |
msgid "Link"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: app/features/events.php:
|
1697 |
-
#: app/features/ix.php:
|
1698 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1699 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1700 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1701 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1702 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1703 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1704 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1705 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1706 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1707 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1708 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1709 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1710 |
msgid "Address"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: app/features/events.php:
|
1714 |
#, php-format
|
1715 |
msgid "%s Tel"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: app/features/events.php:
|
1719 |
#, php-format
|
1720 |
msgid "%s Email"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: app/features/events.php:
|
1724 |
-
#: app/features/mec/settings.php:
|
1725 |
msgid "Featured Image"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: app/features/events.php:
|
1729 |
-
#: app/features/profile/profile.php:183 app/libraries/main.php:
|
1730 |
-
#: app/libraries/main.php:
|
1731 |
msgid "Ticket"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: app/features/events.php:
|
1735 |
msgid "Variations"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: app/features/events.php:
|
1739 |
msgid "Unknown"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: app/features/events.php:
|
1743 |
msgid ""
|
1744 |
"If you want to send an email, first select your attendees and then click in "
|
1745 |
"the button below, please."
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: app/features/events.php:
|
1749 |
msgid "Send Email"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: app/features/events.php:
|
1753 |
msgid "No Attendees Found!"
|
1754 |
msgstr ""
|
1755 |
|
@@ -1760,10 +1757,12 @@ msgstr ""
|
|
1760 |
|
1761 |
#: app/features/fes.php:94 app/features/fes.php:175
|
1762 |
#: app/features/login/login.php:19 app/features/profile.php:74
|
|
|
1763 |
msgid "Login"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
#: app/features/fes.php:94 app/features/fes.php:175 app/features/profile.php:74
|
|
|
1767 |
msgid "Register"
|
1768 |
msgstr ""
|
1769 |
|
@@ -1788,8 +1787,8 @@ msgstr ""
|
|
1788 |
msgid "Order Time"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:
|
1792 |
-
#: app/libraries/main.php:
|
1793 |
msgid "Transaction ID"
|
1794 |
msgstr ""
|
1795 |
|
@@ -1797,7 +1796,7 @@ msgstr ""
|
|
1797 |
msgid "Total Price"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: app/features/fes.php:243 app/libraries/main.php:
|
1801 |
msgid "Gateway"
|
1802 |
msgstr ""
|
1803 |
|
@@ -1863,8 +1862,8 @@ msgstr ""
|
|
1863 |
msgid "Go back to events list"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: app/features/fes/form.php:264 app/features/mec/settings.php:
|
1867 |
-
#: app/features/mec/settings.php:
|
1868 |
msgid "Excerpt"
|
1869 |
msgstr ""
|
1870 |
|
@@ -1956,8 +1955,8 @@ msgstr ""
|
|
1956 |
#: app/features/fes/form.php:891 app/features/labels.php:61
|
1957 |
#: app/features/labels.php:221 app/features/mec.php:460
|
1958 |
#: app/features/mec/meta_boxes/filter.php:72
|
1959 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1960 |
-
#: app/libraries/main.php:
|
1961 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
1962 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
1963 |
msgid "Labels"
|
@@ -1974,11 +1973,11 @@ msgid "Insert your desired tags, comma separated."
|
|
1974 |
msgstr ""
|
1975 |
|
1976 |
#: app/features/fes/form.php:959 app/features/mec.php:467
|
1977 |
-
#: app/features/mec/modules.php:51 app/features/mec/settings.php:
|
1978 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
1979 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
1980 |
-
#: app/libraries/main.php:
|
1981 |
-
#: app/libraries/main.php:
|
1982 |
msgid "Speakers"
|
1983 |
msgstr ""
|
1984 |
|
@@ -1990,7 +1989,7 @@ msgstr ""
|
|
1990 |
msgid "Separate names with commas: Justin, Chris"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: app/features/fes/form.php:1003 app/modules/booking/steps/form.php:
|
1994 |
msgid "Submit"
|
1995 |
msgstr ""
|
1996 |
|
@@ -2028,7 +2027,7 @@ msgid "MEC - Import / Export"
|
|
2028 |
msgstr ""
|
2029 |
|
2030 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2031 |
-
#: app/libraries/main.php:
|
2032 |
msgid "Import / Export"
|
2033 |
msgstr ""
|
2034 |
|
@@ -2044,27 +2043,27 @@ msgstr ""
|
|
2044 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: app/features/ix.php:265 app/libraries/main.php:
|
2048 |
-
#: app/libraries/main.php:
|
2049 |
msgid "Confirmed"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: app/features/ix.php:266 app/libraries/main.php:
|
2053 |
-
#: app/libraries/main.php:
|
2054 |
msgid "Rejected"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
#: app/features/ix.php:270 app/features/mec/booking.php:1011
|
2058 |
#: app/features/mec/booking.php:1033 app/features/mec/modules.php:440
|
2059 |
#: app/features/mec/modules.php:462 app/features/mec/notifications.php:1312
|
2060 |
-
#: app/features/mec/notifications.php:1334 app/features/mec/settings.php:
|
2061 |
-
#: app/features/mec/settings.php:
|
2062 |
-
#: app/features/mec/single.php:468 app/libraries/main.php:
|
2063 |
msgid "Verified"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2067 |
-
#: app/features/labels.php:143 app/libraries/main.php:
|
2068 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2069 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2070 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
@@ -2098,81 +2097,81 @@ msgstr ""
|
|
2098 |
msgid "The events are imported successfully!"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: app/features/ix.php:
|
2102 |
msgid "Third Party plugin is not installed and activated!"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: app/features/ix.php:
|
2106 |
msgid "Third Party plugin is invalid!"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: app/features/ix.php:
|
2110 |
msgid "API key and Calendar ID are required!"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: app/features/ix.php:
|
2114 |
msgid "Please select events to import!"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: app/features/ix.php:
|
2118 |
msgid "API key and Group URL are required!"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: app/features/ix.php:
|
2122 |
msgid "Check at Meetup"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: app/features/ix.php:
|
2126 |
msgid "Organizer Tel"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: app/features/ix.php:
|
2130 |
msgid "Organizer Email"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: app/features/ix.php:
|
2134 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: app/features/ix.php:
|
2138 |
#, php-format
|
2139 |
msgid "All seems good! Please click %s to authenticate your app."
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: app/features/ix.php:
|
2143 |
msgid "here"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: app/features/ix.php:
|
2147 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: app/features/ix.php:
|
2151 |
#, php-format
|
2152 |
msgid "%s events added to Google Calendar with success."
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: app/features/ix.php:
|
2156 |
#, php-format
|
2157 |
msgid "%s Updated previously added events."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: app/features/ix.php:
|
2161 |
#, php-format
|
2162 |
msgid "%s events failed to add for following reasons: %s"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
-
#: app/features/ix.php:
|
2166 |
msgid "Please insert your Facebook page's link."
|
2167 |
msgstr ""
|
2168 |
|
2169 |
-
#: app/features/ix.php:
|
2170 |
msgid ""
|
2171 |
"We were not able to recognize your Facebook page. Please check again and "
|
2172 |
"provide a valid link."
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: app/features/ix.php:
|
2176 |
msgid "Please insert your facebook page's link."
|
2177 |
msgstr ""
|
2178 |
|
@@ -2339,7 +2338,7 @@ msgstr ""
|
|
2339 |
|
2340 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1013
|
2341 |
#: app/features/mec/modules.php:442 app/features/mec/notifications.php:1314
|
2342 |
-
#: app/features/mec/settings.php:
|
2343 |
msgid "Checking ..."
|
2344 |
msgstr ""
|
2345 |
|
@@ -2788,15 +2787,15 @@ msgstr ""
|
|
2788 |
msgid "Slug"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2792 |
#, php-format
|
2793 |
msgid "Event %s"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
#: app/features/locations.php:59 app/features/mec.php:461
|
2797 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
2798 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2799 |
-
#: app/libraries/main.php:
|
2800 |
msgid "Locations"
|
2801 |
msgstr ""
|
2802 |
|
@@ -2805,7 +2804,7 @@ msgid "Enter the location address"
|
|
2805 |
msgstr ""
|
2806 |
|
2807 |
#: app/features/locations.php:130 app/features/locations.php:196
|
2808 |
-
#: app/features/locations.php:
|
2809 |
msgid "Latitude"
|
2810 |
msgstr ""
|
2811 |
|
@@ -2814,7 +2813,7 @@ msgid "Geo latitude (Optional)"
|
|
2814 |
msgstr ""
|
2815 |
|
2816 |
#: app/features/locations.php:138 app/features/locations.php:200
|
2817 |
-
#: app/features/locations.php:
|
2818 |
msgid "Longitude"
|
2819 |
msgstr ""
|
2820 |
|
@@ -2823,7 +2822,7 @@ msgid "Geo longitude (Optional)"
|
|
2823 |
msgstr ""
|
2824 |
|
2825 |
#: app/features/locations.php:146 app/features/locations.php:204
|
2826 |
-
#: app/features/locations.php:
|
2827 |
msgid "Location Website"
|
2828 |
msgstr ""
|
2829 |
|
@@ -2844,47 +2843,47 @@ msgid "Upload/Add image"
|
|
2844 |
msgstr ""
|
2845 |
|
2846 |
#: app/features/locations.php:161 app/features/locations.php:213
|
2847 |
-
#: app/features/locations.php:
|
2848 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2849 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2850 |
#: app/features/speakers.php:181 app/features/speakers.php:232
|
2851 |
msgid "Remove image"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: app/features/locations.php:
|
2855 |
msgid "Hide location"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: app/features/locations.php:
|
2859 |
msgid "Insert a new location"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: app/features/locations.php:
|
2863 |
msgid "Choose one of saved locations or insert new one below."
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: app/features/locations.php:
|
2867 |
msgid "Location Name"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: app/features/locations.php:
|
2871 |
msgid "eg. City Hall"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: app/features/locations.php:
|
2875 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
2876 |
msgid "Event Location"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: app/features/locations.php:
|
2880 |
msgid "eg. City hall, Manhattan, New York"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: app/features/locations.php:
|
2884 |
msgid "Latitude/Longitude"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: app/features/locations.php:
|
2888 |
msgid ""
|
2889 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2890 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2893,25 +2892,25 @@ msgid ""
|
|
2893 |
"the location on the map to find lat long coordinates."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: app/features/locations.php:
|
2897 |
msgid "Get Latitude and Longitude"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: app/features/locations.php:
|
2901 |
#: app/features/popup/event.php:202
|
2902 |
msgid "Choose image"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: app/features/locations.php:
|
2906 |
msgid "Don't show map in single event page"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: app/features/locations.php:
|
2910 |
-
#: app/libraries/main.php:
|
2911 |
msgid "Other Locations"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: app/features/locations.php:
|
2915 |
msgid ""
|
2916 |
"You can select extra locations in addition to main location if you like."
|
2917 |
msgstr ""
|
@@ -2928,7 +2927,7 @@ msgstr ""
|
|
2928 |
msgid "Login successful, redirecting..."
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: app/features/login/login.php:11 app/modules/booking/steps/form.php:
|
2932 |
msgid "Password"
|
2933 |
msgstr ""
|
2934 |
|
@@ -2980,7 +2979,7 @@ msgstr ""
|
|
2980 |
#: app/features/mec.php:462 app/features/mec/dashboard.php:286
|
2981 |
#: app/features/mec/meta_boxes/filter.php:71
|
2982 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2983 |
-
#: app/libraries/main.php:
|
2984 |
msgid "Organizers"
|
2985 |
msgstr ""
|
2986 |
|
@@ -3013,7 +3012,7 @@ msgstr ""
|
|
3013 |
msgid "MEC - Go Pro"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: app/features/mec.php:479 app/features/mec.php:
|
3017 |
#: app/features/mec/go-pro.php:9
|
3018 |
msgid "Go Pro"
|
3019 |
msgstr ""
|
@@ -3054,65 +3053,65 @@ msgstr ""
|
|
3054 |
msgid "Search Form"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: app/features/mec.php:
|
3058 |
msgid "Display content's images as Popup"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: app/features/mec.php:
|
3062 |
msgid "Single Event Display Method"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: app/features/mec.php:
|
3066 |
msgid "Modal Popup"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: app/features/mec.php:
|
3070 |
msgid "Disable Link"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: app/features/mec.php:
|
3074 |
msgid "Booking Button / Icon"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: app/features/mec.php:
|
3078 |
msgid "Display Organizers"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: app/features/mec.php:
|
3082 |
msgid "Total Bookings"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: app/features/mec.php:
|
3086 |
msgid "Modern Events Calendar (Lite)"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: app/features/mec.php:
|
3090 |
-
#: app/features/mec/settings.php:
|
3091 |
msgid "Upcoming Events"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: app/features/mec.php:
|
3095 |
msgid "News & Updates"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: app/features/mec.php:
|
3099 |
msgid "Blog"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: app/features/mec.php:
|
3103 |
msgid "Help"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: app/features/mec.php:
|
3107 |
#, php-format
|
3108 |
msgid "Total Sells (%s)"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
-
#: app/features/mec.php:
|
3112 |
msgid "This Month"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
-
#: app/features/mec.php:
|
3116 |
msgid "Last Month"
|
3117 |
msgstr ""
|
3118 |
|
@@ -3120,27 +3119,27 @@ msgstr ""
|
|
3120 |
msgid "This Year"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: app/features/mec.php:
|
3124 |
msgid "Last Year"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
-
#: app/features/mec.php:
|
3128 |
msgid "Bar"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
-
#: app/features/mec.php:
|
3132 |
msgid "Line"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
-
#: app/features/mec.php:
|
3136 |
msgid "Filter"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
-
#: app/features/mec.php:
|
3140 |
msgid "Print Calendar"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#: app/features/mec.php:
|
3144 |
msgid "Display Events"
|
3145 |
msgstr ""
|
3146 |
|
@@ -3163,7 +3162,7 @@ msgstr ""
|
|
3163 |
|
3164 |
#: app/features/mec/booking.php:78 app/features/mec/messages.php:13
|
3165 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3166 |
-
#: app/features/mec/settings.php:
|
3167 |
#: app/features/mec/styling.php:35
|
3168 |
msgid "Search..."
|
3169 |
msgstr ""
|
@@ -3180,9 +3179,9 @@ msgstr ""
|
|
3180 |
#: app/features/mec/notifications.php:1213
|
3181 |
#: app/features/mec/notifications.php:1225
|
3182 |
#: app/features/mec/notifications.php:1331
|
3183 |
-
#: app/features/mec/notifications.php:1345 app/features/mec/settings.php:
|
3184 |
-
#: app/features/mec/settings.php:
|
3185 |
-
#: app/features/mec/settings.php:
|
3186 |
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3187 |
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3188 |
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
@@ -3274,7 +3273,7 @@ msgid "User Registration"
|
|
3274 |
msgstr ""
|
3275 |
|
3276 |
#: app/features/mec/booking.php:168 app/features/mec/booking.php:176
|
3277 |
-
#: app/modules/booking/steps/form.php:
|
3278 |
msgid "Registration"
|
3279 |
msgstr ""
|
3280 |
|
@@ -3370,8 +3369,8 @@ msgid ""
|
|
3370 |
msgstr ""
|
3371 |
|
3372 |
#: app/features/mec/booking.php:267 app/features/mec/booking.php:269
|
3373 |
-
#: app/features/mec/booking.php:279 app/features/mec/settings.php:
|
3374 |
-
#: app/features/mec/settings.php:
|
3375 |
msgid "Thank You Page"
|
3376 |
msgstr ""
|
3377 |
|
@@ -3382,15 +3381,15 @@ msgid ""
|
|
3382 |
msgstr ""
|
3383 |
|
3384 |
#: app/features/mec/booking.php:287 app/features/mec/booking.php:292
|
3385 |
-
#: app/features/mec/settings.php:
|
3386 |
msgid "Thank You Page Time Interval"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: app/features/mec/booking.php:289 app/features/mec/settings.php:
|
3390 |
msgid "2000 mean 2 seconds"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: app/features/mec/booking.php:293 app/features/mec/settings.php:
|
3394 |
msgid ""
|
3395 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3396 |
"2000 means 2 seconds."
|
@@ -3456,7 +3455,7 @@ msgstr ""
|
|
3456 |
msgid "Send confirmation email in auto confirmation mode"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: app/features/mec/booking.php:413 app/libraries/main.php:
|
3460 |
msgid "Booking Shortcode"
|
3461 |
msgstr ""
|
3462 |
|
@@ -3488,7 +3487,7 @@ msgid ""
|
|
3488 |
msgstr ""
|
3489 |
|
3490 |
#: app/features/mec/booking.php:447 app/features/mec/booking.php:835
|
3491 |
-
#: app/libraries/main.php:
|
3492 |
msgid "Taxes / Fees"
|
3493 |
msgstr ""
|
3494 |
|
@@ -3500,7 +3499,7 @@ msgstr ""
|
|
3500 |
msgid "Add Fee"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: app/features/mec/booking.php:524 app/libraries/main.php:
|
3504 |
msgid "Ticket Variations & Options"
|
3505 |
msgstr ""
|
3506 |
|
@@ -3626,20 +3625,20 @@ msgstr ""
|
|
3626 |
|
3627 |
#: app/features/mec/booking.php:1008 app/features/mec/messages.php:78
|
3628 |
#: app/features/mec/modules.php:437 app/features/mec/notifications.php:1309
|
3629 |
-
#: app/features/mec/settings.php:
|
3630 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:323
|
3631 |
msgid "Saved"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
#: app/features/mec/booking.php:1009 app/features/mec/messages.php:79
|
3635 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1310
|
3636 |
-
#: app/features/mec/settings.php:
|
3637 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:324
|
3638 |
msgid "Settings Saved!"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#: app/features/mec/booking.php:1035 app/features/mec/modules.php:464
|
3642 |
-
#: app/features/mec/notifications.php:1336 app/features/mec/settings.php:
|
3643 |
#: app/features/mec/single.php:470
|
3644 |
msgid "Please Refresh Page"
|
3645 |
msgstr ""
|
@@ -3756,7 +3755,7 @@ msgid "Download Settings"
|
|
3756 |
msgstr ""
|
3757 |
|
3758 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
3759 |
-
#: app/features/mec/support.php:66 app/libraries/main.php:
|
3760 |
msgid "Messages"
|
3761 |
msgstr ""
|
3762 |
|
@@ -3777,9 +3776,9 @@ msgstr ""
|
|
3777 |
#: app/features/mec/meta_boxes/display_options.php:953
|
3778 |
#: app/features/mec/meta_boxes/display_options.php:1284
|
3779 |
#: app/features/mec/meta_boxes/display_options.php:1575
|
3780 |
-
#: app/features/mec/settings.php:
|
3781 |
-
#: app/features/mec/settings.php:
|
3782 |
-
#: app/features/mec/settings.php:
|
3783 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
3784 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
3785 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
@@ -3790,8 +3789,8 @@ msgstr ""
|
|
3790 |
|
3791 |
#: app/features/mec/meta_boxes/display_options.php:44
|
3792 |
#: app/features/mec/meta_boxes/display_options.php:289
|
3793 |
-
#: app/features/mec/settings.php:
|
3794 |
-
#: app/features/mec/settings.php:
|
3795 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
3796 |
msgid "Minimal"
|
3797 |
msgstr ""
|
@@ -3802,10 +3801,10 @@ msgstr ""
|
|
3802 |
#: app/features/mec/meta_boxes/display_options.php:955
|
3803 |
#: app/features/mec/meta_boxes/display_options.php:1282
|
3804 |
#: app/features/mec/meta_boxes/display_options.php:1577
|
3805 |
-
#: app/features/mec/settings.php:
|
3806 |
-
#: app/features/mec/settings.php:
|
3807 |
-
#: app/features/mec/settings.php:
|
3808 |
-
#: app/features/mec/settings.php:
|
3809 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
3810 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
3811 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
@@ -3813,13 +3812,13 @@ msgid "Modern"
|
|
3813 |
msgstr ""
|
3814 |
|
3815 |
#: app/features/mec/meta_boxes/display_options.php:46
|
3816 |
-
#: app/features/mec/settings.php:
|
3817 |
#: app/features/popup/shortcode.php:83
|
3818 |
msgid "Standard"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
#: app/features/mec/meta_boxes/display_options.php:47
|
3822 |
-
#: app/features/mec/settings.php:
|
3823 |
#: app/features/popup/shortcode.php:88
|
3824 |
msgid "Accordion"
|
3825 |
msgstr ""
|
@@ -4201,9 +4200,9 @@ msgstr ""
|
|
4201 |
#: app/features/mec/meta_boxes/display_options.php:954
|
4202 |
#: app/features/mec/meta_boxes/display_options.php:1283
|
4203 |
#: app/features/mec/meta_boxes/display_options.php:1576
|
4204 |
-
#: app/features/mec/settings.php:
|
4205 |
-
#: app/features/mec/settings.php:
|
4206 |
-
#: app/features/mec/settings.php:
|
4207 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4208 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4209 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
@@ -4213,8 +4212,8 @@ msgstr ""
|
|
4213 |
#: app/features/mec/meta_boxes/display_options.php:291
|
4214 |
#: app/features/mec/meta_boxes/display_options.php:693
|
4215 |
#: app/features/mec/meta_boxes/display_options.php:957
|
4216 |
-
#: app/features/mec/settings.php:
|
4217 |
-
#: app/features/mec/settings.php:
|
4218 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4219 |
#: app/features/popup/shortcode.php:219
|
4220 |
msgid "Simple"
|
@@ -4228,8 +4227,8 @@ msgstr ""
|
|
4228 |
#: app/features/mec/meta_boxes/display_options.php:293
|
4229 |
#: app/features/mec/meta_boxes/display_options.php:692
|
4230 |
#: app/features/mec/meta_boxes/display_options.php:956
|
4231 |
-
#: app/features/mec/settings.php:
|
4232 |
-
#: app/features/mec/settings.php:
|
4233 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4234 |
#: app/features/popup/shortcode.php:214
|
4235 |
msgid "Novel"
|
@@ -4279,15 +4278,15 @@ msgstr ""
|
|
4279 |
|
4280 |
#: app/features/mec/meta_boxes/display_options.php:679
|
4281 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4282 |
-
#: app/libraries/main.php:364 app/libraries/main.php:
|
4283 |
-
#: app/libraries/main.php:
|
4284 |
msgid "List View"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
#: app/features/mec/meta_boxes/display_options.php:680
|
4288 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4289 |
-
#: app/libraries/main.php:365 app/libraries/main.php:
|
4290 |
-
#: app/libraries/main.php:
|
4291 |
msgid "Grid View"
|
4292 |
msgstr ""
|
4293 |
|
@@ -4299,8 +4298,8 @@ msgstr ""
|
|
4299 |
|
4300 |
#: app/features/mec/meta_boxes/display_options.php:682
|
4301 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4302 |
-
#: app/libraries/main.php:368 app/libraries/main.php:
|
4303 |
-
#: app/libraries/main.php:
|
4304 |
msgid "Yearly View"
|
4305 |
msgstr ""
|
4306 |
|
@@ -4311,15 +4310,15 @@ msgstr ""
|
|
4311 |
|
4312 |
#: app/features/mec/meta_boxes/display_options.php:684
|
4313 |
#: app/features/mec/meta_boxes/display_options.php:794
|
4314 |
-
#: app/libraries/main.php:371 app/libraries/main.php:
|
4315 |
-
#: app/libraries/main.php:
|
4316 |
msgid "Weekly View"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
#: app/features/mec/meta_boxes/display_options.php:685
|
4320 |
#: app/features/mec/meta_boxes/display_options.php:804
|
4321 |
-
#: app/libraries/main.php:370 app/libraries/main.php:
|
4322 |
-
#: app/libraries/main.php:
|
4323 |
msgid "Daily View"
|
4324 |
msgstr ""
|
4325 |
|
@@ -4739,7 +4738,7 @@ msgstr ""
|
|
4739 |
msgid "Choose your desired authors for filtering the events."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:
|
4743 |
msgid "Expired Events"
|
4744 |
msgstr ""
|
4745 |
|
@@ -4793,84 +4792,75 @@ msgid "Show Search Form"
|
|
4793 |
msgstr ""
|
4794 |
|
4795 |
#: app/features/mec/meta_boxes/search_form.php:53
|
4796 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4797 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4798 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4799 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4800 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4801 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4802 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4803 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4804 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4805 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4806 |
-
#: app/features/mec/settings.php:
|
4807 |
#: app/features/mec/single.php:386 app/features/search.php:86
|
4808 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
4809 |
-
#: app/libraries/main.php:
|
4810 |
#: app/libraries/skins.php:1016 app/modules/speakers/details.php:18
|
4811 |
msgid "Speaker"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
#: app/features/mec/meta_boxes/search_form.php:60
|
4815 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4816 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4817 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4818 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4819 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4820 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4821 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4822 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4823 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4824 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4825 |
-
#: app/features/mec/settings.php:
|
4826 |
#: app/features/mec/single.php:395 app/features/search.php:92
|
4827 |
#: app/libraries/skins.php:1042
|
4828 |
msgid "Tag"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
#: app/features/mec/meta_boxes/search_form.php:77
|
4832 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4833 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4834 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4835 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4836 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4837 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4838 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4839 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4840 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4841 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4842 |
msgid "Address Input"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
#: app/features/mec/meta_boxes/search_form.php:81
|
4846 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4847 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4848 |
-
|
4849 |
-
#: app/features/mec/meta_boxes/search_form.php:361
|
4850 |
-
#: app/features/mec/meta_boxes/search_form.php:431
|
4851 |
-
#: app/features/mec/meta_boxes/search_form.php:564
|
4852 |
-
#: app/features/mec/meta_boxes/search_form.php:634
|
4853 |
-
#: app/features/mec/meta_boxes/search_form.php:704
|
4854 |
-
#: app/features/mec/meta_boxes/search_form.php:810
|
4855 |
-
msgid "Month Filter"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4859 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4860 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4861 |
-
|
4862 |
-
#: app/features/mec/meta_boxes/search_form.php:368
|
4863 |
-
#: app/features/mec/meta_boxes/search_form.php:438
|
4864 |
-
#: app/features/mec/meta_boxes/search_form.php:501
|
4865 |
-
#: app/features/mec/meta_boxes/search_form.php:571
|
4866 |
-
#: app/features/mec/meta_boxes/search_form.php:641
|
4867 |
-
#: app/features/mec/meta_boxes/search_form.php:711
|
4868 |
-
#: app/features/mec/meta_boxes/search_form.php:817
|
4869 |
-
msgid "Text Search"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4873 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
4874 |
#: app/features/mec/meta_boxes/search_form.php:231
|
4875 |
#: app/features/mec/meta_boxes/search_form.php:301
|
4876 |
#: app/features/mec/meta_boxes/search_form.php:371
|
@@ -4880,15 +4870,39 @@ msgstr ""
|
|
4880 |
#: app/features/mec/meta_boxes/search_form.php:644
|
4881 |
#: app/features/mec/meta_boxes/search_form.php:714
|
4882 |
#: app/features/mec/meta_boxes/search_form.php:820
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4883 |
msgid "Text Input"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4887 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4888 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4889 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4890 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4891 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4892 |
msgid "No Search Options"
|
4893 |
msgstr ""
|
4894 |
|
@@ -4912,7 +4926,7 @@ msgid ""
|
|
4912 |
"new menu on the Dashboard > MEC"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
-
#: app/features/mec/modules.php:66 app/libraries/main.php:
|
4916 |
msgid "Map Options"
|
4917 |
msgstr ""
|
4918 |
|
@@ -4928,8 +4942,8 @@ msgstr ""
|
|
4928 |
msgid "Google Map Options"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#: app/features/mec/modules.php:85 app/features/mec/settings.php:
|
4932 |
-
#: app/features/mec/settings.php:
|
4933 |
msgid "Required!"
|
4934 |
msgstr ""
|
4935 |
|
@@ -4987,7 +5001,7 @@ msgstr ""
|
|
4987 |
msgid "Fullscreen Button"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
-
#: app/features/mec/modules.php:176 app/libraries/main.php:
|
4991 |
msgid "Export Options"
|
4992 |
msgstr ""
|
4993 |
|
@@ -5000,7 +5014,7 @@ msgstr ""
|
|
5000 |
msgid "Google Calendar"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
#: app/features/mec/modules.php:203 app/libraries/main.php:
|
5004 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5005 |
#: app/widgets/single.php:101
|
5006 |
msgid "Local Time"
|
@@ -5010,7 +5024,7 @@ msgstr ""
|
|
5010 |
msgid "Show event time based on local time of visitor on event page"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
-
#: app/features/mec/modules.php:217 app/libraries/main.php:
|
5014 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5015 |
msgid "QR Code"
|
5016 |
msgstr ""
|
@@ -5019,7 +5033,7 @@ msgstr ""
|
|
5019 |
msgid "Show QR code of event in details page and booking invoice"
|
5020 |
msgstr ""
|
5021 |
|
5022 |
-
#: app/features/mec/modules.php:235 app/libraries/main.php:
|
5023 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5024 |
msgid "Weather"
|
5025 |
msgstr ""
|
@@ -5053,7 +5067,7 @@ msgstr ""
|
|
5053 |
msgid "Show social network module"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
-
#: app/features/mec/modules.php:308 app/libraries/main.php:
|
5057 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5058 |
msgid "Next Event"
|
5059 |
msgstr ""
|
@@ -5106,7 +5120,7 @@ msgstr ""
|
|
5106 |
msgid "Add events menu to user profile"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#: app/features/mec/modules.php:385 app/libraries/main.php:
|
5110 |
msgid "LearnDash Integration"
|
5111 |
msgstr ""
|
5112 |
|
@@ -5767,7 +5781,7 @@ msgstr ""
|
|
5767 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: app/features/mec/notifications.php:160 app/libraries/main.php:
|
5771 |
msgid "Booking Verification"
|
5772 |
msgstr ""
|
5773 |
|
@@ -5803,7 +5817,7 @@ msgid "Booking cancellation link."
|
|
5803 |
msgstr ""
|
5804 |
|
5805 |
#: app/features/mec/notifications.php:402 app/features/notifications.php:157
|
5806 |
-
#: app/libraries/main.php:
|
5807 |
msgid "Booking Rejection"
|
5808 |
msgstr ""
|
5809 |
|
@@ -5829,7 +5843,7 @@ msgid "Send the email to the booked user"
|
|
5829 |
msgstr ""
|
5830 |
|
5831 |
#: app/features/mec/notifications.php:540 app/features/notifications.php:163
|
5832 |
-
#: app/libraries/main.php:
|
5833 |
msgid "Booking Cancellation"
|
5834 |
msgstr ""
|
5835 |
|
@@ -5847,7 +5861,7 @@ msgstr ""
|
|
5847 |
msgid "Admin booking management link."
|
5848 |
msgstr ""
|
5849 |
|
5850 |
-
#: app/features/mec/notifications.php:662 app/libraries/main.php:
|
5851 |
msgid "Admin"
|
5852 |
msgstr ""
|
5853 |
|
@@ -5860,7 +5874,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
5860 |
msgstr ""
|
5861 |
|
5862 |
#: app/features/mec/notifications.php:784 app/features/notifications.php:169
|
5863 |
-
#: app/libraries/main.php:
|
5864 |
msgid "Event Soldout"
|
5865 |
msgstr ""
|
5866 |
|
@@ -5875,7 +5889,7 @@ msgid ""
|
|
5875 |
msgstr ""
|
5876 |
|
5877 |
#: app/features/mec/notifications.php:893 app/features/notifications.php:166
|
5878 |
-
#: app/libraries/main.php:
|
5879 |
msgid "Booking Reminder"
|
5880 |
msgstr ""
|
5881 |
|
@@ -5895,8 +5909,8 @@ msgstr ""
|
|
5895 |
msgid "only once per hour"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: app/features/mec/notifications.php:956 app/libraries/main.php:
|
5899 |
-
#: app/libraries/main.php:
|
5900 |
msgid "Hours"
|
5901 |
msgstr ""
|
5902 |
|
@@ -5909,7 +5923,7 @@ msgid "Please, insert comma to separate reminder hours."
|
|
5909 |
msgstr ""
|
5910 |
|
5911 |
#: app/features/mec/notifications.php:1026 app/features/popup/event.php:253
|
5912 |
-
#: app/libraries/main.php:
|
5913 |
msgid "New Event"
|
5914 |
msgstr ""
|
5915 |
|
@@ -5939,8 +5953,8 @@ msgid "Status of event"
|
|
5939 |
msgstr ""
|
5940 |
|
5941 |
#: app/features/mec/notifications.php:1103
|
5942 |
-
#: app/features/mec/notifications.php:1188 app/features/mec/settings.php:
|
5943 |
-
#: app/features/mec/settings.php:
|
5944 |
msgid "Event Note"
|
5945 |
msgstr ""
|
5946 |
|
@@ -5949,7 +5963,7 @@ msgstr ""
|
|
5949 |
msgid "Admin events management link."
|
5950 |
msgstr ""
|
5951 |
|
5952 |
-
#: app/features/mec/notifications.php:1117 app/libraries/main.php:
|
5953 |
msgid "User Event Publishing"
|
5954 |
msgstr ""
|
5955 |
|
@@ -5963,7 +5977,7 @@ msgid ""
|
|
5963 |
"website backend."
|
5964 |
msgstr ""
|
5965 |
|
5966 |
-
#: app/features/mec/notifications.php:1200 app/libraries/main.php:
|
5967 |
msgid "Notifications Per Event"
|
5968 |
msgstr ""
|
5969 |
|
@@ -6035,500 +6049,512 @@ msgstr ""
|
|
6035 |
msgid "There was an error please try again!"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
-
#: app/features/mec/settings.php:
|
6039 |
msgid "Hide Events"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
-
#: app/features/mec/settings.php:
|
6043 |
msgid "On Event Start"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
-
#: app/features/mec/settings.php:
|
6047 |
msgid "+1 Hour after start"
|
6048 |
msgstr ""
|
6049 |
|
6050 |
-
#: app/features/mec/settings.php:
|
6051 |
msgid "+2 Hours after start"
|
6052 |
msgstr ""
|
6053 |
|
6054 |
-
#: app/features/mec/settings.php:
|
6055 |
msgid "On Event End"
|
6056 |
msgstr ""
|
6057 |
|
6058 |
-
#: app/features/mec/settings.php:
|
6059 |
msgid ""
|
6060 |
"This option is for showing start/end time of events on frontend of website."
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: app/features/mec/settings.php:
|
6064 |
msgid "Multiple Day Events"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
-
#: app/features/mec/settings.php:
|
6068 |
msgid "Show only first day on List/Grid/Slider/Agenda skins"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
-
#: app/features/mec/settings.php:
|
6072 |
msgid "Show only first day on all skins"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
-
#: app/features/mec/settings.php:
|
6076 |
msgid "Show all days"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
-
#: app/features/mec/settings.php:
|
6080 |
msgid ""
|
6081 |
"For showing all days of multiple day events on frontend or only show the "
|
6082 |
"first day."
|
6083 |
msgstr ""
|
6084 |
|
6085 |
-
#: app/features/mec/settings.php:
|
6086 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: app/features/mec/settings.php:
|
6090 |
msgid "Sender Name"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: app/features/mec/settings.php:
|
6094 |
msgid "e.g. Webnus"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
-
#: app/features/mec/settings.php:
|
6098 |
msgid "Sender Email"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: app/features/mec/settings.php:
|
6102 |
msgid "e.g. info@webnus.biz"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: app/features/mec/settings.php:
|
6106 |
msgid "Exclude Date Suffix"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: app/features/mec/settings.php:
|
6110 |
msgid "Remove suffix from calendars"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: app/features/mec/settings.php:
|
6114 |
msgid "Remove \"Th\" on calendar"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: app/features/mec/settings.php:
|
6118 |
msgid ""
|
6119 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
6120 |
"showing just '12' )"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
-
#: app/features/mec/settings.php:
|
6124 |
msgid "Schema"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
-
#: app/features/mec/settings.php:
|
6128 |
msgid "Enable Schema Code"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
-
#: app/features/mec/settings.php:
|
6132 |
msgid "You can enable/disable Schema scripts"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
-
#: app/features/mec/settings.php:
|
6136 |
-
#: app/libraries/main.php:
|
6137 |
msgid "Weekdays"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
-
#: app/features/mec/settings.php:
|
6141 |
msgid ""
|
6142 |
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
6143 |
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
6144 |
"> General - bottom of the page )."
|
6145 |
msgstr ""
|
6146 |
|
6147 |
-
#: app/features/mec/settings.php:
|
6148 |
msgid "Weekends"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
-
#: app/features/mec/settings.php:
|
6152 |
msgid ""
|
6153 |
"Proceed with caution. Default is set to Saturday and Sunday (you can change "
|
6154 |
"'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
|
6155 |
"page)."
|
6156 |
msgstr ""
|
6157 |
|
6158 |
-
#: app/features/mec/settings.php:
|
6159 |
msgid "Datepicker Format"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
-
#: app/features/mec/settings.php:
|
6163 |
msgid "(Y-m-d)"
|
6164 |
msgstr ""
|
6165 |
|
6166 |
-
#: app/features/mec/settings.php:
|
6167 |
msgid "(d-m-Y)"
|
6168 |
msgstr ""
|
6169 |
|
6170 |
-
#: app/features/mec/settings.php:
|
6171 |
msgid "(Y/m/d)"
|
6172 |
msgstr ""
|
6173 |
|
6174 |
-
#: app/features/mec/settings.php:
|
6175 |
msgid "(m/d/Y)"
|
6176 |
msgstr ""
|
6177 |
|
6178 |
-
#: app/features/mec/settings.php:
|
6179 |
msgid "(Y.m.d)"
|
6180 |
msgstr ""
|
6181 |
|
6182 |
-
#: app/features/mec/settings.php:
|
6183 |
msgid "(d.m.Y)"
|
6184 |
msgstr ""
|
6185 |
|
6186 |
-
#: app/features/mec/settings.php:
|
6187 |
msgid "Midnight Hour"
|
6188 |
msgstr ""
|
6189 |
|
6190 |
-
#: app/features/mec/settings.php:
|
6191 |
msgid "12 AM"
|
6192 |
msgstr ""
|
6193 |
|
6194 |
-
#: app/features/mec/settings.php:
|
6195 |
msgid "1 AM"
|
6196 |
msgstr ""
|
6197 |
|
6198 |
-
#: app/features/mec/settings.php:
|
6199 |
msgid "2 AM"
|
6200 |
msgstr ""
|
6201 |
|
6202 |
-
#: app/features/mec/settings.php:
|
6203 |
msgid "3 AM"
|
6204 |
msgstr ""
|
6205 |
|
6206 |
-
#: app/features/mec/settings.php:
|
6207 |
msgid "4 AM"
|
6208 |
msgstr ""
|
6209 |
|
6210 |
-
#: app/features/mec/settings.php:
|
6211 |
msgid "5 AM"
|
6212 |
msgstr ""
|
6213 |
|
6214 |
-
#: app/features/mec/settings.php:
|
6215 |
msgid ""
|
6216 |
"12 AM is midnight by default but you can change it if your event ends after "
|
6217 |
"12 AM and you don't want those events considered as multiple days events!"
|
6218 |
msgstr ""
|
6219 |
|
6220 |
-
#: app/features/mec/settings.php:
|
6221 |
msgid "Open \"Add Event\" as Popup"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
-
#: app/features/mec/settings.php:
|
6225 |
-
#: app/features/mec/settings.php:
|
6226 |
msgid "Enable"
|
6227 |
msgstr ""
|
6228 |
|
6229 |
-
#: app/features/mec/settings.php:
|
6230 |
msgid "Open \"Add Shortcode\" as Popup"
|
6231 |
msgstr ""
|
6232 |
|
6233 |
-
#: app/features/mec/settings.php:
|
6234 |
msgid "Include Event Featured Image in Feed"
|
6235 |
msgstr ""
|
6236 |
|
6237 |
-
#: app/features/mec/settings.php:
|
6238 |
msgid "Archive Pages"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
-
#: app/features/mec/settings.php:
|
6242 |
msgid "Archive Page Title"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
-
#: app/features/mec/settings.php:
|
6246 |
msgid "Default value is Events - It's title of the page"
|
6247 |
msgstr ""
|
6248 |
|
6249 |
-
#: app/features/mec/settings.php:
|
6250 |
msgid "Archive Page Skin"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
-
#: app/features/mec/settings.php:
|
6254 |
msgid "Put shortcode..."
|
6255 |
msgstr ""
|
6256 |
|
6257 |
-
#: app/features/mec/settings.php:
|
6258 |
-
#: app/features/mec/settings.php:
|
6259 |
-
#: app/features/mec/settings.php:
|
6260 |
-
#: app/features/mec/settings.php:
|
6261 |
-
#: app/features/mec/settings.php:
|
6262 |
msgid "There is no skins"
|
6263 |
msgstr ""
|
6264 |
|
6265 |
-
#: app/features/mec/settings.php:
|
6266 |
#: app/features/mec/single.php:73
|
6267 |
msgid "Modern Style"
|
6268 |
msgstr ""
|
6269 |
|
6270 |
-
#: app/features/mec/settings.php:
|
6271 |
msgid "colorful"
|
6272 |
msgstr ""
|
6273 |
|
6274 |
-
#: app/features/mec/settings.php:
|
6275 |
msgid "Clean Style"
|
6276 |
msgstr ""
|
6277 |
|
6278 |
-
#: app/features/mec/settings.php:
|
6279 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
6280 |
msgstr ""
|
6281 |
|
6282 |
-
#: app/features/mec/settings.php:
|
6283 |
msgid "See Demo"
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#: app/features/mec/settings.php:
|
6287 |
msgid "Category Page Skin"
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#: app/features/mec/settings.php:
|
6291 |
msgid ""
|
6292 |
"Default value is List View - But you can change it to set a skin for all "
|
6293 |
"categories."
|
6294 |
msgstr ""
|
6295 |
|
6296 |
-
#: app/features/mec/settings.php:
|
6297 |
msgid "Category Events Method"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
-
#: app/features/mec/settings.php:
|
6301 |
msgid "Default value is Upcoming Events"
|
6302 |
msgstr ""
|
6303 |
|
6304 |
-
#: app/features/mec/settings.php:
|
6305 |
msgid "Events Archive Status"
|
6306 |
msgstr ""
|
6307 |
|
6308 |
-
#: app/features/mec/settings.php:
|
6309 |
msgid "Enabled (Recommended)"
|
6310 |
msgstr ""
|
6311 |
|
6312 |
-
#: app/features/mec/settings.php:
|
6313 |
msgid ""
|
6314 |
"If you disable it, then you should create a page as archive page of MEC. "
|
6315 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
6316 |
"MEC rewrite rules."
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#: app/features/mec/settings.php:
|
6320 |
msgid "Main Slug"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#: app/features/mec/settings.php:
|
6324 |
msgid ""
|
6325 |
"Default value is events. You can not have a page with this name. MEC allows "
|
6326 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
6327 |
"applicability and forward-compatibility of the links."
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: app/features/mec/settings.php:
|
6331 |
msgid "Valid characters are lowercase a-z, - character and numbers."
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: app/features/mec/settings.php:
|
6335 |
msgid "Category Slug"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: app/features/mec/settings.php:
|
6339 |
msgid ""
|
6340 |
"It's slug of MEC categories, you can change it to events-cat or something "
|
6341 |
"else. Default value is mec-category. You can not have a page with this name."
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: app/features/mec/settings.php:
|
6345 |
msgid "Currency"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
-
#: app/features/mec/settings.php:
|
6349 |
msgid "Currency Sign"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
-
#: app/features/mec/settings.php:
|
6353 |
msgid "Default value will be \"currency\" if you leave it empty."
|
6354 |
msgstr ""
|
6355 |
|
6356 |
-
#: app/features/mec/settings.php:
|
6357 |
msgid "Currency Position"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
-
#: app/features/mec/settings.php:
|
6361 |
msgid "Before $10"
|
6362 |
msgstr ""
|
6363 |
|
6364 |
-
#: app/features/mec/settings.php:
|
6365 |
msgid "After 10$"
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: app/features/mec/settings.php:
|
6369 |
msgid "Thousand Separator"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: app/features/mec/settings.php:
|
6373 |
msgid "Decimal Separator"
|
6374 |
msgstr ""
|
6375 |
|
6376 |
-
#: app/features/mec/settings.php:
|
6377 |
msgid "No decimal"
|
6378 |
msgstr ""
|
6379 |
|
6380 |
-
#: app/features/mec/settings.php:
|
6381 |
msgid "Enable Google Recaptcha"
|
6382 |
msgstr ""
|
6383 |
|
6384 |
-
#: app/features/mec/settings.php:
|
6385 |
msgid "Enable on booking form"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
-
#: app/features/mec/settings.php:
|
6389 |
msgid "Enable on \"Frontend Event Submission\" form"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
-
#: app/features/mec/settings.php:
|
6393 |
msgid "Site Key"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
-
#: app/features/mec/settings.php:
|
6397 |
msgid "Secret Key"
|
6398 |
msgstr ""
|
6399 |
|
6400 |
-
#: app/features/mec/settings.php:
|
6401 |
msgid "Time Format"
|
6402 |
msgstr ""
|
6403 |
|
6404 |
-
#: app/features/mec/settings.php:
|
6405 |
msgid "12 hours format with AM/PM"
|
6406 |
msgstr ""
|
6407 |
|
6408 |
-
#: app/features/mec/settings.php:
|
6409 |
msgid "24 hours format"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
-
#: app/features/mec/settings.php:
|
6413 |
msgid "This option, affects the selection of Start/End time."
|
6414 |
msgstr ""
|
6415 |
|
6416 |
-
#: app/features/mec/settings.php:
|
6417 |
msgid "Events List Page"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
-
#: app/features/mec/settings.php:
|
6421 |
#, php-format
|
6422 |
msgid "Put %s shortcode into the page."
|
6423 |
msgstr ""
|
6424 |
|
6425 |
-
#: app/features/mec/settings.php:
|
6426 |
msgid "Add/Edit Events Page"
|
6427 |
msgstr ""
|
6428 |
|
6429 |
-
#: app/features/mec/settings.php:
|
6430 |
msgid "New Events Status"
|
6431 |
msgstr ""
|
6432 |
|
6433 |
-
#: app/features/mec/settings.php:
|
6434 |
msgid "Let WordPress decide"
|
6435 |
msgstr ""
|
6436 |
|
6437 |
-
#: app/features/mec/settings.php:
|
6438 |
-
#: app/libraries/main.php:
|
6439 |
msgid "Pending"
|
6440 |
msgstr ""
|
6441 |
|
6442 |
-
#: app/features/mec/settings.php:
|
6443 |
msgid "Publish"
|
6444 |
msgstr ""
|
6445 |
|
6446 |
-
#: app/features/mec/settings.php:
|
6447 |
msgid ""
|
6448 |
"User is redirected to this page after a new event submission. Leave it empty "
|
6449 |
"if you want it disabled."
|
6450 |
msgstr ""
|
6451 |
|
6452 |
-
#: app/features/mec/settings.php:
|
6453 |
msgid "Thank You Page URL"
|
6454 |
msgstr ""
|
6455 |
|
6456 |
-
#: app/features/mec/settings.php:
|
6457 |
msgid "If filled it will use instead of thank you page set above."
|
6458 |
msgstr ""
|
6459 |
|
6460 |
-
#: app/features/mec/settings.php:
|
6461 |
msgid "Maximum File Size"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
-
#: app/features/mec/settings.php:
|
6465 |
msgid "in KB"
|
6466 |
msgstr ""
|
6467 |
|
6468 |
-
#: app/features/mec/settings.php:
|
6469 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
-
#: app/features/mec/settings.php:
|
6473 |
msgid "Enable event submission by guest (Not logged in) users"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
-
#: app/features/mec/settings.php:
|
6477 |
msgid "Enable mandatory email and name for guest user"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
-
#: app/features/mec/settings.php:
|
6481 |
msgid ""
|
6482 |
"Automatically create users after event publish and assign event to the "
|
6483 |
"created user"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
-
#: app/features/mec/settings.php:
|
6487 |
msgid "Frontend Event Submission Sections"
|
6488 |
msgstr ""
|
6489 |
|
6490 |
-
#: app/features/mec/settings.php:
|
6491 |
msgid "Event Data Fields"
|
6492 |
msgstr ""
|
6493 |
|
6494 |
-
#: app/features/mec/settings.php:
|
6495 |
msgid "Event Categories"
|
6496 |
msgstr ""
|
6497 |
|
6498 |
-
#: app/features/mec/settings.php:
|
6499 |
msgid "Event Labels"
|
6500 |
msgstr ""
|
6501 |
|
6502 |
-
#: app/features/mec/settings.php:
|
6503 |
msgid "Event Tags"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
-
#: app/features/mec/settings.php:
|
6507 |
msgid "Event Organizer"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6511 |
msgid "Fees / Taxes Options"
|
6512 |
msgstr ""
|
6513 |
|
6514 |
-
#: app/features/mec/settings.php:
|
6515 |
msgid "SEO Schema"
|
6516 |
msgstr ""
|
6517 |
|
6518 |
-
#: app/features/mec/settings.php:
|
6519 |
#: app/features/occurrences.php:102
|
6520 |
msgid "Occurrences"
|
6521 |
msgstr ""
|
6522 |
|
6523 |
-
#: app/features/mec/settings.php:
|
6524 |
msgid "Virtual Event"
|
6525 |
msgstr ""
|
6526 |
|
6527 |
-
#: app/features/mec/settings.php:
|
6528 |
msgid "Zoom Event"
|
6529 |
msgstr ""
|
6530 |
|
6531 |
-
#: app/features/mec/settings.php:
|
6532 |
#, php-format
|
6533 |
msgid ""
|
6534 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -6536,221 +6562,232 @@ msgid ""
|
|
6536 |
"users' note in email."
|
6537 |
msgstr ""
|
6538 |
|
6539 |
-
#: app/features/mec/settings.php:
|
6540 |
msgid "Note visibility"
|
6541 |
msgstr ""
|
6542 |
|
6543 |
-
#: app/features/mec/settings.php:
|
6544 |
msgid "Always"
|
6545 |
msgstr ""
|
6546 |
|
6547 |
-
#: app/features/mec/settings.php:
|
6548 |
msgid "While event is not published"
|
6549 |
msgstr ""
|
6550 |
|
6551 |
-
#: app/features/mec/settings.php:
|
6552 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
6553 |
msgstr ""
|
6554 |
|
6555 |
-
#: app/features/mec/settings.php:
|
6556 |
msgid "Required Fields"
|
6557 |
msgstr ""
|
6558 |
|
6559 |
-
#: app/features/mec/settings.php:
|
6560 |
msgid "Event Description"
|
6561 |
msgstr ""
|
6562 |
|
6563 |
-
#: app/features/mec/settings.php:
|
6564 |
-
#: app/libraries/main.php:
|
6565 |
msgid "More Info Link"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
-
#: app/features/mec/settings.php:
|
6569 |
msgid "User Profile"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
-
#: app/features/mec/settings.php:
|
6573 |
#, php-format
|
6574 |
msgid ""
|
6575 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
6576 |
"history of their bookings."
|
6577 |
msgstr ""
|
6578 |
|
6579 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6580 |
msgid "Search Bar"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#: app/features/mec/settings.php:
|
6584 |
#, php-format
|
6585 |
msgid ""
|
6586 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
6587 |
msgstr ""
|
6588 |
|
6589 |
-
#: app/features/mec/settings.php:
|
6590 |
msgid "Ajax Live mode"
|
6591 |
msgstr ""
|
6592 |
|
6593 |
-
#: app/features/mec/settings.php:
|
6594 |
msgid "Ajax mode"
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#: app/features/mec/settings.php:
|
6598 |
msgid ""
|
6599 |
"if you enable this option, the search button will disappear. To use this "
|
6600 |
"feature, text input field must be enabled."
|
6601 |
msgstr ""
|
6602 |
|
6603 |
-
#: app/features/mec/settings.php:
|
6604 |
msgid "Modern Type"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
-
#: app/features/mec/settings.php:
|
6608 |
msgid "Search bar fields"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: app/features/mec/settings.php:
|
6612 |
msgid "Text input"
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: app/features/mec/settings.php:
|
6616 |
msgid "Enable Mailchimp Integration"
|
6617 |
msgstr ""
|
6618 |
|
6619 |
-
#: app/features/mec/settings.php:
|
6620 |
-
#: app/features/mec/settings.php:
|
6621 |
-
#: app/features/mec/settings.php:
|
6622 |
msgid "API Key"
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: app/features/mec/settings.php:
|
6626 |
-
#: app/features/mec/settings.php:
|
6627 |
-
#: app/features/mec/settings.php:
|
6628 |
msgid "List ID"
|
6629 |
msgstr ""
|
6630 |
|
6631 |
-
#: app/features/mec/settings.php:
|
6632 |
msgid "Subscription Status"
|
6633 |
msgstr ""
|
6634 |
|
6635 |
-
#: app/features/mec/settings.php:
|
6636 |
msgid "Subscribe automatically"
|
6637 |
msgstr ""
|
6638 |
|
6639 |
-
#: app/features/mec/settings.php:
|
6640 |
msgid "Subscribe by verification"
|
6641 |
msgstr ""
|
6642 |
|
6643 |
-
#: app/features/mec/settings.php:
|
6644 |
msgid ""
|
6645 |
"If you choose \"Subscribe by verification\" then an email will be send to "
|
6646 |
"the user by mailchimp for subscription verification."
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: app/features/mec/settings.php:
|
6650 |
msgid "Campaign Monitor Integration"
|
6651 |
msgstr ""
|
6652 |
|
6653 |
-
#: app/features/mec/settings.php:
|
6654 |
msgid "Enable Campaign Monitor Integration"
|
6655 |
msgstr ""
|
6656 |
|
6657 |
-
#: app/features/mec/settings.php:
|
6658 |
msgid "MailerLite Integration"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#: app/features/mec/settings.php:
|
6662 |
msgid "Enable MailerLite Integration"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#: app/features/mec/settings.php:
|
6666 |
msgid "Group ID"
|
6667 |
msgstr ""
|
6668 |
|
6669 |
-
#: app/features/mec/settings.php:
|
6670 |
msgid "Constant Contact Integration"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
-
#: app/features/mec/settings.php:
|
6674 |
msgid "Enable constantcontact Integration"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
-
#: app/features/mec/settings.php:
|
6678 |
msgid "Access Token"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
-
#: app/features/mec/settings.php:
|
6682 |
msgid "Select List"
|
6683 |
msgstr ""
|
6684 |
|
6685 |
-
#: app/features/mec/settings.php:
|
6686 |
msgid ""
|
6687 |
"Please fill in the API key and Access Token field and save settings. after "
|
6688 |
"that, please refresh the page and select a list."
|
6689 |
msgstr ""
|
6690 |
|
6691 |
-
#: app/features/mec/settings.php:
|
6692 |
msgid "Active Campaign Integration"
|
6693 |
msgstr ""
|
6694 |
|
6695 |
-
#: app/features/mec/settings.php:
|
6696 |
msgid "Enable Active Campaign Integration"
|
6697 |
msgstr ""
|
6698 |
|
6699 |
-
#: app/features/mec/settings.php:
|
6700 |
msgid "API URL"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
-
#: app/features/mec/settings.php:
|
6704 |
msgid "AWeber Integration"
|
6705 |
msgstr ""
|
6706 |
|
6707 |
-
#: app/features/mec/settings.php:
|
6708 |
msgid "Enable AWeber Integration"
|
6709 |
msgstr ""
|
6710 |
|
6711 |
-
#: app/features/mec/settings.php:
|
6712 |
#, php-format
|
6713 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: app/features/mec/settings.php:
|
6717 |
#, php-format
|
6718 |
msgid "More information about the list ID can be found %s."
|
6719 |
msgstr ""
|
6720 |
|
6721 |
-
#: app/features/mec/settings.php:
|
6722 |
msgid "MailPoet Integration"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
-
#: app/features/mec/settings.php:
|
6726 |
msgid "Enable MailPoet Integration"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
-
#: app/features/mec/settings.php:
|
6730 |
#: app/skins/default_full_calendar/tpl.php:78
|
6731 |
#: app/skins/full_calendar/tpl.php:125
|
6732 |
msgid "List"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
-
#: app/features/mec/settings.php:
|
6736 |
#, php-format
|
6737 |
msgid "%s plugin should be installed and activated."
|
6738 |
msgstr ""
|
6739 |
|
6740 |
-
#: app/features/mec/settings.php:
|
6741 |
msgid "Sendfox Integration"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
-
#: app/features/mec/settings.php:
|
6745 |
msgid "Enable Sendfox Integration"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: app/features/mec/settings.php:
|
6749 |
#, php-format
|
6750 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
6751 |
msgstr ""
|
6752 |
|
6753 |
-
#: app/features/mec/single.php:38 app/libraries/main.php:
|
6754 |
msgid "Single Event Page"
|
6755 |
msgstr ""
|
6756 |
|
@@ -6854,11 +6891,11 @@ msgid ""
|
|
6854 |
"the settings page.' tab"
|
6855 |
msgstr ""
|
6856 |
|
6857 |
-
#: app/features/mec/single.php:162 app/libraries/main.php:
|
6858 |
msgid "Custom Fields"
|
6859 |
msgstr ""
|
6860 |
|
6861 |
-
#: app/features/mec/single.php:192 app/libraries/main.php:
|
6862 |
msgid "URL"
|
6863 |
msgstr ""
|
6864 |
|
@@ -6895,7 +6932,7 @@ msgid ""
|
|
6895 |
"Using this option you can exclude certain days from event occurrence dates."
|
6896 |
msgstr ""
|
6897 |
|
6898 |
-
#: app/features/mec/single.php:286 app/libraries/main.php:
|
6899 |
msgid "Additional Organizers"
|
6900 |
msgstr ""
|
6901 |
|
@@ -6919,7 +6956,7 @@ msgid ""
|
|
6919 |
"page."
|
6920 |
msgstr ""
|
6921 |
|
6922 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
6923 |
#: app/skins/single.php:170 app/skins/single.php:435
|
6924 |
msgid "Related Events"
|
6925 |
msgstr ""
|
@@ -6932,7 +6969,7 @@ msgstr ""
|
|
6932 |
msgid "Select Taxonomies:"
|
6933 |
msgstr ""
|
6934 |
|
6935 |
-
#: app/features/mec/single.php:360 app/libraries/main.php:
|
6936 |
msgid "Next / Previous Events"
|
6937 |
msgstr ""
|
6938 |
|
@@ -6940,7 +6977,7 @@ msgstr ""
|
|
6940 |
msgid "Display next / previous events based on taxonomy in single event page."
|
6941 |
msgstr ""
|
6942 |
|
6943 |
-
#: app/features/mec/single.php:402 app/libraries/main.php:
|
6944 |
msgid "Edit Per Occurrences"
|
6945 |
msgstr ""
|
6946 |
|
@@ -6965,7 +7002,7 @@ msgid "Default Font"
|
|
6965 |
msgstr ""
|
6966 |
|
6967 |
#: app/features/mec/styling.php:50 app/features/mec/support.php:52
|
6968 |
-
#: app/libraries/main.php:
|
6969 |
msgid "Styling Options"
|
6970 |
msgstr ""
|
6971 |
|
@@ -7122,7 +7159,7 @@ msgstr ""
|
|
7122 |
msgid "MEC Settings"
|
7123 |
msgstr ""
|
7124 |
|
7125 |
-
#: app/features/mec/support-page.php:99 app/libraries/main.php:
|
7126 |
msgid "Single Event"
|
7127 |
msgstr ""
|
7128 |
|
@@ -7419,7 +7456,7 @@ msgstr ""
|
|
7419 |
msgid "Create a support ticket"
|
7420 |
msgstr ""
|
7421 |
|
7422 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
7423 |
msgid "Custom CSS"
|
7424 |
msgstr ""
|
7425 |
|
@@ -7516,10 +7553,6 @@ msgstr ""
|
|
7516 |
msgid "Delete"
|
7517 |
msgstr ""
|
7518 |
|
7519 |
-
#: app/features/occurrences.php:385
|
7520 |
-
msgid "Total Booking Limit"
|
7521 |
-
msgstr ""
|
7522 |
-
|
7523 |
#: app/features/occurrences.php:393 app/features/schema.php:70
|
7524 |
msgid "Scheduled"
|
7525 |
msgstr ""
|
@@ -7635,8 +7668,8 @@ msgstr ""
|
|
7635 |
msgid "eg. https://webnus.net"
|
7636 |
msgstr ""
|
7637 |
|
7638 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7639 |
-
#: app/libraries/main.php:
|
7640 |
msgid "Other Organizers"
|
7641 |
msgstr ""
|
7642 |
|
@@ -7694,7 +7727,7 @@ msgid "Prev"
|
|
7694 |
msgstr ""
|
7695 |
|
7696 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
7697 |
-
#: app/modules/booking/steps/form.php:
|
7698 |
#: app/modules/booking/steps/tickets.php:180 app/skins/countdown/tpl.php:123
|
7699 |
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
7700 |
msgid "Next"
|
@@ -7782,7 +7815,7 @@ msgstr ""
|
|
7782 |
msgid "Please %s/%s in order to see your bookings / profile."
|
7783 |
msgstr ""
|
7784 |
|
7785 |
-
#: app/features/profile/profile.php:20 app/libraries/main.php:
|
7786 |
msgid "Your booking already canceled!"
|
7787 |
msgstr ""
|
7788 |
|
@@ -7790,11 +7823,11 @@ msgstr ""
|
|
7790 |
msgid "#"
|
7791 |
msgstr ""
|
7792 |
|
7793 |
-
#: app/features/profile/profile.php:61 app/libraries/main.php:
|
7794 |
msgid "Status"
|
7795 |
msgstr ""
|
7796 |
|
7797 |
-
#: app/features/profile/profile.php:64 app/libraries/main.php:
|
7798 |
msgid "Attendees"
|
7799 |
msgstr ""
|
7800 |
|
@@ -7850,9 +7883,10 @@ msgstr ""
|
|
7850 |
msgid "No search result."
|
7851 |
msgstr ""
|
7852 |
|
7853 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7854 |
-
#: app/libraries/main.php:
|
7855 |
-
#: app/libraries/render.php:
|
|
|
7856 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
7857 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7858 |
#: app/modules/next-event/details.php:154
|
@@ -7939,6 +7973,11 @@ msgid ""
|
|
7939 |
"section and speaker widget section!"
|
7940 |
msgstr ""
|
7941 |
|
|
|
|
|
|
|
|
|
|
|
7942 |
#: app/features/wc.php:103 app/libraries/notifications.php:1250
|
7943 |
#: app/libraries/notifications.php:1265 app/libraries/notifications.php:1276
|
7944 |
#: app/libraries/notifications.php:1549 app/libraries/notifications.php:1550
|
@@ -8074,33 +8113,33 @@ msgstr ""
|
|
8074 |
msgid "New Day"
|
8075 |
msgstr ""
|
8076 |
|
8077 |
-
#: app/libraries/main.php:366 app/libraries/main.php:
|
8078 |
-
#: app/libraries/main.php:
|
8079 |
msgid "Agenda View"
|
8080 |
msgstr ""
|
8081 |
|
8082 |
-
#: app/libraries/main.php:367 app/libraries/main.php:
|
8083 |
-
#: app/libraries/main.php:
|
8084 |
msgid "Full Calendar"
|
8085 |
msgstr ""
|
8086 |
|
8087 |
-
#: app/libraries/main.php:369 app/libraries/main.php:
|
8088 |
-
#: app/libraries/main.php:
|
8089 |
msgid "Calendar/Monthly View"
|
8090 |
msgstr ""
|
8091 |
|
8092 |
-
#: app/libraries/main.php:372 app/libraries/main.php:
|
8093 |
-
#: app/libraries/main.php:
|
8094 |
msgid "Timetable View"
|
8095 |
msgstr ""
|
8096 |
|
8097 |
-
#: app/libraries/main.php:373 app/libraries/main.php:
|
8098 |
-
#: app/libraries/main.php:
|
8099 |
msgid "Masonry View"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
-
#: app/libraries/main.php:374 app/libraries/main.php:
|
8103 |
-
#: app/libraries/main.php:
|
8104 |
msgid "Map View"
|
8105 |
msgstr ""
|
8106 |
|
@@ -8128,58 +8167,58 @@ msgstr ""
|
|
8128 |
msgid "Timeline View"
|
8129 |
msgstr ""
|
8130 |
|
8131 |
-
#: app/libraries/main.php:419 app/libraries/main.php:
|
8132 |
-
#: app/libraries/main.php:
|
8133 |
msgid "SU"
|
8134 |
msgstr ""
|
8135 |
|
8136 |
-
#: app/libraries/main.php:420 app/libraries/main.php:
|
8137 |
-
#: app/libraries/main.php:
|
8138 |
msgid "MO"
|
8139 |
msgstr ""
|
8140 |
|
8141 |
-
#: app/libraries/main.php:421 app/libraries/main.php:
|
8142 |
-
#: app/libraries/main.php:
|
8143 |
msgid "TU"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
-
#: app/libraries/main.php:422 app/libraries/main.php:
|
8147 |
-
#: app/libraries/main.php:
|
8148 |
msgid "WE"
|
8149 |
msgstr ""
|
8150 |
|
8151 |
-
#: app/libraries/main.php:423 app/libraries/main.php:
|
8152 |
-
#: app/libraries/main.php:
|
8153 |
msgid "TH"
|
8154 |
msgstr ""
|
8155 |
|
8156 |
-
#: app/libraries/main.php:424 app/libraries/main.php:
|
8157 |
-
#: app/libraries/main.php:
|
8158 |
msgid "FR"
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#: app/libraries/main.php:425 app/libraries/main.php:
|
8162 |
-
#: app/libraries/main.php:
|
8163 |
msgid "SA"
|
8164 |
msgstr ""
|
8165 |
|
8166 |
-
#: app/libraries/main.php:
|
8167 |
msgid "Additional Locations"
|
8168 |
msgstr ""
|
8169 |
|
8170 |
-
#: app/libraries/main.php:
|
8171 |
msgid "Upload Field"
|
8172 |
msgstr ""
|
8173 |
|
8174 |
-
#: app/libraries/main.php:
|
8175 |
msgid "Modules"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
-
#: app/libraries/main.php:
|
8179 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
8180 |
msgstr ""
|
8181 |
|
8182 |
-
#: app/libraries/main.php:
|
8183 |
msgid ""
|
8184 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
8185 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -8187,454 +8226,454 @@ msgid ""
|
|
8187 |
"below:"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
-
#: app/libraries/main.php:
|
8191 |
msgid ""
|
8192 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
8193 |
"products) and Woo products at the same time."
|
8194 |
msgstr ""
|
8195 |
|
8196 |
-
#: app/libraries/main.php:
|
8197 |
msgid ""
|
8198 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
8199 |
"other websites without MEC. Use JSON output features to make your Apps "
|
8200 |
"compatible with MEC."
|
8201 |
msgstr ""
|
8202 |
|
8203 |
-
#: app/libraries/main.php:
|
8204 |
msgid ""
|
8205 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
8206 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
8207 |
"you can set these up in the admin panel."
|
8208 |
msgstr ""
|
8209 |
|
8210 |
-
#: app/libraries/main.php:
|
8211 |
msgid ""
|
8212 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
8213 |
"pages can contain ticket purchase information, information about registered "
|
8214 |
"events. Users can now log in to purchase tickets."
|
8215 |
msgstr ""
|
8216 |
|
8217 |
-
#: app/libraries/main.php:
|
8218 |
msgid "find out more"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
-
#: app/libraries/main.php:
|
8222 |
msgid "Events at this location"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
-
#: app/libraries/main.php:
|
8226 |
msgid "Event at this location"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
-
#: app/libraries/main.php:
|
8230 |
msgid "Facebook"
|
8231 |
msgstr ""
|
8232 |
|
8233 |
-
#: app/libraries/main.php:
|
8234 |
msgid "Twitter"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
-
#: app/libraries/main.php:
|
8238 |
msgid "Linkedin"
|
8239 |
msgstr ""
|
8240 |
|
8241 |
-
#: app/libraries/main.php:
|
8242 |
msgid "VK"
|
8243 |
msgstr ""
|
8244 |
|
8245 |
-
#: app/libraries/main.php:
|
8246 |
msgid "Tumblr"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
-
#: app/libraries/main.php:
|
8250 |
msgid "Pinterest"
|
8251 |
msgstr ""
|
8252 |
|
8253 |
-
#: app/libraries/main.php:
|
8254 |
msgid "Flipboard"
|
8255 |
msgstr ""
|
8256 |
|
8257 |
-
#: app/libraries/main.php:
|
8258 |
msgid "GetPocket"
|
8259 |
msgstr ""
|
8260 |
|
8261 |
-
#: app/libraries/main.php:
|
8262 |
msgid "Reddit"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
-
#: app/libraries/main.php:
|
8266 |
msgid "WhatsApp"
|
8267 |
msgstr ""
|
8268 |
|
8269 |
-
#: app/libraries/main.php:
|
8270 |
msgid "Telegram"
|
8271 |
msgstr ""
|
8272 |
|
8273 |
-
#: app/libraries/main.php:
|
8274 |
msgid "Share on Facebook"
|
8275 |
msgstr ""
|
8276 |
|
8277 |
-
#: app/libraries/main.php:
|
8278 |
msgid "Tweet"
|
8279 |
msgstr ""
|
8280 |
|
8281 |
-
#: app/libraries/main.php:
|
8282 |
msgid "Share on Tumblr"
|
8283 |
msgstr ""
|
8284 |
|
8285 |
-
#: app/libraries/main.php:
|
8286 |
msgid "Share on Pinterest"
|
8287 |
msgstr ""
|
8288 |
|
8289 |
-
#: app/libraries/main.php:
|
8290 |
msgid "Share on Flipboard"
|
8291 |
msgstr ""
|
8292 |
|
8293 |
-
#: app/libraries/main.php:
|
8294 |
msgid "Share on GetPocket"
|
8295 |
msgstr ""
|
8296 |
|
8297 |
-
#: app/libraries/main.php:
|
8298 |
msgid "Share on Reddit"
|
8299 |
msgstr ""
|
8300 |
|
8301 |
-
#: app/libraries/main.php:
|
8302 |
msgid "Share on Telegram"
|
8303 |
msgstr ""
|
8304 |
|
8305 |
-
#: app/libraries/main.php:
|
8306 |
msgid "Share on WhatsApp"
|
8307 |
msgstr ""
|
8308 |
|
8309 |
-
#: app/libraries/main.php:
|
8310 |
msgid "Custom Shortcode"
|
8311 |
msgstr ""
|
8312 |
|
8313 |
-
#: app/libraries/main.php:
|
8314 |
msgid "Your booking has been verified successfully!"
|
8315 |
msgstr ""
|
8316 |
|
8317 |
-
#: app/libraries/main.php:
|
8318 |
msgid "Your booking already verified!"
|
8319 |
msgstr ""
|
8320 |
|
8321 |
-
#: app/libraries/main.php:
|
8322 |
msgid "Your booking cannot verify!"
|
8323 |
msgstr ""
|
8324 |
|
8325 |
-
#: app/libraries/main.php:
|
8326 |
msgid "Your booking successfully canceled."
|
8327 |
msgstr ""
|
8328 |
|
8329 |
-
#: app/libraries/main.php:
|
8330 |
msgid "The event is already finished!"
|
8331 |
msgstr ""
|
8332 |
|
8333 |
-
#: app/libraries/main.php:
|
8334 |
msgid "The cancelation window is not started yet."
|
8335 |
msgstr ""
|
8336 |
|
8337 |
-
#: app/libraries/main.php:
|
8338 |
msgid "The cancelation window is passed."
|
8339 |
msgstr ""
|
8340 |
|
8341 |
-
#: app/libraries/main.php:
|
8342 |
msgid "Your booking cannot be canceled."
|
8343 |
msgstr ""
|
8344 |
|
8345 |
-
#: app/libraries/main.php:
|
8346 |
msgid "You canceled the payment successfully."
|
8347 |
msgstr ""
|
8348 |
|
8349 |
-
#: app/libraries/main.php:
|
8350 |
msgid "You returned from payment gateway successfully."
|
8351 |
msgstr ""
|
8352 |
|
8353 |
-
#: app/libraries/main.php:
|
8354 |
msgid "Cannot find the invoice!"
|
8355 |
msgstr ""
|
8356 |
|
8357 |
-
#: app/libraries/main.php:
|
8358 |
msgid "Invoice is invalid."
|
8359 |
msgstr ""
|
8360 |
|
8361 |
-
#: app/libraries/main.php:
|
8362 |
msgid ""
|
8363 |
"Your booking still is not confirmed. You can download it after confirmation!"
|
8364 |
msgstr ""
|
8365 |
|
8366 |
-
#: app/libraries/main.php:
|
8367 |
msgid "Booking Not Confirmed."
|
8368 |
msgstr ""
|
8369 |
|
8370 |
-
#: app/libraries/main.php:
|
8371 |
msgid "Cannot find the booking!"
|
8372 |
msgstr ""
|
8373 |
|
8374 |
-
#: app/libraries/main.php:
|
8375 |
msgid "Booking is invalid."
|
8376 |
msgstr ""
|
8377 |
|
8378 |
-
#: app/libraries/main.php:
|
8379 |
#, php-format
|
8380 |
msgid "%s Invoice"
|
8381 |
msgstr ""
|
8382 |
|
8383 |
-
#: app/libraries/main.php:
|
8384 |
msgid "Date & Time"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
-
#: app/libraries/main.php:
|
8388 |
msgid "Booking Fields"
|
8389 |
msgstr ""
|
8390 |
|
8391 |
-
#: app/libraries/main.php:
|
8392 |
msgid "Billing"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
-
#: app/libraries/main.php:
|
8396 |
msgid "Coupon Code"
|
8397 |
msgstr ""
|
8398 |
|
8399 |
-
#: app/libraries/main.php:
|
8400 |
msgid "Total"
|
8401 |
msgstr ""
|
8402 |
|
8403 |
-
#: app/libraries/main.php:
|
8404 |
msgid "Payment"
|
8405 |
msgstr ""
|
8406 |
|
8407 |
-
#: app/libraries/main.php:
|
8408 |
msgid "Payment Time"
|
8409 |
msgstr ""
|
8410 |
|
8411 |
-
#: app/libraries/main.php:
|
8412 |
msgid "Request is not valid."
|
8413 |
msgstr ""
|
8414 |
|
8415 |
-
#: app/libraries/main.php:
|
8416 |
msgid "iCal export stopped!"
|
8417 |
msgstr ""
|
8418 |
|
8419 |
-
#: app/libraries/main.php:
|
8420 |
-
#: app/libraries/main.php:
|
8421 |
-
#: app/libraries/main.php:
|
8422 |
-
#: app/libraries/main.php:
|
8423 |
-
#: app/libraries/main.php:
|
8424 |
-
#: app/libraries/main.php:
|
8425 |
-
#: app/libraries/main.php:
|
8426 |
-
#: app/libraries/main.php:
|
8427 |
msgid "Sort"
|
8428 |
msgstr ""
|
8429 |
|
8430 |
-
#: app/libraries/main.php:
|
8431 |
-
#: app/libraries/main.php:
|
8432 |
-
#: app/libraries/main.php:
|
8433 |
-
#: app/libraries/main.php:
|
8434 |
-
#: app/libraries/main.php:
|
8435 |
-
#: app/libraries/main.php:
|
8436 |
-
#: app/libraries/main.php:
|
8437 |
msgid "Required Field"
|
8438 |
msgstr ""
|
8439 |
|
8440 |
-
#: app/libraries/main.php:
|
8441 |
-
#: app/libraries/main.php:
|
8442 |
-
#: app/libraries/main.php:
|
8443 |
-
#: app/libraries/main.php:
|
8444 |
-
#: app/libraries/main.php:
|
8445 |
-
#: app/libraries/main.php:
|
8446 |
-
#: app/libraries/main.php:
|
8447 |
msgid "Insert a label for this field"
|
8448 |
msgstr ""
|
8449 |
|
8450 |
-
#: app/libraries/main.php:
|
8451 |
msgid "HTML and shortcode are allowed."
|
8452 |
msgstr ""
|
8453 |
|
8454 |
-
#: app/libraries/main.php:
|
8455 |
-
#: app/libraries/main.php:
|
8456 |
msgid "Option"
|
8457 |
msgstr ""
|
8458 |
|
8459 |
-
#: app/libraries/main.php:
|
8460 |
#, php-format
|
8461 |
msgid "Instead of %s, the page title with a link will be show."
|
8462 |
msgstr ""
|
8463 |
|
8464 |
-
#: app/libraries/main.php:
|
8465 |
msgid "Agreement Page"
|
8466 |
msgstr ""
|
8467 |
|
8468 |
-
#: app/libraries/main.php:
|
8469 |
msgid "Checked by default"
|
8470 |
msgstr ""
|
8471 |
|
8472 |
-
#: app/libraries/main.php:
|
8473 |
msgid "Unchecked by default"
|
8474 |
msgstr ""
|
8475 |
|
8476 |
-
#: app/libraries/main.php:
|
8477 |
msgid "Insert a label for this option"
|
8478 |
msgstr ""
|
8479 |
|
8480 |
-
#: app/libraries/main.php:
|
8481 |
msgid "Free"
|
8482 |
msgstr ""
|
8483 |
|
8484 |
-
#: app/libraries/main.php:
|
8485 |
msgid "M.E. Calender"
|
8486 |
msgstr ""
|
8487 |
|
8488 |
-
#: app/libraries/main.php:
|
8489 |
#, php-format
|
8490 |
msgid "Copy of %s"
|
8491 |
msgstr ""
|
8492 |
|
8493 |
-
#: app/libraries/main.php:
|
8494 |
msgid "Booked an event."
|
8495 |
msgstr ""
|
8496 |
|
8497 |
-
#: app/libraries/main.php:
|
8498 |
#, php-format
|
8499 |
msgid "%s booked %s event."
|
8500 |
msgstr ""
|
8501 |
|
8502 |
-
#: app/libraries/main.php:
|
8503 |
msgid "Taxonomies"
|
8504 |
msgstr ""
|
8505 |
|
8506 |
-
#: app/libraries/main.php:
|
8507 |
msgid "Category Plural Label"
|
8508 |
msgstr ""
|
8509 |
|
8510 |
-
#: app/libraries/main.php:
|
8511 |
msgid "Category Singular Label"
|
8512 |
msgstr ""
|
8513 |
|
8514 |
-
#: app/libraries/main.php:
|
8515 |
msgid "Label Plural Label"
|
8516 |
msgstr ""
|
8517 |
|
8518 |
-
#: app/libraries/main.php:
|
8519 |
msgid "Label Singular Label"
|
8520 |
msgstr ""
|
8521 |
|
8522 |
-
#: app/libraries/main.php:
|
8523 |
msgid "label"
|
8524 |
msgstr ""
|
8525 |
|
8526 |
-
#: app/libraries/main.php:
|
8527 |
msgid "Location Plural Label"
|
8528 |
msgstr ""
|
8529 |
|
8530 |
-
#: app/libraries/main.php:
|
8531 |
msgid "Location Singular Label"
|
8532 |
msgstr ""
|
8533 |
|
8534 |
-
#: app/libraries/main.php:
|
8535 |
msgid "Organizer Plural Label"
|
8536 |
msgstr ""
|
8537 |
|
8538 |
-
#: app/libraries/main.php:
|
8539 |
msgid "Organizer Singular Label"
|
8540 |
msgstr ""
|
8541 |
|
8542 |
-
#: app/libraries/main.php:
|
8543 |
msgid "Speaker Plural Label"
|
8544 |
msgstr ""
|
8545 |
|
8546 |
-
#: app/libraries/main.php:
|
8547 |
msgid "Speaker Singular Label"
|
8548 |
msgstr ""
|
8549 |
|
8550 |
-
#: app/libraries/main.php:
|
8551 |
msgid "Sunday abbreviation"
|
8552 |
msgstr ""
|
8553 |
|
8554 |
-
#: app/libraries/main.php:
|
8555 |
msgid "Monday abbreviation"
|
8556 |
msgstr ""
|
8557 |
|
8558 |
-
#: app/libraries/main.php:
|
8559 |
msgid "Tuesday abbreviation"
|
8560 |
msgstr ""
|
8561 |
|
8562 |
-
#: app/libraries/main.php:
|
8563 |
msgid "Wednesday abbreviation"
|
8564 |
msgstr ""
|
8565 |
|
8566 |
-
#: app/libraries/main.php:
|
8567 |
msgid "Thursday abbreviation"
|
8568 |
msgstr ""
|
8569 |
|
8570 |
-
#: app/libraries/main.php:
|
8571 |
msgid "Friday abbreviation"
|
8572 |
msgstr ""
|
8573 |
|
8574 |
-
#: app/libraries/main.php:
|
8575 |
msgid "Saturday abbreviation"
|
8576 |
msgstr ""
|
8577 |
|
8578 |
-
#: app/libraries/main.php:
|
8579 |
msgid "Others"
|
8580 |
msgstr ""
|
8581 |
|
8582 |
-
#: app/libraries/main.php:
|
8583 |
msgid "Booking Success Message"
|
8584 |
msgstr ""
|
8585 |
|
8586 |
-
#: app/libraries/main.php:
|
8587 |
msgid ""
|
8588 |
"Thanks you for booking. Your tickets are booked, booking verification might "
|
8589 |
"be needed, please check your email."
|
8590 |
msgstr ""
|
8591 |
|
8592 |
-
#: app/libraries/main.php:
|
8593 |
msgid "Booking Restriction Message 1"
|
8594 |
msgstr ""
|
8595 |
|
8596 |
-
#: app/libraries/main.php:
|
8597 |
#, php-format
|
8598 |
msgid ""
|
8599 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
8600 |
"tickets."
|
8601 |
msgstr ""
|
8602 |
|
8603 |
-
#: app/libraries/main.php:
|
8604 |
msgid "Booking Restriction Message 2"
|
8605 |
msgstr ""
|
8606 |
|
8607 |
-
#: app/libraries/main.php:
|
8608 |
#, php-format
|
8609 |
msgid ""
|
8610 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
8611 |
"tickets."
|
8612 |
msgstr ""
|
8613 |
|
8614 |
-
#: app/libraries/main.php:
|
8615 |
msgid "Booking IP Restriction Message"
|
8616 |
msgstr ""
|
8617 |
|
8618 |
-
#: app/libraries/main.php:
|
8619 |
#, php-format
|
8620 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
8621 |
msgstr ""
|
8622 |
|
8623 |
-
#: app/libraries/main.php:
|
8624 |
msgid "Booking Button"
|
8625 |
msgstr ""
|
8626 |
|
8627 |
-
#: app/libraries/main.php:
|
8628 |
#: app/modules/booking/steps/tickets.php:102
|
8629 |
msgid "Book Event"
|
8630 |
msgstr ""
|
8631 |
|
8632 |
-
#: app/libraries/main.php:
|
8633 |
#: app/widgets/single.php:133
|
8634 |
msgid "Register Button"
|
8635 |
msgstr ""
|
8636 |
|
8637 |
-
#: app/libraries/main.php:
|
8638 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
8639 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:104
|
8640 |
#: app/skins/grid/render.php:163 app/skins/grid/render.php:223
|
@@ -8652,11 +8691,11 @@ msgstr ""
|
|
8652 |
msgid "REGISTER"
|
8653 |
msgstr ""
|
8654 |
|
8655 |
-
#: app/libraries/main.php:
|
8656 |
msgid "View Detail Button"
|
8657 |
msgstr ""
|
8658 |
|
8659 |
-
#: app/libraries/main.php:
|
8660 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
8661 |
#: app/skins/grid/render.php:104 app/skins/grid/render.php:163
|
8662 |
#: app/skins/grid/render.php:223 app/skins/grid/render.php:245
|
@@ -8668,120 +8707,120 @@ msgstr ""
|
|
8668 |
msgid "View Detail"
|
8669 |
msgstr ""
|
8670 |
|
8671 |
-
#: app/libraries/main.php:
|
8672 |
msgid "Event Detail Button"
|
8673 |
msgstr ""
|
8674 |
|
8675 |
-
#: app/libraries/main.php:
|
8676 |
msgid "Event Detail"
|
8677 |
msgstr ""
|
8678 |
|
8679 |
-
#: app/libraries/main.php:
|
8680 |
msgid "Ticket (Singular)"
|
8681 |
msgstr ""
|
8682 |
|
8683 |
-
#: app/libraries/main.php:
|
8684 |
msgid "Tickets (Plural)"
|
8685 |
msgstr ""
|
8686 |
|
8687 |
-
#: app/libraries/main.php:
|
8688 |
msgid "EventON"
|
8689 |
msgstr ""
|
8690 |
|
8691 |
-
#: app/libraries/main.php:
|
8692 |
msgid "The Events Calendar"
|
8693 |
msgstr ""
|
8694 |
|
8695 |
-
#: app/libraries/main.php:
|
8696 |
msgid "Events Schedule WP Plugin"
|
8697 |
msgstr ""
|
8698 |
|
8699 |
-
#: app/libraries/main.php:
|
8700 |
msgid "Calendarize It"
|
8701 |
msgstr ""
|
8702 |
|
8703 |
-
#: app/libraries/main.php:
|
8704 |
msgid "Event Espresso"
|
8705 |
msgstr ""
|
8706 |
|
8707 |
-
#: app/libraries/main.php:
|
8708 |
msgid "Events Manager (Recurring)"
|
8709 |
msgstr ""
|
8710 |
|
8711 |
-
#: app/libraries/main.php:
|
8712 |
msgid "Events Manager (Single)"
|
8713 |
msgstr ""
|
8714 |
|
8715 |
-
#: app/libraries/main.php:
|
8716 |
msgid "WP Event Manager"
|
8717 |
msgstr ""
|
8718 |
|
8719 |
-
#: app/libraries/main.php:
|
8720 |
msgid "Waiting"
|
8721 |
msgstr ""
|
8722 |
|
8723 |
-
#: app/libraries/main.php:
|
8724 |
msgid "Sun"
|
8725 |
msgstr ""
|
8726 |
|
8727 |
-
#: app/libraries/main.php:
|
8728 |
msgid "Mon"
|
8729 |
msgstr ""
|
8730 |
|
8731 |
-
#: app/libraries/main.php:
|
8732 |
msgid "Tue"
|
8733 |
msgstr ""
|
8734 |
|
8735 |
-
#: app/libraries/main.php:
|
8736 |
msgid "Wed"
|
8737 |
msgstr ""
|
8738 |
|
8739 |
-
#: app/libraries/main.php:
|
8740 |
msgid "Thu"
|
8741 |
msgstr ""
|
8742 |
|
8743 |
-
#: app/libraries/main.php:
|
8744 |
msgid "Fri"
|
8745 |
msgstr ""
|
8746 |
|
8747 |
-
#: app/libraries/main.php:
|
8748 |
msgid "Sat"
|
8749 |
msgstr ""
|
8750 |
|
8751 |
-
#: app/libraries/main.php:
|
8752 |
-
#: app/libraries/render.php:
|
8753 |
msgid "Skin controller does not exist."
|
8754 |
msgstr ""
|
8755 |
|
8756 |
-
#: app/libraries/main.php:
|
8757 |
msgid "Sold Out"
|
8758 |
msgstr ""
|
8759 |
|
8760 |
-
#: app/libraries/main.php:
|
8761 |
msgid "Last Few Tickets"
|
8762 |
msgstr ""
|
8763 |
|
8764 |
-
#: app/libraries/main.php:
|
8765 |
msgid "Minutes"
|
8766 |
msgstr ""
|
8767 |
|
8768 |
-
#: app/libraries/main.php:
|
8769 |
msgid "AM / PM"
|
8770 |
msgstr ""
|
8771 |
|
8772 |
-
#: app/libraries/main.php:
|
8773 |
msgid "AM"
|
8774 |
msgstr ""
|
8775 |
|
8776 |
-
#: app/libraries/main.php:
|
8777 |
msgid "PM"
|
8778 |
msgstr ""
|
8779 |
|
8780 |
-
#: app/libraries/main.php:
|
8781 |
msgid "Ongoing..."
|
8782 |
msgstr ""
|
8783 |
|
8784 |
-
#: app/libraries/main.php:
|
8785 |
msgid "Expired!"
|
8786 |
msgstr ""
|
8787 |
|
@@ -8902,7 +8941,7 @@ msgid "Apply Coupon"
|
|
8902 |
msgstr ""
|
8903 |
|
8904 |
#: app/modules/booking/steps/checkout.php:138
|
8905 |
-
#: app/modules/booking/steps/form.php:
|
8906 |
msgid "Back"
|
8907 |
msgstr ""
|
8908 |
|
@@ -8914,15 +8953,15 @@ msgstr ""
|
|
8914 |
msgid "Attendee's Form"
|
8915 |
msgstr ""
|
8916 |
|
8917 |
-
#: app/modules/booking/steps/form.php:
|
8918 |
msgid "Fill other attendees information like the first form."
|
8919 |
msgstr ""
|
8920 |
|
8921 |
-
#: app/modules/booking/steps/form.php:
|
8922 |
msgid "Username"
|
8923 |
msgstr ""
|
8924 |
|
8925 |
-
#: app/modules/booking/steps/form.php:
|
8926 |
#: app/modules/booking/steps/tickets.php:180
|
8927 |
msgid "Add to Cart"
|
8928 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-12-16 12:21+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-12-16 12:22+0330\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
18 |
|
19 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
20 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
21 |
+
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1186
|
22 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
23 |
#: app/widgets/MEC.php:33
|
24 |
msgid "Modern Events Calendar"
|
25 |
msgstr ""
|
76 |
msgstr ""
|
77 |
|
78 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
79 |
+
#: app/features/mec/settings.php:794
|
80 |
msgid "Event Color"
|
81 |
msgstr ""
|
82 |
|
87 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
88 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
89 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
90 |
+
#: app/libraries/main.php:650
|
91 |
msgid "Settings"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: app/features/contextual.php:62 app/features/events.php:1445
|
95 |
+
#: app/features/events.php:2385 app/features/mec/booking.php:607
|
96 |
+
#: app/features/mec/booking.php:873 app/features/mec/settings.php:882
|
97 |
+
#: app/features/mec/support.php:29 app/libraries/main.php:602
|
98 |
msgid "Booking Form"
|
99 |
msgstr ""
|
100 |
|
107 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: app/features/contextual.php:70 app/features/events.php:1453
|
111 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
112 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:604
|
113 |
msgid "Payment Gateways"
|
114 |
msgstr ""
|
115 |
|
120 |
"\"0\" allowfullscreen></iframe>"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: app/features/contextual.php:77 app/features/events.php:353
|
124 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
125 |
+
#: app/libraries/main.php:798
|
126 |
msgid "Notifications"
|
127 |
msgstr ""
|
128 |
|
185 |
"\"0\" allowfullscreen></iframe>"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: app/features/contextual.php:117 app/features/mec/settings.php:66
|
189 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
190 |
msgid "General Options"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: app/features/contextual.php:139 app/features/mec/settings.php:490
|
194 |
#: app/libraries/main.php:568
|
195 |
msgid "Slugs/Permalinks"
|
196 |
msgstr ""
|
199 |
msgid "Event Details/Single Event Page"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: app/features/contextual.php:166 app/features/mec/settings.php:522
|
203 |
#: app/libraries/main.php:569
|
204 |
msgid "Currency Options"
|
205 |
msgstr ""
|
208 |
msgid "Google Maps Options"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: app/features/contextual.php:244 app/features/mec/settings.php:579
|
212 |
#: app/libraries/main.php:570
|
213 |
msgid "Google Recaptcha Options"
|
214 |
msgstr ""
|
215 |
|
216 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
217 |
+
#: app/libraries/main.php:588
|
218 |
msgid "Countdown Options"
|
219 |
msgstr ""
|
220 |
|
221 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
222 |
+
#: app/libraries/main.php:614
|
223 |
msgid "Social Networks"
|
224 |
msgstr ""
|
225 |
|
227 |
msgid "Next Event Module"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: app/features/contextual.php:286 app/features/mec/settings.php:619
|
231 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
232 |
msgid "Frontend Event Submission"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: app/features/contextual.php:298 app/features/events.php:346
|
236 |
+
#: app/libraries/main.php:589
|
237 |
msgid "Exceptional Days"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: app/features/contextual.php:308 app/features/events.php:316
|
241 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
242 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
243 |
+
#: app/libraries/main.php:597 app/libraries/main.php:628
|
244 |
+
#: app/libraries/main.php:715
|
245 |
msgid "Booking"
|
246 |
msgstr ""
|
247 |
|
248 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
249 |
+
#: app/features/mec/booking.php:833 app/libraries/main.php:599
|
250 |
msgid "Coupons"
|
251 |
msgstr ""
|
252 |
|
253 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
254 |
+
#: app/libraries/main.php:616
|
255 |
msgid "BuddyPress Integration"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:1095
|
259 |
+
#: app/libraries/main.php:575
|
260 |
msgid "Mailchimp Integration"
|
261 |
msgstr ""
|
262 |
|
264 |
msgid "MEC Activation"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: app/features/dlfile.php:121 app/features/events.php:1450
|
268 |
+
#: app/features/mec/booking.php:349 app/features/mec/settings.php:916
|
269 |
msgid "Downloadable File"
|
270 |
msgstr ""
|
271 |
|
295 |
msgid "File uploaded!"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: app/features/events.php:168 app/features/ix/export.php:34
|
299 |
+
#: app/features/mec/dashboard.php:265 app/libraries/main.php:5603
|
300 |
+
#: app/libraries/main.php:5623 app/skins/daily_view/tpl.php:82
|
301 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
302 |
#: app/skins/yearly_view/tpl.php:71
|
303 |
msgid "Events"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: app/features/events.php:169 app/features/fes.php:243
|
307 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
308 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
309 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
313 |
msgid "Event"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: app/features/events.php:170 app/features/mec.php:457
|
317 |
msgid "Add Event"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: app/features/events.php:171 app/features/mec/dashboard.php:140
|
321 |
msgid "Add New Event"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: app/features/events.php:172 app/features/ix.php:4403
|
325 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
326 |
#: app/skins/map/tpl.php:89
|
327 |
msgid "No events found!"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: app/features/events.php:173
|
331 |
msgid "All Events"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: app/features/events.php:174
|
335 |
msgid "Edit Event"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: app/features/events.php:175 app/features/fes/list.php:87
|
339 |
#: app/features/popup/event.php:252
|
340 |
msgid "View Event"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: app/features/events.php:176
|
344 |
msgid "No events found in Trash!"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: app/features/events.php:193 app/features/events.php:3471
|
348 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
349 |
#: app/features/mec/meta_boxes/search_form.php:31
|
350 |
+
#: app/features/mec/meta_boxes/search_form.php:102
|
351 |
+
#: app/features/mec/meta_boxes/search_form.php:173
|
352 |
+
#: app/features/mec/meta_boxes/search_form.php:244
|
353 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
354 |
+
#: app/features/mec/meta_boxes/search_form.php:384
|
355 |
+
#: app/features/mec/meta_boxes/search_form.php:454
|
356 |
+
#: app/features/mec/meta_boxes/search_form.php:517
|
357 |
+
#: app/features/mec/meta_boxes/search_form.php:587
|
358 |
+
#: app/features/mec/meta_boxes/search_form.php:657
|
359 |
+
#: app/features/mec/meta_boxes/search_form.php:763
|
360 |
+
#: app/features/mec/settings.php:988 app/features/mec/settings.php:1048
|
361 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
362 |
+
#: app/features/search.php:68 app/libraries/main.php:6486
|
363 |
+
#: app/libraries/main.php:6540 app/libraries/skins.php:938
|
364 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
365 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
366 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
367 |
msgid "Category"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: app/features/events.php:194 app/features/events.php:3426
|
371 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
372 |
#: app/features/mec/meta_boxes/filter.php:69
|
373 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6485
|
374 |
+
#: app/libraries/main.php:6539
|
375 |
msgid "Categories"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: app/features/events.php:204 app/features/labels.php:71
|
379 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
380 |
#: app/features/speakers.php:71
|
381 |
#, php-format
|
382 |
msgid "All %s"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: app/features/events.php:205 app/features/labels.php:72
|
386 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
387 |
#: app/features/speakers.php:72
|
388 |
#, php-format
|
389 |
msgid "Edit %s"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: app/features/events.php:206 app/features/labels.php:73
|
393 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
394 |
#: app/features/speakers.php:73
|
395 |
#, php-format
|
396 |
msgid "View %s"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: app/features/events.php:207 app/features/labels.php:74
|
400 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
401 |
#: app/features/speakers.php:74
|
402 |
#, php-format
|
403 |
msgid "Update %s"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: app/features/events.php:208 app/features/labels.php:75
|
407 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
408 |
#: app/features/speakers.php:75
|
409 |
#, php-format
|
410 |
msgid "Add New %s"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: app/features/events.php:209 app/features/labels.php:76
|
414 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
415 |
#: app/features/speakers.php:76
|
416 |
#, php-format
|
417 |
msgid "New %s Name"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: app/features/events.php:210 app/features/labels.php:77
|
421 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
422 |
#: app/features/speakers.php:77
|
423 |
#, php-format
|
424 |
msgid "Popular %s"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: app/features/events.php:211 app/features/labels.php:78
|
428 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
429 |
#: app/features/speakers.php:78
|
430 |
#, php-format
|
431 |
msgid "Search %s"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: app/features/events.php:236 app/features/events.php:257
|
435 |
msgid "Category Icon"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: app/features/events.php:239 app/features/events.php:262
|
439 |
msgid "Select icon"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: app/features/events.php:311
|
443 |
msgid "Event Details"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: app/features/events.php:342
|
447 |
msgid "FES Details"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: app/features/events.php:343
|
451 |
msgid "Date And Time"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: app/features/events.php:344 app/features/fes/form.php:366
|
455 |
msgid "Event Repeating"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: app/features/events.php:345 app/features/events.php:1179
|
459 |
msgid "Event Data"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: app/features/events.php:347 app/features/mec/settings.php:824
|
463 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
464 |
msgid "Hourly Schedule"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: app/features/events.php:348
|
468 |
msgid "Location/Venue"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: app/features/events.php:349
|
472 |
msgid "Links"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: app/features/events.php:350 app/features/events.php:3473
|
476 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
477 |
+
#: app/features/ix.php:4034
|
478 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
479 |
#: app/features/mec/meta_boxes/search_form.php:46
|
480 |
+
#: app/features/mec/meta_boxes/search_form.php:117
|
481 |
+
#: app/features/mec/meta_boxes/search_form.php:188
|
482 |
+
#: app/features/mec/meta_boxes/search_form.php:259
|
483 |
+
#: app/features/mec/meta_boxes/search_form.php:329
|
484 |
+
#: app/features/mec/meta_boxes/search_form.php:399
|
485 |
+
#: app/features/mec/meta_boxes/search_form.php:469
|
486 |
+
#: app/features/mec/meta_boxes/search_form.php:532
|
487 |
+
#: app/features/mec/meta_boxes/search_form.php:602
|
488 |
+
#: app/features/mec/meta_boxes/search_form.php:672
|
489 |
+
#: app/features/mec/meta_boxes/search_form.php:778
|
490 |
+
#: app/features/mec/settings.php:1060 app/features/mec/single.php:335
|
491 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
492 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
493 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
494 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
495 |
+
#: app/features/search.php:80 app/libraries/main.php:6492
|
496 |
+
#: app/libraries/main.php:6546 app/libraries/skins.php:990
|
497 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
498 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
499 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
500 |
msgid "Organizer"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: app/features/events.php:351 app/features/events.php:1166
|
504 |
+
#: app/features/fes/form.php:836 app/features/mec/settings.php:985
|
505 |
+
#: app/libraries/main.php:6523 app/libraries/main.php:6572
|
506 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
507 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
508 |
#: app/skins/single/modern.php:237
|
509 |
msgid "Cost"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: app/features/events.php:352
|
513 |
msgid "SEO Schema / Event Status"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: app/features/events.php:505
|
517 |
msgid "Note for reviewer"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: app/features/events.php:511
|
521 |
msgid "Guest Data"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: app/features/events.php:512 app/features/events.php:2371
|
525 |
+
#: app/features/events.php:3985 app/features/fes.php:243
|
526 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
527 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
528 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
530 |
msgid "Name"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: app/features/events.php:513 app/features/events.php:2380
|
534 |
+
#: app/features/events.php:2447 app/features/events.php:2536
|
535 |
+
#: app/features/events.php:3988 app/features/fes.php:243
|
536 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
537 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
538 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
539 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
540 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
541 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1903
|
542 |
+
#: app/libraries/main.php:1972 app/libraries/main.php:3424
|
543 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
544 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
545 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
548 |
msgid "Email"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: app/features/events.php:522
|
552 |
msgid ""
|
553 |
"This event is imported from Google calendar so if you modify it, it would "
|
554 |
"overwrite in the next import from Google."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: app/features/events.php:526 app/features/fes/form.php:278
|
558 |
msgid "Date and Time"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: app/features/events.php:529 app/features/events.php:533
|
562 |
+
#: app/features/events.php:3474 app/features/events.php:3662
|
563 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
564 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
565 |
+
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1406
|
566 |
#: app/features/mec/meta_boxes/display_options.php:52
|
567 |
#: app/features/mec/meta_boxes/display_options.php:298
|
568 |
#: app/features/mec/meta_boxes/display_options.php:555
|
582 |
msgid "Start Date"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: app/features/events.php:548 app/features/events.php:552
|
586 |
+
#: app/features/events.php:3475 app/features/events.php:3662
|
587 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
588 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
589 |
+
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1407
|
590 |
#: app/features/popup/event.php:92
|
591 |
msgid "End Date"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: app/features/events.php:575 app/features/fes/form.php:319
|
595 |
#: app/features/popup/event.php:109
|
596 |
msgid "All-day Event"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: app/features/events.php:585 app/features/fes/form.php:322
|
600 |
msgid "Hide Event Time"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: app/features/events.php:595 app/features/fes/form.php:325
|
604 |
msgid "Hide Event End Time"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: app/features/events.php:600 app/features/events.php:604
|
608 |
#: app/features/fes/form.php:329
|
609 |
msgid "Notes on the time"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: app/features/events.php:605 app/features/fes/form.php:330
|
613 |
msgid ""
|
614 |
"It shows next to event time on the Single Event Page. You can enter notes "
|
615 |
"such as timezone in this field."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: app/features/events.php:607 app/features/events.php:776
|
619 |
+
#: app/features/events.php:1129 app/features/events.php:1278
|
620 |
+
#: app/features/events.php:1415 app/features/events.php:1530
|
621 |
+
#: app/features/events.php:1765 app/features/events.php:1780
|
622 |
+
#: app/features/events.php:1957 app/features/events.php:1970
|
623 |
+
#: app/features/events.php:2122 app/features/events.php:2158
|
624 |
+
#: app/features/events.php:2256 app/features/events.php:2271
|
625 |
+
#: app/features/events.php:2301 app/features/events.php:2314
|
626 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
627 |
+
#: app/features/locations.php:335 app/features/mec/booking.php:117
|
628 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
629 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
630 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
677 |
#: app/features/mec/notifications.php:950
|
678 |
#: app/features/mec/notifications.php:961
|
679 |
#: app/features/mec/notifications.php:1086
|
680 |
+
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:81
|
681 |
+
#: app/features/mec/settings.php:100 app/features/mec/settings.php:147
|
682 |
+
#: app/features/mec/settings.php:182 app/features/mec/settings.php:203
|
683 |
+
#: app/features/mec/settings.php:248 app/features/mec/settings.php:291
|
684 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
685 |
+
#: app/features/mec/settings.php:462 app/features/mec/settings.php:479
|
686 |
+
#: app/features/mec/settings.php:498 app/features/mec/settings.php:512
|
687 |
+
#: app/features/mec/settings.php:540 app/features/mec/settings.php:631
|
688 |
+
#: app/features/mec/settings.php:956 app/features/mec/settings.php:972
|
689 |
+
#: app/features/mec/settings.php:1110 app/features/mec/settings.php:1123
|
690 |
+
#: app/features/mec/settings.php:1139 app/features/mec/single.php:46
|
691 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
692 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
693 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
701 |
msgid "Read More"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: app/features/events.php:617 app/features/fes/form.php:337
|
705 |
msgid "Timezone"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: app/features/events.php:622 app/features/events.php:635
|
709 |
+
#: app/features/events.php:1606 app/features/events.php:1616
|
710 |
+
#: app/features/events.php:1639 app/features/events.php:2084
|
711 |
+
#: app/features/events.php:2216 app/features/events.php:2402
|
712 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
713 |
msgid "Inherit from global options"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: app/features/events.php:631 app/features/events.php:634
|
717 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
718 |
msgid "Countdown Method"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: app/features/events.php:636 app/features/fes/form.php:356
|
722 |
msgid "Count to Event Start"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: app/features/events.php:637 app/features/fes/form.php:357
|
726 |
msgid "Count to Event End"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: app/features/events.php:645
|
730 |
msgid "Repeating"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: app/features/events.php:654
|
734 |
msgid "Event Repeating (Recurring events)"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: app/features/events.php:658 app/features/fes/form.php:370
|
738 |
msgid "Repeats"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: app/features/events.php:666 app/features/fes/form.php:372
|
742 |
+
#: app/features/mec.php:1409 app/skins/default_full_calendar/tpl.php:77
|
743 |
#: app/skins/full_calendar/tpl.php:124
|
744 |
msgid "Daily"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: app/features/events.php:673 app/features/fes/form.php:373
|
748 |
msgid "Every Weekday"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: app/features/events.php:680 app/features/fes/form.php:374
|
752 |
msgid "Every Weekend"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: app/features/events.php:687 app/features/fes/form.php:375
|
756 |
msgid "Certain Weekdays"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: app/features/events.php:694 app/features/fes/form.php:376
|
760 |
#: app/skins/default_full_calendar/tpl.php:76
|
761 |
#: app/skins/full_calendar/tpl.php:123
|
762 |
msgid "Weekly"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: app/features/events.php:701 app/features/fes/form.php:377
|
766 |
+
#: app/features/mec.php:1410 app/skins/default_full_calendar/tpl.php:75
|
767 |
#: app/skins/full_calendar/tpl.php:122
|
768 |
msgid "Monthly"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: app/features/events.php:708 app/features/fes/form.php:378
|
772 |
+
#: app/features/mec.php:1411 app/skins/default_full_calendar/tpl.php:74
|
773 |
#: app/skins/full_calendar/tpl.php:121
|
774 |
msgid "Yearly"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: app/features/events.php:715 app/features/fes/form.php:379
|
778 |
msgid "Custom Days"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: app/features/events.php:722 app/features/fes/form.php:380
|
782 |
msgid "Advanced"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: app/features/events.php:727 app/features/fes/form.php:384
|
786 |
msgid "Repeat Interval"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: app/features/events.php:729 app/features/fes/form.php:385
|
790 |
msgid "Repeat interval"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: app/features/events.php:733 app/features/fes/form.php:388
|
794 |
msgid "Week Days"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: app/features/events.php:750
|
798 |
msgid ""
|
799 |
"To add multiple occurrences per day you need Pro version of Modern Events "
|
800 |
"Calendar."
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: app/features/events.php:756 app/features/events.php:1848
|
804 |
+
#: app/features/events.php:1876 app/features/events.php:2026
|
805 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
806 |
#: app/features/ix/import_g_calendar.php:51
|
807 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
808 |
+
#: app/libraries/skins.php:1142
|
809 |
msgid "Start"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: app/features/events.php:769 app/features/events.php:1272
|
813 |
+
#: app/features/events.php:1832 app/features/events.php:2015
|
814 |
+
#: app/features/events.php:2095 app/features/events.php:2228
|
815 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
816 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
817 |
#: app/libraries/hourlyschedule.php:119
|
818 |
msgid "Add"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: app/features/events.php:772 app/features/fes/form.php:435
|
822 |
msgid "Custom Days Repeating"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: app/features/events.php:775 app/features/fes/form.php:438
|
826 |
msgid ""
|
827 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
828 |
"start and end dates should be the same, If you have a multiple day event, "
|
829 |
"the start and end dates must be commensurate with the initial date."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: app/features/events.php:786 app/features/events.php:1852
|
833 |
+
#: app/features/events.php:1880 app/features/events.php:2030
|
834 |
+
#: app/features/fes/form.php:417 app/libraries/skins.php:1145
|
835 |
msgid "End"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: app/features/events.php:863 app/features/fes/form.php:511
|
839 |
msgid "First"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: app/features/events.php:905 app/features/fes/form.php:553
|
843 |
msgid "Second"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: app/features/events.php:947 app/features/fes/form.php:595
|
847 |
msgid "Third"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: app/features/events.php:989 app/features/fes/form.php:637
|
851 |
msgid "Fourth"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: app/features/events.php:1031 app/features/fes/form.php:679
|
855 |
msgid "Last"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: app/features/events.php:1078 app/features/fes/form.php:725
|
859 |
msgid "Ends Repeat"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: app/features/events.php:1090 app/features/fes/form.php:729
|
863 |
msgid "Never"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: app/features/events.php:1102 app/features/fes/form.php:734
|
867 |
msgid "On"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: app/features/events.php:1118 app/features/fes/form.php:741
|
871 |
#: app/features/mec/booking.php:154
|
872 |
msgid "After"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: app/features/events.php:1122 app/features/events.php:1126
|
876 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
877 |
msgid "Occurrences times"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: app/features/events.php:1127
|
881 |
msgid ""
|
882 |
"The event will finish after certain repeats. For example if you set it to "
|
883 |
"10, the event will finish after 10 occurrences."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: app/features/events.php:1143 app/features/fes/form.php:760
|
887 |
msgid "Show only one occurrence of this event"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: app/features/events.php:1162 app/features/events.php:3662
|
891 |
+
#: app/features/fes/form.php:833 app/features/ix.php:3992
|
892 |
+
#: app/features/ix.php:4034 app/features/mec/settings.php:770
|
893 |
+
#: app/libraries/main.php:6522 app/libraries/main.php:6571
|
894 |
#: app/widgets/single.php:105
|
895 |
msgid "Event Cost"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: app/features/events.php:1259
|
899 |
msgid "Exceptional Days (Exclude Dates)"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: app/features/events.php:1265 app/features/events.php:1275
|
903 |
msgid "Exclude certain days"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: app/features/events.php:1270 app/features/events.php:2448
|
907 |
+
#: app/features/events.php:2537 app/features/fes.php:243
|
908 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
909 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
910 |
+
#: app/features/wc.php:83 app/libraries/main.php:3511
|
911 |
#: app/modules/booking/steps/tickets.php:106
|
912 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
913 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
915 |
msgid "Date"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: app/features/events.php:1276
|
919 |
msgid ""
|
920 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
921 |
"exclude only single day occurrences and you cannot exclude one day from "
|
922 |
"multiple day occurrences."
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: app/features/events.php:1334 app/libraries/render.php:566
|
926 |
msgid "Day 1"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: app/features/events.php:1378 app/features/fes/form.php:810
|
930 |
+
#: app/features/mec/settings.php:764
|
931 |
msgid "Event Links"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: app/features/events.php:1381 app/features/events.php:1389
|
935 |
+
#: app/features/fes/form.php:812 app/features/mec/settings.php:986
|
936 |
+
#: app/libraries/main.php:6520 app/libraries/main.php:6569
|
937 |
msgid "Event Link"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: app/features/events.php:1384 app/features/events.php:1402
|
941 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
942 |
msgid "eg. http://yoursite.com/your-event"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: app/features/events.php:1390
|
946 |
msgid ""
|
947 |
"If you fill it, it will replace the default event page link. Insert full "
|
948 |
"link including http(s):// - Also, if you use advertising URL, can use URL "
|
949 |
"Shortener"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: app/features/events.php:1392
|
953 |
msgid "URL Shortener"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: app/features/events.php:1399 app/features/events.php:1412
|
957 |
+
#: app/features/fes/form.php:817 app/libraries/main.php:6521
|
958 |
+
#: app/libraries/main.php:6570 app/skins/single.php:1126
|
959 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
960 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
961 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
962 |
msgid "More Info"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: app/features/events.php:1405 app/features/fes/form.php:819
|
966 |
msgid "More Information"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: app/features/events.php:1407 app/features/fes/form.php:821
|
970 |
+
#: app/features/mec.php:1008 app/features/popup/shortcode.php:477
|
971 |
msgid "Current Window"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: app/features/events.php:1408 app/features/fes/form.php:822
|
975 |
+
#: app/features/mec.php:1009 app/features/popup/shortcode.php:481
|
976 |
msgid "New Window"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: app/features/events.php:1413 app/features/fes/form.php:824
|
980 |
msgid ""
|
981 |
"If you fill it, it will be shown in event details page as an optional link. "
|
982 |
"Insert full link including http(s)://"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: app/features/events.php:1436 app/features/mec/settings.php:832
|
986 |
msgid "Booking Options"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: app/features/events.php:1437 app/features/events.php:1628
|
990 |
+
#: app/features/mec/settings.php:869
|
991 |
msgid "Total User Booking Limits"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: app/features/events.php:1438 app/features/events.php:1684
|
995 |
+
#: app/libraries/book.php:63 app/libraries/main.php:6525
|
996 |
#: app/modules/booking/steps/tickets.php:137
|
997 |
#: app/modules/booking/steps/tickets.php:143
|
998 |
msgid "Tickets"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: app/features/events.php:1440 app/features/events.php:2072
|
1002 |
msgid "Fees"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: app/features/events.php:1443 app/features/events.php:2204
|
1006 |
+
#: app/features/mec/settings.php:894
|
1007 |
msgid "Ticket Variations / Options"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: app/features/events.php:1447 app/features/mec/booking.php:904
|
1011 |
#: app/features/mec/support-page.php:118
|
1012 |
msgid "Organizer Payment"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: app/features/events.php:1512 app/features/events.php:1526
|
1016 |
msgid "Total booking limit"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: app/features/events.php:1523 app/features/events.php:1801
|
1020 |
+
#: app/features/events.php:1984 app/modules/booking/default.php:98
|
1021 |
#: app/modules/booking/steps/tickets.php:137
|
1022 |
#: app/modules/booking/steps/tickets.php:143
|
1023 |
#: app/skins/available_spot/tpl.php:140
|
1024 |
msgid "Unlimited"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: app/features/events.php:1529
|
1028 |
msgid ""
|
1029 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1030 |
"limitation number."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: app/features/events.php:1531
|
1034 |
msgid "Read About A Booking System"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: app/features/events.php:1539
|
1038 |
msgid "100"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: app/features/events.php:1544
|
1042 |
msgid "Discount per user roles"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: app/features/events.php:1550
|
1046 |
msgid "5"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: app/features/events.php:1556 app/features/events.php:1570
|
1050 |
+
#: app/features/mec/settings.php:851
|
1051 |
msgid "Book All Occurrences"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: app/features/events.php:1567
|
1055 |
msgid "Sell all occurrences by one booking"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: app/features/events.php:1573
|
1059 |
msgid ""
|
1060 |
"If you have a series of events and you want to sell all of them at once, "
|
1061 |
"this option is for you! For example a weekly yoga course or something "
|
1062 |
"similar."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: app/features/events.php:1584 app/features/mec/booking.php:129
|
1066 |
+
#: app/features/mec/settings.php:857
|
1067 |
msgid "Interval Options"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: app/features/events.php:1586 app/features/events.php:1591
|
1071 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1072 |
msgid "Show Booking Form Interval"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: app/features/events.php:1588 app/features/mec/booking.php:133
|
1076 |
msgid "Minutes (e.g 5)"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: app/features/events.php:1592 app/features/mec/booking.php:137
|
1080 |
msgid ""
|
1081 |
"You can show booking form only at certain times before event start. If you "
|
1082 |
"set this option to 30 then booking form will open only 30 minutes before "
|
1083 |
"starting the event! One day is 1440 minutes."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: app/features/events.php:1601 app/features/mec/settings.php:863
|
1087 |
msgid "Automatic Approval"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: app/features/events.php:1603 app/features/notifications.php:160
|
1091 |
msgid "Email Verification"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: app/features/events.php:1607 app/features/events.php:1617
|
1095 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1096 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1097 |
#: app/features/mec/booking.php:868
|
1103 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1104 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1105 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1106 |
+
#: app/features/mec/meta_boxes/search_form.php:91
|
1107 |
+
#: app/features/mec/meta_boxes/search_form.php:104
|
1108 |
+
#: app/features/mec/meta_boxes/search_form.php:111
|
1109 |
+
#: app/features/mec/meta_boxes/search_form.php:119
|
1110 |
+
#: app/features/mec/meta_boxes/search_form.php:126
|
1111 |
+
#: app/features/mec/meta_boxes/search_form.php:133
|
1112 |
+
#: app/features/mec/meta_boxes/search_form.php:140
|
1113 |
+
#: app/features/mec/meta_boxes/search_form.php:147
|
1114 |
+
#: app/features/mec/meta_boxes/search_form.php:154
|
1115 |
+
#: app/features/mec/meta_boxes/search_form.php:162
|
1116 |
+
#: app/features/mec/meta_boxes/search_form.php:175
|
1117 |
+
#: app/features/mec/meta_boxes/search_form.php:182
|
1118 |
+
#: app/features/mec/meta_boxes/search_form.php:190
|
1119 |
+
#: app/features/mec/meta_boxes/search_form.php:197
|
1120 |
+
#: app/features/mec/meta_boxes/search_form.php:204
|
1121 |
+
#: app/features/mec/meta_boxes/search_form.php:211
|
1122 |
+
#: app/features/mec/meta_boxes/search_form.php:218
|
1123 |
+
#: app/features/mec/meta_boxes/search_form.php:225
|
1124 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
1125 |
+
#: app/features/mec/meta_boxes/search_form.php:246
|
1126 |
+
#: app/features/mec/meta_boxes/search_form.php:253
|
1127 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
1128 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
1129 |
+
#: app/features/mec/meta_boxes/search_form.php:275
|
1130 |
+
#: app/features/mec/meta_boxes/search_form.php:282
|
1131 |
+
#: app/features/mec/meta_boxes/search_form.php:289
|
1132 |
+
#: app/features/mec/meta_boxes/search_form.php:296
|
1133 |
+
#: app/features/mec/meta_boxes/search_form.php:303
|
1134 |
+
#: app/features/mec/meta_boxes/search_form.php:316
|
1135 |
+
#: app/features/mec/meta_boxes/search_form.php:323
|
1136 |
+
#: app/features/mec/meta_boxes/search_form.php:331
|
1137 |
+
#: app/features/mec/meta_boxes/search_form.php:338
|
1138 |
+
#: app/features/mec/meta_boxes/search_form.php:345
|
1139 |
+
#: app/features/mec/meta_boxes/search_form.php:352
|
1140 |
+
#: app/features/mec/meta_boxes/search_form.php:359
|
1141 |
+
#: app/features/mec/meta_boxes/search_form.php:366
|
1142 |
+
#: app/features/mec/meta_boxes/search_form.php:373
|
1143 |
+
#: app/features/mec/meta_boxes/search_form.php:386
|
1144 |
+
#: app/features/mec/meta_boxes/search_form.php:393
|
1145 |
+
#: app/features/mec/meta_boxes/search_form.php:401
|
1146 |
+
#: app/features/mec/meta_boxes/search_form.php:408
|
1147 |
+
#: app/features/mec/meta_boxes/search_form.php:415
|
1148 |
+
#: app/features/mec/meta_boxes/search_form.php:422
|
1149 |
+
#: app/features/mec/meta_boxes/search_form.php:429
|
1150 |
+
#: app/features/mec/meta_boxes/search_form.php:436
|
1151 |
+
#: app/features/mec/meta_boxes/search_form.php:443
|
1152 |
+
#: app/features/mec/meta_boxes/search_form.php:456
|
1153 |
+
#: app/features/mec/meta_boxes/search_form.php:463
|
1154 |
+
#: app/features/mec/meta_boxes/search_form.php:471
|
1155 |
+
#: app/features/mec/meta_boxes/search_form.php:478
|
1156 |
+
#: app/features/mec/meta_boxes/search_form.php:485
|
1157 |
+
#: app/features/mec/meta_boxes/search_form.php:492
|
1158 |
+
#: app/features/mec/meta_boxes/search_form.php:499
|
1159 |
+
#: app/features/mec/meta_boxes/search_form.php:506
|
1160 |
+
#: app/features/mec/meta_boxes/search_form.php:519
|
1161 |
+
#: app/features/mec/meta_boxes/search_form.php:526
|
1162 |
+
#: app/features/mec/meta_boxes/search_form.php:534
|
1163 |
+
#: app/features/mec/meta_boxes/search_form.php:541
|
1164 |
+
#: app/features/mec/meta_boxes/search_form.php:548
|
1165 |
+
#: app/features/mec/meta_boxes/search_form.php:555
|
1166 |
+
#: app/features/mec/meta_boxes/search_form.php:562
|
1167 |
+
#: app/features/mec/meta_boxes/search_form.php:569
|
1168 |
+
#: app/features/mec/meta_boxes/search_form.php:576
|
1169 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1170 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
1171 |
+
#: app/features/mec/meta_boxes/search_form.php:604
|
1172 |
+
#: app/features/mec/meta_boxes/search_form.php:611
|
1173 |
+
#: app/features/mec/meta_boxes/search_form.php:618
|
1174 |
+
#: app/features/mec/meta_boxes/search_form.php:625
|
1175 |
+
#: app/features/mec/meta_boxes/search_form.php:632
|
1176 |
+
#: app/features/mec/meta_boxes/search_form.php:639
|
1177 |
+
#: app/features/mec/meta_boxes/search_form.php:646
|
1178 |
+
#: app/features/mec/meta_boxes/search_form.php:659
|
1179 |
+
#: app/features/mec/meta_boxes/search_form.php:666
|
1180 |
+
#: app/features/mec/meta_boxes/search_form.php:674
|
1181 |
+
#: app/features/mec/meta_boxes/search_form.php:681
|
1182 |
+
#: app/features/mec/meta_boxes/search_form.php:688
|
1183 |
+
#: app/features/mec/meta_boxes/search_form.php:695
|
1184 |
+
#: app/features/mec/meta_boxes/search_form.php:702
|
1185 |
+
#: app/features/mec/meta_boxes/search_form.php:709
|
1186 |
+
#: app/features/mec/meta_boxes/search_form.php:716
|
1187 |
+
#: app/features/mec/meta_boxes/search_form.php:765
|
1188 |
+
#: app/features/mec/meta_boxes/search_form.php:772
|
1189 |
+
#: app/features/mec/meta_boxes/search_form.php:780
|
1190 |
+
#: app/features/mec/meta_boxes/search_form.php:787
|
1191 |
+
#: app/features/mec/meta_boxes/search_form.php:794
|
1192 |
+
#: app/features/mec/meta_boxes/search_form.php:801
|
1193 |
+
#: app/features/mec/meta_boxes/search_form.php:808
|
1194 |
+
#: app/features/mec/meta_boxes/search_form.php:815
|
1195 |
+
#: app/features/mec/meta_boxes/search_form.php:822
|
1196 |
+
#: app/features/mec/modules.php:124 app/features/mec/settings.php:112
|
1197 |
+
#: app/features/mec/settings.php:474
|
1198 |
msgid "Disabled"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: app/features/events.php:1608 app/features/events.php:1618
|
1202 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1203 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1204 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1205 |
+
#: app/features/mec/settings.php:113
|
1206 |
msgid "Enabled"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: app/features/events.php:1613 app/features/mec/booking.php:376
|
1210 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1211 |
+
#: app/libraries/main.php:629
|
1212 |
msgid "Booking Confirmation"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: app/features/events.php:1642
|
|
|
|
|
|
|
|
|
1216 |
msgid "12"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: app/features/events.php:1649
|
1220 |
msgid "Disabled Gateways"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: app/features/events.php:1650
|
1224 |
msgid ""
|
1225 |
"You can disable some of the following payment gateways by checking them "
|
1226 |
"otherwise they will be enabled."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: app/features/events.php:1687
|
1230 |
msgid ""
|
1231 |
"You're translating an event so MEC will use the original event for tickets "
|
1232 |
"and booking. You can only translate the ticket name and description. Please "
|
1233 |
"define exact tickets that you defined in the original event here."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: app/features/events.php:1692
|
1237 |
msgid "Add Ticket"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1241 |
msgid "Ticket ID"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1245 |
+
#: app/features/events.php:3662 app/features/fes.php:243
|
1246 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1247 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1248 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1249 |
msgid "ID"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: app/features/events.php:1707 app/features/events.php:1903
|
1253 |
msgid "Ticket Name"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: app/features/events.php:1712 app/features/events.php:1907
|
1257 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1258 |
+
#: app/features/ix.php:4034
|
1259 |
msgid "Start Time"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: app/features/events.php:1725 app/features/events.php:1920
|
1263 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1264 |
+
#: app/features/ix.php:4034
|
1265 |
msgid "End Time"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: app/features/events.php:1741 app/features/events.php:1935
|
1269 |
+
#: app/features/events.php:3662 app/libraries/hourlyschedule.php:65
|
1270 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1271 |
msgid "Description"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: app/features/events.php:1746 app/features/events.php:1749
|
1275 |
+
#: app/features/events.php:1939 app/features/events.php:1942
|
1276 |
msgid "Private Description"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: app/features/events.php:1750 app/features/events.php:1943
|
1280 |
#, php-format
|
1281 |
msgid ""
|
1282 |
"You can show it on the email notifications by placing "
|
1283 |
"%%ticket_private_description%% into the email template."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: app/features/events.php:1758 app/features/events.php:1762
|
1287 |
+
#: app/features/events.php:1856 app/features/events.php:1883
|
1288 |
+
#: app/features/events.php:1951 app/features/events.php:1954
|
1289 |
+
#: app/features/events.php:2032 app/features/events.php:2249
|
1290 |
+
#: app/features/events.php:2253 app/features/events.php:2295
|
1291 |
+
#: app/features/events.php:2298 app/features/mec/booking.php:547
|
1292 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1293 |
#: app/features/mec/booking.php:582
|
1294 |
msgid "Price"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: app/features/events.php:1763 app/features/events.php:1955
|
1298 |
msgid ""
|
1299 |
"Insert 0 for free ticket. Only numbers please — Enter only the price without "
|
1300 |
"any symbols or characters."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: app/features/events.php:1772 app/features/events.php:1777
|
1304 |
+
#: app/features/events.php:1964 app/features/events.php:1967
|
1305 |
msgid "Price Label"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: app/features/events.php:1778 app/features/events.php:1968
|
1309 |
msgid "For showing on website. e.g. $15"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: app/features/events.php:1788 app/features/events.php:1978
|
1313 |
msgid "Available Tickets"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: app/features/events.php:1805 app/features/events.php:1988
|
1317 |
msgid "Minimum Ticket e.g. 3"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: app/features/events.php:1808 app/features/events.php:1991
|
1321 |
msgid "MinimumTicket"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: app/features/events.php:1810 app/features/events.php:1993
|
1325 |
msgid "Set a number for the minimum ticket reservation possible"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: app/features/events.php:1818 app/features/events.php:2001
|
1329 |
msgid "e.g. 0"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: app/features/events.php:1820 app/features/events.php:2003
|
1333 |
msgid "Day"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: app/features/events.php:1821 app/features/events.php:2004
|
1337 |
msgid "Hour"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: app/features/events.php:1823 app/features/events.php:2006
|
1341 |
#, php-format
|
1342 |
msgid "Stop selling ticket %s before event start."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: app/features/events.php:1830 app/features/events.php:2013
|
1346 |
msgid "Price per Date"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: app/features/events.php:1860 app/features/events.php:1886
|
1350 |
+
#: app/features/events.php:2034 app/features/labels.php:60
|
1351 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1352 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1353 |
+
#: app/features/mec/meta_boxes/search_form.php:138
|
1354 |
+
#: app/features/mec/meta_boxes/search_form.php:209
|
1355 |
+
#: app/features/mec/meta_boxes/search_form.php:280
|
1356 |
+
#: app/features/mec/meta_boxes/search_form.php:350
|
1357 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
1358 |
+
#: app/features/mec/meta_boxes/search_form.php:490
|
1359 |
+
#: app/features/mec/meta_boxes/search_form.php:553
|
1360 |
+
#: app/features/mec/meta_boxes/search_form.php:623
|
1361 |
+
#: app/features/mec/meta_boxes/search_form.php:693
|
1362 |
+
#: app/features/mec/meta_boxes/search_form.php:799
|
1363 |
+
#: app/features/mec/settings.php:989 app/features/mec/settings.php:1080
|
1364 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1365 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1366 |
msgid "Label"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: app/features/events.php:1862 app/features/events.php:1888
|
1370 |
+
#: app/features/events.php:2036 app/features/events.php:2135
|
1371 |
+
#: app/features/events.php:2171 app/features/events.php:2278
|
1372 |
+
#: app/features/events.php:2320 app/features/mec/booking.php:486
|
1373 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1374 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1375 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1376 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1377 |
+
#: app/libraries/main.php:3346 app/libraries/main.php:3375
|
1378 |
+
#: app/libraries/main.php:3404 app/libraries/main.php:3433
|
1379 |
+
#: app/libraries/main.php:3462 app/libraries/main.php:3491
|
1380 |
+
#: app/libraries/main.php:3520 app/libraries/main.php:3549
|
1381 |
+
#: app/libraries/main.php:3578 app/libraries/main.php:3599
|
1382 |
+
#: app/libraries/main.php:3630 app/libraries/main.php:3676
|
1383 |
+
#: app/libraries/main.php:3722 app/libraries/main.php:3771
|
1384 |
+
#: app/libraries/main.php:3811
|
1385 |
msgid "Remove"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: app/features/events.php:2109 app/features/events.php:2147
|
1389 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1390 |
msgid "Fee Title"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: app/features/events.php:2115 app/features/events.php:2119
|
1394 |
+
#: app/features/events.php:2152 app/features/events.php:2155
|
1395 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1396 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1397 |
msgid "Amount"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: app/features/events.php:2120 app/features/events.php:2156
|
1401 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1402 |
msgid ""
|
1403 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1404 |
"otherwise considered as percentage"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: app/features/events.php:2129 app/features/events.php:2165
|
1408 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1409 |
msgid "Percent"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: app/features/events.php:2130 app/features/events.php:2166
|
1413 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1414 |
msgid "Amount (Per Ticket)"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: app/features/events.php:2131 app/features/events.php:2167
|
1418 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1419 |
msgid "Amount (Per Booking)"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: app/features/events.php:2243 app/features/events.php:2290
|
1423 |
+
#: app/features/events.php:3470 app/features/events.php:3662
|
1424 |
+
#: app/features/fes/form.php:256 app/features/ix.php:3992
|
1425 |
+
#: app/features/ix.php:4034 app/features/mec/booking.php:543
|
1426 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1427 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1428 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
1430 |
msgid "Title"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: app/features/events.php:2254 app/features/events.php:2299
|
1434 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1435 |
msgid "Option Price"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: app/features/events.php:2264 app/features/events.php:2268
|
1439 |
+
#: app/features/events.php:2308 app/features/events.php:2311
|
1440 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1441 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1442 |
msgid "Maximum Per Ticket"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: app/features/events.php:2269 app/features/events.php:2312
|
1446 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1447 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: app/features/events.php:2388
|
1451 |
msgid ""
|
1452 |
"You're translating an event so MEC will use the original event for booking "
|
1453 |
"form. You can only translate the field name and options. Please define exact "
|
1454 |
"fields that you defined in the original event here."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: app/features/events.php:2414 app/features/mec/booking.php:609
|
1458 |
msgid "Per Attendee Fields"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: app/features/events.php:2444 app/features/mec/booking.php:642
|
1462 |
+
#: app/libraries/main.php:3366
|
1463 |
msgid "MEC Name"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: app/features/events.php:2445 app/features/mec/booking.php:643
|
1467 |
+
#: app/libraries/main.php:3395
|
1468 |
msgid "MEC Email"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: app/features/events.php:2446 app/features/events.php:2535
|
1472 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1473 |
+
#: app/features/mec/single.php:190 app/libraries/main.php:3337
|
1474 |
msgid "Text"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: app/features/events.php:2449 app/features/events.php:2538
|
1478 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1479 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1480 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1481 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1482 |
+
#: app/libraries/main.php:3540
|
1483 |
msgid "Tel"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: app/features/events.php:2450 app/features/mec/booking.php:648
|
1487 |
+
#: app/libraries/main.php:3482
|
1488 |
msgid "File"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: app/features/events.php:2451 app/features/events.php:2539
|
1492 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1493 |
+
#: app/features/mec/single.php:195 app/libraries/main.php:3569
|
1494 |
msgid "Textarea"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: app/features/events.php:2452 app/features/events.php:2540
|
1498 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1499 |
+
#: app/features/mec/single.php:197 app/libraries/main.php:3621
|
1500 |
msgid "Checkboxes"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: app/features/events.php:2453 app/features/events.php:2541
|
1504 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1505 |
+
#: app/features/mec/single.php:198 app/libraries/main.php:3667
|
1506 |
msgid "Radio Buttons"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: app/features/events.php:2454 app/features/events.php:2542
|
1510 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1511 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1512 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1514 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1515 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1516 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1517 |
+
#: app/features/mec/meta_boxes/search_form.php:105
|
1518 |
+
#: app/features/mec/meta_boxes/search_form.php:112
|
1519 |
+
#: app/features/mec/meta_boxes/search_form.php:120
|
1520 |
+
#: app/features/mec/meta_boxes/search_form.php:127
|
1521 |
+
#: app/features/mec/meta_boxes/search_form.php:134
|
1522 |
+
#: app/features/mec/meta_boxes/search_form.php:141
|
1523 |
+
#: app/features/mec/meta_boxes/search_form.php:176
|
1524 |
+
#: app/features/mec/meta_boxes/search_form.php:183
|
1525 |
+
#: app/features/mec/meta_boxes/search_form.php:191
|
1526 |
+
#: app/features/mec/meta_boxes/search_form.php:198
|
1527 |
+
#: app/features/mec/meta_boxes/search_form.php:205
|
1528 |
+
#: app/features/mec/meta_boxes/search_form.php:212
|
1529 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
1530 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
1531 |
+
#: app/features/mec/meta_boxes/search_form.php:262
|
1532 |
+
#: app/features/mec/meta_boxes/search_form.php:269
|
1533 |
+
#: app/features/mec/meta_boxes/search_form.php:276
|
1534 |
+
#: app/features/mec/meta_boxes/search_form.php:283
|
1535 |
+
#: app/features/mec/meta_boxes/search_form.php:297
|
1536 |
+
#: app/features/mec/meta_boxes/search_form.php:317
|
1537 |
+
#: app/features/mec/meta_boxes/search_form.php:324
|
1538 |
+
#: app/features/mec/meta_boxes/search_form.php:332
|
1539 |
+
#: app/features/mec/meta_boxes/search_form.php:339
|
1540 |
+
#: app/features/mec/meta_boxes/search_form.php:346
|
1541 |
+
#: app/features/mec/meta_boxes/search_form.php:353
|
1542 |
+
#: app/features/mec/meta_boxes/search_form.php:367
|
1543 |
+
#: app/features/mec/meta_boxes/search_form.php:387
|
1544 |
+
#: app/features/mec/meta_boxes/search_form.php:394
|
1545 |
+
#: app/features/mec/meta_boxes/search_form.php:402
|
1546 |
+
#: app/features/mec/meta_boxes/search_form.php:409
|
1547 |
+
#: app/features/mec/meta_boxes/search_form.php:416
|
1548 |
+
#: app/features/mec/meta_boxes/search_form.php:423
|
1549 |
+
#: app/features/mec/meta_boxes/search_form.php:437
|
1550 |
+
#: app/features/mec/meta_boxes/search_form.php:457
|
1551 |
+
#: app/features/mec/meta_boxes/search_form.php:464
|
1552 |
+
#: app/features/mec/meta_boxes/search_form.php:472
|
1553 |
+
#: app/features/mec/meta_boxes/search_form.php:479
|
1554 |
+
#: app/features/mec/meta_boxes/search_form.php:486
|
1555 |
+
#: app/features/mec/meta_boxes/search_form.php:493
|
1556 |
+
#: app/features/mec/meta_boxes/search_form.php:520
|
1557 |
+
#: app/features/mec/meta_boxes/search_form.php:527
|
1558 |
+
#: app/features/mec/meta_boxes/search_form.php:535
|
1559 |
+
#: app/features/mec/meta_boxes/search_form.php:542
|
1560 |
+
#: app/features/mec/meta_boxes/search_form.php:549
|
1561 |
+
#: app/features/mec/meta_boxes/search_form.php:556
|
1562 |
+
#: app/features/mec/meta_boxes/search_form.php:570
|
1563 |
+
#: app/features/mec/meta_boxes/search_form.php:590
|
1564 |
+
#: app/features/mec/meta_boxes/search_form.php:597
|
1565 |
+
#: app/features/mec/meta_boxes/search_form.php:605
|
1566 |
+
#: app/features/mec/meta_boxes/search_form.php:612
|
1567 |
+
#: app/features/mec/meta_boxes/search_form.php:619
|
1568 |
+
#: app/features/mec/meta_boxes/search_form.php:626
|
1569 |
+
#: app/features/mec/meta_boxes/search_form.php:640
|
1570 |
+
#: app/features/mec/meta_boxes/search_form.php:660
|
1571 |
+
#: app/features/mec/meta_boxes/search_form.php:667
|
1572 |
+
#: app/features/mec/meta_boxes/search_form.php:675
|
1573 |
+
#: app/features/mec/meta_boxes/search_form.php:682
|
1574 |
+
#: app/features/mec/meta_boxes/search_form.php:689
|
1575 |
+
#: app/features/mec/meta_boxes/search_form.php:696
|
1576 |
+
#: app/features/mec/meta_boxes/search_form.php:710
|
1577 |
+
#: app/features/mec/meta_boxes/search_form.php:766
|
1578 |
+
#: app/features/mec/meta_boxes/search_form.php:773
|
1579 |
+
#: app/features/mec/meta_boxes/search_form.php:781
|
1580 |
+
#: app/features/mec/meta_boxes/search_form.php:788
|
1581 |
+
#: app/features/mec/meta_boxes/search_form.php:795
|
1582 |
+
#: app/features/mec/meta_boxes/search_form.php:802
|
1583 |
+
#: app/features/mec/meta_boxes/search_form.php:816
|
1584 |
+
#: app/features/mec/single.php:199 app/libraries/main.php:3713
|
|
|
|
|
|
|
1585 |
msgid "Dropdown"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: app/features/events.php:2455 app/features/events.php:2543
|
1589 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1590 |
+
#: app/libraries/main.php:3762
|
1591 |
msgid "Agreement"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: app/features/events.php:2456 app/features/events.php:2544
|
1595 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1596 |
+
#: app/features/mec/single.php:196 app/libraries/main.php:3598
|
1597 |
msgid "Paragraph"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: app/features/events.php:2505 app/features/mec/booking.php:707
|
1601 |
msgid "Fixed Fields"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: app/features/events.php:3372 app/features/events.php:3390
|
1605 |
+
#: app/features/events.php:3408 app/features/events.php:3426
|
1606 |
#, php-format
|
1607 |
msgid "Show all %s"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: app/features/events.php:3372
|
1611 |
msgid "labels"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: app/features/events.php:3390
|
1615 |
msgid "locations"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: app/features/events.php:3408
|
1619 |
msgid "organizers"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: app/features/events.php:3442
|
1623 |
msgid "Attendees List"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: app/features/events.php:3472 app/features/events.php:3662
|
1627 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1628 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1629 |
+
#: app/features/locations.php:323 app/features/locations.php:325
|
1630 |
+
#: app/features/locations.php:334
|
1631 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1632 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1633 |
+
#: app/features/mec/meta_boxes/search_form.php:109
|
1634 |
+
#: app/features/mec/meta_boxes/search_form.php:180
|
1635 |
+
#: app/features/mec/meta_boxes/search_form.php:251
|
1636 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
1637 |
+
#: app/features/mec/meta_boxes/search_form.php:391
|
1638 |
+
#: app/features/mec/meta_boxes/search_form.php:461
|
1639 |
+
#: app/features/mec/meta_boxes/search_form.php:524
|
1640 |
+
#: app/features/mec/meta_boxes/search_form.php:594
|
1641 |
+
#: app/features/mec/meta_boxes/search_form.php:664
|
1642 |
+
#: app/features/mec/meta_boxes/search_form.php:770
|
1643 |
+
#: app/features/mec/settings.php:1054 app/features/mec/single.php:339
|
1644 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1645 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1646 |
+
#: app/libraries/main.php:2688 app/libraries/main.php:6490
|
1647 |
+
#: app/libraries/main.php:6544 app/libraries/skins.php:964
|
1648 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1649 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1650 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1652 |
msgid "Location"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: app/features/events.php:3477
|
1656 |
msgid "Repeat"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: app/features/events.php:3478
|
1660 |
msgid "Author"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: app/features/events.php:3599 app/features/events.php:3600
|
1664 |
msgid "iCal / Outlook Export"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: app/features/events.php:3602 app/features/events.php:3603
|
1668 |
msgid "CSV Export"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: app/features/events.php:3605 app/features/events.php:3606
|
1672 |
msgid "MS Excel Export"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: app/features/events.php:3608 app/features/events.php:3609
|
1676 |
msgid "XML Export"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: app/features/events.php:3611 app/features/events.php:3612
|
1680 |
msgid "JSON Export"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: app/features/events.php:3614 app/features/events.php:3615
|
1684 |
+
#: app/features/events.php:3771
|
1685 |
msgid "Duplicate"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1689 |
+
#: app/features/ix.php:4034
|
1690 |
msgid "Link"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1694 |
+
#: app/features/ix.php:4034 app/features/locations.php:110
|
1695 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1696 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1697 |
+
#: app/features/mec/meta_boxes/search_form.php:145
|
1698 |
+
#: app/features/mec/meta_boxes/search_form.php:216
|
1699 |
+
#: app/features/mec/meta_boxes/search_form.php:287
|
1700 |
+
#: app/features/mec/meta_boxes/search_form.php:357
|
1701 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
1702 |
+
#: app/features/mec/meta_boxes/search_form.php:497
|
1703 |
+
#: app/features/mec/meta_boxes/search_form.php:560
|
1704 |
+
#: app/features/mec/meta_boxes/search_form.php:630
|
1705 |
+
#: app/features/mec/meta_boxes/search_form.php:700
|
1706 |
+
#: app/features/mec/meta_boxes/search_form.php:806
|
1707 |
msgid "Address"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: app/features/events.php:3662
|
1711 |
#, php-format
|
1712 |
msgid "%s Tel"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: app/features/events.php:3662
|
1716 |
#, php-format
|
1717 |
msgid "%s Email"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: app/features/events.php:3662 app/features/fes/form.php:850
|
1721 |
+
#: app/features/mec/settings.php:776
|
1722 |
msgid "Featured Image"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: app/features/events.php:3991 app/features/fes.php:243
|
1726 |
+
#: app/features/profile/profile.php:183 app/libraries/main.php:2772
|
1727 |
+
#: app/libraries/main.php:6524
|
1728 |
msgid "Ticket"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: app/features/events.php:3994 app/features/profile/profile.php:186
|
1732 |
msgid "Variations"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: app/features/events.php:4009 app/features/fes.php:317
|
1736 |
msgid "Unknown"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: app/features/events.php:4035
|
1740 |
msgid ""
|
1741 |
"If you want to send an email, first select your attendees and then click in "
|
1742 |
"the button below, please."
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: app/features/events.php:4035 app/features/mec/report.php:58
|
1746 |
msgid "Send Email"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: app/features/events.php:4039
|
1750 |
msgid "No Attendees Found!"
|
1751 |
msgstr ""
|
1752 |
|
1757 |
|
1758 |
#: app/features/fes.php:94 app/features/fes.php:175
|
1759 |
#: app/features/login/login.php:19 app/features/profile.php:74
|
1760 |
+
#: app/features/userevents.php:58
|
1761 |
msgid "Login"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
#: app/features/fes.php:94 app/features/fes.php:175 app/features/profile.php:74
|
1765 |
+
#: app/features/userevents.php:58
|
1766 |
msgid "Register"
|
1767 |
msgstr ""
|
1768 |
|
1787 |
msgid "Order Time"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2720
|
1791 |
+
#: app/libraries/main.php:2835
|
1792 |
msgid "Transaction ID"
|
1793 |
msgstr ""
|
1794 |
|
1796 |
msgid "Total Price"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: app/features/fes.php:243 app/libraries/main.php:2830
|
1800 |
msgid "Gateway"
|
1801 |
msgstr ""
|
1802 |
|
1862 |
msgid "Go back to events list"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: app/features/fes/form.php:264 app/features/mec/settings.php:908
|
1866 |
+
#: app/features/mec/settings.php:984
|
1867 |
msgid "Excerpt"
|
1868 |
msgstr ""
|
1869 |
|
1955 |
#: app/features/fes/form.php:891 app/features/labels.php:61
|
1956 |
#: app/features/labels.php:221 app/features/mec.php:460
|
1957 |
#: app/features/mec/meta_boxes/filter.php:72
|
1958 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6487
|
1959 |
+
#: app/libraries/main.php:6541 app/skins/single.php:1156
|
1960 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
1961 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
1962 |
msgid "Labels"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
#: app/features/fes/form.php:959 app/features/mec.php:467
|
1976 |
+
#: app/features/mec/modules.php:51 app/features/mec/settings.php:818
|
1977 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
1978 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
1979 |
+
#: app/libraries/main.php:608 app/libraries/main.php:6493
|
1980 |
+
#: app/libraries/main.php:6547 app/modules/speakers/details.php:18
|
1981 |
msgid "Speakers"
|
1982 |
msgstr ""
|
1983 |
|
1989 |
msgid "Separate names with commas: Justin, Chris"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: app/features/fes/form.php:1003 app/modules/booking/steps/form.php:349
|
1993 |
msgid "Submit"
|
1994 |
msgstr ""
|
1995 |
|
2027 |
msgstr ""
|
2028 |
|
2029 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2030 |
+
#: app/libraries/main.php:858
|
2031 |
msgid "Import / Export"
|
2032 |
msgstr ""
|
2033 |
|
2043 |
msgid "An error occurred during the file upload! Please check permissions!"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: app/features/ix.php:265 app/libraries/main.php:6772
|
2047 |
+
#: app/libraries/main.php:6792
|
2048 |
msgid "Confirmed"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: app/features/ix.php:266 app/libraries/main.php:6773
|
2052 |
+
#: app/libraries/main.php:6800
|
2053 |
msgid "Rejected"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
#: app/features/ix.php:270 app/features/mec/booking.php:1011
|
2057 |
#: app/features/mec/booking.php:1033 app/features/mec/modules.php:440
|
2058 |
#: app/features/mec/modules.php:462 app/features/mec/notifications.php:1312
|
2059 |
+
#: app/features/mec/notifications.php:1334 app/features/mec/settings.php:1418
|
2060 |
+
#: app/features/mec/settings.php:1440 app/features/mec/single.php:446
|
2061 |
+
#: app/features/mec/single.php:468 app/libraries/main.php:6820
|
2062 |
msgid "Verified"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2066 |
+
#: app/features/labels.php:143 app/libraries/main.php:6821
|
2067 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2068 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2069 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
2097 |
msgid "The events are imported successfully!"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: app/features/ix.php:1178
|
2101 |
msgid "Third Party plugin is not installed and activated!"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: app/features/ix.php:1202
|
2105 |
msgid "Third Party plugin is invalid!"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: app/features/ix.php:3177 app/features/ix.php:3235
|
2109 |
msgid "API key and Calendar ID are required!"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: app/features/ix.php:3230 app/features/ix.php:3675 app/features/ix.php:4410
|
2113 |
msgid "Please select events to import!"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: app/features/ix.php:3617 app/features/ix.php:3680
|
2117 |
msgid "API key and Group URL are required!"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: app/features/ix.php:3919
|
2121 |
msgid "Check at Meetup"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
2125 |
msgid "Organizer Tel"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
2129 |
msgid "Organizer Email"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: app/features/ix.php:4110
|
2133 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: app/features/ix.php:4133
|
2137 |
#, php-format
|
2138 |
msgid "All seems good! Please click %s to authenticate your app."
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: app/features/ix.php:4133 app/features/mec/settings.php:1307
|
2142 |
msgid "here"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: app/features/ix.php:4187
|
2146 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: app/features/ix.php:4332
|
2150 |
#, php-format
|
2151 |
msgid "%s events added to Google Calendar with success."
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: app/features/ix.php:4333
|
2155 |
#, php-format
|
2156 |
msgid "%s Updated previously added events."
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: app/features/ix.php:4334
|
2160 |
#, php-format
|
2161 |
msgid "%s events failed to add for following reasons: %s"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: app/features/ix.php:4366
|
2165 |
msgid "Please insert your Facebook page's link."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: app/features/ix.php:4377 app/features/ix.php:4419
|
2169 |
msgid ""
|
2170 |
"We were not able to recognize your Facebook page. Please check again and "
|
2171 |
"provide a valid link."
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: app/features/ix.php:4414
|
2175 |
msgid "Please insert your facebook page's link."
|
2176 |
msgstr ""
|
2177 |
|
2338 |
|
2339 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1013
|
2340 |
#: app/features/mec/modules.php:442 app/features/mec/notifications.php:1314
|
2341 |
+
#: app/features/mec/settings.php:1420 app/features/mec/single.php:448
|
2342 |
msgid "Checking ..."
|
2343 |
msgstr ""
|
2344 |
|
2787 |
msgid "Slug"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: app/features/labels.php:221 app/features/locations.php:323
|
2791 |
#, php-format
|
2792 |
msgid "Event %s"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
#: app/features/locations.php:59 app/features/mec.php:461
|
2796 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
2797 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6489
|
2798 |
+
#: app/libraries/main.php:6543
|
2799 |
msgid "Locations"
|
2800 |
msgstr ""
|
2801 |
|
2804 |
msgstr ""
|
2805 |
|
2806 |
#: app/features/locations.php:130 app/features/locations.php:196
|
2807 |
+
#: app/features/locations.php:368 app/features/popup/event.php:147
|
2808 |
msgid "Latitude"
|
2809 |
msgstr ""
|
2810 |
|
2813 |
msgstr ""
|
2814 |
|
2815 |
#: app/features/locations.php:138 app/features/locations.php:200
|
2816 |
+
#: app/features/locations.php:369 app/features/popup/event.php:148
|
2817 |
msgid "Longitude"
|
2818 |
msgstr ""
|
2819 |
|
2822 |
msgstr ""
|
2823 |
|
2824 |
#: app/features/locations.php:146 app/features/locations.php:204
|
2825 |
+
#: app/features/locations.php:379
|
2826 |
msgid "Location Website"
|
2827 |
msgstr ""
|
2828 |
|
2843 |
msgstr ""
|
2844 |
|
2845 |
#: app/features/locations.php:161 app/features/locations.php:213
|
2846 |
+
#: app/features/locations.php:387 app/features/locations.php:394
|
2847 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2848 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2849 |
#: app/features/speakers.php:181 app/features/speakers.php:232
|
2850 |
msgid "Remove image"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: app/features/locations.php:326 app/features/popup/event.php:117
|
2854 |
msgid "Hide location"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: app/features/locations.php:327 app/features/popup/event.php:118
|
2858 |
msgid "Insert a new location"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: app/features/locations.php:335
|
2862 |
msgid "Choose one of saved locations or insert new one below."
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: app/features/locations.php:342 app/features/popup/event.php:139
|
2866 |
msgid "Location Name"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
#: app/features/locations.php:343 app/features/popup/event.php:140
|
2870 |
msgid "eg. City Hall"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: app/features/locations.php:346 app/features/mec/settings.php:806
|
2874 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
2875 |
msgid "Event Location"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: app/features/locations.php:347 app/features/popup/event.php:144
|
2879 |
msgid "eg. City hall, Manhattan, New York"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: app/features/locations.php:372 app/features/popup/event.php:151
|
2883 |
msgid "Latitude/Longitude"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: app/features/locations.php:373 app/features/popup/event.php:152
|
2887 |
msgid ""
|
2888 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2889 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2892 |
"the location on the map to find lat long coordinates."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: app/features/locations.php:373 app/features/popup/event.php:152
|
2896 |
msgid "Get Latitude and Longitude"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: app/features/locations.php:386 app/features/organizers.php:298
|
2900 |
#: app/features/popup/event.php:202
|
2901 |
msgid "Choose image"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: app/features/locations.php:400 app/features/popup/event.php:135
|
2905 |
msgid "Don't show map in single event page"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: app/features/locations.php:403 app/libraries/main.php:6527
|
2909 |
+
#: app/libraries/main.php:6574
|
2910 |
msgid "Other Locations"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
+
#: app/features/locations.php:405
|
2914 |
msgid ""
|
2915 |
"You can select extra locations in addition to main location if you like."
|
2916 |
msgstr ""
|
2927 |
msgid "Login successful, redirecting..."
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: app/features/login/login.php:11 app/modules/booking/steps/form.php:333
|
2931 |
msgid "Password"
|
2932 |
msgstr ""
|
2933 |
|
2979 |
#: app/features/mec.php:462 app/features/mec/dashboard.php:286
|
2980 |
#: app/features/mec/meta_boxes/filter.php:71
|
2981 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2982 |
+
#: app/libraries/main.php:6491 app/libraries/main.php:6545
|
2983 |
msgid "Organizers"
|
2984 |
msgstr ""
|
2985 |
|
3012 |
msgid "MEC - Go Pro"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: app/features/mec.php:479 app/features/mec.php:1288
|
3016 |
#: app/features/mec/go-pro.php:9
|
3017 |
msgid "Go Pro"
|
3018 |
msgstr ""
|
3053 |
msgid "Search Form"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: app/features/mec.php:989
|
3057 |
msgid "Display content's images as Popup"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: app/features/mec.php:1003 app/features/popup/shortcode.php:473
|
3061 |
msgid "Single Event Display Method"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: app/features/mec.php:1010 app/features/popup/shortcode.php:485
|
3065 |
msgid "Modal Popup"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: app/features/mec.php:1011
|
3069 |
msgid "Disable Link"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: app/features/mec.php:1024
|
3073 |
msgid "Booking Button / Icon"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: app/features/mec.php:1037
|
3077 |
msgid "Display Organizers"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: app/features/mec.php:1194 app/features/mec.php:1367
|
3081 |
msgid "Total Bookings"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
3085 |
msgid "Modern Events Calendar (Lite)"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: app/features/mec.php:1219 app/features/mec/dashboard.php:297
|
3089 |
+
#: app/features/mec/settings.php:456
|
3090 |
msgid "Upcoming Events"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: app/features/mec.php:1274
|
3094 |
msgid "News & Updates"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: app/features/mec.php:1287
|
3098 |
msgid "Blog"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: app/features/mec.php:1287
|
3102 |
msgid "Help"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: app/features/mec.php:1342
|
3106 |
#, php-format
|
3107 |
msgid "Total Sells (%s)"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: app/features/mec.php:1376
|
3111 |
msgid "This Month"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: app/features/mec.php:1382
|
3115 |
msgid "Last Month"
|
3116 |
msgstr ""
|
3117 |
|
3119 |
msgid "This Year"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: app/features/mec.php:1394
|
3123 |
msgid "Last Year"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: app/features/mec.php:1414
|
3127 |
msgid "Bar"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: app/features/mec.php:1415
|
3131 |
msgid "Line"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: app/features/mec.php:1417
|
3135 |
msgid "Filter"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: app/features/mec.php:1441
|
3139 |
msgid "Print Calendar"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: app/features/mec.php:1456
|
3143 |
msgid "Display Events"
|
3144 |
msgstr ""
|
3145 |
|
3162 |
|
3163 |
#: app/features/mec/booking.php:78 app/features/mec/messages.php:13
|
3164 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3165 |
+
#: app/features/mec/settings.php:47 app/features/mec/single.php:19
|
3166 |
#: app/features/mec/styling.php:35
|
3167 |
msgid "Search..."
|
3168 |
msgstr ""
|
3179 |
#: app/features/mec/notifications.php:1213
|
3180 |
#: app/features/mec/notifications.php:1225
|
3181 |
#: app/features/mec/notifications.php:1331
|
3182 |
+
#: app/features/mec/notifications.php:1345 app/features/mec/settings.php:49
|
3183 |
+
#: app/features/mec/settings.php:1369 app/features/mec/settings.php:1379
|
3184 |
+
#: app/features/mec/settings.php:1437 app/features/mec/settings.php:1451
|
3185 |
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3186 |
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3187 |
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
3273 |
msgstr ""
|
3274 |
|
3275 |
#: app/features/mec/booking.php:168 app/features/mec/booking.php:176
|
3276 |
+
#: app/modules/booking/steps/form.php:327
|
3277 |
msgid "Registration"
|
3278 |
msgstr ""
|
3279 |
|
3369 |
msgstr ""
|
3370 |
|
3371 |
#: app/features/mec/booking.php:267 app/features/mec/booking.php:269
|
3372 |
+
#: app/features/mec/booking.php:279 app/features/mec/settings.php:674
|
3373 |
+
#: app/features/mec/settings.php:684
|
3374 |
msgid "Thank You Page"
|
3375 |
msgstr ""
|
3376 |
|
3381 |
msgstr ""
|
3382 |
|
3383 |
#: app/features/mec/booking.php:287 app/features/mec/booking.php:292
|
3384 |
+
#: app/features/mec/settings.php:707 app/features/mec/settings.php:712
|
3385 |
msgid "Thank You Page Time Interval"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: app/features/mec/booking.php:289 app/features/mec/settings.php:709
|
3389 |
msgid "2000 mean 2 seconds"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: app/features/mec/booking.php:293 app/features/mec/settings.php:713
|
3393 |
msgid ""
|
3394 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3395 |
"2000 means 2 seconds."
|
3455 |
msgid "Send confirmation email in auto confirmation mode"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: app/features/mec/booking.php:413 app/libraries/main.php:598
|
3459 |
msgid "Booking Shortcode"
|
3460 |
msgstr ""
|
3461 |
|
3487 |
msgstr ""
|
3488 |
|
3489 |
#: app/features/mec/booking.php:447 app/features/mec/booking.php:835
|
3490 |
+
#: app/libraries/main.php:600
|
3491 |
msgid "Taxes / Fees"
|
3492 |
msgstr ""
|
3493 |
|
3499 |
msgid "Add Fee"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: app/features/mec/booking.php:524 app/libraries/main.php:601
|
3503 |
msgid "Ticket Variations & Options"
|
3504 |
msgstr ""
|
3505 |
|
3625 |
|
3626 |
#: app/features/mec/booking.php:1008 app/features/mec/messages.php:78
|
3627 |
#: app/features/mec/modules.php:437 app/features/mec/notifications.php:1309
|
3628 |
+
#: app/features/mec/settings.php:1415 app/features/mec/single.php:443
|
3629 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:323
|
3630 |
msgid "Saved"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
#: app/features/mec/booking.php:1009 app/features/mec/messages.php:79
|
3634 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1310
|
3635 |
+
#: app/features/mec/settings.php:1416 app/features/mec/single.php:444
|
3636 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:324
|
3637 |
msgid "Settings Saved!"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
#: app/features/mec/booking.php:1035 app/features/mec/modules.php:464
|
3641 |
+
#: app/features/mec/notifications.php:1336 app/features/mec/settings.php:1442
|
3642 |
#: app/features/mec/single.php:470
|
3643 |
msgid "Please Refresh Page"
|
3644 |
msgstr ""
|
3755 |
msgstr ""
|
3756 |
|
3757 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
3758 |
+
#: app/features/mec/support.php:66 app/libraries/main.php:851
|
3759 |
msgid "Messages"
|
3760 |
msgstr ""
|
3761 |
|
3776 |
#: app/features/mec/meta_boxes/display_options.php:953
|
3777 |
#: app/features/mec/meta_boxes/display_options.php:1284
|
3778 |
#: app/features/mec/meta_boxes/display_options.php:1575
|
3779 |
+
#: app/features/mec/settings.php:317 app/features/mec/settings.php:341
|
3780 |
+
#: app/features/mec/settings.php:350 app/features/mec/settings.php:394
|
3781 |
+
#: app/features/mec/settings.php:418 app/features/mec/settings.php:427
|
3782 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
3783 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
3784 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
3789 |
|
3790 |
#: app/features/mec/meta_boxes/display_options.php:44
|
3791 |
#: app/features/mec/meta_boxes/display_options.php:289
|
3792 |
+
#: app/features/mec/settings.php:342 app/features/mec/settings.php:352
|
3793 |
+
#: app/features/mec/settings.php:419 app/features/mec/settings.php:429
|
3794 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
3795 |
msgid "Minimal"
|
3796 |
msgstr ""
|
3801 |
#: app/features/mec/meta_boxes/display_options.php:955
|
3802 |
#: app/features/mec/meta_boxes/display_options.php:1282
|
3803 |
#: app/features/mec/meta_boxes/display_options.php:1577
|
3804 |
+
#: app/features/mec/settings.php:319 app/features/mec/settings.php:332
|
3805 |
+
#: app/features/mec/settings.php:343 app/features/mec/settings.php:353
|
3806 |
+
#: app/features/mec/settings.php:396 app/features/mec/settings.php:409
|
3807 |
+
#: app/features/mec/settings.php:420 app/features/mec/settings.php:430
|
3808 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
3809 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
3810 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
3812 |
msgstr ""
|
3813 |
|
3814 |
#: app/features/mec/meta_boxes/display_options.php:46
|
3815 |
+
#: app/features/mec/settings.php:344 app/features/mec/settings.php:421
|
3816 |
#: app/features/popup/shortcode.php:83
|
3817 |
msgid "Standard"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
#: app/features/mec/meta_boxes/display_options.php:47
|
3821 |
+
#: app/features/mec/settings.php:345 app/features/mec/settings.php:422
|
3822 |
#: app/features/popup/shortcode.php:88
|
3823 |
msgid "Accordion"
|
3824 |
msgstr ""
|
4200 |
#: app/features/mec/meta_boxes/display_options.php:954
|
4201 |
#: app/features/mec/meta_boxes/display_options.php:1283
|
4202 |
#: app/features/mec/meta_boxes/display_options.php:1576
|
4203 |
+
#: app/features/mec/settings.php:318 app/features/mec/settings.php:333
|
4204 |
+
#: app/features/mec/settings.php:351 app/features/mec/settings.php:395
|
4205 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:428
|
4206 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4207 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4208 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
4212 |
#: app/features/mec/meta_boxes/display_options.php:291
|
4213 |
#: app/features/mec/meta_boxes/display_options.php:693
|
4214 |
#: app/features/mec/meta_boxes/display_options.php:957
|
4215 |
+
#: app/features/mec/settings.php:321 app/features/mec/settings.php:354
|
4216 |
+
#: app/features/mec/settings.php:398 app/features/mec/settings.php:431
|
4217 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4218 |
#: app/features/popup/shortcode.php:219
|
4219 |
msgid "Simple"
|
4227 |
#: app/features/mec/meta_boxes/display_options.php:293
|
4228 |
#: app/features/mec/meta_boxes/display_options.php:692
|
4229 |
#: app/features/mec/meta_boxes/display_options.php:956
|
4230 |
+
#: app/features/mec/settings.php:320 app/features/mec/settings.php:356
|
4231 |
+
#: app/features/mec/settings.php:397 app/features/mec/settings.php:433
|
4232 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4233 |
#: app/features/popup/shortcode.php:214
|
4234 |
msgid "Novel"
|
4278 |
|
4279 |
#: app/features/mec/meta_boxes/display_options.php:679
|
4280 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4281 |
+
#: app/libraries/main.php:364 app/libraries/main.php:2121
|
4282 |
+
#: app/libraries/main.php:2146
|
4283 |
msgid "List View"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
#: app/features/mec/meta_boxes/display_options.php:680
|
4287 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4288 |
+
#: app/libraries/main.php:365 app/libraries/main.php:2122
|
4289 |
+
#: app/libraries/main.php:2147
|
4290 |
msgid "Grid View"
|
4291 |
msgstr ""
|
4292 |
|
4298 |
|
4299 |
#: app/features/mec/meta_boxes/display_options.php:682
|
4300 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4301 |
+
#: app/libraries/main.php:368 app/libraries/main.php:2115
|
4302 |
+
#: app/libraries/main.php:2140
|
4303 |
msgid "Yearly View"
|
4304 |
msgstr ""
|
4305 |
|
4310 |
|
4311 |
#: app/features/mec/meta_boxes/display_options.php:684
|
4312 |
#: app/features/mec/meta_boxes/display_options.php:794
|
4313 |
+
#: app/libraries/main.php:371 app/libraries/main.php:2117
|
4314 |
+
#: app/libraries/main.php:2142
|
4315 |
msgid "Weekly View"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
#: app/features/mec/meta_boxes/display_options.php:685
|
4319 |
#: app/features/mec/meta_boxes/display_options.php:804
|
4320 |
+
#: app/libraries/main.php:370 app/libraries/main.php:2118
|
4321 |
+
#: app/libraries/main.php:2143
|
4322 |
msgid "Daily View"
|
4323 |
msgstr ""
|
4324 |
|
4738 |
msgid "Choose your desired authors for filtering the events."
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:457
|
4742 |
msgid "Expired Events"
|
4743 |
msgstr ""
|
4744 |
|
4792 |
msgstr ""
|
4793 |
|
4794 |
#: app/features/mec/meta_boxes/search_form.php:53
|
4795 |
+
#: app/features/mec/meta_boxes/search_form.php:124
|
4796 |
+
#: app/features/mec/meta_boxes/search_form.php:195
|
4797 |
+
#: app/features/mec/meta_boxes/search_form.php:266
|
4798 |
+
#: app/features/mec/meta_boxes/search_form.php:336
|
4799 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
4800 |
+
#: app/features/mec/meta_boxes/search_form.php:476
|
4801 |
+
#: app/features/mec/meta_boxes/search_form.php:539
|
4802 |
+
#: app/features/mec/meta_boxes/search_form.php:609
|
4803 |
+
#: app/features/mec/meta_boxes/search_form.php:679
|
4804 |
+
#: app/features/mec/meta_boxes/search_form.php:785
|
4805 |
+
#: app/features/mec/settings.php:1067 app/features/mec/single.php:344
|
4806 |
#: app/features/mec/single.php:386 app/features/search.php:86
|
4807 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
4808 |
+
#: app/libraries/main.php:6494 app/libraries/main.php:6548
|
4809 |
#: app/libraries/skins.php:1016 app/modules/speakers/details.php:18
|
4810 |
msgid "Speaker"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
#: app/features/mec/meta_boxes/search_form.php:60
|
4814 |
+
#: app/features/mec/meta_boxes/search_form.php:131
|
4815 |
+
#: app/features/mec/meta_boxes/search_form.php:202
|
4816 |
+
#: app/features/mec/meta_boxes/search_form.php:273
|
4817 |
+
#: app/features/mec/meta_boxes/search_form.php:343
|
4818 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
4819 |
+
#: app/features/mec/meta_boxes/search_form.php:483
|
4820 |
+
#: app/features/mec/meta_boxes/search_form.php:546
|
4821 |
+
#: app/features/mec/meta_boxes/search_form.php:616
|
4822 |
+
#: app/features/mec/meta_boxes/search_form.php:686
|
4823 |
+
#: app/features/mec/meta_boxes/search_form.php:792
|
4824 |
+
#: app/features/mec/settings.php:1074 app/features/mec/single.php:353
|
4825 |
#: app/features/mec/single.php:395 app/features/search.php:92
|
4826 |
#: app/libraries/skins.php:1042
|
4827 |
msgid "Tag"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
#: app/features/mec/meta_boxes/search_form.php:77
|
4831 |
+
#: app/features/mec/meta_boxes/search_form.php:148
|
4832 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
4833 |
+
#: app/features/mec/meta_boxes/search_form.php:290
|
4834 |
+
#: app/features/mec/meta_boxes/search_form.php:360
|
4835 |
+
#: app/features/mec/meta_boxes/search_form.php:430
|
4836 |
+
#: app/features/mec/meta_boxes/search_form.php:500
|
4837 |
+
#: app/features/mec/meta_boxes/search_form.php:563
|
4838 |
+
#: app/features/mec/meta_boxes/search_form.php:633
|
4839 |
+
#: app/features/mec/meta_boxes/search_form.php:703
|
4840 |
+
#: app/features/mec/meta_boxes/search_form.php:809
|
4841 |
msgid "Address Input"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
#: app/features/mec/meta_boxes/search_form.php:81
|
4845 |
+
#: app/features/mec/meta_boxes/search_form.php:152
|
4846 |
+
#: app/features/mec/meta_boxes/search_form.php:223
|
4847 |
+
msgid "Date Filter"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: app/features/mec/meta_boxes/search_form.php:84
|
4851 |
+
#: app/features/mec/meta_boxes/search_form.php:155
|
4852 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
4853 |
+
msgid "Year & Month Dropdown"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4854 |
msgstr ""
|
4855 |
|
4856 |
+
#: app/features/mec/meta_boxes/search_form.php:85
|
4857 |
+
#: app/features/mec/meta_boxes/search_form.php:156
|
4858 |
+
#: app/features/mec/meta_boxes/search_form.php:227
|
4859 |
+
msgid "Date Picker"
|
4860 |
+
msgstr ""
|
4861 |
+
|
4862 |
+
#: app/features/mec/meta_boxes/search_form.php:89
|
4863 |
+
#: app/features/mec/meta_boxes/search_form.php:160
|
4864 |
#: app/features/mec/meta_boxes/search_form.php:231
|
4865 |
#: app/features/mec/meta_boxes/search_form.php:301
|
4866 |
#: app/features/mec/meta_boxes/search_form.php:371
|
4870 |
#: app/features/mec/meta_boxes/search_form.php:644
|
4871 |
#: app/features/mec/meta_boxes/search_form.php:714
|
4872 |
#: app/features/mec/meta_boxes/search_form.php:820
|
4873 |
+
msgid "Text Search"
|
4874 |
+
msgstr ""
|
4875 |
+
|
4876 |
+
#: app/features/mec/meta_boxes/search_form.php:92
|
4877 |
+
#: app/features/mec/meta_boxes/search_form.php:163
|
4878 |
+
#: app/features/mec/meta_boxes/search_form.php:234
|
4879 |
+
#: app/features/mec/meta_boxes/search_form.php:304
|
4880 |
+
#: app/features/mec/meta_boxes/search_form.php:374
|
4881 |
+
#: app/features/mec/meta_boxes/search_form.php:444
|
4882 |
+
#: app/features/mec/meta_boxes/search_form.php:507
|
4883 |
+
#: app/features/mec/meta_boxes/search_form.php:577
|
4884 |
+
#: app/features/mec/meta_boxes/search_form.php:647
|
4885 |
+
#: app/features/mec/meta_boxes/search_form.php:717
|
4886 |
+
#: app/features/mec/meta_boxes/search_form.php:823
|
4887 |
msgid "Text Input"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
+
#: app/features/mec/meta_boxes/search_form.php:294
|
4891 |
+
#: app/features/mec/meta_boxes/search_form.php:364
|
4892 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
4893 |
+
#: app/features/mec/meta_boxes/search_form.php:567
|
4894 |
+
#: app/features/mec/meta_boxes/search_form.php:637
|
4895 |
+
#: app/features/mec/meta_boxes/search_form.php:707
|
4896 |
+
#: app/features/mec/meta_boxes/search_form.php:813
|
4897 |
+
msgid "Month Filter"
|
4898 |
+
msgstr ""
|
4899 |
+
|
4900 |
+
#: app/features/mec/meta_boxes/search_form.php:726
|
4901 |
+
#: app/features/mec/meta_boxes/search_form.php:732
|
4902 |
+
#: app/features/mec/meta_boxes/search_form.php:738
|
4903 |
+
#: app/features/mec/meta_boxes/search_form.php:744
|
4904 |
+
#: app/features/mec/meta_boxes/search_form.php:750
|
4905 |
+
#: app/features/mec/meta_boxes/search_form.php:756
|
4906 |
msgid "No Search Options"
|
4907 |
msgstr ""
|
4908 |
|
4926 |
"new menu on the Dashboard > MEC"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
+
#: app/features/mec/modules.php:66 app/libraries/main.php:609
|
4930 |
msgid "Map Options"
|
4931 |
msgstr ""
|
4932 |
|
4942 |
msgid "Google Map Options"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: app/features/mec/modules.php:85 app/features/mec/settings.php:1110
|
4946 |
+
#: app/features/mec/settings.php:1123
|
4947 |
msgid "Required!"
|
4948 |
msgstr ""
|
4949 |
|
5001 |
msgid "Fullscreen Button"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
+
#: app/features/mec/modules.php:176 app/libraries/main.php:610
|
5005 |
msgid "Export Options"
|
5006 |
msgstr ""
|
5007 |
|
5014 |
msgid "Google Calendar"
|
5015 |
msgstr ""
|
5016 |
|
5017 |
+
#: app/features/mec/modules.php:203 app/libraries/main.php:611
|
5018 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5019 |
#: app/widgets/single.php:101
|
5020 |
msgid "Local Time"
|
5024 |
msgid "Show event time based on local time of visitor on event page"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: app/features/mec/modules.php:217 app/libraries/main.php:612
|
5028 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5029 |
msgid "QR Code"
|
5030 |
msgstr ""
|
5033 |
msgid "Show QR code of event in details page and booking invoice"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
+
#: app/features/mec/modules.php:235 app/libraries/main.php:613
|
5037 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5038 |
msgid "Weather"
|
5039 |
msgstr ""
|
5067 |
msgid "Show social network module"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: app/features/mec/modules.php:308 app/libraries/main.php:615
|
5071 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5072 |
msgid "Next Event"
|
5073 |
msgstr ""
|
5120 |
msgid "Add events menu to user profile"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: app/features/mec/modules.php:385 app/libraries/main.php:617
|
5124 |
msgid "LearnDash Integration"
|
5125 |
msgstr ""
|
5126 |
|
5781 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
5782 |
msgstr ""
|
5783 |
|
5784 |
+
#: app/features/mec/notifications.php:160 app/libraries/main.php:631
|
5785 |
msgid "Booking Verification"
|
5786 |
msgstr ""
|
5787 |
|
5817 |
msgstr ""
|
5818 |
|
5819 |
#: app/features/mec/notifications.php:402 app/features/notifications.php:157
|
5820 |
+
#: app/libraries/main.php:630
|
5821 |
msgid "Booking Rejection"
|
5822 |
msgstr ""
|
5823 |
|
5843 |
msgstr ""
|
5844 |
|
5845 |
#: app/features/mec/notifications.php:540 app/features/notifications.php:163
|
5846 |
+
#: app/libraries/main.php:632
|
5847 |
msgid "Booking Cancellation"
|
5848 |
msgstr ""
|
5849 |
|
5861 |
msgid "Admin booking management link."
|
5862 |
msgstr ""
|
5863 |
|
5864 |
+
#: app/features/mec/notifications.php:662 app/libraries/main.php:635
|
5865 |
msgid "Admin"
|
5866 |
msgstr ""
|
5867 |
|
5874 |
msgstr ""
|
5875 |
|
5876 |
#: app/features/mec/notifications.php:784 app/features/notifications.php:169
|
5877 |
+
#: app/libraries/main.php:634
|
5878 |
msgid "Event Soldout"
|
5879 |
msgstr ""
|
5880 |
|
5889 |
msgstr ""
|
5890 |
|
5891 |
#: app/features/mec/notifications.php:893 app/features/notifications.php:166
|
5892 |
+
#: app/libraries/main.php:633 app/libraries/notifications.php:733
|
5893 |
msgid "Booking Reminder"
|
5894 |
msgstr ""
|
5895 |
|
5909 |
msgid "only once per hour"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
#: app/features/mec/notifications.php:956 app/libraries/main.php:7582
|
5913 |
+
#: app/libraries/main.php:7599
|
5914 |
msgid "Hours"
|
5915 |
msgstr ""
|
5916 |
|
5923 |
msgstr ""
|
5924 |
|
5925 |
#: app/features/mec/notifications.php:1026 app/features/popup/event.php:253
|
5926 |
+
#: app/libraries/main.php:621
|
5927 |
msgid "New Event"
|
5928 |
msgstr ""
|
5929 |
|
5953 |
msgstr ""
|
5954 |
|
5955 |
#: app/features/mec/notifications.php:1103
|
5956 |
+
#: app/features/mec/notifications.php:1188 app/features/mec/settings.php:951
|
5957 |
+
#: app/features/mec/settings.php:955 app/features/notifications.php:140
|
5958 |
msgid "Event Note"
|
5959 |
msgstr ""
|
5960 |
|
5963 |
msgid "Admin events management link."
|
5964 |
msgstr ""
|
5965 |
|
5966 |
+
#: app/features/mec/notifications.php:1117 app/libraries/main.php:622
|
5967 |
msgid "User Event Publishing"
|
5968 |
msgstr ""
|
5969 |
|
5977 |
"website backend."
|
5978 |
msgstr ""
|
5979 |
|
5980 |
+
#: app/features/mec/notifications.php:1200 app/libraries/main.php:638
|
5981 |
msgid "Notifications Per Event"
|
5982 |
msgstr ""
|
5983 |
|
6049 |
msgid "There was an error please try again!"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
+
#: app/features/mec/settings.php:69 app/features/mec/settings.php:80
|
6053 |
msgid "Hide Events"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
+
#: app/features/mec/settings.php:72
|
6057 |
msgid "On Event Start"
|
6058 |
msgstr ""
|
6059 |
|
6060 |
+
#: app/features/mec/settings.php:73
|
6061 |
msgid "+1 Hour after start"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
+
#: app/features/mec/settings.php:74
|
6065 |
msgid "+2 Hours after start"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
+
#: app/features/mec/settings.php:75
|
6069 |
msgid "On Event End"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: app/features/mec/settings.php:81
|
6073 |
msgid ""
|
6074 |
"This option is for showing start/end time of events on frontend of website."
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: app/features/mec/settings.php:90 app/features/mec/settings.php:99
|
6078 |
msgid "Multiple Day Events"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: app/features/mec/settings.php:93
|
6082 |
msgid "Show only first day on List/Grid/Slider/Agenda skins"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
+
#: app/features/mec/settings.php:94
|
6086 |
msgid "Show only first day on all skins"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: app/features/mec/settings.php:95
|
6090 |
msgid "Show all days"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: app/features/mec/settings.php:100
|
6094 |
msgid ""
|
6095 |
"For showing all days of multiple day events on frontend or only show the "
|
6096 |
"first day."
|
6097 |
msgstr ""
|
6098 |
|
6099 |
+
#: app/features/mec/settings.php:109
|
6100 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: app/features/mec/settings.php:120
|
6104 |
msgid "Sender Name"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
+
#: app/features/mec/settings.php:123
|
6108 |
msgid "e.g. Webnus"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
+
#: app/features/mec/settings.php:130
|
6112 |
msgid "Sender Email"
|
6113 |
msgstr ""
|
6114 |
|
6115 |
+
#: app/features/mec/settings.php:133
|
6116 |
msgid "e.g. info@webnus.biz"
|
6117 |
msgstr ""
|
6118 |
|
6119 |
+
#: app/features/mec/settings.php:139
|
6120 |
msgid "Exclude Date Suffix"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
+
#: app/features/mec/settings.php:142
|
6124 |
msgid "Remove suffix from calendars"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: app/features/mec/settings.php:146
|
6128 |
msgid "Remove \"Th\" on calendar"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: app/features/mec/settings.php:147
|
6132 |
msgid ""
|
6133 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
6134 |
"showing just '12' )"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
+
#: app/features/mec/settings.php:154 app/features/mec/settings.php:161
|
6138 |
msgid "Schema"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
+
#: app/features/mec/settings.php:157
|
6142 |
msgid "Enable Schema Code"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
+
#: app/features/mec/settings.php:162
|
6146 |
msgid "You can enable/disable Schema scripts"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
+
#: app/features/mec/settings.php:171 app/features/mec/settings.php:181
|
6150 |
+
#: app/libraries/main.php:6498 app/libraries/main.php:6552
|
6151 |
msgid "Weekdays"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
+
#: app/features/mec/settings.php:182
|
6155 |
msgid ""
|
6156 |
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
6157 |
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
6158 |
"> General - bottom of the page )."
|
6159 |
msgstr ""
|
6160 |
|
6161 |
+
#: app/features/mec/settings.php:192 app/features/mec/settings.php:202
|
6162 |
msgid "Weekends"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
+
#: app/features/mec/settings.php:203
|
6166 |
msgid ""
|
6167 |
"Proceed with caution. Default is set to Saturday and Sunday (you can change "
|
6168 |
"'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
|
6169 |
"page)."
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: app/features/mec/settings.php:212
|
6173 |
msgid "Datepicker Format"
|
6174 |
msgstr ""
|
6175 |
|
6176 |
+
#: app/features/mec/settings.php:220
|
6177 |
msgid "(Y-m-d)"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
+
#: app/features/mec/settings.php:221
|
6181 |
msgid "(d-m-Y)"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: app/features/mec/settings.php:224
|
6185 |
msgid "(Y/m/d)"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: app/features/mec/settings.php:225
|
6189 |
msgid "(m/d/Y)"
|
6190 |
msgstr ""
|
6191 |
|
6192 |
+
#: app/features/mec/settings.php:228
|
6193 |
msgid "(Y.m.d)"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
+
#: app/features/mec/settings.php:229
|
6197 |
msgid "(d.m.Y)"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: app/features/mec/settings.php:235 app/features/mec/settings.php:247
|
6201 |
msgid "Midnight Hour"
|
6202 |
msgstr ""
|
6203 |
|
6204 |
+
#: app/features/mec/settings.php:238
|
6205 |
msgid "12 AM"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
+
#: app/features/mec/settings.php:239
|
6209 |
msgid "1 AM"
|
6210 |
msgstr ""
|
6211 |
|
6212 |
+
#: app/features/mec/settings.php:240
|
6213 |
msgid "2 AM"
|
6214 |
msgstr ""
|
6215 |
|
6216 |
+
#: app/features/mec/settings.php:241
|
6217 |
msgid "3 AM"
|
6218 |
msgstr ""
|
6219 |
|
6220 |
+
#: app/features/mec/settings.php:242
|
6221 |
msgid "4 AM"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
+
#: app/features/mec/settings.php:243
|
6225 |
msgid "5 AM"
|
6226 |
msgstr ""
|
6227 |
|
6228 |
+
#: app/features/mec/settings.php:248
|
6229 |
msgid ""
|
6230 |
"12 AM is midnight by default but you can change it if your event ends after "
|
6231 |
"12 AM and you don't want those events considered as multiple days events!"
|
6232 |
msgstr ""
|
6233 |
|
6234 |
+
#: app/features/mec/settings.php:256
|
6235 |
msgid "Open \"Add Event\" as Popup"
|
6236 |
msgstr ""
|
6237 |
|
6238 |
+
#: app/features/mec/settings.php:259 app/features/mec/settings.php:267
|
6239 |
+
#: app/features/mec/settings.php:275 app/features/mec/single.php:111
|
6240 |
msgid "Enable"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
+
#: app/features/mec/settings.php:264
|
6244 |
msgid "Open \"Add Shortcode\" as Popup"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: app/features/mec/settings.php:272
|
6248 |
msgid "Include Event Featured Image in Feed"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
+
#: app/features/mec/settings.php:282 app/libraries/main.php:567
|
6252 |
msgid "Archive Pages"
|
6253 |
msgstr ""
|
6254 |
|
6255 |
+
#: app/features/mec/settings.php:285 app/features/mec/settings.php:290
|
6256 |
msgid "Archive Page Title"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
+
#: app/features/mec/settings.php:291
|
6260 |
msgid "Default value is Events - It's title of the page"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: app/features/mec/settings.php:299 app/features/mec/settings.php:367
|
6264 |
msgid "Archive Page Skin"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
+
#: app/features/mec/settings.php:307 app/features/mec/settings.php:384
|
6268 |
msgid "Put shortcode..."
|
6269 |
msgstr ""
|
6270 |
|
6271 |
+
#: app/features/mec/settings.php:310 app/features/mec/settings.php:325
|
6272 |
+
#: app/features/mec/settings.php:328 app/features/mec/settings.php:337
|
6273 |
+
#: app/features/mec/settings.php:363 app/features/mec/settings.php:387
|
6274 |
+
#: app/features/mec/settings.php:402 app/features/mec/settings.php:405
|
6275 |
+
#: app/features/mec/settings.php:414 app/features/mec/settings.php:440
|
6276 |
msgid "There is no skins"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
+
#: app/features/mec/settings.php:313 app/features/mec/settings.php:390
|
6280 |
#: app/features/mec/single.php:73
|
6281 |
msgid "Modern Style"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
+
#: app/features/mec/settings.php:355 app/features/mec/settings.php:432
|
6285 |
msgid "colorful"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
+
#: app/features/mec/settings.php:360 app/features/mec/settings.php:437
|
6289 |
msgid "Clean Style"
|
6290 |
msgstr ""
|
6291 |
|
6292 |
+
#: app/features/mec/settings.php:368
|
6293 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
6294 |
msgstr ""
|
6295 |
|
6296 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
6297 |
msgid "See Demo"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
+
#: app/features/mec/settings.php:376 app/features/mec/settings.php:444
|
6301 |
msgid "Category Page Skin"
|
6302 |
msgstr ""
|
6303 |
|
6304 |
+
#: app/features/mec/settings.php:445
|
6305 |
msgid ""
|
6306 |
"Default value is List View - But you can change it to set a skin for all "
|
6307 |
"categories."
|
6308 |
msgstr ""
|
6309 |
|
6310 |
+
#: app/features/mec/settings.php:453 app/features/mec/settings.php:461
|
6311 |
msgid "Category Events Method"
|
6312 |
msgstr ""
|
6313 |
|
6314 |
+
#: app/features/mec/settings.php:462
|
6315 |
msgid "Default value is Upcoming Events"
|
6316 |
msgstr ""
|
6317 |
|
6318 |
+
#: app/features/mec/settings.php:470 app/features/mec/settings.php:478
|
6319 |
msgid "Events Archive Status"
|
6320 |
msgstr ""
|
6321 |
|
6322 |
+
#: app/features/mec/settings.php:473
|
6323 |
msgid "Enabled (Recommended)"
|
6324 |
msgstr ""
|
6325 |
|
6326 |
+
#: app/features/mec/settings.php:479
|
6327 |
msgid ""
|
6328 |
"If you disable it, then you should create a page as archive page of MEC. "
|
6329 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
6330 |
"MEC rewrite rules."
|
6331 |
msgstr ""
|
6332 |
|
6333 |
+
#: app/features/mec/settings.php:492 app/features/mec/settings.php:497
|
6334 |
msgid "Main Slug"
|
6335 |
msgstr ""
|
6336 |
|
6337 |
+
#: app/features/mec/settings.php:498
|
6338 |
msgid ""
|
6339 |
"Default value is events. You can not have a page with this name. MEC allows "
|
6340 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
6341 |
"applicability and forward-compatibility of the links."
|
6342 |
msgstr ""
|
6343 |
|
6344 |
+
#: app/features/mec/settings.php:502 app/features/mec/settings.php:516
|
6345 |
msgid "Valid characters are lowercase a-z, - character and numbers."
|
6346 |
msgstr ""
|
6347 |
|
6348 |
+
#: app/features/mec/settings.php:506 app/features/mec/settings.php:511
|
6349 |
msgid "Category Slug"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
+
#: app/features/mec/settings.php:512
|
6353 |
msgid ""
|
6354 |
"It's slug of MEC categories, you can change it to events-cat or something "
|
6355 |
"else. Default value is mec-category. You can not have a page with this name."
|
6356 |
msgstr ""
|
6357 |
|
6358 |
+
#: app/features/mec/settings.php:524
|
6359 |
msgid "Currency"
|
6360 |
msgstr ""
|
6361 |
|
6362 |
+
#: app/features/mec/settings.php:534 app/features/mec/settings.php:539
|
6363 |
msgid "Currency Sign"
|
6364 |
msgstr ""
|
6365 |
|
6366 |
+
#: app/features/mec/settings.php:540
|
6367 |
msgid "Default value will be \"currency\" if you leave it empty."
|
6368 |
msgstr ""
|
6369 |
|
6370 |
+
#: app/features/mec/settings.php:547
|
6371 |
msgid "Currency Position"
|
6372 |
msgstr ""
|
6373 |
|
6374 |
+
#: app/features/mec/settings.php:550
|
6375 |
msgid "Before $10"
|
6376 |
msgstr ""
|
6377 |
|
6378 |
+
#: app/features/mec/settings.php:551
|
6379 |
msgid "After 10$"
|
6380 |
msgstr ""
|
6381 |
|
6382 |
+
#: app/features/mec/settings.php:556
|
6383 |
msgid "Thousand Separator"
|
6384 |
msgstr ""
|
6385 |
|
6386 |
+
#: app/features/mec/settings.php:562
|
6387 |
msgid "Decimal Separator"
|
6388 |
msgstr ""
|
6389 |
|
6390 |
+
#: app/features/mec/settings.php:572
|
6391 |
msgid "No decimal"
|
6392 |
msgstr ""
|
6393 |
|
6394 |
+
#: app/features/mec/settings.php:583
|
6395 |
msgid "Enable Google Recaptcha"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
+
#: app/features/mec/settings.php:592
|
6399 |
msgid "Enable on booking form"
|
6400 |
msgstr ""
|
6401 |
|
6402 |
+
#: app/features/mec/settings.php:600
|
6403 |
msgid "Enable on \"Frontend Event Submission\" form"
|
6404 |
msgstr ""
|
6405 |
|
6406 |
+
#: app/features/mec/settings.php:604
|
6407 |
msgid "Site Key"
|
6408 |
msgstr ""
|
6409 |
|
6410 |
+
#: app/features/mec/settings.php:610
|
6411 |
msgid "Secret Key"
|
6412 |
msgstr ""
|
6413 |
|
6414 |
+
#: app/features/mec/settings.php:622 app/features/mec/settings.php:630
|
6415 |
msgid "Time Format"
|
6416 |
msgstr ""
|
6417 |
|
6418 |
+
#: app/features/mec/settings.php:625
|
6419 |
msgid "12 hours format with AM/PM"
|
6420 |
msgstr ""
|
6421 |
|
6422 |
+
#: app/features/mec/settings.php:626
|
6423 |
msgid "24 hours format"
|
6424 |
msgstr ""
|
6425 |
|
6426 |
+
#: app/features/mec/settings.php:631
|
6427 |
msgid "This option, affects the selection of Start/End time."
|
6428 |
msgstr ""
|
6429 |
|
6430 |
+
#: app/features/mec/settings.php:639
|
6431 |
msgid "Events List Page"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
+
#: app/features/mec/settings.php:648 app/features/mec/settings.php:660
|
6435 |
#, php-format
|
6436 |
msgid "Put %s shortcode into the page."
|
6437 |
msgstr ""
|
6438 |
|
6439 |
+
#: app/features/mec/settings.php:651
|
6440 |
msgid "Add/Edit Events Page"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
+
#: app/features/mec/settings.php:663
|
6444 |
msgid "New Events Status"
|
6445 |
msgstr ""
|
6446 |
|
6447 |
+
#: app/features/mec/settings.php:666
|
6448 |
msgid "Let WordPress decide"
|
6449 |
msgstr ""
|
6450 |
|
6451 |
+
#: app/features/mec/settings.php:667 app/libraries/main.php:6774
|
6452 |
+
#: app/libraries/main.php:6796
|
6453 |
msgid "Pending"
|
6454 |
msgstr ""
|
6455 |
|
6456 |
+
#: app/features/mec/settings.php:668
|
6457 |
msgid "Publish"
|
6458 |
msgstr ""
|
6459 |
|
6460 |
+
#: app/features/mec/settings.php:685
|
6461 |
msgid ""
|
6462 |
"User is redirected to this page after a new event submission. Leave it empty "
|
6463 |
"if you want it disabled."
|
6464 |
msgstr ""
|
6465 |
|
6466 |
+
#: app/features/mec/settings.php:692 app/features/mec/settings.php:697
|
6467 |
msgid "Thank You Page URL"
|
6468 |
msgstr ""
|
6469 |
|
6470 |
+
#: app/features/mec/settings.php:698
|
6471 |
msgid "If filled it will use instead of thank you page set above."
|
6472 |
msgstr ""
|
6473 |
|
6474 |
+
#: app/features/mec/settings.php:721 app/features/mec/settings.php:726
|
6475 |
msgid "Maximum File Size"
|
6476 |
msgstr ""
|
6477 |
|
6478 |
+
#: app/features/mec/settings.php:723
|
6479 |
msgid "in KB"
|
6480 |
msgstr ""
|
6481 |
|
6482 |
+
#: app/features/mec/settings.php:727
|
6483 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
+
#: app/features/mec/settings.php:736
|
6487 |
msgid "Enable event submission by guest (Not logged in) users"
|
6488 |
msgstr ""
|
6489 |
|
6490 |
+
#: app/features/mec/settings.php:743
|
6491 |
msgid "Enable mandatory email and name for guest user"
|
6492 |
msgstr ""
|
6493 |
|
6494 |
+
#: app/features/mec/settings.php:749
|
6495 |
msgid ""
|
6496 |
"Automatically create users after event publish and assign event to the "
|
6497 |
"created user"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
+
#: app/features/mec/settings.php:754
|
6501 |
msgid "Frontend Event Submission Sections"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
+
#: app/features/mec/settings.php:758
|
6505 |
msgid "Event Data Fields"
|
6506 |
msgstr ""
|
6507 |
|
6508 |
+
#: app/features/mec/settings.php:782 app/widgets/single.php:121
|
6509 |
msgid "Event Categories"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: app/features/mec/settings.php:788
|
6513 |
msgid "Event Labels"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
+
#: app/features/mec/settings.php:800
|
6517 |
msgid "Event Tags"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
+
#: app/features/mec/settings.php:812 app/widgets/single.php:125
|
6521 |
msgid "Event Organizer"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
+
#: app/features/mec/settings.php:839 app/features/occurrences.php:385
|
6525 |
+
msgid "Total Booking Limit"
|
6526 |
+
msgstr ""
|
6527 |
+
|
6528 |
+
#: app/features/mec/settings.php:845
|
6529 |
+
msgid "Discount Per User Roles"
|
6530 |
+
msgstr ""
|
6531 |
+
|
6532 |
+
#: app/features/mec/settings.php:876
|
6533 |
+
msgid "Ticket Options"
|
6534 |
+
msgstr ""
|
6535 |
+
|
6536 |
+
#: app/features/mec/settings.php:888
|
6537 |
msgid "Fees / Taxes Options"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: app/features/mec/settings.php:902 app/features/schema.php:64
|
6541 |
msgid "SEO Schema"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
+
#: app/features/mec/settings.php:925 app/features/occurrences.php:72
|
6545 |
#: app/features/occurrences.php:102
|
6546 |
msgid "Occurrences"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
+
#: app/features/mec/settings.php:934 app/widgets/single.php:165
|
6550 |
msgid "Virtual Event"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
+
#: app/features/mec/settings.php:943
|
6554 |
msgid "Zoom Event"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
+
#: app/features/mec/settings.php:956
|
6558 |
#, php-format
|
6559 |
msgid ""
|
6560 |
"Users can put a note for editors while they're submitting the event. Also "
|
6562 |
"users' note in email."
|
6563 |
msgstr ""
|
6564 |
|
6565 |
+
#: app/features/mec/settings.php:963 app/features/mec/settings.php:971
|
6566 |
msgid "Note visibility"
|
6567 |
msgstr ""
|
6568 |
|
6569 |
+
#: app/features/mec/settings.php:966
|
6570 |
msgid "Always"
|
6571 |
msgstr ""
|
6572 |
|
6573 |
+
#: app/features/mec/settings.php:967
|
6574 |
msgid "While event is not published"
|
6575 |
msgstr ""
|
6576 |
|
6577 |
+
#: app/features/mec/settings.php:972
|
6578 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
6579 |
msgstr ""
|
6580 |
|
6581 |
+
#: app/features/mec/settings.php:980
|
6582 |
msgid "Required Fields"
|
6583 |
msgstr ""
|
6584 |
|
6585 |
+
#: app/features/mec/settings.php:983
|
6586 |
msgid "Event Description"
|
6587 |
msgstr ""
|
6588 |
|
6589 |
+
#: app/features/mec/settings.php:987 app/libraries/main.php:6521
|
6590 |
+
#: app/libraries/main.php:6570
|
6591 |
msgid "More Info Link"
|
6592 |
msgstr ""
|
6593 |
|
6594 |
+
#: app/features/mec/settings.php:1000 app/libraries/main.php:572
|
6595 |
msgid "User Profile"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
+
#: app/features/mec/settings.php:1002
|
6599 |
#, php-format
|
6600 |
msgid ""
|
6601 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
6602 |
"history of their bookings."
|
6603 |
msgstr ""
|
6604 |
|
6605 |
+
#: app/features/mec/settings.php:1007 app/libraries/main.php:573
|
6606 |
+
msgid "User Events"
|
6607 |
+
msgstr ""
|
6608 |
+
|
6609 |
+
#: app/features/mec/settings.php:1009
|
6610 |
+
#, php-format
|
6611 |
+
msgid ""
|
6612 |
+
"Put %s shortcode into your desired page. Then users are able to see the "
|
6613 |
+
"their own events."
|
6614 |
+
msgstr ""
|
6615 |
+
|
6616 |
+
#: app/features/mec/settings.php:1021 app/libraries/main.php:574
|
6617 |
msgid "Search Bar"
|
6618 |
msgstr ""
|
6619 |
|
6620 |
+
#: app/features/mec/settings.php:1023
|
6621 |
#, php-format
|
6622 |
msgid ""
|
6623 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: app/features/mec/settings.php:1027
|
6627 |
msgid "Ajax Live mode"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: app/features/mec/settings.php:1031
|
6631 |
msgid "Ajax mode"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: app/features/mec/settings.php:1032
|
6635 |
msgid ""
|
6636 |
"if you enable this option, the search button will disappear. To use this "
|
6637 |
"feature, text input field must be enabled."
|
6638 |
msgstr ""
|
6639 |
|
6640 |
+
#: app/features/mec/settings.php:1040
|
6641 |
msgid "Modern Type"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: app/features/mec/settings.php:1044
|
6645 |
msgid "Search bar fields"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: app/features/mec/settings.php:1086
|
6649 |
msgid "Text input"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: app/features/mec/settings.php:1099
|
6653 |
msgid "Enable Mailchimp Integration"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: app/features/mec/settings.php:1104 app/features/mec/settings.php:1109
|
6657 |
+
#: app/features/mec/settings.php:1158 app/features/mec/settings.php:1182
|
6658 |
+
#: app/features/mec/settings.php:1206 app/features/mec/settings.php:1277
|
6659 |
msgid "API Key"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: app/features/mec/settings.php:1117 app/features/mec/settings.php:1122
|
6663 |
+
#: app/features/mec/settings.php:1164 app/features/mec/settings.php:1283
|
6664 |
+
#: app/features/mec/settings.php:1301 app/features/mec/settings.php:1349
|
6665 |
msgid "List ID"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: app/features/mec/settings.php:1130 app/features/mec/settings.php:1138
|
6669 |
msgid "Subscription Status"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: app/features/mec/settings.php:1133
|
6673 |
msgid "Subscribe automatically"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: app/features/mec/settings.php:1134
|
6677 |
msgid "Subscribe by verification"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: app/features/mec/settings.php:1139
|
6681 |
msgid ""
|
6682 |
"If you choose \"Subscribe by verification\" then an email will be send to "
|
6683 |
"the user by mailchimp for subscription verification."
|
6684 |
msgstr ""
|
6685 |
|
6686 |
+
#: app/features/mec/settings.php:1149 app/libraries/main.php:576
|
6687 |
msgid "Campaign Monitor Integration"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
+
#: app/features/mec/settings.php:1153
|
6691 |
msgid "Enable Campaign Monitor Integration"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: app/features/mec/settings.php:1173 app/libraries/main.php:577
|
6695 |
msgid "MailerLite Integration"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: app/features/mec/settings.php:1177
|
6699 |
msgid "Enable MailerLite Integration"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
+
#: app/features/mec/settings.php:1188
|
6703 |
msgid "Group ID"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
+
#: app/features/mec/settings.php:1197 app/libraries/main.php:578
|
6707 |
msgid "Constant Contact Integration"
|
6708 |
msgstr ""
|
6709 |
|
6710 |
+
#: app/features/mec/settings.php:1201
|
6711 |
msgid "Enable constantcontact Integration"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: app/features/mec/settings.php:1212
|
6715 |
msgid "Access Token"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: app/features/mec/settings.php:1236 app/features/mec/settings.php:1251
|
6719 |
msgid "Select List"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
+
#: app/features/mec/settings.php:1252
|
6723 |
msgid ""
|
6724 |
"Please fill in the API key and Access Token field and save settings. after "
|
6725 |
"that, please refresh the page and select a list."
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: app/features/mec/settings.php:1262 app/libraries/main.php:579
|
6729 |
msgid "Active Campaign Integration"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: app/features/mec/settings.php:1266
|
6733 |
msgid "Enable Active Campaign Integration"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: app/features/mec/settings.php:1271
|
6737 |
msgid "API URL"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: app/features/mec/settings.php:1292 app/libraries/main.php:580
|
6741 |
msgid "AWeber Integration"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: app/features/mec/settings.php:1296
|
6745 |
msgid "Enable AWeber Integration"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: app/features/mec/settings.php:1306
|
6749 |
#, php-format
|
6750 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
6751 |
msgstr ""
|
6752 |
|
6753 |
+
#: app/features/mec/settings.php:1307
|
6754 |
#, php-format
|
6755 |
msgid "More information about the list ID can be found %s."
|
6756 |
msgstr ""
|
6757 |
|
6758 |
+
#: app/features/mec/settings.php:1312 app/libraries/main.php:581
|
6759 |
msgid "MailPoet Integration"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
+
#: app/features/mec/settings.php:1316
|
6763 |
msgid "Enable MailPoet Integration"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: app/features/mec/settings.php:1322
|
6767 |
#: app/skins/default_full_calendar/tpl.php:78
|
6768 |
#: app/skins/full_calendar/tpl.php:125
|
6769 |
msgid "List"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: app/features/mec/settings.php:1333
|
6773 |
#, php-format
|
6774 |
msgid "%s plugin should be installed and activated."
|
6775 |
msgstr ""
|
6776 |
|
6777 |
+
#: app/features/mec/settings.php:1338 app/libraries/main.php:582
|
6778 |
msgid "Sendfox Integration"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
+
#: app/features/mec/settings.php:1342
|
6782 |
msgid "Enable Sendfox Integration"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
+
#: app/features/mec/settings.php:1359
|
6786 |
#, php-format
|
6787 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
6788 |
msgstr ""
|
6789 |
|
6790 |
+
#: app/features/mec/single.php:38 app/libraries/main.php:586
|
6791 |
msgid "Single Event Page"
|
6792 |
msgstr ""
|
6793 |
|
6891 |
"the settings page.' tab"
|
6892 |
msgstr ""
|
6893 |
|
6894 |
+
#: app/features/mec/single.php:162 app/libraries/main.php:587
|
6895 |
msgid "Custom Fields"
|
6896 |
msgstr ""
|
6897 |
|
6898 |
+
#: app/features/mec/single.php:192 app/libraries/main.php:3453
|
6899 |
msgid "URL"
|
6900 |
msgstr ""
|
6901 |
|
6932 |
"Using this option you can exclude certain days from event occurrence dates."
|
6933 |
msgstr ""
|
6934 |
|
6935 |
+
#: app/features/mec/single.php:286 app/libraries/main.php:590
|
6936 |
msgid "Additional Organizers"
|
6937 |
msgstr ""
|
6938 |
|
6956 |
"page."
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:592
|
6960 |
#: app/skins/single.php:170 app/skins/single.php:435
|
6961 |
msgid "Related Events"
|
6962 |
msgstr ""
|
6969 |
msgid "Select Taxonomies:"
|
6970 |
msgstr ""
|
6971 |
|
6972 |
+
#: app/features/mec/single.php:360 app/libraries/main.php:593
|
6973 |
msgid "Next / Previous Events"
|
6974 |
msgstr ""
|
6975 |
|
6977 |
msgid "Display next / previous events based on taxonomy in single event page."
|
6978 |
msgstr ""
|
6979 |
|
6980 |
+
#: app/features/mec/single.php:402 app/libraries/main.php:639
|
6981 |
msgid "Edit Per Occurrences"
|
6982 |
msgstr ""
|
6983 |
|
7002 |
msgstr ""
|
7003 |
|
7004 |
#: app/features/mec/styling.php:50 app/features/mec/support.php:52
|
7005 |
+
#: app/libraries/main.php:837
|
7006 |
msgid "Styling Options"
|
7007 |
msgstr ""
|
7008 |
|
7159 |
msgid "MEC Settings"
|
7160 |
msgstr ""
|
7161 |
|
7162 |
+
#: app/features/mec/support-page.php:99 app/libraries/main.php:691
|
7163 |
msgid "Single Event"
|
7164 |
msgstr ""
|
7165 |
|
7456 |
msgid "Create a support ticket"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:844
|
7460 |
msgid "Custom CSS"
|
7461 |
msgstr ""
|
7462 |
|
7553 |
msgid "Delete"
|
7554 |
msgstr ""
|
7555 |
|
|
|
|
|
|
|
|
|
7556 |
#: app/features/occurrences.php:393 app/features/schema.php:70
|
7557 |
msgid "Scheduled"
|
7558 |
msgstr ""
|
7668 |
msgid "eg. https://webnus.net"
|
7669 |
msgstr ""
|
7670 |
|
7671 |
+
#: app/features/organizers.php:312 app/libraries/main.php:6526
|
7672 |
+
#: app/libraries/main.php:6573 app/skins/single.php:1314
|
7673 |
msgid "Other Organizers"
|
7674 |
msgstr ""
|
7675 |
|
7727 |
msgstr ""
|
7728 |
|
7729 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
7730 |
+
#: app/modules/booking/steps/form.php:349
|
7731 |
#: app/modules/booking/steps/tickets.php:180 app/skins/countdown/tpl.php:123
|
7732 |
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
7733 |
msgid "Next"
|
7815 |
msgid "Please %s/%s in order to see your bookings / profile."
|
7816 |
msgstr ""
|
7817 |
|
7818 |
+
#: app/features/profile/profile.php:20 app/libraries/main.php:2538
|
7819 |
msgid "Your booking already canceled!"
|
7820 |
msgstr ""
|
7821 |
|
7823 |
msgid "#"
|
7824 |
msgstr ""
|
7825 |
|
7826 |
+
#: app/features/profile/profile.php:61 app/libraries/main.php:3785
|
7827 |
msgid "Status"
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: app/features/profile/profile.php:64 app/libraries/main.php:2756
|
7831 |
msgid "Attendees"
|
7832 |
msgstr ""
|
7833 |
|
7883 |
msgid "No search result."
|
7884 |
msgstr ""
|
7885 |
|
7886 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:6528
|
7887 |
+
#: app/libraries/main.php:6575 app/libraries/notifications.php:1265
|
7888 |
+
#: app/libraries/render.php:538 app/libraries/render.php:730
|
7889 |
+
#: app/libraries/render.php:788 app/libraries/render.php:885
|
7890 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
7891 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7892 |
#: app/modules/next-event/details.php:154
|
7973 |
"section and speaker widget section!"
|
7974 |
msgstr ""
|
7975 |
|
7976 |
+
#: app/features/userevents.php:58
|
7977 |
+
#, php-format
|
7978 |
+
msgid "Please %s/%s in order to see your own events."
|
7979 |
+
msgstr ""
|
7980 |
+
|
7981 |
#: app/features/wc.php:103 app/libraries/notifications.php:1250
|
7982 |
#: app/libraries/notifications.php:1265 app/libraries/notifications.php:1276
|
7983 |
#: app/libraries/notifications.php:1549 app/libraries/notifications.php:1550
|
8113 |
msgid "New Day"
|
8114 |
msgstr ""
|
8115 |
|
8116 |
+
#: app/libraries/main.php:366 app/libraries/main.php:2123
|
8117 |
+
#: app/libraries/main.php:2148
|
8118 |
msgid "Agenda View"
|
8119 |
msgstr ""
|
8120 |
|
8121 |
+
#: app/libraries/main.php:367 app/libraries/main.php:2114
|
8122 |
+
#: app/libraries/main.php:2139
|
8123 |
msgid "Full Calendar"
|
8124 |
msgstr ""
|
8125 |
|
8126 |
+
#: app/libraries/main.php:369 app/libraries/main.php:2116
|
8127 |
+
#: app/libraries/main.php:2141
|
8128 |
msgid "Calendar/Monthly View"
|
8129 |
msgstr ""
|
8130 |
|
8131 |
+
#: app/libraries/main.php:372 app/libraries/main.php:2119
|
8132 |
+
#: app/libraries/main.php:2144
|
8133 |
msgid "Timetable View"
|
8134 |
msgstr ""
|
8135 |
|
8136 |
+
#: app/libraries/main.php:373 app/libraries/main.php:2120
|
8137 |
+
#: app/libraries/main.php:2145
|
8138 |
msgid "Masonry View"
|
8139 |
msgstr ""
|
8140 |
|
8141 |
+
#: app/libraries/main.php:374 app/libraries/main.php:2124
|
8142 |
+
#: app/libraries/main.php:2149
|
8143 |
msgid "Map View"
|
8144 |
msgstr ""
|
8145 |
|
8167 |
msgid "Timeline View"
|
8168 |
msgstr ""
|
8169 |
|
8170 |
+
#: app/libraries/main.php:419 app/libraries/main.php:6500
|
8171 |
+
#: app/libraries/main.php:6554
|
8172 |
msgid "SU"
|
8173 |
msgstr ""
|
8174 |
|
8175 |
+
#: app/libraries/main.php:420 app/libraries/main.php:6501
|
8176 |
+
#: app/libraries/main.php:6555
|
8177 |
msgid "MO"
|
8178 |
msgstr ""
|
8179 |
|
8180 |
+
#: app/libraries/main.php:421 app/libraries/main.php:6502
|
8181 |
+
#: app/libraries/main.php:6556
|
8182 |
msgid "TU"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
+
#: app/libraries/main.php:422 app/libraries/main.php:6503
|
8186 |
+
#: app/libraries/main.php:6557
|
8187 |
msgid "WE"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
+
#: app/libraries/main.php:423 app/libraries/main.php:6504
|
8191 |
+
#: app/libraries/main.php:6558
|
8192 |
msgid "TH"
|
8193 |
msgstr ""
|
8194 |
|
8195 |
+
#: app/libraries/main.php:424 app/libraries/main.php:6505
|
8196 |
+
#: app/libraries/main.php:6559
|
8197 |
msgid "FR"
|
8198 |
msgstr ""
|
8199 |
|
8200 |
+
#: app/libraries/main.php:425 app/libraries/main.php:6506
|
8201 |
+
#: app/libraries/main.php:6560
|
8202 |
msgid "SA"
|
8203 |
msgstr ""
|
8204 |
|
8205 |
+
#: app/libraries/main.php:591
|
8206 |
msgid "Additional Locations"
|
8207 |
msgstr ""
|
8208 |
|
8209 |
+
#: app/libraries/main.php:603
|
8210 |
msgid "Upload Field"
|
8211 |
msgstr ""
|
8212 |
|
8213 |
+
#: app/libraries/main.php:757
|
8214 |
msgid "Modules"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
+
#: app/libraries/main.php:925
|
8218 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
+
#: app/libraries/main.php:932
|
8222 |
msgid ""
|
8223 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
8224 |
"released. This is a revolution in the world of Event Calendars. We have "
|
8226 |
"below:"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
+
#: app/libraries/main.php:934
|
8230 |
msgid ""
|
8231 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
8232 |
"products) and Woo products at the same time."
|
8233 |
msgstr ""
|
8234 |
|
8235 |
+
#: app/libraries/main.php:935
|
8236 |
msgid ""
|
8237 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
8238 |
"other websites without MEC. Use JSON output features to make your Apps "
|
8239 |
"compatible with MEC."
|
8240 |
msgstr ""
|
8241 |
|
8242 |
+
#: app/libraries/main.php:936
|
8243 |
msgid ""
|
8244 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
8245 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
8246 |
"you can set these up in the admin panel."
|
8247 |
msgstr ""
|
8248 |
|
8249 |
+
#: app/libraries/main.php:937
|
8250 |
msgid ""
|
8251 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
8252 |
"pages can contain ticket purchase information, information about registered "
|
8253 |
"events. Users can now log in to purchase tickets."
|
8254 |
msgstr ""
|
8255 |
|
8256 |
+
#: app/libraries/main.php:939
|
8257 |
msgid "find out more"
|
8258 |
msgstr ""
|
8259 |
|
8260 |
+
#: app/libraries/main.php:1840
|
8261 |
msgid "Events at this location"
|
8262 |
msgstr ""
|
8263 |
|
8264 |
+
#: app/libraries/main.php:1840
|
8265 |
msgid "Event at this location"
|
8266 |
msgstr ""
|
8267 |
|
8268 |
+
#: app/libraries/main.php:1892
|
8269 |
msgid "Facebook"
|
8270 |
msgstr ""
|
8271 |
|
8272 |
+
#: app/libraries/main.php:1893
|
8273 |
msgid "Twitter"
|
8274 |
msgstr ""
|
8275 |
|
8276 |
+
#: app/libraries/main.php:1894 app/libraries/main.php:1951
|
8277 |
msgid "Linkedin"
|
8278 |
msgstr ""
|
8279 |
|
8280 |
+
#: app/libraries/main.php:1895 app/libraries/main.php:1987
|
8281 |
msgid "VK"
|
8282 |
msgstr ""
|
8283 |
|
8284 |
+
#: app/libraries/main.php:1896
|
8285 |
msgid "Tumblr"
|
8286 |
msgstr ""
|
8287 |
|
8288 |
+
#: app/libraries/main.php:1897
|
8289 |
msgid "Pinterest"
|
8290 |
msgstr ""
|
8291 |
|
8292 |
+
#: app/libraries/main.php:1898
|
8293 |
msgid "Flipboard"
|
8294 |
msgstr ""
|
8295 |
|
8296 |
+
#: app/libraries/main.php:1899
|
8297 |
msgid "GetPocket"
|
8298 |
msgstr ""
|
8299 |
|
8300 |
+
#: app/libraries/main.php:1900
|
8301 |
msgid "Reddit"
|
8302 |
msgstr ""
|
8303 |
|
8304 |
+
#: app/libraries/main.php:1901
|
8305 |
msgid "WhatsApp"
|
8306 |
msgstr ""
|
8307 |
|
8308 |
+
#: app/libraries/main.php:1902
|
8309 |
msgid "Telegram"
|
8310 |
msgstr ""
|
8311 |
|
8312 |
+
#: app/libraries/main.php:1921
|
8313 |
msgid "Share on Facebook"
|
8314 |
msgstr ""
|
8315 |
|
8316 |
+
#: app/libraries/main.php:1936
|
8317 |
msgid "Tweet"
|
8318 |
msgstr ""
|
8319 |
|
8320 |
+
#: app/libraries/main.php:2002
|
8321 |
msgid "Share on Tumblr"
|
8322 |
msgstr ""
|
8323 |
|
8324 |
+
#: app/libraries/main.php:2018
|
8325 |
msgid "Share on Pinterest"
|
8326 |
msgstr ""
|
8327 |
|
8328 |
+
#: app/libraries/main.php:2034
|
8329 |
msgid "Share on Flipboard"
|
8330 |
msgstr ""
|
8331 |
|
8332 |
+
#: app/libraries/main.php:2052
|
8333 |
msgid "Share on GetPocket"
|
8334 |
msgstr ""
|
8335 |
|
8336 |
+
#: app/libraries/main.php:2068
|
8337 |
msgid "Share on Reddit"
|
8338 |
msgstr ""
|
8339 |
|
8340 |
+
#: app/libraries/main.php:2084
|
8341 |
msgid "Share on Telegram"
|
8342 |
msgstr ""
|
8343 |
|
8344 |
+
#: app/libraries/main.php:2102
|
8345 |
msgid "Share on WhatsApp"
|
8346 |
msgstr ""
|
8347 |
|
8348 |
+
#: app/libraries/main.php:2125 app/libraries/main.php:2150
|
8349 |
msgid "Custom Shortcode"
|
8350 |
msgstr ""
|
8351 |
|
8352 |
+
#: app/libraries/main.php:2499 app/libraries/main.php:2510
|
8353 |
msgid "Your booking has been verified successfully!"
|
8354 |
msgstr ""
|
8355 |
|
8356 |
+
#: app/libraries/main.php:2504
|
8357 |
msgid "Your booking already verified!"
|
8358 |
msgstr ""
|
8359 |
|
8360 |
+
#: app/libraries/main.php:2511
|
8361 |
msgid "Your booking cannot verify!"
|
8362 |
msgstr ""
|
8363 |
|
8364 |
+
#: app/libraries/main.php:2533 app/libraries/main.php:2590
|
8365 |
msgid "Your booking successfully canceled."
|
8366 |
msgstr ""
|
8367 |
|
8368 |
+
#: app/libraries/main.php:2550
|
8369 |
msgid "The event is already finished!"
|
8370 |
msgstr ""
|
8371 |
|
8372 |
+
#: app/libraries/main.php:2571
|
8373 |
msgid "The cancelation window is not started yet."
|
8374 |
msgstr ""
|
8375 |
|
8376 |
+
#: app/libraries/main.php:2583
|
8377 |
msgid "The cancelation window is passed."
|
8378 |
msgstr ""
|
8379 |
|
8380 |
+
#: app/libraries/main.php:2591
|
8381 |
msgid "Your booking cannot be canceled."
|
8382 |
msgstr ""
|
8383 |
|
8384 |
+
#: app/libraries/main.php:2595
|
8385 |
msgid "You canceled the payment successfully."
|
8386 |
msgstr ""
|
8387 |
|
8388 |
+
#: app/libraries/main.php:2599
|
8389 |
msgid "You returned from payment gateway successfully."
|
8390 |
msgstr ""
|
8391 |
|
8392 |
+
#: app/libraries/main.php:2618
|
8393 |
msgid "Cannot find the invoice!"
|
8394 |
msgstr ""
|
8395 |
|
8396 |
+
#: app/libraries/main.php:2618
|
8397 |
msgid "Invoice is invalid."
|
8398 |
msgstr ""
|
8399 |
|
8400 |
+
#: app/libraries/main.php:2638
|
8401 |
msgid ""
|
8402 |
"Your booking still is not confirmed. You can download it after confirmation!"
|
8403 |
msgstr ""
|
8404 |
|
8405 |
+
#: app/libraries/main.php:2638
|
8406 |
msgid "Booking Not Confirmed."
|
8407 |
msgstr ""
|
8408 |
|
8409 |
+
#: app/libraries/main.php:2644
|
8410 |
msgid "Cannot find the booking!"
|
8411 |
msgstr ""
|
8412 |
|
8413 |
+
#: app/libraries/main.php:2644
|
8414 |
msgid "Booking is invalid."
|
8415 |
msgstr ""
|
8416 |
|
8417 |
+
#: app/libraries/main.php:2677
|
8418 |
#, php-format
|
8419 |
msgid "%s Invoice"
|
8420 |
msgstr ""
|
8421 |
|
8422 |
+
#: app/libraries/main.php:2713
|
8423 |
msgid "Date & Time"
|
8424 |
msgstr ""
|
8425 |
|
8426 |
+
#: app/libraries/main.php:2730
|
8427 |
msgid "Booking Fields"
|
8428 |
msgstr ""
|
8429 |
|
8430 |
+
#: app/libraries/main.php:2802
|
8431 |
msgid "Billing"
|
8432 |
msgstr ""
|
8433 |
|
8434 |
+
#: app/libraries/main.php:2814
|
8435 |
msgid "Coupon Code"
|
8436 |
msgstr ""
|
8437 |
|
8438 |
+
#: app/libraries/main.php:2819
|
8439 |
msgid "Total"
|
8440 |
msgstr ""
|
8441 |
|
8442 |
+
#: app/libraries/main.php:2826
|
8443 |
msgid "Payment"
|
8444 |
msgstr ""
|
8445 |
|
8446 |
+
#: app/libraries/main.php:2843
|
8447 |
msgid "Payment Time"
|
8448 |
msgstr ""
|
8449 |
|
8450 |
+
#: app/libraries/main.php:2985
|
8451 |
msgid "Request is not valid."
|
8452 |
msgstr ""
|
8453 |
|
8454 |
+
#: app/libraries/main.php:2985
|
8455 |
msgid "iCal export stopped!"
|
8456 |
msgstr ""
|
8457 |
|
8458 |
+
#: app/libraries/main.php:3336 app/libraries/main.php:3365
|
8459 |
+
#: app/libraries/main.php:3394 app/libraries/main.php:3423
|
8460 |
+
#: app/libraries/main.php:3452 app/libraries/main.php:3481
|
8461 |
+
#: app/libraries/main.php:3510 app/libraries/main.php:3539
|
8462 |
+
#: app/libraries/main.php:3568 app/libraries/main.php:3597
|
8463 |
+
#: app/libraries/main.php:3620 app/libraries/main.php:3666
|
8464 |
+
#: app/libraries/main.php:3712 app/libraries/main.php:3761
|
8465 |
+
#: app/libraries/main.php:3810
|
8466 |
msgid "Sort"
|
8467 |
msgstr ""
|
8468 |
|
8469 |
+
#: app/libraries/main.php:3343 app/libraries/main.php:3372
|
8470 |
+
#: app/libraries/main.php:3401 app/libraries/main.php:3430
|
8471 |
+
#: app/libraries/main.php:3459 app/libraries/main.php:3488
|
8472 |
+
#: app/libraries/main.php:3517 app/libraries/main.php:3546
|
8473 |
+
#: app/libraries/main.php:3575 app/libraries/main.php:3627
|
8474 |
+
#: app/libraries/main.php:3673 app/libraries/main.php:3719
|
8475 |
+
#: app/libraries/main.php:3768
|
8476 |
msgid "Required Field"
|
8477 |
msgstr ""
|
8478 |
|
8479 |
+
#: app/libraries/main.php:3349 app/libraries/main.php:3378
|
8480 |
+
#: app/libraries/main.php:3407 app/libraries/main.php:3436
|
8481 |
+
#: app/libraries/main.php:3465 app/libraries/main.php:3494
|
8482 |
+
#: app/libraries/main.php:3523 app/libraries/main.php:3552
|
8483 |
+
#: app/libraries/main.php:3581 app/libraries/main.php:3633
|
8484 |
+
#: app/libraries/main.php:3679 app/libraries/main.php:3725
|
8485 |
+
#: app/libraries/main.php:3774
|
8486 |
msgid "Insert a label for this field"
|
8487 |
msgstr ""
|
8488 |
|
8489 |
+
#: app/libraries/main.php:3603
|
8490 |
msgid "HTML and shortcode are allowed."
|
8491 |
msgstr ""
|
8492 |
|
8493 |
+
#: app/libraries/main.php:3646 app/libraries/main.php:3692
|
8494 |
+
#: app/libraries/main.php:3738
|
8495 |
msgid "Option"
|
8496 |
msgstr ""
|
8497 |
|
8498 |
+
#: app/libraries/main.php:3774
|
8499 |
#, php-format
|
8500 |
msgid "Instead of %s, the page title with a link will be show."
|
8501 |
msgstr ""
|
8502 |
|
8503 |
+
#: app/libraries/main.php:3776
|
8504 |
msgid "Agreement Page"
|
8505 |
msgstr ""
|
8506 |
|
8507 |
+
#: app/libraries/main.php:3787
|
8508 |
msgid "Checked by default"
|
8509 |
msgstr ""
|
8510 |
|
8511 |
+
#: app/libraries/main.php:3788
|
8512 |
msgid "Unchecked by default"
|
8513 |
msgstr ""
|
8514 |
|
8515 |
+
#: app/libraries/main.php:3812
|
8516 |
msgid "Insert a label for this option"
|
8517 |
msgstr ""
|
8518 |
|
8519 |
+
#: app/libraries/main.php:3825
|
8520 |
msgid "Free"
|
8521 |
msgstr ""
|
8522 |
|
8523 |
+
#: app/libraries/main.php:4498 app/libraries/main.php:6835
|
8524 |
msgid "M.E. Calender"
|
8525 |
msgstr ""
|
8526 |
|
8527 |
+
#: app/libraries/main.php:4654
|
8528 |
#, php-format
|
8529 |
msgid "Copy of %s"
|
8530 |
msgstr ""
|
8531 |
|
8532 |
+
#: app/libraries/main.php:5527
|
8533 |
msgid "Booked an event."
|
8534 |
msgstr ""
|
8535 |
|
8536 |
+
#: app/libraries/main.php:5568
|
8537 |
#, php-format
|
8538 |
msgid "%s booked %s event."
|
8539 |
msgstr ""
|
8540 |
|
8541 |
+
#: app/libraries/main.php:6483 app/libraries/main.php:6537
|
8542 |
msgid "Taxonomies"
|
8543 |
msgstr ""
|
8544 |
|
8545 |
+
#: app/libraries/main.php:6485 app/libraries/main.php:6539
|
8546 |
msgid "Category Plural Label"
|
8547 |
msgstr ""
|
8548 |
|
8549 |
+
#: app/libraries/main.php:6486 app/libraries/main.php:6540
|
8550 |
msgid "Category Singular Label"
|
8551 |
msgstr ""
|
8552 |
|
8553 |
+
#: app/libraries/main.php:6487 app/libraries/main.php:6541
|
8554 |
msgid "Label Plural Label"
|
8555 |
msgstr ""
|
8556 |
|
8557 |
+
#: app/libraries/main.php:6488 app/libraries/main.php:6542
|
8558 |
msgid "Label Singular Label"
|
8559 |
msgstr ""
|
8560 |
|
8561 |
+
#: app/libraries/main.php:6488 app/libraries/main.php:6542
|
8562 |
msgid "label"
|
8563 |
msgstr ""
|
8564 |
|
8565 |
+
#: app/libraries/main.php:6489 app/libraries/main.php:6543
|
8566 |
msgid "Location Plural Label"
|
8567 |
msgstr ""
|
8568 |
|
8569 |
+
#: app/libraries/main.php:6490 app/libraries/main.php:6544
|
8570 |
msgid "Location Singular Label"
|
8571 |
msgstr ""
|
8572 |
|
8573 |
+
#: app/libraries/main.php:6491 app/libraries/main.php:6545
|
8574 |
msgid "Organizer Plural Label"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
+
#: app/libraries/main.php:6492 app/libraries/main.php:6546
|
8578 |
msgid "Organizer Singular Label"
|
8579 |
msgstr ""
|
8580 |
|
8581 |
+
#: app/libraries/main.php:6493 app/libraries/main.php:6547
|
8582 |
msgid "Speaker Plural Label"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
+
#: app/libraries/main.php:6494 app/libraries/main.php:6548
|
8586 |
msgid "Speaker Singular Label"
|
8587 |
msgstr ""
|
8588 |
|
8589 |
+
#: app/libraries/main.php:6500 app/libraries/main.php:6554
|
8590 |
msgid "Sunday abbreviation"
|
8591 |
msgstr ""
|
8592 |
|
8593 |
+
#: app/libraries/main.php:6501 app/libraries/main.php:6555
|
8594 |
msgid "Monday abbreviation"
|
8595 |
msgstr ""
|
8596 |
|
8597 |
+
#: app/libraries/main.php:6502 app/libraries/main.php:6556
|
8598 |
msgid "Tuesday abbreviation"
|
8599 |
msgstr ""
|
8600 |
|
8601 |
+
#: app/libraries/main.php:6503 app/libraries/main.php:6557
|
8602 |
msgid "Wednesday abbreviation"
|
8603 |
msgstr ""
|
8604 |
|
8605 |
+
#: app/libraries/main.php:6504 app/libraries/main.php:6558
|
8606 |
msgid "Thursday abbreviation"
|
8607 |
msgstr ""
|
8608 |
|
8609 |
+
#: app/libraries/main.php:6505 app/libraries/main.php:6559
|
8610 |
msgid "Friday abbreviation"
|
8611 |
msgstr ""
|
8612 |
|
8613 |
+
#: app/libraries/main.php:6506 app/libraries/main.php:6560
|
8614 |
msgid "Saturday abbreviation"
|
8615 |
msgstr ""
|
8616 |
|
8617 |
+
#: app/libraries/main.php:6510 app/libraries/main.php:6564
|
8618 |
msgid "Others"
|
8619 |
msgstr ""
|
8620 |
|
8621 |
+
#: app/libraries/main.php:6512
|
8622 |
msgid "Booking Success Message"
|
8623 |
msgstr ""
|
8624 |
|
8625 |
+
#: app/libraries/main.php:6512
|
8626 |
msgid ""
|
8627 |
"Thanks you for booking. Your tickets are booked, booking verification might "
|
8628 |
"be needed, please check your email."
|
8629 |
msgstr ""
|
8630 |
|
8631 |
+
#: app/libraries/main.php:6513
|
8632 |
msgid "Booking Restriction Message 1"
|
8633 |
msgstr ""
|
8634 |
|
8635 |
+
#: app/libraries/main.php:6513
|
8636 |
#, php-format
|
8637 |
msgid ""
|
8638 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
8639 |
"tickets."
|
8640 |
msgstr ""
|
8641 |
|
8642 |
+
#: app/libraries/main.php:6514
|
8643 |
msgid "Booking Restriction Message 2"
|
8644 |
msgstr ""
|
8645 |
|
8646 |
+
#: app/libraries/main.php:6514
|
8647 |
#, php-format
|
8648 |
msgid ""
|
8649 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
8650 |
"tickets."
|
8651 |
msgstr ""
|
8652 |
|
8653 |
+
#: app/libraries/main.php:6515
|
8654 |
msgid "Booking IP Restriction Message"
|
8655 |
msgstr ""
|
8656 |
|
8657 |
+
#: app/libraries/main.php:6515
|
8658 |
#, php-format
|
8659 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
8660 |
msgstr ""
|
8661 |
|
8662 |
+
#: app/libraries/main.php:6516
|
8663 |
msgid "Booking Button"
|
8664 |
msgstr ""
|
8665 |
|
8666 |
+
#: app/libraries/main.php:6516 app/libraries/skins.php:1304
|
8667 |
#: app/modules/booking/steps/tickets.php:102
|
8668 |
msgid "Book Event"
|
8669 |
msgstr ""
|
8670 |
|
8671 |
+
#: app/libraries/main.php:6517 app/libraries/main.php:6566
|
8672 |
#: app/widgets/single.php:133
|
8673 |
msgid "Register Button"
|
8674 |
msgstr ""
|
8675 |
|
8676 |
+
#: app/libraries/main.php:6517 app/libraries/main.php:6566
|
8677 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
8678 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:104
|
8679 |
#: app/skins/grid/render.php:163 app/skins/grid/render.php:223
|
8691 |
msgid "REGISTER"
|
8692 |
msgstr ""
|
8693 |
|
8694 |
+
#: app/libraries/main.php:6518 app/libraries/main.php:6567
|
8695 |
msgid "View Detail Button"
|
8696 |
msgstr ""
|
8697 |
|
8698 |
+
#: app/libraries/main.php:6518 app/libraries/main.php:6567
|
8699 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
8700 |
#: app/skins/grid/render.php:104 app/skins/grid/render.php:163
|
8701 |
#: app/skins/grid/render.php:223 app/skins/grid/render.php:245
|
8707 |
msgid "View Detail"
|
8708 |
msgstr ""
|
8709 |
|
8710 |
+
#: app/libraries/main.php:6519 app/libraries/main.php:6568
|
8711 |
msgid "Event Detail Button"
|
8712 |
msgstr ""
|
8713 |
|
8714 |
+
#: app/libraries/main.php:6519 app/libraries/main.php:6568
|
8715 |
msgid "Event Detail"
|
8716 |
msgstr ""
|
8717 |
|
8718 |
+
#: app/libraries/main.php:6524
|
8719 |
msgid "Ticket (Singular)"
|
8720 |
msgstr ""
|
8721 |
|
8722 |
+
#: app/libraries/main.php:6525
|
8723 |
msgid "Tickets (Plural)"
|
8724 |
msgstr ""
|
8725 |
|
8726 |
+
#: app/libraries/main.php:6683
|
8727 |
msgid "EventON"
|
8728 |
msgstr ""
|
8729 |
|
8730 |
+
#: app/libraries/main.php:6684
|
8731 |
msgid "The Events Calendar"
|
8732 |
msgstr ""
|
8733 |
|
8734 |
+
#: app/libraries/main.php:6685
|
8735 |
msgid "Events Schedule WP Plugin"
|
8736 |
msgstr ""
|
8737 |
|
8738 |
+
#: app/libraries/main.php:6686
|
8739 |
msgid "Calendarize It"
|
8740 |
msgstr ""
|
8741 |
|
8742 |
+
#: app/libraries/main.php:6687
|
8743 |
msgid "Event Espresso"
|
8744 |
msgstr ""
|
8745 |
|
8746 |
+
#: app/libraries/main.php:6688
|
8747 |
msgid "Events Manager (Recurring)"
|
8748 |
msgstr ""
|
8749 |
|
8750 |
+
#: app/libraries/main.php:6689
|
8751 |
msgid "Events Manager (Single)"
|
8752 |
msgstr ""
|
8753 |
|
8754 |
+
#: app/libraries/main.php:6690
|
8755 |
msgid "WP Event Manager"
|
8756 |
msgstr ""
|
8757 |
|
8758 |
+
#: app/libraries/main.php:6822
|
8759 |
msgid "Waiting"
|
8760 |
msgstr ""
|
8761 |
|
8762 |
+
#: app/libraries/main.php:6865
|
8763 |
msgid "Sun"
|
8764 |
msgstr ""
|
8765 |
|
8766 |
+
#: app/libraries/main.php:6865
|
8767 |
msgid "Mon"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
+
#: app/libraries/main.php:6865
|
8771 |
msgid "Tue"
|
8772 |
msgstr ""
|
8773 |
|
8774 |
+
#: app/libraries/main.php:6865
|
8775 |
msgid "Wed"
|
8776 |
msgstr ""
|
8777 |
|
8778 |
+
#: app/libraries/main.php:6865
|
8779 |
msgid "Thu"
|
8780 |
msgstr ""
|
8781 |
|
8782 |
+
#: app/libraries/main.php:6865
|
8783 |
msgid "Fri"
|
8784 |
msgstr ""
|
8785 |
|
8786 |
+
#: app/libraries/main.php:6865
|
8787 |
msgid "Sat"
|
8788 |
msgstr ""
|
8789 |
|
8790 |
+
#: app/libraries/main.php:7031 app/libraries/render.php:80
|
8791 |
+
#: app/libraries/render.php:451
|
8792 |
msgid "Skin controller does not exist."
|
8793 |
msgstr ""
|
8794 |
|
8795 |
+
#: app/libraries/main.php:7246
|
8796 |
msgid "Sold Out"
|
8797 |
msgstr ""
|
8798 |
|
8799 |
+
#: app/libraries/main.php:7257
|
8800 |
msgid "Last Few Tickets"
|
8801 |
msgstr ""
|
8802 |
|
8803 |
+
#: app/libraries/main.php:7588 app/libraries/main.php:7605
|
8804 |
msgid "Minutes"
|
8805 |
msgstr ""
|
8806 |
|
8807 |
+
#: app/libraries/main.php:7610
|
8808 |
msgid "AM / PM"
|
8809 |
msgstr ""
|
8810 |
|
8811 |
+
#: app/libraries/main.php:7611
|
8812 |
msgid "AM"
|
8813 |
msgstr ""
|
8814 |
|
8815 |
+
#: app/libraries/main.php:7612
|
8816 |
msgid "PM"
|
8817 |
msgstr ""
|
8818 |
|
8819 |
+
#: app/libraries/main.php:7620
|
8820 |
msgid "Ongoing..."
|
8821 |
msgstr ""
|
8822 |
|
8823 |
+
#: app/libraries/main.php:7621
|
8824 |
msgid "Expired!"
|
8825 |
msgstr ""
|
8826 |
|
8941 |
msgstr ""
|
8942 |
|
8943 |
#: app/modules/booking/steps/checkout.php:138
|
8944 |
+
#: app/modules/booking/steps/form.php:348
|
8945 |
msgid "Back"
|
8946 |
msgstr ""
|
8947 |
|
8953 |
msgid "Attendee's Form"
|
8954 |
msgstr ""
|
8955 |
|
8956 |
+
#: app/modules/booking/steps/form.php:318
|
8957 |
msgid "Fill other attendees information like the first form."
|
8958 |
msgstr ""
|
8959 |
|
8960 |
+
#: app/modules/booking/steps/form.php:329
|
8961 |
msgid "Username"
|
8962 |
msgstr ""
|
8963 |
|
8964 |
+
#: app/modules/booking/steps/form.php:349
|
8965 |
#: app/modules/booking/steps/tickets.php:180
|
8966 |
msgid "Add to Cart"
|
8967 |
msgstr ""
|
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: 2020-12-
|
8 |
-
"PO-Revision-Date: 2020-12-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
@@ -17,8 +17,8 @@ msgstr ""
|
|
17 |
|
18 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
19 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
20 |
-
#: app/features/ix/thirdparty.php:26 app/features/mec.php:
|
21 |
-
#: app/features/mec.php:
|
22 |
#: app/widgets/MEC.php:33
|
23 |
msgid "Modern Events Calendar"
|
24 |
msgstr "Modern Events Calendar"
|
@@ -83,7 +83,7 @@ msgid "Select Shortcode"
|
|
83 |
msgstr "Añadir nuevo Shortcode"
|
84 |
|
85 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
86 |
-
#: app/features/mec/settings.php:
|
87 |
msgid "Event Color"
|
88 |
msgstr "Color del evento"
|
89 |
|
@@ -96,14 +96,14 @@ msgstr "Color del evento"
|
|
96 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
97 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
98 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
99 |
-
#: app/libraries/main.php:
|
100 |
msgid "Settings"
|
101 |
msgstr "Ajustes"
|
102 |
|
103 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
104 |
-
#: app/features/events.php:
|
105 |
-
#: app/features/mec/booking.php:873 app/features/mec/
|
106 |
-
#: app/libraries/main.php:
|
107 |
msgid "Booking Form"
|
108 |
msgstr "Formulario de Reservas"
|
109 |
|
@@ -130,9 +130,9 @@ msgstr ""
|
|
130 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
131 |
"iframe>"
|
132 |
|
133 |
-
#: app/features/contextual.php:70 app/features/events.php:
|
134 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
135 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
136 |
msgid "Payment Gateways"
|
137 |
msgstr "Pasarelas de pago"
|
138 |
|
@@ -146,9 +146,9 @@ msgstr ""
|
|
146 |
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
147 |
"\"0\" allowfullscreen></iframe>"
|
148 |
|
149 |
-
#: app/features/contextual.php:77 app/features/events.php:
|
150 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
151 |
-
#: app/libraries/main.php:
|
152 |
msgid "Notifications"
|
153 |
msgstr "Avisos"
|
154 |
|
@@ -233,12 +233,12 @@ msgstr ""
|
|
233 |
"width=\"854\" height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs"
|
234 |
"\" frameborder=\"0\" allowfullscreen></iframe>"
|
235 |
|
236 |
-
#: app/features/contextual.php:117 app/features/mec/settings.php:
|
237 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
238 |
msgid "General Options"
|
239 |
msgstr "Opciones generales"
|
240 |
|
241 |
-
#: app/features/contextual.php:139 app/features/mec/settings.php:
|
242 |
#: app/libraries/main.php:568
|
243 |
msgid "Slugs/Permalinks"
|
244 |
msgstr "Enlaces permanentes"
|
@@ -247,7 +247,7 @@ msgstr "Enlaces permanentes"
|
|
247 |
msgid "Event Details/Single Event Page"
|
248 |
msgstr "Detalles del Evento/Página de Evento Único"
|
249 |
|
250 |
-
#: app/features/contextual.php:166 app/features/mec/settings.php:
|
251 |
#: app/libraries/main.php:569
|
252 |
msgid "Currency Options"
|
253 |
msgstr "Opciones de moneda"
|
@@ -256,18 +256,18 @@ msgstr "Opciones de moneda"
|
|
256 |
msgid "Google Maps Options"
|
257 |
msgstr "Opciones de Google Maps"
|
258 |
|
259 |
-
#: app/features/contextual.php:244 app/features/mec/settings.php:
|
260 |
#: app/libraries/main.php:570
|
261 |
msgid "Google Recaptcha Options"
|
262 |
msgstr "Opciones de Google Recaptcha"
|
263 |
|
264 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
265 |
-
#: app/libraries/main.php:
|
266 |
msgid "Countdown Options"
|
267 |
msgstr "Opciones de cuenta atrás"
|
268 |
|
269 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
270 |
-
#: app/libraries/main.php:
|
271 |
msgid "Social Networks"
|
272 |
msgstr "Redes Sociales"
|
273 |
|
@@ -275,36 +275,36 @@ msgstr "Redes Sociales"
|
|
275 |
msgid "Next Event Module"
|
276 |
msgstr "Módulo de Siguiente Evento"
|
277 |
|
278 |
-
#: app/features/contextual.php:286 app/features/mec/settings.php:
|
279 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
280 |
msgid "Frontend Event Submission"
|
281 |
msgstr "Presentación del evento Frontend"
|
282 |
|
283 |
-
#: app/features/contextual.php:298 app/features/events.php:
|
284 |
-
#: app/libraries/main.php:
|
285 |
msgid "Exceptional Days"
|
286 |
msgstr "Días excepcionales"
|
287 |
|
288 |
-
#: app/features/contextual.php:308 app/features/events.php:
|
289 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
290 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
291 |
-
#: app/libraries/main.php:
|
292 |
-
#: app/libraries/main.php:
|
293 |
msgid "Booking"
|
294 |
msgstr "Reserva"
|
295 |
|
296 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
297 |
-
#: app/features/mec/booking.php:833 app/libraries/main.php:
|
298 |
msgid "Coupons"
|
299 |
msgstr "Cupones"
|
300 |
|
301 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
302 |
-
#: app/libraries/main.php:
|
303 |
msgid "BuddyPress Integration"
|
304 |
msgstr "Integración de BuddyPress"
|
305 |
|
306 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
307 |
-
#: app/libraries/main.php:
|
308 |
msgid "Mailchimp Integration"
|
309 |
msgstr "Integración de MailChimp"
|
310 |
|
@@ -312,8 +312,8 @@ msgstr "Integración de MailChimp"
|
|
312 |
msgid "MEC Activation"
|
313 |
msgstr "Activación MEC"
|
314 |
|
315 |
-
#: app/features/dlfile.php:121 app/features/events.php:
|
316 |
-
#: app/features/mec/booking.php:349 app/features/mec/settings.php:
|
317 |
#, fuzzy
|
318 |
#| msgid "Download ICS file"
|
319 |
msgid "Downloadable File"
|
@@ -351,15 +351,15 @@ msgstr ""
|
|
351 |
msgid "File uploaded!"
|
352 |
msgstr "¡La imagen está subida!"
|
353 |
|
354 |
-
#: app/features/events.php:
|
355 |
-
#: app/features/mec/dashboard.php:265 app/libraries/main.php:
|
356 |
-
#: app/libraries/main.php:
|
357 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
358 |
#: app/skins/yearly_view/tpl.php:71
|
359 |
msgid "Events"
|
360 |
msgstr "Eventos"
|
361 |
|
362 |
-
#: app/features/events.php:
|
363 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
364 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
365 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
@@ -369,228 +369,228 @@ msgstr "Eventos"
|
|
369 |
msgid "Event"
|
370 |
msgstr "Evento"
|
371 |
|
372 |
-
#: app/features/events.php:
|
373 |
msgid "Add Event"
|
374 |
msgstr "Nuevo evento"
|
375 |
|
376 |
-
#: app/features/events.php:
|
377 |
msgid "Add New Event"
|
378 |
msgstr "Añadir nuevo evento"
|
379 |
|
380 |
-
#: app/features/events.php:
|
381 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
382 |
#: app/skins/map/tpl.php:89
|
383 |
msgid "No events found!"
|
384 |
msgstr "No hay eventos"
|
385 |
|
386 |
-
#: app/features/events.php:
|
387 |
msgid "All Events"
|
388 |
msgstr "Todos los eventos"
|
389 |
|
390 |
-
#: app/features/events.php:
|
391 |
msgid "Edit Event"
|
392 |
msgstr "Editar Evento"
|
393 |
|
394 |
-
#: app/features/events.php:
|
395 |
#: app/features/popup/event.php:252
|
396 |
msgid "View Event"
|
397 |
msgstr "Ver evento"
|
398 |
|
399 |
-
#: app/features/events.php:
|
400 |
msgid "No events found in Trash!"
|
401 |
msgstr "No hay eventos en la papelera"
|
402 |
|
403 |
-
#: app/features/events.php:
|
404 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
405 |
#: app/features/mec/meta_boxes/search_form.php:31
|
406 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
407 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
408 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
409 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
410 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
411 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
412 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
413 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
414 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
415 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
416 |
-
#: app/features/mec/settings.php:
|
417 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
418 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
419 |
-
#: app/libraries/main.php:
|
420 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
421 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
422 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
423 |
msgid "Category"
|
424 |
msgstr "Categoría"
|
425 |
|
426 |
-
#: app/features/events.php:
|
427 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
428 |
#: app/features/mec/meta_boxes/filter.php:69
|
429 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
430 |
-
#: app/libraries/main.php:
|
431 |
msgid "Categories"
|
432 |
msgstr "Categorías"
|
433 |
|
434 |
-
#: app/features/events.php:
|
435 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
436 |
#: app/features/speakers.php:71
|
437 |
#, php-format
|
438 |
msgid "All %s"
|
439 |
msgstr "Todos %s"
|
440 |
|
441 |
-
#: app/features/events.php:
|
442 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
443 |
#: app/features/speakers.php:72
|
444 |
#, php-format
|
445 |
msgid "Edit %s"
|
446 |
msgstr "Editar %s"
|
447 |
|
448 |
-
#: app/features/events.php:
|
449 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
450 |
#: app/features/speakers.php:73
|
451 |
#, php-format
|
452 |
msgid "View %s"
|
453 |
msgstr "Ver %s"
|
454 |
|
455 |
-
#: app/features/events.php:
|
456 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
457 |
#: app/features/speakers.php:74
|
458 |
#, php-format
|
459 |
msgid "Update %s"
|
460 |
msgstr "Actualizar %s"
|
461 |
|
462 |
-
#: app/features/events.php:
|
463 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
464 |
#: app/features/speakers.php:75
|
465 |
#, php-format
|
466 |
msgid "Add New %s"
|
467 |
msgstr "Añadir nuevo %s"
|
468 |
|
469 |
-
#: app/features/events.php:
|
470 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
471 |
#: app/features/speakers.php:76
|
472 |
#, php-format
|
473 |
msgid "New %s Name"
|
474 |
msgstr "Nuevo %s Nombre"
|
475 |
|
476 |
-
#: app/features/events.php:
|
477 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
478 |
#: app/features/speakers.php:77
|
479 |
#, php-format
|
480 |
msgid "Popular %s"
|
481 |
msgstr "Popular %s"
|
482 |
|
483 |
-
#: app/features/events.php:
|
484 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
485 |
#: app/features/speakers.php:78
|
486 |
#, php-format
|
487 |
msgid "Search %s"
|
488 |
msgstr "Buscar %s"
|
489 |
|
490 |
-
#: app/features/events.php:
|
491 |
msgid "Category Icon"
|
492 |
msgstr "Icono de categoría"
|
493 |
|
494 |
-
#: app/features/events.php:
|
495 |
msgid "Select icon"
|
496 |
msgstr "Seleccionar icono"
|
497 |
|
498 |
-
#: app/features/events.php:
|
499 |
msgid "Event Details"
|
500 |
msgstr "Detalle de evento"
|
501 |
|
502 |
-
#: app/features/events.php:
|
503 |
#, fuzzy
|
504 |
#| msgid "Event Details"
|
505 |
msgid "FES Details"
|
506 |
msgstr "Detalle de evento"
|
507 |
|
508 |
-
#: app/features/events.php:
|
509 |
#, fuzzy
|
510 |
#| msgid "Date and Time"
|
511 |
msgid "Date And Time"
|
512 |
msgstr "Día y hora"
|
513 |
|
514 |
-
#: app/features/events.php:
|
515 |
msgid "Event Repeating"
|
516 |
msgstr "Repetir el evento"
|
517 |
|
518 |
-
#: app/features/events.php:
|
519 |
#, fuzzy
|
520 |
#| msgid "Event Detail"
|
521 |
msgid "Event Data"
|
522 |
msgstr "Detalle del evento"
|
523 |
|
524 |
-
#: app/features/events.php:
|
525 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
526 |
msgid "Hourly Schedule"
|
527 |
msgstr "Programación horaria"
|
528 |
|
529 |
-
#: app/features/events.php:
|
530 |
#, fuzzy
|
531 |
#| msgid "Location"
|
532 |
msgid "Location/Venue"
|
533 |
msgstr "Localización"
|
534 |
|
535 |
-
#: app/features/events.php:
|
536 |
#, fuzzy
|
537 |
#| msgid "Link"
|
538 |
msgid "Links"
|
539 |
msgstr "Enlace"
|
540 |
|
541 |
-
#: app/features/events.php:
|
542 |
-
#: app/features/events.php:
|
543 |
-
#: app/features/ix.php:
|
544 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
545 |
#: app/features/mec/meta_boxes/search_form.php:46
|
546 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
547 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
548 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
549 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
550 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
551 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
552 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
553 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
554 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
555 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
556 |
-
#: app/features/mec/settings.php:
|
557 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
558 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
559 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
560 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
561 |
-
#: app/features/search.php:80 app/libraries/main.php:
|
562 |
-
#: app/libraries/main.php:
|
563 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
564 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
565 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
566 |
msgid "Organizer"
|
567 |
msgstr "Organizador"
|
568 |
|
569 |
-
#: app/features/events.php:
|
570 |
-
#: app/features/fes/form.php:836 app/features/mec/settings.php:
|
571 |
-
#: app/libraries/main.php:
|
572 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
573 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
574 |
#: app/skins/single/modern.php:237
|
575 |
msgid "Cost"
|
576 |
msgstr "Coste"
|
577 |
|
578 |
-
#: app/features/events.php:
|
579 |
#, fuzzy
|
580 |
#| msgid "On Event Start"
|
581 |
msgid "SEO Schema / Event Status"
|
582 |
msgstr "En el inicio del evento"
|
583 |
|
584 |
-
#: app/features/events.php:
|
585 |
msgid "Note for reviewer"
|
586 |
msgstr "Nota para el encargado"
|
587 |
|
588 |
-
#: app/features/events.php:
|
589 |
msgid "Guest Data"
|
590 |
msgstr "Datos del invitado"
|
591 |
|
592 |
-
#: app/features/events.php:
|
593 |
-
#: app/features/events.php:
|
594 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
595 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
596 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
@@ -598,16 +598,16 @@ msgstr "Datos del invitado"
|
|
598 |
msgid "Name"
|
599 |
msgstr "Nombre"
|
600 |
|
601 |
-
#: app/features/events.php:
|
602 |
-
#: app/features/events.php:
|
603 |
-
#: app/features/events.php:
|
604 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
605 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
606 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
607 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
608 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
609 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
610 |
-
#: app/libraries/main.php:
|
611 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
612 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
613 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
@@ -616,21 +616,21 @@ msgstr "Nombre"
|
|
616 |
msgid "Email"
|
617 |
msgstr "Correo electrónico"
|
618 |
|
619 |
-
#: app/features/events.php:
|
620 |
msgid ""
|
621 |
"This event is imported from Google calendar so if you modify it, it would "
|
622 |
"overwrite in the next import from Google."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: app/features/events.php:
|
626 |
msgid "Date and Time"
|
627 |
msgstr "Día y hora"
|
628 |
|
629 |
-
#: app/features/events.php:
|
630 |
-
#: app/features/events.php:
|
631 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
632 |
-
#: app/features/ix.php:
|
633 |
-
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:
|
634 |
#: app/features/mec/meta_boxes/display_options.php:52
|
635 |
#: app/features/mec/meta_boxes/display_options.php:298
|
636 |
#: app/features/mec/meta_boxes/display_options.php:555
|
@@ -650,38 +650,38 @@ msgstr "Día y hora"
|
|
650 |
msgid "Start Date"
|
651 |
msgstr "Día de inicio"
|
652 |
|
653 |
-
#: app/features/events.php:
|
654 |
-
#: app/features/events.php:
|
655 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
656 |
-
#: app/features/ix.php:
|
657 |
-
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:
|
658 |
#: app/features/popup/event.php:92
|
659 |
msgid "End Date"
|
660 |
msgstr "Día final"
|
661 |
|
662 |
-
#: app/features/events.php:
|
663 |
#: app/features/popup/event.php:109
|
664 |
#, fuzzy
|
665 |
#| msgid "All Day Event"
|
666 |
msgid "All-day Event"
|
667 |
msgstr "Evento de todo el día"
|
668 |
|
669 |
-
#: app/features/events.php:
|
670 |
msgid "Hide Event Time"
|
671 |
msgstr "Ocultar hora del evento"
|
672 |
|
673 |
-
#: app/features/events.php:
|
674 |
msgid "Hide Event End Time"
|
675 |
msgstr "Oculta la hora de finalización del evento"
|
676 |
|
677 |
-
#: app/features/events.php:
|
678 |
#: app/features/fes/form.php:329
|
679 |
#, fuzzy
|
680 |
#| msgid "Note to reviewer"
|
681 |
msgid "Notes on the time"
|
682 |
msgstr "Nota al revisor"
|
683 |
|
684 |
-
#: app/features/events.php:
|
685 |
#, fuzzy
|
686 |
#| msgid ""
|
687 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
@@ -693,16 +693,16 @@ msgstr ""
|
|
693 |
"Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
|
694 |
"horaria, etc en este campo."
|
695 |
|
696 |
-
#: app/features/events.php:
|
697 |
-
#: app/features/events.php:
|
698 |
-
#: app/features/events.php:
|
699 |
-
#: app/features/events.php:
|
700 |
-
#: app/features/events.php:
|
701 |
-
#: app/features/events.php:
|
702 |
-
#: app/features/events.php:
|
703 |
-
#: app/features/events.php:
|
704 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
705 |
-
#: app/features/locations.php:
|
706 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
707 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
708 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
@@ -755,17 +755,17 @@ msgstr ""
|
|
755 |
#: app/features/mec/notifications.php:950
|
756 |
#: app/features/mec/notifications.php:961
|
757 |
#: app/features/mec/notifications.php:1086
|
758 |
-
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:
|
759 |
-
#: app/features/mec/settings.php:
|
760 |
-
#: app/features/mec/settings.php:
|
761 |
-
#: app/features/mec/settings.php:
|
762 |
-
#: app/features/mec/settings.php:
|
763 |
-
#: app/features/mec/settings.php:
|
764 |
-
#: app/features/mec/settings.php:
|
765 |
-
#: app/features/mec/settings.php:
|
766 |
-
#: app/features/mec/settings.php:
|
767 |
-
#: app/features/mec/settings.php:
|
768 |
-
#: app/features/mec/settings.php:
|
769 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
770 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
771 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
@@ -779,114 +779,114 @@ msgstr ""
|
|
779 |
msgid "Read More"
|
780 |
msgstr "Leer más"
|
781 |
|
782 |
-
#: app/features/events.php:
|
783 |
#, fuzzy
|
784 |
#| msgid "Timezone: %s"
|
785 |
msgid "Timezone"
|
786 |
msgstr "Zona horaria: %s"
|
787 |
|
788 |
-
#: app/features/events.php:
|
789 |
-
#: app/features/events.php:
|
790 |
-
#: app/features/events.php:
|
791 |
-
#: app/features/events.php:
|
792 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
793 |
msgid "Inherit from global options"
|
794 |
msgstr "Heredar opciones globales"
|
795 |
|
796 |
-
#: app/features/events.php:
|
797 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
798 |
#, fuzzy
|
799 |
#| msgid "Countdown View"
|
800 |
msgid "Countdown Method"
|
801 |
msgstr "Vista de cuenta regresiva"
|
802 |
|
803 |
-
#: app/features/events.php:
|
804 |
#, fuzzy
|
805 |
#| msgid "On Event Start"
|
806 |
msgid "Count to Event Start"
|
807 |
msgstr "En el inicio del evento"
|
808 |
|
809 |
-
#: app/features/events.php:
|
810 |
#, fuzzy
|
811 |
#| msgid "On Event End"
|
812 |
msgid "Count to Event End"
|
813 |
msgstr "El fin del evento"
|
814 |
|
815 |
-
#: app/features/events.php:
|
816 |
#, fuzzy
|
817 |
#| msgid "Repeat"
|
818 |
msgid "Repeating"
|
819 |
msgstr "Repetir"
|
820 |
|
821 |
-
#: app/features/events.php:
|
822 |
#, fuzzy
|
823 |
#| msgid "Event Repeating"
|
824 |
msgid "Event Repeating (Recurring events)"
|
825 |
msgstr "Repetir el evento"
|
826 |
|
827 |
-
#: app/features/events.php:
|
828 |
msgid "Repeats"
|
829 |
msgstr "Repeticiones"
|
830 |
|
831 |
-
#: app/features/events.php:
|
832 |
-
#: app/features/mec.php:
|
833 |
#: app/skins/full_calendar/tpl.php:124
|
834 |
msgid "Daily"
|
835 |
msgstr "Diariamente"
|
836 |
|
837 |
-
#: app/features/events.php:
|
838 |
msgid "Every Weekday"
|
839 |
msgstr "Cada día de la semana"
|
840 |
|
841 |
-
#: app/features/events.php:
|
842 |
msgid "Every Weekend"
|
843 |
msgstr "Cada fin de semana"
|
844 |
|
845 |
-
#: app/features/events.php:
|
846 |
msgid "Certain Weekdays"
|
847 |
msgstr "Ciertos días de la semana"
|
848 |
|
849 |
-
#: app/features/events.php:
|
850 |
#: app/skins/default_full_calendar/tpl.php:76
|
851 |
#: app/skins/full_calendar/tpl.php:123
|
852 |
msgid "Weekly"
|
853 |
msgstr "Semanal"
|
854 |
|
855 |
-
#: app/features/events.php:
|
856 |
-
#: app/features/mec.php:
|
857 |
#: app/skins/full_calendar/tpl.php:122
|
858 |
msgid "Monthly"
|
859 |
msgstr "Mensual"
|
860 |
|
861 |
-
#: app/features/events.php:
|
862 |
-
#: app/features/mec.php:
|
863 |
#: app/skins/full_calendar/tpl.php:121
|
864 |
msgid "Yearly"
|
865 |
msgstr "Anual"
|
866 |
|
867 |
-
#: app/features/events.php:
|
868 |
msgid "Custom Days"
|
869 |
msgstr "Días personalizados"
|
870 |
|
871 |
-
#: app/features/events.php:
|
872 |
#, fuzzy
|
873 |
#| msgid "Advanced Method"
|
874 |
msgid "Advanced"
|
875 |
msgstr "Método avanzado"
|
876 |
|
877 |
-
#: app/features/events.php:
|
878 |
msgid "Repeat Interval"
|
879 |
msgstr "Intervalo de repetición"
|
880 |
|
881 |
-
#: app/features/events.php:
|
882 |
msgid "Repeat interval"
|
883 |
msgstr "Intervalo de repetición"
|
884 |
|
885 |
-
#: app/features/events.php:
|
886 |
msgid "Week Days"
|
887 |
msgstr "Días de semana"
|
888 |
|
889 |
-
#: app/features/events.php:
|
890 |
#, fuzzy
|
891 |
#| msgid "Pro version of Modern Events Calendar"
|
892 |
msgid ""
|
@@ -894,93 +894,94 @@ msgid ""
|
|
894 |
"Calendar."
|
895 |
msgstr "Versión Pro de Modern Events Calendar"
|
896 |
|
897 |
-
#: app/features/events.php:
|
898 |
-
#: app/features/events.php:
|
899 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
900 |
#: app/features/ix/import_g_calendar.php:51
|
901 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
|
|
902 |
msgid "Start"
|
903 |
msgstr "Inicio"
|
904 |
|
905 |
-
#: app/features/events.php:
|
906 |
-
#: app/features/events.php:
|
907 |
-
#: app/features/events.php:
|
908 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
909 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
910 |
#: app/libraries/hourlyschedule.php:119
|
911 |
msgid "Add"
|
912 |
msgstr "Añadir"
|
913 |
|
914 |
-
#: app/features/events.php:
|
915 |
#, fuzzy
|
916 |
#| msgid "Custom Days"
|
917 |
msgid "Custom Days Repeating"
|
918 |
msgstr "Días personalizados"
|
919 |
|
920 |
-
#: app/features/events.php:
|
921 |
msgid ""
|
922 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
923 |
"start and end dates should be the same, If you have a multiple day event, "
|
924 |
"the start and end dates must be commensurate with the initial date."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: app/features/events.php:
|
928 |
-
#: app/features/events.php:
|
929 |
-
#: app/features/fes/form.php:417
|
930 |
msgid "End"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: app/features/events.php:
|
934 |
#, fuzzy
|
935 |
#| msgid "Ticket name"
|
936 |
msgid "First"
|
937 |
msgstr "Nombre de la entrada"
|
938 |
|
939 |
-
#: app/features/events.php:
|
940 |
#, fuzzy
|
941 |
#| msgid "second"
|
942 |
msgid "Second"
|
943 |
msgstr "segundo"
|
944 |
|
945 |
-
#: app/features/events.php:
|
946 |
#, fuzzy
|
947 |
#| msgid "Third Party"
|
948 |
msgid "Third"
|
949 |
msgstr "Terceros"
|
950 |
|
951 |
-
#: app/features/events.php:
|
952 |
msgid "Fourth"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: app/features/events.php:
|
956 |
#, fuzzy
|
957 |
#| msgid "Last Year"
|
958 |
msgid "Last"
|
959 |
msgstr "Año pasado"
|
960 |
|
961 |
-
#: app/features/events.php:
|
962 |
msgid "Ends Repeat"
|
963 |
msgstr "Finaliza la repetición"
|
964 |
|
965 |
-
#: app/features/events.php:
|
966 |
msgid "Never"
|
967 |
msgstr "Nunca"
|
968 |
|
969 |
-
#: app/features/events.php:
|
970 |
msgid "On"
|
971 |
msgstr "On"
|
972 |
|
973 |
-
#: app/features/events.php:
|
974 |
#: app/features/mec/booking.php:154
|
975 |
msgid "After"
|
976 |
msgstr "Después"
|
977 |
|
978 |
-
#: app/features/events.php:
|
979 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
980 |
msgid "Occurrences times"
|
981 |
msgstr "Ocurrencias del evento"
|
982 |
|
983 |
-
#: app/features/events.php:
|
984 |
#, fuzzy
|
985 |
#| msgid ""
|
986 |
#| "The event will finish after certain repeats. For example if you set it to "
|
@@ -992,35 +993,35 @@ msgstr ""
|
|
992 |
"El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
|
993 |
"estableces en 10, el evento terminará después de 10 repeticiones."
|
994 |
|
995 |
-
#: app/features/events.php:
|
996 |
#, fuzzy
|
997 |
#| msgid "Next Occurrence of Other Events"
|
998 |
msgid "Show only one occurrence of this event"
|
999 |
msgstr "Próxima aparición de otros eventos"
|
1000 |
|
1001 |
-
#: app/features/events.php:
|
1002 |
-
#: app/features/fes/form.php:833 app/features/ix.php:
|
1003 |
-
#: app/features/ix.php:
|
1004 |
-
#: app/libraries/main.php:
|
1005 |
#: app/widgets/single.php:105
|
1006 |
msgid "Event Cost"
|
1007 |
msgstr "Coste del evento"
|
1008 |
|
1009 |
-
#: app/features/events.php:
|
1010 |
#, fuzzy
|
1011 |
#| msgid "Exceptional Days"
|
1012 |
msgid "Exceptional Days (Exclude Dates)"
|
1013 |
msgstr "Días excepcionales"
|
1014 |
|
1015 |
-
#: app/features/events.php:
|
1016 |
msgid "Exclude certain days"
|
1017 |
msgstr "Excluir ciertos días"
|
1018 |
|
1019 |
-
#: app/features/events.php:
|
1020 |
-
#: app/features/events.php:
|
1021 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
1022 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
1023 |
-
#: app/features/wc.php:83 app/libraries/main.php:
|
1024 |
#: app/modules/booking/steps/tickets.php:106
|
1025 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
1026 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
@@ -1028,34 +1029,34 @@ msgstr "Excluir ciertos días"
|
|
1028 |
msgid "Date"
|
1029 |
msgstr "Fecha"
|
1030 |
|
1031 |
-
#: app/features/events.php:
|
1032 |
msgid ""
|
1033 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
1034 |
"exclude only single day occurrences and you cannot exclude one day from "
|
1035 |
"multiple day occurrences."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: app/features/events.php:
|
1039 |
msgid "Day 1"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: app/features/events.php:
|
1043 |
-
#: app/features/mec/settings.php:
|
1044 |
msgid "Event Links"
|
1045 |
msgstr "Enlaces de eventos"
|
1046 |
|
1047 |
-
#: app/features/events.php:
|
1048 |
-
#: app/features/fes/form.php:812 app/features/mec/settings.php:
|
1049 |
-
#: app/libraries/main.php:
|
1050 |
msgid "Event Link"
|
1051 |
msgstr "Enlace del evento"
|
1052 |
|
1053 |
-
#: app/features/events.php:
|
1054 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
1055 |
msgid "eg. http://yoursite.com/your-event"
|
1056 |
msgstr "ej. http://yoursite.com/your-event"
|
1057 |
|
1058 |
-
#: app/features/events.php:
|
1059 |
#, fuzzy
|
1060 |
#| msgid ""
|
1061 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -1068,34 +1069,34 @@ msgstr ""
|
|
1068 |
"Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
|
1069 |
"defecto. Inserta todo el enlace incluyendo http(s)://"
|
1070 |
|
1071 |
-
#: app/features/events.php:
|
1072 |
msgid "URL Shortener"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: app/features/events.php:
|
1076 |
-
#: app/features/fes/form.php:817 app/libraries/main.php:
|
1077 |
-
#: app/libraries/main.php:
|
1078 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1079 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1080 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
1081 |
msgid "More Info"
|
1082 |
msgstr "Más Información"
|
1083 |
|
1084 |
-
#: app/features/events.php:
|
1085 |
msgid "More Information"
|
1086 |
msgstr "Más Información"
|
1087 |
|
1088 |
-
#: app/features/events.php:
|
1089 |
-
#: app/features/mec.php:
|
1090 |
msgid "Current Window"
|
1091 |
msgstr "Ventana actual"
|
1092 |
|
1093 |
-
#: app/features/events.php:
|
1094 |
-
#: app/features/mec.php:
|
1095 |
msgid "New Window"
|
1096 |
msgstr "Nueva ventana"
|
1097 |
|
1098 |
-
#: app/features/events.php:
|
1099 |
msgid ""
|
1100 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1101 |
"Insert full link including http(s)://"
|
@@ -1103,129 +1104,132 @@ msgstr ""
|
|
1103 |
"Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
|
1104 |
"opcional. Inserta todo el enlace incluyendo http(s)://"
|
1105 |
|
1106 |
-
#: app/features/events.php:
|
1107 |
msgid "Booking Options"
|
1108 |
msgstr "Opciones de reserva"
|
1109 |
|
1110 |
-
#: app/features/events.php:
|
|
|
1111 |
#, fuzzy
|
1112 |
#| msgid "Total booking limits"
|
1113 |
msgid "Total User Booking Limits"
|
1114 |
msgstr "Límite total de reservas"
|
1115 |
|
1116 |
-
#: app/features/events.php:
|
1117 |
-
#: app/libraries/book.php:63 app/libraries/main.php:
|
1118 |
#: app/modules/booking/steps/tickets.php:137
|
1119 |
#: app/modules/booking/steps/tickets.php:143
|
1120 |
msgid "Tickets"
|
1121 |
msgstr "Tickets"
|
1122 |
|
1123 |
-
#: app/features/events.php:
|
1124 |
msgid "Fees"
|
1125 |
msgstr "Tasas"
|
1126 |
|
1127 |
-
#: app/features/events.php:
|
1128 |
-
#: app/features/mec/settings.php:
|
1129 |
msgid "Ticket Variations / Options"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: app/features/events.php:
|
1133 |
#: app/features/mec/support-page.php:118
|
1134 |
#, fuzzy
|
1135 |
#| msgid "Organizer Tel"
|
1136 |
msgid "Organizer Payment"
|
1137 |
msgstr "Teléfono del Organizador"
|
1138 |
|
1139 |
-
#: app/features/events.php:
|
1140 |
#, fuzzy
|
1141 |
#| msgid "Total booking limits"
|
1142 |
msgid "Total booking limit"
|
1143 |
msgstr "Límite total de reservas"
|
1144 |
|
1145 |
-
#: app/features/events.php:
|
1146 |
-
#: app/features/events.php:
|
1147 |
#: app/modules/booking/steps/tickets.php:137
|
1148 |
#: app/modules/booking/steps/tickets.php:143
|
1149 |
#: app/skins/available_spot/tpl.php:140
|
1150 |
msgid "Unlimited"
|
1151 |
msgstr "Ilimitado"
|
1152 |
|
1153 |
-
#: app/features/events.php:
|
1154 |
msgid ""
|
1155 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1156 |
"limitation number."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: app/features/events.php:
|
1160 |
msgid "Read About A Booking System"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: app/features/events.php:
|
1164 |
msgid "100"
|
1165 |
msgstr "100"
|
1166 |
|
1167 |
-
#: app/features/events.php:
|
1168 |
#, fuzzy
|
1169 |
#| msgid "Discount"
|
1170 |
msgid "Discount per user roles"
|
1171 |
msgstr "Descuento"
|
1172 |
|
1173 |
-
#: app/features/events.php:
|
1174 |
msgid "5"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: app/features/events.php:
|
|
|
1178 |
#, fuzzy
|
1179 |
#| msgid "Next Occurrence"
|
1180 |
msgid "Book All Occurrences"
|
1181 |
msgstr "Siguiente repetición"
|
1182 |
|
1183 |
-
#: app/features/events.php:
|
1184 |
msgid "Sell all occurrences by one booking"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: app/features/events.php:
|
1188 |
msgid ""
|
1189 |
"If you have a series of events and you want to sell all of them at once, "
|
1190 |
"this option is for you! For example a weekly yoga course or something "
|
1191 |
"similar."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: app/features/events.php:
|
|
|
1195 |
#, fuzzy
|
1196 |
#| msgid "General Options"
|
1197 |
msgid "Interval Options"
|
1198 |
msgstr "Opciones generales"
|
1199 |
|
1200 |
-
#: app/features/events.php:
|
1201 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1202 |
#, fuzzy
|
1203 |
#| msgid "Booking Form"
|
1204 |
msgid "Show Booking Form Interval"
|
1205 |
msgstr "Formulario de Reservas"
|
1206 |
|
1207 |
-
#: app/features/events.php:
|
1208 |
msgid "Minutes (e.g 5)"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: app/features/events.php:
|
1212 |
msgid ""
|
1213 |
"You can show booking form only at certain times before event start. If you "
|
1214 |
"set this option to 30 then booking form will open only 30 minutes before "
|
1215 |
"starting the event! One day is 1440 minutes."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: app/features/events.php:
|
1219 |
msgid "Automatic Approval"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: app/features/events.php:
|
1223 |
#, fuzzy
|
1224 |
#| msgid "Email verification"
|
1225 |
msgid "Email Verification"
|
1226 |
msgstr "Verificación por email"
|
1227 |
|
1228 |
-
#: app/features/events.php:
|
1229 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1230 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1231 |
#: app/features/mec/booking.php:868
|
@@ -1237,138 +1241,132 @@ msgstr "Verificación por email"
|
|
1237 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1238 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1239 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1240 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1241 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1242 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1243 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1244 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1245 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1246 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1247 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1248 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1249 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1250 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1251 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1252 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1253 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1254 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1255 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1256 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1257 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1258 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1259 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1260 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1261 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1262 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1263 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1264 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1265 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1266 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1267 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1268 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1269 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1270 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1271 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1272 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1273 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1274 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1275 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1276 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1277 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1278 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1279 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1280 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1281 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1282 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1283 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1284 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1285 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1286 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1287 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1288 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1289 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1290 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1291 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1292 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1293 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1294 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1295 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1296 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1297 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1298 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1299 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1300 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1301 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1302 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1303 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1304 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1305 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1306 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1307 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1308 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1309 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1310 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1311 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1312 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1313 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1314 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1315 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1316 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1317 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1318 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1319 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1320 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1321 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1322 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1323 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1324 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1325 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1326 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1327 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1328 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1329 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1330 |
-
#: app/features/mec/modules.php:124 app/features/mec/settings.php:
|
1331 |
-
#: app/features/mec/settings.php:
|
1332 |
msgid "Disabled"
|
1333 |
msgstr "Desactivado"
|
1334 |
|
1335 |
-
#: app/features/events.php:
|
1336 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1337 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1338 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1339 |
-
#: app/features/mec/settings.php:
|
1340 |
msgid "Enabled"
|
1341 |
msgstr "Habilitado"
|
1342 |
|
1343 |
-
#: app/features/events.php:
|
1344 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1345 |
-
#: app/libraries/main.php:
|
1346 |
msgid "Booking Confirmation"
|
1347 |
msgstr "Confirmación de reserva"
|
1348 |
|
1349 |
-
#: app/features/events.php:
|
1350 |
-
#, fuzzy
|
1351 |
-
#| msgid "Total booking limits"
|
1352 |
-
msgid "Total user booking limits"
|
1353 |
-
msgstr "Límite total de reservas"
|
1354 |
-
|
1355 |
-
#: app/features/events.php:1621
|
1356 |
msgid "12"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: app/features/events.php:
|
1360 |
#, fuzzy
|
1361 |
#| msgid "Payment Gateways"
|
1362 |
msgid "Disabled Gateways"
|
1363 |
msgstr "Pasarelas de pago"
|
1364 |
|
1365 |
-
#: app/features/events.php:
|
1366 |
msgid ""
|
1367 |
"You can disable some of the following payment gateways by checking them "
|
1368 |
"otherwise they will be enabled."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: app/features/events.php:
|
1372 |
msgid ""
|
1373 |
"You're translating an event so MEC will use the original event for tickets "
|
1374 |
"and booking. You can only translate the ticket name and description. Please "
|
@@ -1379,74 +1377,74 @@ msgstr ""
|
|
1379 |
"entrada. Por favor define las entradas exactas que podrías definir en un "
|
1380 |
"evento original aquí."
|
1381 |
|
1382 |
-
#: app/features/events.php:
|
1383 |
#, fuzzy
|
1384 |
#| msgid "Ticket"
|
1385 |
msgid "Add Ticket"
|
1386 |
msgstr "Ticket"
|
1387 |
|
1388 |
-
#: app/features/events.php:
|
1389 |
#, fuzzy
|
1390 |
#| msgid "Ticket"
|
1391 |
msgid "Ticket ID"
|
1392 |
msgstr "Ticket"
|
1393 |
|
1394 |
-
#: app/features/events.php:
|
1395 |
-
#: app/features/events.php:
|
1396 |
-
#: app/features/ix.php:
|
1397 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1398 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1399 |
msgid "ID"
|
1400 |
msgstr "ID"
|
1401 |
|
1402 |
-
#: app/features/events.php:
|
1403 |
msgid "Ticket Name"
|
1404 |
msgstr "Nombre del ticket"
|
1405 |
|
1406 |
-
#: app/features/events.php:
|
1407 |
-
#: app/features/events.php:
|
1408 |
-
#: app/features/ix.php:
|
1409 |
msgid "Start Time"
|
1410 |
msgstr "Hora de Inicio"
|
1411 |
|
1412 |
-
#: app/features/events.php:
|
1413 |
-
#: app/features/events.php:
|
1414 |
-
#: app/features/ix.php:
|
1415 |
msgid "End Time"
|
1416 |
msgstr "Hora de finalización"
|
1417 |
|
1418 |
-
#: app/features/events.php:
|
1419 |
-
#: app/features/events.php:
|
1420 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1421 |
msgid "Description"
|
1422 |
msgstr "Descripción"
|
1423 |
|
1424 |
-
#: app/features/events.php:
|
1425 |
-
#: app/features/events.php:
|
1426 |
#, fuzzy
|
1427 |
#| msgid "Description"
|
1428 |
msgid "Private Description"
|
1429 |
msgstr "Descripción"
|
1430 |
|
1431 |
-
#: app/features/events.php:
|
1432 |
#, php-format
|
1433 |
msgid ""
|
1434 |
"You can show it on the email notifications by placing "
|
1435 |
"%%ticket_private_description%% into the email template."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: app/features/events.php:
|
1439 |
-
#: app/features/events.php:
|
1440 |
-
#: app/features/events.php:
|
1441 |
-
#: app/features/events.php:
|
1442 |
-
#: app/features/events.php:
|
1443 |
-
#: app/features/events.php:
|
1444 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1445 |
#: app/features/mec/booking.php:582
|
1446 |
msgid "Price"
|
1447 |
msgstr "Precio"
|
1448 |
|
1449 |
-
#: app/features/events.php:
|
1450 |
#, fuzzy
|
1451 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1452 |
msgid ""
|
@@ -1454,108 +1452,108 @@ msgid ""
|
|
1454 |
"any symbols or characters."
|
1455 |
msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
|
1456 |
|
1457 |
-
#: app/features/events.php:
|
1458 |
-
#: app/features/events.php:
|
1459 |
msgid "Price Label"
|
1460 |
msgstr "Etiqueta de precio"
|
1461 |
|
1462 |
-
#: app/features/events.php:
|
1463 |
msgid "For showing on website. e.g. $15"
|
1464 |
msgstr "Para mostrar en la web. Ej. 15€"
|
1465 |
|
1466 |
-
#: app/features/events.php:
|
1467 |
msgid "Available Tickets"
|
1468 |
msgstr "Tickets disponibles"
|
1469 |
|
1470 |
-
#: app/features/events.php:
|
1471 |
msgid "Minimum Ticket e.g. 3"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: app/features/events.php:
|
1475 |
#, fuzzy
|
1476 |
#| msgid "Ticket"
|
1477 |
msgid "MinimumTicket"
|
1478 |
msgstr "Ticket"
|
1479 |
|
1480 |
-
#: app/features/events.php:
|
1481 |
msgid "Set a number for the minimum ticket reservation possible"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: app/features/events.php:
|
1485 |
msgid "e.g. 0"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: app/features/events.php:
|
1489 |
#, fuzzy
|
1490 |
#| msgid "Days"
|
1491 |
msgid "Day"
|
1492 |
msgstr "Días"
|
1493 |
|
1494 |
-
#: app/features/events.php:
|
1495 |
msgid "Hour"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: app/features/events.php:
|
1499 |
#, php-format
|
1500 |
msgid "Stop selling ticket %s before event start."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: app/features/events.php:
|
1504 |
msgid "Price per Date"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: app/features/events.php:
|
1508 |
-
#: app/features/events.php:
|
1509 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1510 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1511 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1512 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1513 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1514 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1515 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1516 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1517 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1518 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1519 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1520 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1521 |
-
#: app/features/mec/settings.php:
|
1522 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1523 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1524 |
msgid "Label"
|
1525 |
msgstr "Etiqueta"
|
1526 |
|
1527 |
-
#: app/features/events.php:
|
1528 |
-
#: app/features/events.php:
|
1529 |
-
#: app/features/events.php:
|
1530 |
-
#: app/features/events.php:
|
1531 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1532 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1533 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1534 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1535 |
-
#: app/libraries/main.php:
|
1536 |
-
#: app/libraries/main.php:
|
1537 |
-
#: app/libraries/main.php:
|
1538 |
-
#: app/libraries/main.php:
|
1539 |
-
#: app/libraries/main.php:
|
1540 |
-
#: app/libraries/main.php:
|
1541 |
-
#: app/libraries/main.php:
|
1542 |
-
#: app/libraries/main.php:
|
1543 |
msgid "Remove"
|
1544 |
msgstr "Eliminar"
|
1545 |
|
1546 |
-
#: app/features/events.php:
|
1547 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1548 |
msgid "Fee Title"
|
1549 |
msgstr "Título de la cuota"
|
1550 |
|
1551 |
-
#: app/features/events.php:
|
1552 |
-
#: app/features/events.php:
|
1553 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1554 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1555 |
msgid "Amount"
|
1556 |
msgstr "Cantidad"
|
1557 |
|
1558 |
-
#: app/features/events.php:
|
1559 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1560 |
msgid ""
|
1561 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
@@ -1564,25 +1562,25 @@ msgstr ""
|
|
1564 |
"Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
|
1565 |
"cantidad, si no será considerada como porcentaje"
|
1566 |
|
1567 |
-
#: app/features/events.php:
|
1568 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1569 |
msgid "Percent"
|
1570 |
msgstr "Porcentaje"
|
1571 |
|
1572 |
-
#: app/features/events.php:
|
1573 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1574 |
msgid "Amount (Per Ticket)"
|
1575 |
msgstr "Cantidad (Por ticket)"
|
1576 |
|
1577 |
-
#: app/features/events.php:
|
1578 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1579 |
msgid "Amount (Per Booking)"
|
1580 |
msgstr "Cantidad (por reservas)"
|
1581 |
|
1582 |
-
#: app/features/events.php:
|
1583 |
-
#: app/features/events.php:
|
1584 |
-
#: app/features/fes/form.php:256 app/features/ix.php:
|
1585 |
-
#: app/features/ix.php:
|
1586 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1587 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1588 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
@@ -1590,24 +1588,24 @@ msgstr "Cantidad (por reservas)"
|
|
1590 |
msgid "Title"
|
1591 |
msgstr "Titulo"
|
1592 |
|
1593 |
-
#: app/features/events.php:
|
1594 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1595 |
msgid "Option Price"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: app/features/events.php:
|
1599 |
-
#: app/features/events.php:
|
1600 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1601 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1602 |
msgid "Maximum Per Ticket"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: app/features/events.php:
|
1606 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1607 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: app/features/events.php:
|
1611 |
#, fuzzy
|
1612 |
#| msgid ""
|
1613 |
#| "You're translating an event so MEC will use the original event for "
|
@@ -1624,65 +1622,65 @@ msgstr ""
|
|
1624 |
"entrada. Por favor define las entradas exactas que podrías definir en un "
|
1625 |
"evento original aquí."
|
1626 |
|
1627 |
-
#: app/features/events.php:
|
1628 |
#, fuzzy
|
1629 |
#| msgid "Attendees Limit"
|
1630 |
msgid "Per Attendee Fields"
|
1631 |
msgstr "Límite de asistentes"
|
1632 |
|
1633 |
-
#: app/features/events.php:
|
1634 |
-
#: app/libraries/main.php:
|
1635 |
#, fuzzy
|
1636 |
#| msgid "Name"
|
1637 |
msgid "MEC Name"
|
1638 |
msgstr "Nombre"
|
1639 |
|
1640 |
-
#: app/features/events.php:
|
1641 |
-
#: app/libraries/main.php:
|
1642 |
#, fuzzy
|
1643 |
#| msgid "Email"
|
1644 |
msgid "MEC Email"
|
1645 |
msgstr "Correo electrónico"
|
1646 |
|
1647 |
-
#: app/features/events.php:
|
1648 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1649 |
-
#: app/features/mec/single.php:190 app/libraries/main.php:
|
1650 |
msgid "Text"
|
1651 |
msgstr "Texto"
|
1652 |
|
1653 |
-
#: app/features/events.php:
|
1654 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1655 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1656 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1657 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1658 |
-
#: app/libraries/main.php:
|
1659 |
msgid "Tel"
|
1660 |
msgstr "Tel"
|
1661 |
|
1662 |
-
#: app/features/events.php:
|
1663 |
-
#: app/libraries/main.php:
|
1664 |
msgid "File"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: app/features/events.php:
|
1668 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1669 |
-
#: app/features/mec/single.php:195 app/libraries/main.php:
|
1670 |
msgid "Textarea"
|
1671 |
msgstr "Área de texto"
|
1672 |
|
1673 |
-
#: app/features/events.php:
|
1674 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1675 |
-
#: app/features/mec/single.php:197 app/libraries/main.php:
|
1676 |
msgid "Checkboxes"
|
1677 |
msgstr "Checkboxes"
|
1678 |
|
1679 |
-
#: app/features/events.php:
|
1680 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1681 |
-
#: app/features/mec/single.php:198 app/libraries/main.php:
|
1682 |
msgid "Radio Buttons"
|
1683 |
msgstr "Botón tipo radio"
|
1684 |
|
1685 |
-
#: app/features/events.php:
|
1686 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1687 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1688 |
#: app/features/mec/meta_boxes/search_form.php:41
|
@@ -1690,144 +1688,141 @@ msgstr "Botón tipo radio"
|
|
1690 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1691 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1692 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1693 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1694 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1695 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1696 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1697 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1698 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1699 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1700 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1701 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1702 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1703 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1704 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1705 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1706 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1707 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1708 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1709 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1710 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1711 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1712 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1713 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1714 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1715 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1716 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1717 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1718 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1719 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1720 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1721 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1722 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1723 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1724 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1725 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1726 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1727 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1728 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1729 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1730 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1731 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1732 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1733 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1734 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1735 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1736 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1737 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1738 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1739 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1740 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1741 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1742 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1743 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1744 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1745 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1746 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1747 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1748 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1749 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1750 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1751 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1752 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1753 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1754 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1755 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1756 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1757 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1758 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1759 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1760 |
-
#: app/features/mec/
|
1761 |
-
#: app/features/mec/meta_boxes/search_form.php:799
|
1762 |
-
#: app/features/mec/meta_boxes/search_form.php:813
|
1763 |
-
#: app/features/mec/single.php:199 app/libraries/main.php:3712
|
1764 |
msgid "Dropdown"
|
1765 |
msgstr "Desplegable"
|
1766 |
|
1767 |
-
#: app/features/events.php:
|
1768 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1769 |
-
#: app/libraries/main.php:
|
1770 |
msgid "Agreement"
|
1771 |
msgstr "Acuerdo"
|
1772 |
|
1773 |
-
#: app/features/events.php:
|
1774 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1775 |
-
#: app/features/mec/single.php:196 app/libraries/main.php:
|
1776 |
msgid "Paragraph"
|
1777 |
msgstr "Párrafo"
|
1778 |
|
1779 |
-
#: app/features/events.php:
|
1780 |
#, fuzzy
|
1781 |
#| msgid "Required Field"
|
1782 |
msgid "Fixed Fields"
|
1783 |
msgstr "Campo obligatorio"
|
1784 |
|
1785 |
-
#: app/features/events.php:
|
1786 |
-
#: app/features/events.php:
|
1787 |
#, php-format
|
1788 |
msgid "Show all %s"
|
1789 |
msgstr "Mostrar todos %s"
|
1790 |
|
1791 |
-
#: app/features/events.php:
|
1792 |
msgid "labels"
|
1793 |
msgstr "etiquetas"
|
1794 |
|
1795 |
-
#: app/features/events.php:
|
1796 |
msgid "locations"
|
1797 |
msgstr "ubicaciones"
|
1798 |
|
1799 |
-
#: app/features/events.php:
|
1800 |
msgid "organizers"
|
1801 |
msgstr "organizadores"
|
1802 |
|
1803 |
-
#: app/features/events.php:
|
1804 |
#, fuzzy
|
1805 |
#| msgid "Attendees Limit"
|
1806 |
msgid "Attendees List"
|
1807 |
msgstr "Límite de asistentes"
|
1808 |
|
1809 |
-
#: app/features/events.php:
|
1810 |
-
#: app/features/ix.php:
|
1811 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1812 |
-
#: app/features/locations.php:
|
1813 |
-
#: app/features/locations.php:
|
1814 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1815 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1816 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1817 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1818 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1819 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1820 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1821 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1822 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1823 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1824 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1825 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1826 |
-
#: app/features/mec/settings.php:
|
1827 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1828 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1829 |
-
#: app/libraries/main.php:
|
1830 |
-
#: app/libraries/main.php:
|
1831 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1832 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1833 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
@@ -1835,105 +1830,105 @@ msgstr "Límite de asistentes"
|
|
1835 |
msgid "Location"
|
1836 |
msgstr "Localización"
|
1837 |
|
1838 |
-
#: app/features/events.php:
|
1839 |
msgid "Repeat"
|
1840 |
msgstr "Repetir"
|
1841 |
|
1842 |
-
#: app/features/events.php:
|
1843 |
msgid "Author"
|
1844 |
msgstr "Autor"
|
1845 |
|
1846 |
-
#: app/features/events.php:
|
1847 |
#, fuzzy
|
1848 |
#| msgid "iCal Export"
|
1849 |
msgid "iCal / Outlook Export"
|
1850 |
msgstr "Exportar iCal"
|
1851 |
|
1852 |
-
#: app/features/events.php:
|
1853 |
msgid "CSV Export"
|
1854 |
msgstr "Exportar CSV"
|
1855 |
|
1856 |
-
#: app/features/events.php:
|
1857 |
msgid "MS Excel Export"
|
1858 |
msgstr "Exportar Excel"
|
1859 |
|
1860 |
-
#: app/features/events.php:
|
1861 |
msgid "XML Export"
|
1862 |
msgstr "Exportación XML"
|
1863 |
|
1864 |
-
#: app/features/events.php:
|
1865 |
msgid "JSON Export"
|
1866 |
msgstr "Exportación JSON"
|
1867 |
|
1868 |
-
#: app/features/events.php:
|
1869 |
-
#: app/features/events.php:
|
1870 |
msgid "Duplicate"
|
1871 |
msgstr "Duplicar"
|
1872 |
|
1873 |
-
#: app/features/events.php:
|
1874 |
-
#: app/features/ix.php:
|
1875 |
msgid "Link"
|
1876 |
msgstr "Enlace"
|
1877 |
|
1878 |
-
#: app/features/events.php:
|
1879 |
-
#: app/features/ix.php:
|
1880 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1881 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1882 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1883 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1884 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1885 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1886 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1887 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1888 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1889 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1890 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1891 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1892 |
msgid "Address"
|
1893 |
msgstr "Dirección"
|
1894 |
|
1895 |
-
#: app/features/events.php:
|
1896 |
#, php-format
|
1897 |
msgid "%s Tel"
|
1898 |
msgstr "%s Teléfono "
|
1899 |
|
1900 |
-
#: app/features/events.php:
|
1901 |
#, php-format
|
1902 |
msgid "%s Email"
|
1903 |
msgstr "%s Correo electrónico"
|
1904 |
|
1905 |
-
#: app/features/events.php:
|
1906 |
-
#: app/features/mec/settings.php:
|
1907 |
msgid "Featured Image"
|
1908 |
msgstr "Imagen destacada"
|
1909 |
|
1910 |
-
#: app/features/events.php:
|
1911 |
-
#: app/features/profile/profile.php:183 app/libraries/main.php:
|
1912 |
-
#: app/libraries/main.php:
|
1913 |
msgid "Ticket"
|
1914 |
msgstr "Ticket"
|
1915 |
|
1916 |
-
#: app/features/events.php:
|
1917 |
msgid "Variations"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: app/features/events.php:
|
1921 |
msgid "Unknown"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: app/features/events.php:
|
1925 |
msgid ""
|
1926 |
"If you want to send an email, first select your attendees and then click in "
|
1927 |
"the button below, please."
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: app/features/events.php:
|
1931 |
#, fuzzy
|
1932 |
#| msgid "Organizer Email"
|
1933 |
msgid "Send Email"
|
1934 |
msgstr "Correo electrónico del organizador"
|
1935 |
|
1936 |
-
#: app/features/events.php:
|
1937 |
#, fuzzy
|
1938 |
#| msgid "Attendees Form"
|
1939 |
msgid "No Attendees Found!"
|
@@ -1946,10 +1941,12 @@ msgstr "Por favor %s/%s para poder añadir nuevos eventos."
|
|
1946 |
|
1947 |
#: app/features/fes.php:94 app/features/fes.php:175
|
1948 |
#: app/features/login/login.php:19 app/features/profile.php:74
|
|
|
1949 |
msgid "Login"
|
1950 |
msgstr "Iniciar sesión"
|
1951 |
|
1952 |
#: app/features/fes.php:94 app/features/fes.php:175 app/features/profile.php:74
|
|
|
1953 |
msgid "Register"
|
1954 |
msgstr "Registro"
|
1955 |
|
@@ -1978,8 +1975,8 @@ msgstr "¡El evento ha sido eliminado!"
|
|
1978 |
msgid "Order Time"
|
1979 |
msgstr "Hora de finalización"
|
1980 |
|
1981 |
-
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:
|
1982 |
-
#: app/libraries/main.php:
|
1983 |
msgid "Transaction ID"
|
1984 |
msgstr "ID Transacción"
|
1985 |
|
@@ -1989,7 +1986,7 @@ msgstr "ID Transacción"
|
|
1989 |
msgid "Total Price"
|
1990 |
msgstr "%s Precio"
|
1991 |
|
1992 |
-
#: app/features/fes.php:243 app/libraries/main.php:
|
1993 |
#, fuzzy
|
1994 |
#| msgid "Popular Gateways"
|
1995 |
msgid "Gateway"
|
@@ -2079,8 +2076,8 @@ msgstr "El evento a sido publicado."
|
|
2079 |
msgid "Go back to events list"
|
2080 |
msgstr "Regrese a la lista de eventos."
|
2081 |
|
2082 |
-
#: app/features/fes/form.php:264 app/features/mec/settings.php:
|
2083 |
-
#: app/features/mec/settings.php:
|
2084 |
msgid "Excerpt"
|
2085 |
msgstr ""
|
2086 |
|
@@ -2182,8 +2179,8 @@ msgstr "Eliminar imagen"
|
|
2182 |
#: app/features/fes/form.php:891 app/features/labels.php:61
|
2183 |
#: app/features/labels.php:221 app/features/mec.php:460
|
2184 |
#: app/features/mec/meta_boxes/filter.php:72
|
2185 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
2186 |
-
#: app/libraries/main.php:
|
2187 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
2188 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
2189 |
msgid "Labels"
|
@@ -2200,11 +2197,11 @@ msgid "Insert your desired tags, comma separated."
|
|
2200 |
msgstr "Inserta las etiquetas que quieras, separadas por comas."
|
2201 |
|
2202 |
#: app/features/fes/form.php:959 app/features/mec.php:467
|
2203 |
-
#: app/features/mec/modules.php:51 app/features/mec/settings.php:
|
2204 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2205 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2206 |
-
#: app/libraries/main.php:
|
2207 |
-
#: app/libraries/main.php:
|
2208 |
msgid "Speakers"
|
2209 |
msgstr ""
|
2210 |
|
@@ -2216,7 +2213,7 @@ msgstr ""
|
|
2216 |
msgid "Separate names with commas: Justin, Chris"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: app/features/fes/form.php:1003 app/modules/booking/steps/form.php:
|
2220 |
msgid "Submit"
|
2221 |
msgstr "Enviar"
|
2222 |
|
@@ -2258,7 +2255,7 @@ msgid "MEC - Import / Export"
|
|
2258 |
msgstr "MEC - Importar / Exportar"
|
2259 |
|
2260 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2261 |
-
#: app/libraries/main.php:
|
2262 |
msgid "Import / Export"
|
2263 |
msgstr "Import / Export"
|
2264 |
|
@@ -2280,27 +2277,27 @@ msgstr ""
|
|
2280 |
"¡Ha ocurrido un error durante la subida del archivo! ¡Por favor, revisa los "
|
2281 |
"permisos!"
|
2282 |
|
2283 |
-
#: app/features/ix.php:265 app/libraries/main.php:
|
2284 |
-
#: app/libraries/main.php:
|
2285 |
msgid "Confirmed"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: app/features/ix.php:266 app/libraries/main.php:
|
2289 |
-
#: app/libraries/main.php:
|
2290 |
msgid "Rejected"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
#: app/features/ix.php:270 app/features/mec/booking.php:1011
|
2294 |
#: app/features/mec/booking.php:1033 app/features/mec/modules.php:440
|
2295 |
#: app/features/mec/modules.php:462 app/features/mec/notifications.php:1312
|
2296 |
-
#: app/features/mec/notifications.php:1334 app/features/mec/settings.php:
|
2297 |
-
#: app/features/mec/settings.php:
|
2298 |
-
#: app/features/mec/single.php:468 app/libraries/main.php:
|
2299 |
msgid "Verified"
|
2300 |
msgstr "Verificado"
|
2301 |
|
2302 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2303 |
-
#: app/features/labels.php:143 app/libraries/main.php:
|
2304 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2305 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2306 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
@@ -2336,45 +2333,45 @@ msgstr "El tipo de archivo debería ser XML o ICS."
|
|
2336 |
msgid "The events are imported successfully!"
|
2337 |
msgstr "¡Los eventos se importaron correctamente!"
|
2338 |
|
2339 |
-
#: app/features/ix.php:
|
2340 |
msgid "Third Party plugin is not installed and activated!"
|
2341 |
msgstr "¡Plugin de terceros no esta instalado ni activado!"
|
2342 |
|
2343 |
-
#: app/features/ix.php:
|
2344 |
msgid "Third Party plugin is invalid!"
|
2345 |
msgstr "¡El Plugin de terceros no es válido!"
|
2346 |
|
2347 |
-
#: app/features/ix.php:
|
2348 |
#, fuzzy
|
2349 |
#| msgid "Both of API key and Calendar ID are required!"
|
2350 |
msgid "API key and Calendar ID are required!"
|
2351 |
msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
|
2352 |
|
2353 |
-
#: app/features/ix.php:
|
2354 |
#, fuzzy
|
2355 |
#| msgid "Please select some events to import!"
|
2356 |
msgid "Please select events to import!"
|
2357 |
msgstr "Por favor, ¡selecciona algunos eventos para importar!"
|
2358 |
|
2359 |
-
#: app/features/ix.php:
|
2360 |
#, fuzzy
|
2361 |
#| msgid "Both of API key and Calendar ID are required!"
|
2362 |
msgid "API key and Group URL are required!"
|
2363 |
msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
|
2364 |
|
2365 |
-
#: app/features/ix.php:
|
2366 |
msgid "Check at Meetup"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: app/features/ix.php:
|
2370 |
msgid "Organizer Tel"
|
2371 |
msgstr "Teléfono del Organizador"
|
2372 |
|
2373 |
-
#: app/features/ix.php:
|
2374 |
msgid "Organizer Email"
|
2375 |
msgstr "Correo electrónico del organizador"
|
2376 |
|
2377 |
-
#: app/features/ix.php:
|
2378 |
#, fuzzy
|
2379 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2380 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
@@ -2382,17 +2379,17 @@ msgstr ""
|
|
2382 |
"Todos los ID de cliente, secreto de cliente y ID de calendario son "
|
2383 |
"necesarios."
|
2384 |
|
2385 |
-
#: app/features/ix.php:
|
2386 |
#, fuzzy, php-format
|
2387 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2388 |
msgid "All seems good! Please click %s to authenticate your app."
|
2389 |
msgstr "¡Todo parece correcto! Haz clic en %s para autenticar su aplicación."
|
2390 |
|
2391 |
-
#: app/features/ix.php:
|
2392 |
msgid "here"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: app/features/ix.php:
|
2396 |
#, fuzzy
|
2397 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2398 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
@@ -2400,28 +2397,28 @@ msgstr ""
|
|
2400 |
"¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
|
2401 |
"son obligatorios!"
|
2402 |
|
2403 |
-
#: app/features/ix.php:
|
2404 |
#, fuzzy, php-format
|
2405 |
#| msgid "%s events added to Google Calendar successfully."
|
2406 |
msgid "%s events added to Google Calendar with success."
|
2407 |
msgstr "%s eventos añadidos con éxito a Google Calendar."
|
2408 |
|
2409 |
-
#: app/features/ix.php:
|
2410 |
#, fuzzy, php-format
|
2411 |
#| msgid "%s previously added events get updated."
|
2412 |
msgid "%s Updated previously added events."
|
2413 |
msgstr "%s eventos añadidos previamente se actualizan."
|
2414 |
|
2415 |
-
#: app/features/ix.php:
|
2416 |
#, php-format
|
2417 |
msgid "%s events failed to add for following reasons: %s"
|
2418 |
msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
|
2419 |
|
2420 |
-
#: app/features/ix.php:
|
2421 |
msgid "Please insert your Facebook page's link."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: app/features/ix.php:
|
2425 |
#, fuzzy
|
2426 |
#| msgid ""
|
2427 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
@@ -2433,7 +2430,7 @@ msgstr ""
|
|
2433 |
"No pudimos reconocer tu página de Facebook. Por favor, verifícala y escribe "
|
2434 |
"un nuevo enlace de página de Facebook."
|
2435 |
|
2436 |
-
#: app/features/ix.php:
|
2437 |
msgid "Please insert your facebook page's link."
|
2438 |
msgstr "Por favor, inserta el enlace de tu página de Facebook."
|
2439 |
|
@@ -2606,7 +2603,7 @@ msgstr "Añadir a Google Calendar"
|
|
2606 |
|
2607 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1013
|
2608 |
#: app/features/mec/modules.php:442 app/features/mec/notifications.php:1314
|
2609 |
-
#: app/features/mec/settings.php:
|
2610 |
msgid "Checking ..."
|
2611 |
msgstr "Verificando…"
|
2612 |
|
@@ -3091,15 +3088,15 @@ msgstr "Contador"
|
|
3091 |
msgid "Slug"
|
3092 |
msgstr "Slug"
|
3093 |
|
3094 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
3095 |
#, php-format
|
3096 |
msgid "Event %s"
|
3097 |
msgstr "Evento %s"
|
3098 |
|
3099 |
#: app/features/locations.php:59 app/features/mec.php:461
|
3100 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
3101 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
3102 |
-
#: app/libraries/main.php:
|
3103 |
msgid "Locations"
|
3104 |
msgstr "Lugar"
|
3105 |
|
@@ -3108,7 +3105,7 @@ msgid "Enter the location address"
|
|
3108 |
msgstr "Introduce la dirección del lugar"
|
3109 |
|
3110 |
#: app/features/locations.php:130 app/features/locations.php:196
|
3111 |
-
#: app/features/locations.php:
|
3112 |
msgid "Latitude"
|
3113 |
msgstr "Latitud"
|
3114 |
|
@@ -3117,7 +3114,7 @@ msgid "Geo latitude (Optional)"
|
|
3117 |
msgstr "Geo latitud (Opcional)"
|
3118 |
|
3119 |
#: app/features/locations.php:138 app/features/locations.php:200
|
3120 |
-
#: app/features/locations.php:
|
3121 |
msgid "Longitude"
|
3122 |
msgstr "Longitud"
|
3123 |
|
@@ -3126,7 +3123,7 @@ msgid "Geo longitude (Optional)"
|
|
3126 |
msgstr "Geolongitud (opcional)"
|
3127 |
|
3128 |
#: app/features/locations.php:146 app/features/locations.php:204
|
3129 |
-
#: app/features/locations.php:
|
3130 |
#, fuzzy
|
3131 |
#| msgid "Locations"
|
3132 |
msgid "Location Website"
|
@@ -3151,49 +3148,49 @@ msgid "Upload/Add image"
|
|
3151 |
msgstr "Subir/Añadir imagen"
|
3152 |
|
3153 |
#: app/features/locations.php:161 app/features/locations.php:213
|
3154 |
-
#: app/features/locations.php:
|
3155 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
3156 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
3157 |
#: app/features/speakers.php:181 app/features/speakers.php:232
|
3158 |
msgid "Remove image"
|
3159 |
msgstr "Eliminar imagen"
|
3160 |
|
3161 |
-
#: app/features/locations.php:
|
3162 |
msgid "Hide location"
|
3163 |
msgstr "Ocultar lugar"
|
3164 |
|
3165 |
-
#: app/features/locations.php:
|
3166 |
msgid "Insert a new location"
|
3167 |
msgstr "Insertar nuevo lugar"
|
3168 |
|
3169 |
-
#: app/features/locations.php:
|
3170 |
msgid "Choose one of saved locations or insert new one below."
|
3171 |
msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
|
3172 |
|
3173 |
-
#: app/features/locations.php:
|
3174 |
msgid "Location Name"
|
3175 |
msgstr "Nombre del lugar"
|
3176 |
|
3177 |
-
#: app/features/locations.php:
|
3178 |
msgid "eg. City Hall"
|
3179 |
msgstr "ej. Almería"
|
3180 |
|
3181 |
-
#: app/features/locations.php:
|
3182 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3183 |
msgid "Event Location"
|
3184 |
msgstr "Lugar del evento"
|
3185 |
|
3186 |
-
#: app/features/locations.php:
|
3187 |
msgid "eg. City hall, Manhattan, New York"
|
3188 |
msgstr "ej. Almería, España"
|
3189 |
|
3190 |
-
#: app/features/locations.php:
|
3191 |
#, fuzzy
|
3192 |
#| msgid "Longitude"
|
3193 |
msgid "Latitude/Longitude"
|
3194 |
msgstr "Longitud"
|
3195 |
|
3196 |
-
#: app/features/locations.php:
|
3197 |
msgid ""
|
3198 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
3199 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -3202,27 +3199,27 @@ msgid ""
|
|
3202 |
"the location on the map to find lat long coordinates."
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: app/features/locations.php:
|
3206 |
msgid "Get Latitude and Longitude"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: app/features/locations.php:
|
3210 |
#: app/features/popup/event.php:202
|
3211 |
msgid "Choose image"
|
3212 |
msgstr "Elegir imagen"
|
3213 |
|
3214 |
-
#: app/features/locations.php:
|
3215 |
msgid "Don't show map in single event page"
|
3216 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
3217 |
|
3218 |
-
#: app/features/locations.php:
|
3219 |
-
#: app/libraries/main.php:
|
3220 |
#, fuzzy
|
3221 |
#| msgid "Locations"
|
3222 |
msgid "Other Locations"
|
3223 |
msgstr "Lugar"
|
3224 |
|
3225 |
-
#: app/features/locations.php:
|
3226 |
#, fuzzy
|
3227 |
#| msgid ""
|
3228 |
#| "You can select extra organizers in addition to main organizer if you like."
|
@@ -3244,7 +3241,7 @@ msgstr ""
|
|
3244 |
msgid "Login successful, redirecting..."
|
3245 |
msgstr ""
|
3246 |
|
3247 |
-
#: app/features/login/login.php:11 app/modules/booking/steps/form.php:
|
3248 |
msgid "Password"
|
3249 |
msgstr ""
|
3250 |
|
@@ -3300,7 +3297,7 @@ msgstr "Soporte"
|
|
3300 |
#: app/features/mec.php:462 app/features/mec/dashboard.php:286
|
3301 |
#: app/features/mec/meta_boxes/filter.php:71
|
3302 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3303 |
-
#: app/libraries/main.php:
|
3304 |
msgid "Organizers"
|
3305 |
msgstr "Organizadores"
|
3306 |
|
@@ -3341,7 +3338,7 @@ msgstr "Exportar"
|
|
3341 |
msgid "MEC - Go Pro"
|
3342 |
msgstr "Soporte"
|
3343 |
|
3344 |
-
#: app/features/mec.php:479 app/features/mec.php:
|
3345 |
#: app/features/mec/go-pro.php:9
|
3346 |
msgid "Go Pro"
|
3347 |
msgstr ""
|
@@ -3382,75 +3379,75 @@ msgstr "Opciones de filtros"
|
|
3382 |
msgid "Search Form"
|
3383 |
msgstr "Formulario de Búsqueda"
|
3384 |
|
3385 |
-
#: app/features/mec.php:
|
3386 |
msgid "Display content's images as Popup"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: app/features/mec.php:
|
3390 |
msgid "Single Event Display Method"
|
3391 |
msgstr "Método de vista para página del evento"
|
3392 |
|
3393 |
-
#: app/features/mec.php:
|
3394 |
#, fuzzy
|
3395 |
#| msgid "Modal 1"
|
3396 |
msgid "Modal Popup"
|
3397 |
msgstr "Modal 1"
|
3398 |
|
3399 |
-
#: app/features/mec.php:
|
3400 |
#, fuzzy
|
3401 |
#| msgid "Disabled"
|
3402 |
msgid "Disable Link"
|
3403 |
msgstr "Desactivado"
|
3404 |
|
3405 |
-
#: app/features/mec.php:
|
3406 |
#, fuzzy
|
3407 |
#| msgid "Booking Options"
|
3408 |
msgid "Booking Button / Icon"
|
3409 |
msgstr "Opciones de reserva"
|
3410 |
|
3411 |
-
#: app/features/mec.php:
|
3412 |
#, fuzzy
|
3413 |
#| msgid "Organizers"
|
3414 |
msgid "Display Organizers"
|
3415 |
msgstr "Organizadores"
|
3416 |
|
3417 |
-
#: app/features/mec.php:
|
3418 |
msgid "Total Bookings"
|
3419 |
msgstr "Total reservas"
|
3420 |
|
3421 |
-
#: app/features/mec.php:
|
3422 |
msgid "Modern Events Calendar (Lite)"
|
3423 |
msgstr "Modern Events Calendar (Lite)"
|
3424 |
|
3425 |
-
#: app/features/mec.php:
|
3426 |
-
#: app/features/mec/settings.php:
|
3427 |
msgid "Upcoming Events"
|
3428 |
msgstr "Próximos Eventos"
|
3429 |
|
3430 |
-
#: app/features/mec.php:
|
3431 |
#, fuzzy
|
3432 |
#| msgid "Update %s"
|
3433 |
msgid "News & Updates"
|
3434 |
msgstr "Actualizar %s"
|
3435 |
|
3436 |
-
#: app/features/mec.php:
|
3437 |
msgid "Blog"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: app/features/mec.php:
|
3441 |
msgid "Help"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: app/features/mec.php:
|
3445 |
#, php-format
|
3446 |
msgid "Total Sells (%s)"
|
3447 |
msgstr "Ventas Totales (%s)"
|
3448 |
|
3449 |
-
#: app/features/mec.php:
|
3450 |
msgid "This Month"
|
3451 |
msgstr "Este mes"
|
3452 |
|
3453 |
-
#: app/features/mec.php:
|
3454 |
msgid "Last Month"
|
3455 |
msgstr "Último mes"
|
3456 |
|
@@ -3458,29 +3455,29 @@ msgstr "Último mes"
|
|
3458 |
msgid "This Year"
|
3459 |
msgstr "Este año"
|
3460 |
|
3461 |
-
#: app/features/mec.php:
|
3462 |
msgid "Last Year"
|
3463 |
msgstr "Año pasado"
|
3464 |
|
3465 |
-
#: app/features/mec.php:
|
3466 |
msgid "Bar"
|
3467 |
msgstr "Barra"
|
3468 |
|
3469 |
-
#: app/features/mec.php:
|
3470 |
msgid "Line"
|
3471 |
msgstr "Línea"
|
3472 |
|
3473 |
-
#: app/features/mec.php:
|
3474 |
msgid "Filter"
|
3475 |
msgstr "Filtrar"
|
3476 |
|
3477 |
-
#: app/features/mec.php:
|
3478 |
#, fuzzy
|
3479 |
#| msgid "Modern Events Calendar"
|
3480 |
msgid "Print Calendar"
|
3481 |
msgstr "Modern Events Calendar"
|
3482 |
|
3483 |
-
#: app/features/mec.php:
|
3484 |
#, fuzzy
|
3485 |
#| msgid "Display Event Price"
|
3486 |
msgid "Display Events"
|
@@ -3505,7 +3502,7 @@ msgstr ""
|
|
3505 |
|
3506 |
#: app/features/mec/booking.php:78 app/features/mec/messages.php:13
|
3507 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3508 |
-
#: app/features/mec/settings.php:
|
3509 |
#: app/features/mec/styling.php:35
|
3510 |
#, fuzzy
|
3511 |
#| msgid "Search %s"
|
@@ -3524,9 +3521,9 @@ msgstr "Buscar %s"
|
|
3524 |
#: app/features/mec/notifications.php:1213
|
3525 |
#: app/features/mec/notifications.php:1225
|
3526 |
#: app/features/mec/notifications.php:1331
|
3527 |
-
#: app/features/mec/notifications.php:1345 app/features/mec/settings.php:
|
3528 |
-
#: app/features/mec/settings.php:
|
3529 |
-
#: app/features/mec/settings.php:
|
3530 |
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3531 |
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3532 |
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
@@ -3636,7 +3633,7 @@ msgid "User Registration"
|
|
3636 |
msgstr "Botón de registro"
|
3637 |
|
3638 |
#: app/features/mec/booking.php:168 app/features/mec/booking.php:176
|
3639 |
-
#: app/modules/booking/steps/form.php:
|
3640 |
#, fuzzy
|
3641 |
#| msgid "Register Button"
|
3642 |
msgid "Registration"
|
@@ -3742,8 +3739,8 @@ msgid ""
|
|
3742 |
msgstr ""
|
3743 |
|
3744 |
#: app/features/mec/booking.php:267 app/features/mec/booking.php:269
|
3745 |
-
#: app/features/mec/booking.php:279 app/features/mec/settings.php:
|
3746 |
-
#: app/features/mec/settings.php:
|
3747 |
msgid "Thank You Page"
|
3748 |
msgstr "Página de agradecimiento"
|
3749 |
|
@@ -3756,17 +3753,17 @@ msgstr ""
|
|
3756 |
"Déjalo vacío si lo deseas desactivado."
|
3757 |
|
3758 |
#: app/features/mec/booking.php:287 app/features/mec/booking.php:292
|
3759 |
-
#: app/features/mec/settings.php:
|
3760 |
#, fuzzy
|
3761 |
#| msgid "Thank You Page"
|
3762 |
msgid "Thank You Page Time Interval"
|
3763 |
msgstr "Página de agradecimiento"
|
3764 |
|
3765 |
-
#: app/features/mec/booking.php:289 app/features/mec/settings.php:
|
3766 |
msgid "2000 mean 2 seconds"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: app/features/mec/booking.php:293 app/features/mec/settings.php:
|
3770 |
msgid ""
|
3771 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3772 |
"2000 means 2 seconds."
|
@@ -3838,7 +3835,7 @@ msgstr "Confirmación automática para reservas pagas"
|
|
3838 |
msgid "Send confirmation email in auto confirmation mode"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: app/features/mec/booking.php:413 app/libraries/main.php:
|
3842 |
#, fuzzy
|
3843 |
#| msgid "Booking Price"
|
3844 |
msgid "Booking Shortcode"
|
@@ -3872,7 +3869,7 @@ msgid ""
|
|
3872 |
msgstr ""
|
3873 |
|
3874 |
#: app/features/mec/booking.php:447 app/features/mec/booking.php:835
|
3875 |
-
#: app/libraries/main.php:
|
3876 |
msgid "Taxes / Fees"
|
3877 |
msgstr "Impuestos/Tasas"
|
3878 |
|
@@ -3884,7 +3881,7 @@ msgstr "Activar módulo de Impuestos/Tasas"
|
|
3884 |
msgid "Add Fee"
|
3885 |
msgstr "Nueva tasa"
|
3886 |
|
3887 |
-
#: app/features/mec/booking.php:524 app/libraries/main.php:
|
3888 |
msgid "Ticket Variations & Options"
|
3889 |
msgstr ""
|
3890 |
|
@@ -4028,20 +4025,20 @@ msgstr ""
|
|
4028 |
|
4029 |
#: app/features/mec/booking.php:1008 app/features/mec/messages.php:78
|
4030 |
#: app/features/mec/modules.php:437 app/features/mec/notifications.php:1309
|
4031 |
-
#: app/features/mec/settings.php:
|
4032 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:323
|
4033 |
msgid "Saved"
|
4034 |
msgstr "Guardado"
|
4035 |
|
4036 |
#: app/features/mec/booking.php:1009 app/features/mec/messages.php:79
|
4037 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1310
|
4038 |
-
#: app/features/mec/settings.php:
|
4039 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:324
|
4040 |
msgid "Settings Saved!"
|
4041 |
msgstr "¡Ajustes guardados!"
|
4042 |
|
4043 |
#: app/features/mec/booking.php:1035 app/features/mec/modules.php:464
|
4044 |
-
#: app/features/mec/notifications.php:1336 app/features/mec/settings.php:
|
4045 |
#: app/features/mec/single.php:470
|
4046 |
msgid "Please Refresh Page"
|
4047 |
msgstr "Por favor, actualiza la página"
|
@@ -4175,7 +4172,7 @@ msgid "Download Settings"
|
|
4175 |
msgstr ""
|
4176 |
|
4177 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4178 |
-
#: app/features/mec/support.php:66 app/libraries/main.php:
|
4179 |
msgid "Messages"
|
4180 |
msgstr "Mensajes"
|
4181 |
|
@@ -4206,9 +4203,9 @@ msgstr "Tema"
|
|
4206 |
#: app/features/mec/meta_boxes/display_options.php:953
|
4207 |
#: app/features/mec/meta_boxes/display_options.php:1284
|
4208 |
#: app/features/mec/meta_boxes/display_options.php:1575
|
4209 |
-
#: app/features/mec/settings.php:
|
4210 |
-
#: app/features/mec/settings.php:
|
4211 |
-
#: app/features/mec/settings.php:
|
4212 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4213 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4214 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
@@ -4219,8 +4216,8 @@ msgstr "Clásico"
|
|
4219 |
|
4220 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4221 |
#: app/features/mec/meta_boxes/display_options.php:289
|
4222 |
-
#: app/features/mec/settings.php:
|
4223 |
-
#: app/features/mec/settings.php:
|
4224 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4225 |
msgid "Minimal"
|
4226 |
msgstr "Mínimo"
|
@@ -4231,10 +4228,10 @@ msgstr "Mínimo"
|
|
4231 |
#: app/features/mec/meta_boxes/display_options.php:955
|
4232 |
#: app/features/mec/meta_boxes/display_options.php:1282
|
4233 |
#: app/features/mec/meta_boxes/display_options.php:1577
|
4234 |
-
#: app/features/mec/settings.php:
|
4235 |
-
#: app/features/mec/settings.php:
|
4236 |
-
#: app/features/mec/settings.php:
|
4237 |
-
#: app/features/mec/settings.php:
|
4238 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4239 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4240 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
@@ -4242,13 +4239,13 @@ msgid "Modern"
|
|
4242 |
msgstr "Moderno"
|
4243 |
|
4244 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4245 |
-
#: app/features/mec/settings.php:
|
4246 |
#: app/features/popup/shortcode.php:83
|
4247 |
msgid "Standard"
|
4248 |
msgstr "Estándar"
|
4249 |
|
4250 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4251 |
-
#: app/features/mec/settings.php:
|
4252 |
#: app/features/popup/shortcode.php:88
|
4253 |
msgid "Accordion"
|
4254 |
msgstr "Acordeón"
|
@@ -4648,9 +4645,9 @@ msgstr ""
|
|
4648 |
#: app/features/mec/meta_boxes/display_options.php:954
|
4649 |
#: app/features/mec/meta_boxes/display_options.php:1283
|
4650 |
#: app/features/mec/meta_boxes/display_options.php:1576
|
4651 |
-
#: app/features/mec/settings.php:
|
4652 |
-
#: app/features/mec/settings.php:
|
4653 |
-
#: app/features/mec/settings.php:
|
4654 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4655 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4656 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
@@ -4660,8 +4657,8 @@ msgstr "Limpio"
|
|
4660 |
#: app/features/mec/meta_boxes/display_options.php:291
|
4661 |
#: app/features/mec/meta_boxes/display_options.php:693
|
4662 |
#: app/features/mec/meta_boxes/display_options.php:957
|
4663 |
-
#: app/features/mec/settings.php:
|
4664 |
-
#: app/features/mec/settings.php:
|
4665 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4666 |
#: app/features/popup/shortcode.php:219
|
4667 |
msgid "Simple"
|
@@ -4675,8 +4672,8 @@ msgstr "Colorido"
|
|
4675 |
#: app/features/mec/meta_boxes/display_options.php:293
|
4676 |
#: app/features/mec/meta_boxes/display_options.php:692
|
4677 |
#: app/features/mec/meta_boxes/display_options.php:956
|
4678 |
-
#: app/features/mec/settings.php:
|
4679 |
-
#: app/features/mec/settings.php:
|
4680 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4681 |
#: app/features/popup/shortcode.php:214
|
4682 |
msgid "Novel"
|
@@ -4728,15 +4725,15 @@ msgstr "Vista por defecto"
|
|
4728 |
|
4729 |
#: app/features/mec/meta_boxes/display_options.php:679
|
4730 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4731 |
-
#: app/libraries/main.php:364 app/libraries/main.php:
|
4732 |
-
#: app/libraries/main.php:
|
4733 |
msgid "List View"
|
4734 |
msgstr "Vista de lista"
|
4735 |
|
4736 |
#: app/features/mec/meta_boxes/display_options.php:680
|
4737 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4738 |
-
#: app/libraries/main.php:365 app/libraries/main.php:
|
4739 |
-
#: app/libraries/main.php:
|
4740 |
msgid "Grid View"
|
4741 |
msgstr "Vista cuadrícula"
|
4742 |
|
@@ -4750,8 +4747,8 @@ msgstr "Vista de Horario"
|
|
4750 |
|
4751 |
#: app/features/mec/meta_boxes/display_options.php:682
|
4752 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4753 |
-
#: app/libraries/main.php:368 app/libraries/main.php:
|
4754 |
-
#: app/libraries/main.php:
|
4755 |
msgid "Yearly View"
|
4756 |
msgstr "Vista anual"
|
4757 |
|
@@ -4762,15 +4759,15 @@ msgstr "Vista Mensual/Calendario"
|
|
4762 |
|
4763 |
#: app/features/mec/meta_boxes/display_options.php:684
|
4764 |
#: app/features/mec/meta_boxes/display_options.php:794
|
4765 |
-
#: app/libraries/main.php:371 app/libraries/main.php:
|
4766 |
-
#: app/libraries/main.php:
|
4767 |
msgid "Weekly View"
|
4768 |
msgstr "Vista de semana"
|
4769 |
|
4770 |
#: app/features/mec/meta_boxes/display_options.php:685
|
4771 |
#: app/features/mec/meta_boxes/display_options.php:804
|
4772 |
-
#: app/libraries/main.php:370 app/libraries/main.php:
|
4773 |
-
#: app/libraries/main.php:
|
4774 |
msgid "Daily View"
|
4775 |
msgstr "Vista de día"
|
4776 |
|
@@ -5219,7 +5216,7 @@ msgstr "Inserta las etiquetas que desees separadas con coma."
|
|
5219 |
msgid "Choose your desired authors for filtering the events."
|
5220 |
msgstr "Elije los autores deseados para filtrar los eventos."
|
5221 |
|
5222 |
-
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:
|
5223 |
msgid "Expired Events"
|
5224 |
msgstr "Eventos pasados"
|
5225 |
|
@@ -5285,36 +5282,36 @@ msgid "Show Search Form"
|
|
5285 |
msgstr "Mostrar formulario búsqueda"
|
5286 |
|
5287 |
#: app/features/mec/meta_boxes/search_form.php:53
|
5288 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5289 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5290 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5291 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5292 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5293 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5294 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5295 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5296 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5297 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5298 |
-
#: app/features/mec/settings.php:
|
5299 |
#: app/features/mec/single.php:386 app/features/search.php:86
|
5300 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5301 |
-
#: app/libraries/main.php:
|
5302 |
#: app/libraries/skins.php:1016 app/modules/speakers/details.php:18
|
5303 |
msgid "Speaker"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
#: app/features/mec/meta_boxes/search_form.php:60
|
5307 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5308 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5309 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5310 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5311 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5312 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5313 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5314 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5315 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5316 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5317 |
-
#: app/features/mec/settings.php:
|
5318 |
#: app/features/mec/single.php:395 app/features/search.php:92
|
5319 |
#: app/libraries/skins.php:1042
|
5320 |
#, fuzzy
|
@@ -5323,50 +5320,45 @@ msgid "Tag"
|
|
5323 |
msgstr "Tags"
|
5324 |
|
5325 |
#: app/features/mec/meta_boxes/search_form.php:77
|
5326 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5327 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5328 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5329 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5330 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5331 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5332 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5333 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5334 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5335 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5336 |
#, fuzzy
|
5337 |
#| msgid "Address"
|
5338 |
msgid "Address Input"
|
5339 |
msgstr "Dirección"
|
5340 |
|
5341 |
#: app/features/mec/meta_boxes/search_form.php:81
|
5342 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5343 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5344 |
-
|
5345 |
-
|
5346 |
-
|
5347 |
-
|
5348 |
-
#: app/features/mec/meta_boxes/search_form.php:634
|
5349 |
-
#: app/features/mec/meta_boxes/search_form.php:704
|
5350 |
-
#: app/features/mec/meta_boxes/search_form.php:810
|
5351 |
-
msgid "Month Filter"
|
5352 |
-
msgstr "Filtrar por mes"
|
5353 |
|
5354 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5355 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5356 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5357 |
-
|
5358 |
-
|
5359 |
-
#: app/features/mec/meta_boxes/search_form.php:438
|
5360 |
-
#: app/features/mec/meta_boxes/search_form.php:501
|
5361 |
-
#: app/features/mec/meta_boxes/search_form.php:571
|
5362 |
-
#: app/features/mec/meta_boxes/search_form.php:641
|
5363 |
-
#: app/features/mec/meta_boxes/search_form.php:711
|
5364 |
-
#: app/features/mec/meta_boxes/search_form.php:817
|
5365 |
-
msgid "Text Search"
|
5366 |
-
msgstr "Búsqueda de texto"
|
5367 |
|
5368 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5369 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5370 |
#: app/features/mec/meta_boxes/search_form.php:231
|
5371 |
#: app/features/mec/meta_boxes/search_form.php:301
|
5372 |
#: app/features/mec/meta_boxes/search_form.php:371
|
@@ -5376,15 +5368,39 @@ msgstr "Búsqueda de texto"
|
|
5376 |
#: app/features/mec/meta_boxes/search_form.php:644
|
5377 |
#: app/features/mec/meta_boxes/search_form.php:714
|
5378 |
#: app/features/mec/meta_boxes/search_form.php:820
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5379 |
msgid "Text Input"
|
5380 |
msgstr "Campo de texto"
|
5381 |
|
5382 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5383 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5384 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5385 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5386 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
5387 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5388 |
msgid "No Search Options"
|
5389 |
msgstr "No hay opciones de búsqueda"
|
5390 |
|
@@ -5408,7 +5424,7 @@ msgid ""
|
|
5408 |
"new menu on the Dashboard > MEC"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#: app/features/mec/modules.php:66 app/libraries/main.php:
|
5412 |
#, fuzzy
|
5413 |
#| msgid "Google Maps Options"
|
5414 |
msgid "Map Options"
|
@@ -5432,8 +5448,8 @@ msgstr "Google Maps API"
|
|
5432 |
msgid "Google Map Options"
|
5433 |
msgstr "Opciones de Google Maps"
|
5434 |
|
5435 |
-
#: app/features/mec/modules.php:85 app/features/mec/settings.php:
|
5436 |
-
#: app/features/mec/settings.php:
|
5437 |
msgid "Required!"
|
5438 |
msgstr "¡Obligatorio!"
|
5439 |
|
@@ -5500,7 +5516,7 @@ msgstr "Marcalo sólo si en otro plugin/tema se carga la API de Google Maps"
|
|
5500 |
msgid "Fullscreen Button"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: app/features/mec/modules.php:176 app/libraries/main.php:
|
5504 |
#, fuzzy
|
5505 |
#| msgid "Import Options"
|
5506 |
msgid "Export Options"
|
@@ -5515,7 +5531,7 @@ msgstr "Ver módulo exportado (iCal y Google Calendars) en la página del evento
|
|
5515 |
msgid "Google Calendar"
|
5516 |
msgstr "Google Calendar"
|
5517 |
|
5518 |
-
#: app/features/mec/modules.php:203 app/libraries/main.php:
|
5519 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5520 |
#: app/widgets/single.php:101
|
5521 |
msgid "Local Time"
|
@@ -5527,7 +5543,7 @@ msgstr ""
|
|
5527 |
"Mostrar el tiempo del evento basado en la hora local del visitante en la "
|
5528 |
"página del evento"
|
5529 |
|
5530 |
-
#: app/features/mec/modules.php:217 app/libraries/main.php:
|
5531 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5532 |
msgid "QR Code"
|
5533 |
msgstr "Código QR"
|
@@ -5538,7 +5554,7 @@ msgstr ""
|
|
5538 |
"Mostrar código QR del evento en la pagina de detalles de la pagina y en el "
|
5539 |
"recibo de la reservación"
|
5540 |
|
5541 |
-
#: app/features/mec/modules.php:235 app/libraries/main.php:
|
5542 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5543 |
msgid "Weather"
|
5544 |
msgstr "El Tiempo"
|
@@ -5575,7 +5591,7 @@ msgstr ""
|
|
5575 |
msgid "Show social network module"
|
5576 |
msgstr "Ver módulo de redes sociales"
|
5577 |
|
5578 |
-
#: app/features/mec/modules.php:308 app/libraries/main.php:
|
5579 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5580 |
msgid "Next Event"
|
5581 |
msgstr "Próximo Evento"
|
@@ -5636,7 +5652,7 @@ msgstr "Añadir actividad de reservaciones en el perfil del usuario"
|
|
5636 |
msgid "Add events menu to user profile"
|
5637 |
msgstr "Añadir actividad de reservaciones en el perfil del usuario"
|
5638 |
|
5639 |
-
#: app/features/mec/modules.php:385 app/libraries/main.php:
|
5640 |
#, fuzzy
|
5641 |
#| msgid "Mailchimp Integration"
|
5642 |
msgid "LearnDash Integration"
|
@@ -6353,7 +6369,7 @@ msgstr "Descarga el archivo ICS"
|
|
6353 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6354 |
msgstr ""
|
6355 |
|
6356 |
-
#: app/features/mec/notifications.php:160 app/libraries/main.php:
|
6357 |
msgid "Booking Verification"
|
6358 |
msgstr "Verificación de la reserva"
|
6359 |
|
@@ -6398,7 +6414,7 @@ msgid "Booking cancellation link."
|
|
6398 |
msgstr "Enlace de cancelación de la reserva."
|
6399 |
|
6400 |
#: app/features/mec/notifications.php:402 app/features/notifications.php:157
|
6401 |
-
#: app/libraries/main.php:
|
6402 |
#, fuzzy
|
6403 |
#| msgid "Booking Verification"
|
6404 |
msgid "Booking Rejection"
|
@@ -6434,7 +6450,7 @@ msgid "Send the email to the booked user"
|
|
6434 |
msgstr "Enviar correo al organizador del evento"
|
6435 |
|
6436 |
#: app/features/mec/notifications.php:540 app/features/notifications.php:163
|
6437 |
-
#: app/libraries/main.php:
|
6438 |
#, fuzzy
|
6439 |
#| msgid "Booking cancellation link."
|
6440 |
msgid "Booking Cancellation"
|
@@ -6458,7 +6474,7 @@ msgstr "Se envía a los asistentes después de la reserva."
|
|
6458 |
msgid "Admin booking management link."
|
6459 |
msgstr "Enlace del administrador de reservas."
|
6460 |
|
6461 |
-
#: app/features/mec/notifications.php:662 app/libraries/main.php:
|
6462 |
msgid "Admin"
|
6463 |
msgstr ""
|
6464 |
|
@@ -6475,7 +6491,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
6475 |
msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
|
6476 |
|
6477 |
#: app/features/mec/notifications.php:784 app/features/notifications.php:169
|
6478 |
-
#: app/libraries/main.php:
|
6479 |
#, fuzzy
|
6480 |
#| msgid "Event Color"
|
6481 |
msgid "Event Soldout"
|
@@ -6496,7 +6512,7 @@ msgid ""
|
|
6496 |
msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
|
6497 |
|
6498 |
#: app/features/mec/notifications.php:893 app/features/notifications.php:166
|
6499 |
-
#: app/libraries/main.php:
|
6500 |
msgid "Booking Reminder"
|
6501 |
msgstr "Recordatorio de reserva"
|
6502 |
|
@@ -6526,8 +6542,8 @@ msgstr ""
|
|
6526 |
msgid "only once per hour"
|
6527 |
msgstr "una vez al día"
|
6528 |
|
6529 |
-
#: app/features/mec/notifications.php:956 app/libraries/main.php:
|
6530 |
-
#: app/libraries/main.php:
|
6531 |
#, fuzzy
|
6532 |
#| msgid "hours"
|
6533 |
msgid "Hours"
|
@@ -6542,7 +6558,7 @@ msgid "Please, insert comma to separate reminder hours."
|
|
6542 |
msgstr ""
|
6543 |
|
6544 |
#: app/features/mec/notifications.php:1026 app/features/popup/event.php:253
|
6545 |
-
#: app/libraries/main.php:
|
6546 |
msgid "New Event"
|
6547 |
msgstr "Nuevo evento"
|
6548 |
|
@@ -6580,8 +6596,8 @@ msgid "Status of event"
|
|
6580 |
msgstr "Estado del evento"
|
6581 |
|
6582 |
#: app/features/mec/notifications.php:1103
|
6583 |
-
#: app/features/mec/notifications.php:1188 app/features/mec/settings.php:
|
6584 |
-
#: app/features/mec/settings.php:
|
6585 |
msgid "Event Note"
|
6586 |
msgstr "Nota de evento"
|
6587 |
|
@@ -6590,7 +6606,7 @@ msgstr "Nota de evento"
|
|
6590 |
msgid "Admin events management link."
|
6591 |
msgstr "Enlace del administrador de reservas."
|
6592 |
|
6593 |
-
#: app/features/mec/notifications.php:1117 app/libraries/main.php:
|
6594 |
#, fuzzy
|
6595 |
#| msgid "The event published."
|
6596 |
msgid "User Event Publishing"
|
@@ -6614,7 +6630,7 @@ msgstr ""
|
|
6614 |
"Se envía después de agregar un nuevo evento de presentación de evento de "
|
6615 |
"frontend o desde el sitio web backend."
|
6616 |
|
6617 |
-
#: app/features/mec/notifications.php:1200 app/libraries/main.php:
|
6618 |
#, fuzzy
|
6619 |
#| msgid "Notifications"
|
6620 |
msgid "Notifications Per Event"
|
@@ -6702,53 +6718,53 @@ msgstr ""
|
|
6702 |
msgid "There was an error please try again!"
|
6703 |
msgstr ""
|
6704 |
|
6705 |
-
#: app/features/mec/settings.php:
|
6706 |
msgid "Hide Events"
|
6707 |
msgstr "Ocultar eventos"
|
6708 |
|
6709 |
-
#: app/features/mec/settings.php:
|
6710 |
msgid "On Event Start"
|
6711 |
msgstr "En el inicio del evento"
|
6712 |
|
6713 |
-
#: app/features/mec/settings.php:
|
6714 |
msgid "+1 Hour after start"
|
6715 |
msgstr "+1 hora después del inicio"
|
6716 |
|
6717 |
-
#: app/features/mec/settings.php:
|
6718 |
msgid "+2 Hours after start"
|
6719 |
msgstr "+2 horas después del inicio"
|
6720 |
|
6721 |
-
#: app/features/mec/settings.php:
|
6722 |
msgid "On Event End"
|
6723 |
msgstr "El fin del evento"
|
6724 |
|
6725 |
-
#: app/features/mec/settings.php:
|
6726 |
msgid ""
|
6727 |
"This option is for showing start/end time of events on frontend of website."
|
6728 |
msgstr ""
|
6729 |
"Esta opción es para mostrar el tiempo de inicio / finalización de los "
|
6730 |
"eventos en la interfaz del sitio web."
|
6731 |
|
6732 |
-
#: app/features/mec/settings.php:
|
6733 |
msgid "Multiple Day Events"
|
6734 |
msgstr "Eventos de varios días"
|
6735 |
|
6736 |
-
#: app/features/mec/settings.php:
|
6737 |
#, fuzzy
|
6738 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
6739 |
msgid "Show only first day on List/Grid/Slider/Agenda skins"
|
6740 |
msgstr ""
|
6741 |
"Muestra únicamente el primer día en los temas de Lista, Cuadricula y Rotativo"
|
6742 |
|
6743 |
-
#: app/features/mec/settings.php:
|
6744 |
msgid "Show only first day on all skins"
|
6745 |
msgstr "Mostrar solo el primer día en todas los temas"
|
6746 |
|
6747 |
-
#: app/features/mec/settings.php:
|
6748 |
msgid "Show all days"
|
6749 |
msgstr "Mostrar todos los días"
|
6750 |
|
6751 |
-
#: app/features/mec/settings.php:
|
6752 |
msgid ""
|
6753 |
"For showing all days of multiple day events on frontend or only show the "
|
6754 |
"first day."
|
@@ -6756,68 +6772,68 @@ msgstr ""
|
|
6756 |
"Para mostrar todos los días en un evento multidía en la pagina o solo "
|
6757 |
"mostrar el primer día."
|
6758 |
|
6759 |
-
#: app/features/mec/settings.php:
|
6760 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6761 |
msgstr "Elimina los datos de MEC al desinstalar el plugin."
|
6762 |
|
6763 |
-
#: app/features/mec/settings.php:
|
6764 |
msgid "Sender Name"
|
6765 |
msgstr ""
|
6766 |
|
6767 |
-
#: app/features/mec/settings.php:
|
6768 |
msgid "e.g. Webnus"
|
6769 |
msgstr ""
|
6770 |
|
6771 |
-
#: app/features/mec/settings.php:
|
6772 |
#, fuzzy
|
6773 |
#| msgid "Organizer Email"
|
6774 |
msgid "Sender Email"
|
6775 |
msgstr "Correo electrónico del organizador"
|
6776 |
|
6777 |
-
#: app/features/mec/settings.php:
|
6778 |
msgid "e.g. info@webnus.biz"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
-
#: app/features/mec/settings.php:
|
6782 |
msgid "Exclude Date Suffix"
|
6783 |
msgstr "Excluir sufijo de la fecha"
|
6784 |
|
6785 |
-
#: app/features/mec/settings.php:
|
6786 |
msgid "Remove suffix from calendars"
|
6787 |
msgstr "Elimina el sufijo de los calendarios."
|
6788 |
|
6789 |
-
#: app/features/mec/settings.php:
|
6790 |
#, fuzzy
|
6791 |
#| msgid "Remove suffix from calendars"
|
6792 |
msgid "Remove \"Th\" on calendar"
|
6793 |
msgstr "Elimina el sufijo de los calendarios."
|
6794 |
|
6795 |
-
#: app/features/mec/settings.php:
|
6796 |
msgid ""
|
6797 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
6798 |
"showing just '12' )"
|
6799 |
msgstr ""
|
6800 |
|
6801 |
-
#: app/features/mec/settings.php:
|
6802 |
msgid "Schema"
|
6803 |
msgstr ""
|
6804 |
|
6805 |
-
#: app/features/mec/settings.php:
|
6806 |
#, fuzzy
|
6807 |
#| msgid "Enable coupons module"
|
6808 |
msgid "Enable Schema Code"
|
6809 |
msgstr "Activar módulo de cupones"
|
6810 |
|
6811 |
-
#: app/features/mec/settings.php:
|
6812 |
msgid "You can enable/disable Schema scripts"
|
6813 |
msgstr ""
|
6814 |
|
6815 |
-
#: app/features/mec/settings.php:
|
6816 |
-
#: app/libraries/main.php:
|
6817 |
msgid "Weekdays"
|
6818 |
msgstr "Días de la semana"
|
6819 |
|
6820 |
-
#: app/features/mec/settings.php:
|
6821 |
#, fuzzy
|
6822 |
#| msgid ""
|
6823 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
@@ -6829,11 +6845,11 @@ msgid ""
|
|
6829 |
msgstr ""
|
6830 |
"Ten cuidado. El predeterminado es Lunes, Martes, Miércoles, Jueves y Viernes."
|
6831 |
|
6832 |
-
#: app/features/mec/settings.php:
|
6833 |
msgid "Weekends"
|
6834 |
msgstr "Fines de semana"
|
6835 |
|
6836 |
-
#: app/features/mec/settings.php:
|
6837 |
#, fuzzy
|
6838 |
#| msgid ""
|
6839 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
@@ -6845,161 +6861,161 @@ msgid ""
|
|
6845 |
msgstr ""
|
6846 |
"Ten cuidado. El predeterminado es Lunes, Martes, Miércoles, Jueves y Viernes."
|
6847 |
|
6848 |
-
#: app/features/mec/settings.php:
|
6849 |
#, fuzzy
|
6850 |
#| msgid "Date Format"
|
6851 |
msgid "Datepicker Format"
|
6852 |
msgstr "Formato de fecha"
|
6853 |
|
6854 |
-
#: app/features/mec/settings.php:
|
6855 |
msgid "(Y-m-d)"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
-
#: app/features/mec/settings.php:
|
6859 |
msgid "(d-m-Y)"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
-
#: app/features/mec/settings.php:
|
6863 |
msgid "(Y/m/d)"
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: app/features/mec/settings.php:
|
6867 |
msgid "(m/d/Y)"
|
6868 |
msgstr ""
|
6869 |
|
6870 |
-
#: app/features/mec/settings.php:
|
6871 |
msgid "(Y.m.d)"
|
6872 |
msgstr ""
|
6873 |
|
6874 |
-
#: app/features/mec/settings.php:
|
6875 |
msgid "(d.m.Y)"
|
6876 |
msgstr ""
|
6877 |
|
6878 |
-
#: app/features/mec/settings.php:
|
6879 |
msgid "Midnight Hour"
|
6880 |
msgstr ""
|
6881 |
|
6882 |
-
#: app/features/mec/settings.php:
|
6883 |
msgid "12 AM"
|
6884 |
msgstr ""
|
6885 |
|
6886 |
-
#: app/features/mec/settings.php:
|
6887 |
msgid "1 AM"
|
6888 |
msgstr ""
|
6889 |
|
6890 |
-
#: app/features/mec/settings.php:
|
6891 |
msgid "2 AM"
|
6892 |
msgstr ""
|
6893 |
|
6894 |
-
#: app/features/mec/settings.php:
|
6895 |
msgid "3 AM"
|
6896 |
msgstr ""
|
6897 |
|
6898 |
-
#: app/features/mec/settings.php:
|
6899 |
msgid "4 AM"
|
6900 |
msgstr ""
|
6901 |
|
6902 |
-
#: app/features/mec/settings.php:
|
6903 |
msgid "5 AM"
|
6904 |
msgstr ""
|
6905 |
|
6906 |
-
#: app/features/mec/settings.php:
|
6907 |
msgid ""
|
6908 |
"12 AM is midnight by default but you can change it if your event ends after "
|
6909 |
"12 AM and you don't want those events considered as multiple days events!"
|
6910 |
msgstr ""
|
6911 |
|
6912 |
-
#: app/features/mec/settings.php:
|
6913 |
#, fuzzy
|
6914 |
#| msgid "Add Shortcode"
|
6915 |
msgid "Open \"Add Event\" as Popup"
|
6916 |
msgstr "Nuevo Shortcode"
|
6917 |
|
6918 |
-
#: app/features/mec/settings.php:
|
6919 |
-
#: app/features/mec/settings.php:
|
6920 |
#, fuzzy
|
6921 |
#| msgid "Enabled"
|
6922 |
msgid "Enable"
|
6923 |
msgstr "Habilitado"
|
6924 |
|
6925 |
-
#: app/features/mec/settings.php:
|
6926 |
#, fuzzy
|
6927 |
#| msgid "Add Shortcode"
|
6928 |
msgid "Open \"Add Shortcode\" as Popup"
|
6929 |
msgstr "Nuevo Shortcode"
|
6930 |
|
6931 |
-
#: app/features/mec/settings.php:
|
6932 |
#, fuzzy
|
6933 |
#| msgid "Featured Image"
|
6934 |
msgid "Include Event Featured Image in Feed"
|
6935 |
msgstr "Imagen destacada"
|
6936 |
|
6937 |
-
#: app/features/mec/settings.php:
|
6938 |
msgid "Archive Pages"
|
6939 |
msgstr "Páginas de archivo"
|
6940 |
|
6941 |
-
#: app/features/mec/settings.php:
|
6942 |
msgid "Archive Page Title"
|
6943 |
msgstr "Título de la página de archivo"
|
6944 |
|
6945 |
-
#: app/features/mec/settings.php:
|
6946 |
#, fuzzy
|
6947 |
#| msgid "Default value is Events"
|
6948 |
msgid "Default value is Events - It's title of the page"
|
6949 |
msgstr "Valor por defecto del evento"
|
6950 |
|
6951 |
-
#: app/features/mec/settings.php:
|
6952 |
msgid "Archive Page Skin"
|
6953 |
msgstr "Tema de la página de archivo"
|
6954 |
|
6955 |
-
#: app/features/mec/settings.php:
|
6956 |
#, fuzzy
|
6957 |
#| msgid "Edit shortcodes"
|
6958 |
msgid "Put shortcode..."
|
6959 |
msgstr "Editar Shortcodes"
|
6960 |
|
6961 |
-
#: app/features/mec/settings.php:
|
6962 |
-
#: app/features/mec/settings.php:
|
6963 |
-
#: app/features/mec/settings.php:
|
6964 |
-
#: app/features/mec/settings.php:
|
6965 |
-
#: app/features/mec/settings.php:
|
6966 |
#, fuzzy
|
6967 |
#| msgid "The event is ongoing."
|
6968 |
msgid "There is no skins"
|
6969 |
msgstr "El evento está en curso."
|
6970 |
|
6971 |
-
#: app/features/mec/settings.php:
|
6972 |
#: app/features/mec/single.php:73
|
6973 |
msgid "Modern Style"
|
6974 |
msgstr "Estilo moderno"
|
6975 |
|
6976 |
-
#: app/features/mec/settings.php:
|
6977 |
#, fuzzy
|
6978 |
#| msgid "Colorful"
|
6979 |
msgid "colorful"
|
6980 |
msgstr "Colorido"
|
6981 |
|
6982 |
-
#: app/features/mec/settings.php:
|
6983 |
#, fuzzy
|
6984 |
#| msgid "Plain Style"
|
6985 |
msgid "Clean Style"
|
6986 |
msgstr "Estilo simple"
|
6987 |
|
6988 |
-
#: app/features/mec/settings.php:
|
6989 |
#, fuzzy
|
6990 |
#| msgid "Default value is Calendar/Monthly View"
|
6991 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
6992 |
msgstr "El valor predeterminado es calendario / vista mensual"
|
6993 |
|
6994 |
-
#: app/features/mec/settings.php:
|
6995 |
msgid "See Demo"
|
6996 |
msgstr ""
|
6997 |
|
6998 |
-
#: app/features/mec/settings.php:
|
6999 |
msgid "Category Page Skin"
|
7000 |
msgstr "Skin de página de categoría"
|
7001 |
|
7002 |
-
#: app/features/mec/settings.php:
|
7003 |
#, fuzzy
|
7004 |
#| msgid "Default value is Calendar/Monthly View"
|
7005 |
msgid ""
|
@@ -7007,23 +7023,23 @@ msgid ""
|
|
7007 |
"categories."
|
7008 |
msgstr "El valor predeterminado es calendario / vista mensual"
|
7009 |
|
7010 |
-
#: app/features/mec/settings.php:
|
7011 |
msgid "Category Events Method"
|
7012 |
msgstr "Método de categoría de eventos"
|
7013 |
|
7014 |
-
#: app/features/mec/settings.php:
|
7015 |
msgid "Default value is Upcoming Events"
|
7016 |
msgstr "El valor predeterminado es Próximos eventos"
|
7017 |
|
7018 |
-
#: app/features/mec/settings.php:
|
7019 |
msgid "Events Archive Status"
|
7020 |
msgstr "Estado del archivo de eventos"
|
7021 |
|
7022 |
-
#: app/features/mec/settings.php:
|
7023 |
msgid "Enabled (Recommended)"
|
7024 |
msgstr "Activado (recomendado)"
|
7025 |
|
7026 |
-
#: app/features/mec/settings.php:
|
7027 |
msgid ""
|
7028 |
"If you disable it, then you should create a page as archive page of MEC. "
|
7029 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
@@ -7033,18 +7049,18 @@ msgstr ""
|
|
7033 |
"archivo de MEC. El slug debe igualarse al slug principal de MEC. También "
|
7034 |
"desactivará todas las reglas de sobreescripción."
|
7035 |
|
7036 |
-
#: app/features/mec/settings.php:
|
7037 |
msgid "Main Slug"
|
7038 |
msgstr "Slug principal"
|
7039 |
|
7040 |
-
#: app/features/mec/settings.php:
|
7041 |
msgid ""
|
7042 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7043 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
7044 |
"applicability and forward-compatibility of the links."
|
7045 |
msgstr ""
|
7046 |
|
7047 |
-
#: app/features/mec/settings.php:
|
7048 |
#, fuzzy
|
7049 |
#| msgid ""
|
7050 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
@@ -7054,11 +7070,11 @@ msgstr ""
|
|
7054 |
"El valor por defecto es eventos. Los caracteres válidos son a-z minúsculas, "
|
7055 |
"- carácteres y números."
|
7056 |
|
7057 |
-
#: app/features/mec/settings.php:
|
7058 |
msgid "Category Slug"
|
7059 |
msgstr "Slug de la categoría"
|
7060 |
|
7061 |
-
#: app/features/mec/settings.php:
|
7062 |
#, fuzzy
|
7063 |
#| msgid ""
|
7064 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
@@ -7072,113 +7088,113 @@ msgstr ""
|
|
7072 |
"cat o a algo más. El valor por defecto es mec-category. Se pueden utilizar "
|
7073 |
"letras de la a-z en minúsculas y numerosas."
|
7074 |
|
7075 |
-
#: app/features/mec/settings.php:
|
7076 |
msgid "Currency"
|
7077 |
msgstr "Moneda corriente"
|
7078 |
|
7079 |
-
#: app/features/mec/settings.php:
|
7080 |
msgid "Currency Sign"
|
7081 |
msgstr "Tipo de moneda"
|
7082 |
|
7083 |
-
#: app/features/mec/settings.php:
|
7084 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7085 |
msgstr "El valor por defecto será \"moneda\" si lo dejas en blanco."
|
7086 |
|
7087 |
-
#: app/features/mec/settings.php:
|
7088 |
msgid "Currency Position"
|
7089 |
msgstr "Posición en moneda extranjera"
|
7090 |
|
7091 |
-
#: app/features/mec/settings.php:
|
7092 |
msgid "Before $10"
|
7093 |
msgstr "Menos de 10€"
|
7094 |
|
7095 |
-
#: app/features/mec/settings.php:
|
7096 |
msgid "After 10$"
|
7097 |
msgstr "Más de 10€"
|
7098 |
|
7099 |
-
#: app/features/mec/settings.php:
|
7100 |
msgid "Thousand Separator"
|
7101 |
msgstr "Separador de miles"
|
7102 |
|
7103 |
-
#: app/features/mec/settings.php:
|
7104 |
msgid "Decimal Separator"
|
7105 |
msgstr "Separador de decimales"
|
7106 |
|
7107 |
-
#: app/features/mec/settings.php:
|
7108 |
msgid "No decimal"
|
7109 |
msgstr "No decimal"
|
7110 |
|
7111 |
-
#: app/features/mec/settings.php:
|
7112 |
msgid "Enable Google Recaptcha"
|
7113 |
msgstr "Habilitar Google Recaptcha"
|
7114 |
|
7115 |
-
#: app/features/mec/settings.php:
|
7116 |
msgid "Enable on booking form"
|
7117 |
msgstr "Activar en el formulario de reserva"
|
7118 |
|
7119 |
-
#: app/features/mec/settings.php:
|
7120 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7121 |
msgstr "Activa el formulario \"Envío de eventos desde portada\""
|
7122 |
|
7123 |
-
#: app/features/mec/settings.php:
|
7124 |
msgid "Site Key"
|
7125 |
msgstr "Clave del Sitio"
|
7126 |
|
7127 |
-
#: app/features/mec/settings.php:
|
7128 |
msgid "Secret Key"
|
7129 |
msgstr "Clave secreta"
|
7130 |
|
7131 |
-
#: app/features/mec/settings.php:
|
7132 |
msgid "Time Format"
|
7133 |
msgstr "Formato de la hora"
|
7134 |
|
7135 |
-
#: app/features/mec/settings.php:
|
7136 |
msgid "12 hours format with AM/PM"
|
7137 |
msgstr "Formato de 12 horas con AM / PM"
|
7138 |
|
7139 |
-
#: app/features/mec/settings.php:
|
7140 |
msgid "24 hours format"
|
7141 |
msgstr "Formato de 24 horas"
|
7142 |
|
7143 |
-
#: app/features/mec/settings.php:
|
7144 |
msgid "This option, affects the selection of Start/End time."
|
7145 |
msgstr ""
|
7146 |
|
7147 |
-
#: app/features/mec/settings.php:
|
7148 |
msgid "Events List Page"
|
7149 |
msgstr "Página de lista de eventos"
|
7150 |
|
7151 |
-
#: app/features/mec/settings.php:
|
7152 |
#, php-format
|
7153 |
msgid "Put %s shortcode into the page."
|
7154 |
msgstr "Pon el shortcode %s en la página."
|
7155 |
|
7156 |
-
#: app/features/mec/settings.php:
|
7157 |
msgid "Add/Edit Events Page"
|
7158 |
msgstr "Añadir/Editar página de eventos"
|
7159 |
|
7160 |
-
#: app/features/mec/settings.php:
|
7161 |
#, fuzzy
|
7162 |
#| msgid "On Event Start"
|
7163 |
msgid "New Events Status"
|
7164 |
msgstr "En el inicio del evento"
|
7165 |
|
7166 |
-
#: app/features/mec/settings.php:
|
7167 |
#, fuzzy
|
7168 |
#| msgid "Address"
|
7169 |
msgid "Let WordPress decide"
|
7170 |
msgstr "Dirección"
|
7171 |
|
7172 |
-
#: app/features/mec/settings.php:
|
7173 |
-
#: app/libraries/main.php:
|
7174 |
msgid "Pending"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
-
#: app/features/mec/settings.php:
|
7178 |
msgid "Publish"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
#: app/features/mec/settings.php:
|
7182 |
#, fuzzy
|
7183 |
#| msgid ""
|
7184 |
#| "User redirects to this page after booking. Leave it empty if you want to "
|
@@ -7190,31 +7206,31 @@ msgstr ""
|
|
7190 |
"Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
|
7191 |
"Déjalo vacío si lo deseas desactivado."
|
7192 |
|
7193 |
-
#: app/features/mec/settings.php:
|
7194 |
#, fuzzy
|
7195 |
#| msgid "Thank You Page"
|
7196 |
msgid "Thank You Page URL"
|
7197 |
msgstr "Página de agradecimiento"
|
7198 |
|
7199 |
-
#: app/features/mec/settings.php:
|
7200 |
msgid "If filled it will use instead of thank you page set above."
|
7201 |
msgstr ""
|
7202 |
|
7203 |
-
#: app/features/mec/settings.php:
|
7204 |
#, fuzzy
|
7205 |
#| msgid "Maximum Dates"
|
7206 |
msgid "Maximum File Size"
|
7207 |
msgstr "Fechas máximas"
|
7208 |
|
7209 |
-
#: app/features/mec/settings.php:
|
7210 |
msgid "in KB"
|
7211 |
msgstr ""
|
7212 |
|
7213 |
-
#: app/features/mec/settings.php:
|
7214 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7215 |
msgstr ""
|
7216 |
|
7217 |
-
#: app/features/mec/settings.php:
|
7218 |
#, fuzzy
|
7219 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7220 |
msgid "Enable event submission by guest (Not logged in) users"
|
@@ -7222,72 +7238,90 @@ msgstr ""
|
|
7222 |
"Habilitar la presentación de eventos por los usuarios invitados (no "
|
7223 |
"conectados)"
|
7224 |
|
7225 |
-
#: app/features/mec/settings.php:
|
7226 |
msgid "Enable mandatory email and name for guest user"
|
7227 |
msgstr ""
|
7228 |
"Activa que sea obligatorio el correo y nombre del usuario para el usuario "
|
7229 |
"invitado"
|
7230 |
|
7231 |
-
#: app/features/mec/settings.php:
|
7232 |
msgid ""
|
7233 |
"Automatically create users after event publish and assign event to the "
|
7234 |
"created user"
|
7235 |
msgstr ""
|
7236 |
|
7237 |
-
#: app/features/mec/settings.php:
|
7238 |
msgid "Frontend Event Submission Sections"
|
7239 |
msgstr "Secciones de envío de eventos en la pagina."
|
7240 |
|
7241 |
-
#: app/features/mec/settings.php:
|
7242 |
#, fuzzy
|
7243 |
#| msgid "Event Details"
|
7244 |
msgid "Event Data Fields"
|
7245 |
msgstr "Detalle de evento"
|
7246 |
|
7247 |
-
#: app/features/mec/settings.php:
|
7248 |
msgid "Event Categories"
|
7249 |
msgstr "Categorías de evento"
|
7250 |
|
7251 |
-
#: app/features/mec/settings.php:
|
7252 |
msgid "Event Labels"
|
7253 |
msgstr "Etiqueta de eventos"
|
7254 |
|
7255 |
-
#: app/features/mec/settings.php:
|
7256 |
msgid "Event Tags"
|
7257 |
msgstr "Etiquetas del Evento"
|
7258 |
|
7259 |
-
#: app/features/mec/settings.php:
|
7260 |
msgid "Event Organizer"
|
7261 |
msgstr "Organizador de eventos"
|
7262 |
|
7263 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7264 |
msgid "Fees / Taxes Options"
|
7265 |
msgstr "Opciones de Cuotas/Impuestos"
|
7266 |
|
7267 |
-
#: app/features/mec/settings.php:
|
7268 |
msgid "SEO Schema"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
-
#: app/features/mec/settings.php:
|
7272 |
#: app/features/occurrences.php:102
|
7273 |
#, fuzzy
|
7274 |
#| msgid "Occurrences times"
|
7275 |
msgid "Occurrences"
|
7276 |
msgstr "Ocurrencias del evento"
|
7277 |
|
7278 |
-
#: app/features/mec/settings.php:
|
7279 |
#, fuzzy
|
7280 |
#| msgid "Edit Event"
|
7281 |
msgid "Virtual Event"
|
7282 |
msgstr "Editar Evento"
|
7283 |
|
7284 |
-
#: app/features/mec/settings.php:
|
7285 |
#, fuzzy
|
7286 |
#| msgid "Book Event"
|
7287 |
msgid "Zoom Event"
|
7288 |
msgstr "Reservar evento"
|
7289 |
|
7290 |
-
#: app/features/mec/settings.php:
|
7291 |
#, php-format
|
7292 |
msgid ""
|
7293 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -7298,127 +7332,140 @@ msgstr ""
|
|
7298 |
"evento. También puede poner %%event_note%% en la notificación de nuevo "
|
7299 |
"evento para obtener la nota de los usuarios en el correo electrónico."
|
7300 |
|
7301 |
-
#: app/features/mec/settings.php:
|
7302 |
#, fuzzy
|
7303 |
#| msgid "Visibility"
|
7304 |
msgid "Note visibility"
|
7305 |
msgstr "Visibilidad"
|
7306 |
|
7307 |
-
#: app/features/mec/settings.php:
|
7308 |
msgid "Always"
|
7309 |
msgstr "Siempre"
|
7310 |
|
7311 |
-
#: app/features/mec/settings.php:
|
7312 |
msgid "While event is not published"
|
7313 |
msgstr "Mientras no se publique el evento"
|
7314 |
|
7315 |
-
#: app/features/mec/settings.php:
|
7316 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7317 |
msgstr ""
|
7318 |
"La nota de evento se muestra en el formulario de presentación de Frontend y "
|
7319 |
"Editar evento en el backend."
|
7320 |
|
7321 |
-
#: app/features/mec/settings.php:
|
7322 |
#, fuzzy
|
7323 |
#| msgid "Required Field"
|
7324 |
msgid "Required Fields"
|
7325 |
msgstr "Campo obligatorio"
|
7326 |
|
7327 |
-
#: app/features/mec/settings.php:
|
7328 |
#, fuzzy
|
7329 |
#| msgid "Description"
|
7330 |
msgid "Event Description"
|
7331 |
msgstr "Descripción"
|
7332 |
|
7333 |
-
#: app/features/mec/settings.php:
|
7334 |
-
#: app/libraries/main.php:
|
7335 |
msgid "More Info Link"
|
7336 |
msgstr "Enlace a Más Información"
|
7337 |
|
7338 |
-
#: app/features/mec/settings.php:
|
7339 |
msgid "User Profile"
|
7340 |
msgstr ""
|
7341 |
|
7342 |
-
#: app/features/mec/settings.php:
|
7343 |
#, php-format
|
7344 |
msgid ""
|
7345 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
7346 |
"history of their bookings."
|
7347 |
msgstr ""
|
7348 |
|
7349 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7350 |
#, fuzzy
|
7351 |
#| msgid "Search Form"
|
7352 |
msgid "Search Bar"
|
7353 |
msgstr "Formulario de Búsqueda"
|
7354 |
|
7355 |
-
#: app/features/mec/settings.php:
|
7356 |
#, php-format
|
7357 |
msgid ""
|
7358 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
7359 |
msgstr ""
|
7360 |
|
7361 |
-
#: app/features/mec/settings.php:
|
7362 |
msgid "Ajax Live mode"
|
7363 |
msgstr ""
|
7364 |
|
7365 |
-
#: app/features/mec/settings.php:
|
7366 |
msgid "Ajax mode"
|
7367 |
msgstr ""
|
7368 |
|
7369 |
-
#: app/features/mec/settings.php:
|
7370 |
msgid ""
|
7371 |
"if you enable this option, the search button will disappear. To use this "
|
7372 |
"feature, text input field must be enabled."
|
7373 |
msgstr ""
|
7374 |
|
7375 |
-
#: app/features/mec/settings.php:
|
7376 |
#, fuzzy
|
7377 |
#| msgid "Modern Style"
|
7378 |
msgid "Modern Type"
|
7379 |
msgstr "Estilo moderno"
|
7380 |
|
7381 |
-
#: app/features/mec/settings.php:
|
7382 |
#, fuzzy
|
7383 |
#| msgid "Search Form"
|
7384 |
msgid "Search bar fields"
|
7385 |
msgstr "Formulario de Búsqueda"
|
7386 |
|
7387 |
-
#: app/features/mec/settings.php:
|
7388 |
#, fuzzy
|
7389 |
#| msgid "Text Input"
|
7390 |
msgid "Text input"
|
7391 |
msgstr "Campo de texto"
|
7392 |
|
7393 |
-
#: app/features/mec/settings.php:
|
7394 |
msgid "Enable Mailchimp Integration"
|
7395 |
msgstr "Activar integración con MailChimp"
|
7396 |
|
7397 |
-
#: app/features/mec/settings.php:
|
7398 |
-
#: app/features/mec/settings.php:
|
7399 |
-
#: app/features/mec/settings.php:
|
7400 |
msgid "API Key"
|
7401 |
msgstr "API Key"
|
7402 |
|
7403 |
-
#: app/features/mec/settings.php:
|
7404 |
-
#: app/features/mec/settings.php:
|
7405 |
-
#: app/features/mec/settings.php:
|
7406 |
msgid "List ID"
|
7407 |
msgstr "ID de la lista"
|
7408 |
|
7409 |
-
#: app/features/mec/settings.php:
|
7410 |
msgid "Subscription Status"
|
7411 |
msgstr "Estado Suscripción"
|
7412 |
|
7413 |
-
#: app/features/mec/settings.php:
|
7414 |
msgid "Subscribe automatically"
|
7415 |
msgstr "Suscribirse automáticamente "
|
7416 |
|
7417 |
-
#: app/features/mec/settings.php:
|
7418 |
msgid "Subscribe by verification"
|
7419 |
msgstr "Suscribirse por verificación"
|
7420 |
|
7421 |
-
#: app/features/mec/settings.php:
|
7422 |
#, fuzzy
|
7423 |
#| msgid ""
|
7424 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
@@ -7430,146 +7477,146 @@ msgstr ""
|
|
7430 |
"Si eliges “Suscribir por verificación” entonces un email de verificación de "
|
7431 |
"suscripción se le enviará al usuario."
|
7432 |
|
7433 |
-
#: app/features/mec/settings.php:
|
7434 |
#, fuzzy
|
7435 |
#| msgid "Mailchimp Integration"
|
7436 |
msgid "Campaign Monitor Integration"
|
7437 |
msgstr "Integración de MailChimp"
|
7438 |
|
7439 |
-
#: app/features/mec/settings.php:
|
7440 |
#, fuzzy
|
7441 |
#| msgid "Enable Mailchimp Integration"
|
7442 |
msgid "Enable Campaign Monitor Integration"
|
7443 |
msgstr "Activar integración con MailChimp"
|
7444 |
|
7445 |
-
#: app/features/mec/settings.php:
|
7446 |
#, fuzzy
|
7447 |
#| msgid "Mailchimp Integration"
|
7448 |
msgid "MailerLite Integration"
|
7449 |
msgstr "Integración de MailChimp"
|
7450 |
|
7451 |
-
#: app/features/mec/settings.php:
|
7452 |
#, fuzzy
|
7453 |
#| msgid "Enable Mailchimp Integration"
|
7454 |
msgid "Enable MailerLite Integration"
|
7455 |
msgstr "Activar integración con MailChimp"
|
7456 |
|
7457 |
-
#: app/features/mec/settings.php:
|
7458 |
msgid "Group ID"
|
7459 |
msgstr ""
|
7460 |
|
7461 |
-
#: app/features/mec/settings.php:
|
7462 |
#, fuzzy
|
7463 |
#| msgid "BuddyPress Integration"
|
7464 |
msgid "Constant Contact Integration"
|
7465 |
msgstr "Integración de BuddyPress"
|
7466 |
|
7467 |
-
#: app/features/mec/settings.php:
|
7468 |
#, fuzzy
|
7469 |
#| msgid "Enable Mailchimp Integration"
|
7470 |
msgid "Enable constantcontact Integration"
|
7471 |
msgstr "Activar integración con MailChimp"
|
7472 |
|
7473 |
-
#: app/features/mec/settings.php:
|
7474 |
#, fuzzy
|
7475 |
#| msgid "Facebook Page Link"
|
7476 |
msgid "Access Token"
|
7477 |
msgstr "Enlace de página Facebook enlace"
|
7478 |
|
7479 |
-
#: app/features/mec/settings.php:
|
7480 |
#, fuzzy
|
7481 |
#| msgid "Select icon"
|
7482 |
msgid "Select List"
|
7483 |
msgstr "Seleccionar icono"
|
7484 |
|
7485 |
-
#: app/features/mec/settings.php:
|
7486 |
msgid ""
|
7487 |
"Please fill in the API key and Access Token field and save settings. after "
|
7488 |
"that, please refresh the page and select a list."
|
7489 |
msgstr ""
|
7490 |
|
7491 |
-
#: app/features/mec/settings.php:
|
7492 |
#, fuzzy
|
7493 |
#| msgid "Mailchimp Integration"
|
7494 |
msgid "Active Campaign Integration"
|
7495 |
msgstr "Integración de MailChimp"
|
7496 |
|
7497 |
-
#: app/features/mec/settings.php:
|
7498 |
#, fuzzy
|
7499 |
#| msgid "Enable Mailchimp Integration"
|
7500 |
msgid "Enable Active Campaign Integration"
|
7501 |
msgstr "Activar integración con MailChimp"
|
7502 |
|
7503 |
-
#: app/features/mec/settings.php:
|
7504 |
msgid "API URL"
|
7505 |
msgstr ""
|
7506 |
|
7507 |
-
#: app/features/mec/settings.php:
|
7508 |
#, fuzzy
|
7509 |
#| msgid "Mailchimp Integration"
|
7510 |
msgid "AWeber Integration"
|
7511 |
msgstr "Integración de MailChimp"
|
7512 |
|
7513 |
-
#: app/features/mec/settings.php:
|
7514 |
#, fuzzy
|
7515 |
#| msgid "Enable Mailchimp Integration"
|
7516 |
msgid "Enable AWeber Integration"
|
7517 |
msgstr "Activar integración con MailChimp"
|
7518 |
|
7519 |
-
#: app/features/mec/settings.php:
|
7520 |
#, fuzzy, php-format
|
7521 |
#| msgid "Third Party plugin is not installed and activated!"
|
7522 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7523 |
msgstr "¡Plugin de terceros no esta instalado ni activado!"
|
7524 |
|
7525 |
-
#: app/features/mec/settings.php:
|
7526 |
#, php-format
|
7527 |
msgid "More information about the list ID can be found %s."
|
7528 |
msgstr ""
|
7529 |
|
7530 |
-
#: app/features/mec/settings.php:
|
7531 |
#, fuzzy
|
7532 |
#| msgid "Mailchimp Integration"
|
7533 |
msgid "MailPoet Integration"
|
7534 |
msgstr "Integración de MailChimp"
|
7535 |
|
7536 |
-
#: app/features/mec/settings.php:
|
7537 |
#, fuzzy
|
7538 |
#| msgid "Enable Mailchimp Integration"
|
7539 |
msgid "Enable MailPoet Integration"
|
7540 |
msgstr "Activar integración con MailChimp"
|
7541 |
|
7542 |
-
#: app/features/mec/settings.php:
|
7543 |
#: app/skins/default_full_calendar/tpl.php:78
|
7544 |
#: app/skins/full_calendar/tpl.php:125
|
7545 |
msgid "List"
|
7546 |
msgstr "Lista"
|
7547 |
|
7548 |
-
#: app/features/mec/settings.php:
|
7549 |
#, fuzzy, php-format
|
7550 |
#| msgid "Third Party plugin is not installed and activated!"
|
7551 |
msgid "%s plugin should be installed and activated."
|
7552 |
msgstr "¡Plugin de terceros no esta instalado ni activado!"
|
7553 |
|
7554 |
-
#: app/features/mec/settings.php:
|
7555 |
#, fuzzy
|
7556 |
#| msgid "Mailchimp Integration"
|
7557 |
msgid "Sendfox Integration"
|
7558 |
msgstr "Integración de MailChimp"
|
7559 |
|
7560 |
-
#: app/features/mec/settings.php:
|
7561 |
#, fuzzy
|
7562 |
#| msgid "Enable Mailchimp Integration"
|
7563 |
msgid "Enable Sendfox Integration"
|
7564 |
msgstr "Activar integración con MailChimp"
|
7565 |
|
7566 |
-
#: app/features/mec/settings.php:
|
7567 |
#, fuzzy, php-format
|
7568 |
#| msgid "Third Party plugin is not installed and activated!"
|
7569 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7570 |
msgstr "¡Plugin de terceros no esta instalado ni activado!"
|
7571 |
|
7572 |
-
#: app/features/mec/single.php:38 app/libraries/main.php:
|
7573 |
#, fuzzy
|
7574 |
#| msgid "Single Event Style"
|
7575 |
msgid "Single Event Page"
|
@@ -7687,13 +7734,13 @@ msgid ""
|
|
7687 |
"the settings page.' tab"
|
7688 |
msgstr ""
|
7689 |
|
7690 |
-
#: app/features/mec/single.php:162 app/libraries/main.php:
|
7691 |
#, fuzzy
|
7692 |
#| msgid "Custom Styles"
|
7693 |
msgid "Custom Fields"
|
7694 |
msgstr "Estilo personalizado"
|
7695 |
|
7696 |
-
#: app/features/mec/single.php:192 app/libraries/main.php:
|
7697 |
msgid "URL"
|
7698 |
msgstr ""
|
7699 |
|
@@ -7741,7 +7788,7 @@ msgstr ""
|
|
7741 |
"Usar esta opción permite incluir o excluir ciertos días para la ocurrencia "
|
7742 |
"de eventos."
|
7743 |
|
7744 |
-
#: app/features/mec/single.php:286 app/libraries/main.php:
|
7745 |
msgid "Additional Organizers"
|
7746 |
msgstr "Organizadores adicionales"
|
7747 |
|
@@ -7775,7 +7822,7 @@ msgstr ""
|
|
7775 |
"Mostrar la opción de organizadores adicionales en la pagina de añadir "
|
7776 |
"eventos y la pagina de evento individual."
|
7777 |
|
7778 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
7779 |
#: app/skins/single.php:170 app/skins/single.php:435
|
7780 |
#, fuzzy
|
7781 |
#| msgid "featured event"
|
@@ -7792,7 +7839,7 @@ msgstr ""
|
|
7792 |
msgid "Select Taxonomies:"
|
7793 |
msgstr "Taxonomías"
|
7794 |
|
7795 |
-
#: app/features/mec/single.php:360 app/libraries/main.php:
|
7796 |
#, fuzzy
|
7797 |
#| msgid "Next/Previous Buttons"
|
7798 |
msgid "Next / Previous Events"
|
@@ -7802,7 +7849,7 @@ msgstr "Botones Siguiente/Anterior"
|
|
7802 |
msgid "Display next / previous events based on taxonomy in single event page."
|
7803 |
msgstr ""
|
7804 |
|
7805 |
-
#: app/features/mec/single.php:402 app/libraries/main.php:
|
7806 |
#, fuzzy
|
7807 |
#| msgid "Next Occurrence"
|
7808 |
msgid "Edit Per Occurrences"
|
@@ -7839,7 +7886,7 @@ msgid "Default Font"
|
|
7839 |
msgstr "Fuente por defecto"
|
7840 |
|
7841 |
#: app/features/mec/styling.php:50 app/features/mec/support.php:52
|
7842 |
-
#: app/libraries/main.php:
|
7843 |
msgid "Styling Options"
|
7844 |
msgstr "Opciones visuales"
|
7845 |
|
@@ -8020,7 +8067,7 @@ msgstr ""
|
|
8020 |
msgid "MEC Settings"
|
8021 |
msgstr "Ajustes MEC"
|
8022 |
|
8023 |
-
#: app/features/mec/support-page.php:99 app/libraries/main.php:
|
8024 |
#, fuzzy
|
8025 |
#| msgid "Single Event Style"
|
8026 |
msgid "Single Event"
|
@@ -8381,7 +8428,7 @@ msgstr ""
|
|
8381 |
msgid "Create a support ticket"
|
8382 |
msgstr "Añadir nuevo Shortcode"
|
8383 |
|
8384 |
-
#: app/features/mec/support.php:59 app/libraries/main.php:
|
8385 |
msgid "Custom CSS"
|
8386 |
msgstr "CSS personalizado"
|
8387 |
|
@@ -8502,12 +8549,6 @@ msgstr "Siguiente repetición"
|
|
8502 |
msgid "Delete"
|
8503 |
msgstr ""
|
8504 |
|
8505 |
-
#: app/features/occurrences.php:385
|
8506 |
-
#, fuzzy
|
8507 |
-
#| msgid "Total booking limits"
|
8508 |
-
msgid "Total Booking Limit"
|
8509 |
-
msgstr "Límite total de reservas"
|
8510 |
-
|
8511 |
#: app/features/occurrences.php:393 app/features/schema.php:70
|
8512 |
#, fuzzy
|
8513 |
#| msgid "Hourly Schedule"
|
@@ -8639,8 +8680,8 @@ msgstr "ej. user@yoursite.com"
|
|
8639 |
msgid "eg. https://webnus.net"
|
8640 |
msgstr "ej. https://webnus.net"
|
8641 |
|
8642 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
8643 |
-
#: app/libraries/main.php:
|
8644 |
msgid "Other Organizers"
|
8645 |
msgstr "En común"
|
8646 |
|
@@ -8716,7 +8757,7 @@ msgid "Prev"
|
|
8716 |
msgstr ""
|
8717 |
|
8718 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8719 |
-
#: app/modules/booking/steps/form.php:
|
8720 |
#: app/modules/booking/steps/tickets.php:180 app/skins/countdown/tpl.php:123
|
8721 |
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
8722 |
msgid "Next"
|
@@ -8831,7 +8872,7 @@ msgstr "Añadir nuevo Shortcode"
|
|
8831 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8832 |
msgstr ""
|
8833 |
|
8834 |
-
#: app/features/profile/profile.php:20 app/libraries/main.php:
|
8835 |
#, fuzzy
|
8836 |
#| msgid "Your booking cannot be canceled."
|
8837 |
msgid "Your booking already canceled!"
|
@@ -8841,11 +8882,11 @@ msgstr "La reserva no puede cancelarse."
|
|
8841 |
msgid "#"
|
8842 |
msgstr ""
|
8843 |
|
8844 |
-
#: app/features/profile/profile.php:61 app/libraries/main.php:
|
8845 |
msgid "Status"
|
8846 |
msgstr "Estado"
|
8847 |
|
8848 |
-
#: app/features/profile/profile.php:64 app/libraries/main.php:
|
8849 |
msgid "Attendees"
|
8850 |
msgstr "Asistentes"
|
8851 |
|
@@ -8903,9 +8944,10 @@ msgstr "Buscar %s"
|
|
8903 |
msgid "No search result."
|
8904 |
msgstr ""
|
8905 |
|
8906 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
8907 |
-
#: app/libraries/main.php:
|
8908 |
-
#: app/libraries/render.php:
|
|
|
8909 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8910 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8911 |
#: app/modules/next-event/details.php:154
|
@@ -8996,6 +9038,12 @@ msgid ""
|
|
8996 |
"section and speaker widget section!"
|
8997 |
msgstr ""
|
8998 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8999 |
#: app/features/wc.php:103 app/libraries/notifications.php:1250
|
9000 |
#: app/libraries/notifications.php:1265 app/libraries/notifications.php:1276
|
9001 |
#: app/libraries/notifications.php:1549 app/libraries/notifications.php:1550
|
@@ -9133,33 +9181,33 @@ msgstr "a 8:45"
|
|
9133 |
msgid "New Day"
|
9134 |
msgstr "Días de semana"
|
9135 |
|
9136 |
-
#: app/libraries/main.php:366 app/libraries/main.php:
|
9137 |
-
#: app/libraries/main.php:
|
9138 |
msgid "Agenda View"
|
9139 |
msgstr "Vista de Agenda"
|
9140 |
|
9141 |
-
#: app/libraries/main.php:367 app/libraries/main.php:
|
9142 |
-
#: app/libraries/main.php:
|
9143 |
msgid "Full Calendar"
|
9144 |
msgstr "Calendario completo"
|
9145 |
|
9146 |
-
#: app/libraries/main.php:369 app/libraries/main.php:
|
9147 |
-
#: app/libraries/main.php:
|
9148 |
msgid "Calendar/Monthly View"
|
9149 |
msgstr "Ver Calendario/Mes"
|
9150 |
|
9151 |
-
#: app/libraries/main.php:372 app/libraries/main.php:
|
9152 |
-
#: app/libraries/main.php:
|
9153 |
msgid "Timetable View"
|
9154 |
msgstr "Vista de Horario"
|
9155 |
|
9156 |
-
#: app/libraries/main.php:373 app/libraries/main.php:
|
9157 |
-
#: app/libraries/main.php:
|
9158 |
msgid "Masonry View"
|
9159 |
msgstr "Vista en mosaico"
|
9160 |
|
9161 |
-
#: app/libraries/main.php:374 app/libraries/main.php:
|
9162 |
-
#: app/libraries/main.php:
|
9163 |
msgid "Map View"
|
9164 |
msgstr "Vista de mapa"
|
9165 |
|
@@ -9189,64 +9237,64 @@ msgstr "Vista del rotativo"
|
|
9189 |
msgid "Timeline View"
|
9190 |
msgstr "Vista de Horario"
|
9191 |
|
9192 |
-
#: app/libraries/main.php:419 app/libraries/main.php:
|
9193 |
-
#: app/libraries/main.php:
|
9194 |
msgid "SU"
|
9195 |
msgstr "DO"
|
9196 |
|
9197 |
-
#: app/libraries/main.php:420 app/libraries/main.php:
|
9198 |
-
#: app/libraries/main.php:
|
9199 |
msgid "MO"
|
9200 |
msgstr "LU"
|
9201 |
|
9202 |
-
#: app/libraries/main.php:421 app/libraries/main.php:
|
9203 |
-
#: app/libraries/main.php:
|
9204 |
msgid "TU"
|
9205 |
msgstr "MA"
|
9206 |
|
9207 |
-
#: app/libraries/main.php:422 app/libraries/main.php:
|
9208 |
-
#: app/libraries/main.php:
|
9209 |
msgid "WE"
|
9210 |
msgstr "MI"
|
9211 |
|
9212 |
-
#: app/libraries/main.php:423 app/libraries/main.php:
|
9213 |
-
#: app/libraries/main.php:
|
9214 |
msgid "TH"
|
9215 |
msgstr "JU"
|
9216 |
|
9217 |
-
#: app/libraries/main.php:424 app/libraries/main.php:
|
9218 |
-
#: app/libraries/main.php:
|
9219 |
msgid "FR"
|
9220 |
msgstr "VI"
|
9221 |
|
9222 |
-
#: app/libraries/main.php:425 app/libraries/main.php:
|
9223 |
-
#: app/libraries/main.php:
|
9224 |
msgid "SA"
|
9225 |
msgstr "SA"
|
9226 |
|
9227 |
-
#: app/libraries/main.php:
|
9228 |
#, fuzzy
|
9229 |
#| msgid "Additional Organizers"
|
9230 |
msgid "Additional Locations"
|
9231 |
msgstr "Organizadores adicionales"
|
9232 |
|
9233 |
-
#: app/libraries/main.php:
|
9234 |
#, fuzzy
|
9235 |
#| msgid "Upload/Add image"
|
9236 |
msgid "Upload Field"
|
9237 |
msgstr "Subir/Añadir imagen"
|
9238 |
|
9239 |
-
#: app/libraries/main.php:
|
9240 |
#, fuzzy
|
9241 |
#| msgid "Social Module"
|
9242 |
msgid "Modules"
|
9243 |
msgstr "Módulo social"
|
9244 |
|
9245 |
-
#: app/libraries/main.php:
|
9246 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9247 |
msgstr ""
|
9248 |
|
9249 |
-
#: app/libraries/main.php:
|
9250 |
msgid ""
|
9251 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9252 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -9254,439 +9302,439 @@ msgid ""
|
|
9254 |
"below:"
|
9255 |
msgstr ""
|
9256 |
|
9257 |
-
#: app/libraries/main.php:
|
9258 |
msgid ""
|
9259 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9260 |
"products) and Woo products at the same time."
|
9261 |
msgstr ""
|
9262 |
|
9263 |
-
#: app/libraries/main.php:
|
9264 |
msgid ""
|
9265 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9266 |
"other websites without MEC. Use JSON output features to make your Apps "
|
9267 |
"compatible with MEC."
|
9268 |
msgstr ""
|
9269 |
|
9270 |
-
#: app/libraries/main.php:
|
9271 |
msgid ""
|
9272 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9273 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9274 |
"you can set these up in the admin panel."
|
9275 |
msgstr ""
|
9276 |
|
9277 |
-
#: app/libraries/main.php:
|
9278 |
msgid ""
|
9279 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9280 |
"pages can contain ticket purchase information, information about registered "
|
9281 |
"events. Users can now log in to purchase tickets."
|
9282 |
msgstr ""
|
9283 |
|
9284 |
-
#: app/libraries/main.php:
|
9285 |
msgid "find out more"
|
9286 |
msgstr ""
|
9287 |
|
9288 |
-
#: app/libraries/main.php:
|
9289 |
msgid "Events at this location"
|
9290 |
msgstr "Eventos en este lugar"
|
9291 |
|
9292 |
-
#: app/libraries/main.php:
|
9293 |
msgid "Event at this location"
|
9294 |
msgstr "Evento en este lugar"
|
9295 |
|
9296 |
-
#: app/libraries/main.php:
|
9297 |
msgid "Facebook"
|
9298 |
msgstr "Facebook"
|
9299 |
|
9300 |
-
#: app/libraries/main.php:
|
9301 |
msgid "Twitter"
|
9302 |
msgstr "Twitter"
|
9303 |
|
9304 |
-
#: app/libraries/main.php:
|
9305 |
msgid "Linkedin"
|
9306 |
msgstr "LinkedIn"
|
9307 |
|
9308 |
-
#: app/libraries/main.php:
|
9309 |
msgid "VK"
|
9310 |
msgstr "VK"
|
9311 |
|
9312 |
-
#: app/libraries/main.php:
|
9313 |
msgid "Tumblr"
|
9314 |
msgstr ""
|
9315 |
|
9316 |
-
#: app/libraries/main.php:
|
9317 |
msgid "Pinterest"
|
9318 |
msgstr ""
|
9319 |
|
9320 |
-
#: app/libraries/main.php:
|
9321 |
msgid "Flipboard"
|
9322 |
msgstr ""
|
9323 |
|
9324 |
-
#: app/libraries/main.php:
|
9325 |
#, fuzzy
|
9326 |
#| msgid "Tickets"
|
9327 |
msgid "GetPocket"
|
9328 |
msgstr "Tickets"
|
9329 |
|
9330 |
-
#: app/libraries/main.php:
|
9331 |
msgid "Reddit"
|
9332 |
msgstr ""
|
9333 |
|
9334 |
-
#: app/libraries/main.php:
|
9335 |
msgid "WhatsApp"
|
9336 |
msgstr ""
|
9337 |
|
9338 |
-
#: app/libraries/main.php:
|
9339 |
msgid "Telegram"
|
9340 |
msgstr ""
|
9341 |
|
9342 |
-
#: app/libraries/main.php:
|
9343 |
msgid "Share on Facebook"
|
9344 |
msgstr "Compartir en Facebook"
|
9345 |
|
9346 |
-
#: app/libraries/main.php:
|
9347 |
msgid "Tweet"
|
9348 |
msgstr "Tweet"
|
9349 |
|
9350 |
-
#: app/libraries/main.php:
|
9351 |
#, fuzzy
|
9352 |
#| msgid "Share on Facebook"
|
9353 |
msgid "Share on Tumblr"
|
9354 |
msgstr "Compartir en Facebook"
|
9355 |
|
9356 |
-
#: app/libraries/main.php:
|
9357 |
msgid "Share on Pinterest"
|
9358 |
msgstr ""
|
9359 |
|
9360 |
-
#: app/libraries/main.php:
|
9361 |
#, fuzzy
|
9362 |
#| msgid "Share on Facebook"
|
9363 |
msgid "Share on Flipboard"
|
9364 |
msgstr "Compartir en Facebook"
|
9365 |
|
9366 |
-
#: app/libraries/main.php:
|
9367 |
#, fuzzy
|
9368 |
#| msgid "Share on Facebook"
|
9369 |
msgid "Share on GetPocket"
|
9370 |
msgstr "Compartir en Facebook"
|
9371 |
|
9372 |
-
#: app/libraries/main.php:
|
9373 |
#, fuzzy
|
9374 |
#| msgid "Share on Facebook"
|
9375 |
msgid "Share on Reddit"
|
9376 |
msgstr "Compartir en Facebook"
|
9377 |
|
9378 |
-
#: app/libraries/main.php:
|
9379 |
msgid "Share on Telegram"
|
9380 |
msgstr ""
|
9381 |
|
9382 |
-
#: app/libraries/main.php:
|
9383 |
msgid "Share on WhatsApp"
|
9384 |
msgstr ""
|
9385 |
|
9386 |
-
#: app/libraries/main.php:
|
9387 |
#, fuzzy
|
9388 |
#| msgid "Shortcode"
|
9389 |
msgid "Custom Shortcode"
|
9390 |
msgstr "Shortcode"
|
9391 |
|
9392 |
-
#: app/libraries/main.php:
|
9393 |
#, fuzzy
|
9394 |
#| msgid "The events are imported successfully!"
|
9395 |
msgid "Your booking has been verified successfully!"
|
9396 |
msgstr "¡Los eventos se importaron correctamente!"
|
9397 |
|
9398 |
-
#: app/libraries/main.php:
|
9399 |
#, fuzzy
|
9400 |
#| msgid "Your booking successfully verified."
|
9401 |
msgid "Your booking already verified!"
|
9402 |
msgstr "Tu reserva se ha verificado correctamente."
|
9403 |
|
9404 |
-
#: app/libraries/main.php:
|
9405 |
msgid "Your booking cannot verify!"
|
9406 |
msgstr "¡Tu reserva no se puede verificar!"
|
9407 |
|
9408 |
-
#: app/libraries/main.php:
|
9409 |
msgid "Your booking successfully canceled."
|
9410 |
msgstr "Tu reserva se ha cancelado correctamente."
|
9411 |
|
9412 |
-
#: app/libraries/main.php:
|
9413 |
#, fuzzy
|
9414 |
#| msgid "The event is finished."
|
9415 |
msgid "The event is already finished!"
|
9416 |
msgstr "El evento está terminado."
|
9417 |
|
9418 |
-
#: app/libraries/main.php:
|
9419 |
msgid "The cancelation window is not started yet."
|
9420 |
msgstr ""
|
9421 |
|
9422 |
-
#: app/libraries/main.php:
|
9423 |
msgid "The cancelation window is passed."
|
9424 |
msgstr ""
|
9425 |
|
9426 |
-
#: app/libraries/main.php:
|
9427 |
msgid "Your booking cannot be canceled."
|
9428 |
msgstr "La reserva no puede cancelarse."
|
9429 |
|
9430 |
-
#: app/libraries/main.php:
|
9431 |
msgid "You canceled the payment successfully."
|
9432 |
msgstr "Has cancelado el pago correctamente."
|
9433 |
|
9434 |
-
#: app/libraries/main.php:
|
9435 |
msgid "You returned from payment gateway successfully."
|
9436 |
msgstr "Has vuelto correctamente de tu pasarela de pago."
|
9437 |
|
9438 |
-
#: app/libraries/main.php:
|
9439 |
#, fuzzy
|
9440 |
#| msgid "Cannot find the booking!"
|
9441 |
msgid "Cannot find the invoice!"
|
9442 |
msgstr "¡No se pudo encontrar la reserva!"
|
9443 |
|
9444 |
-
#: app/libraries/main.php:
|
9445 |
#, fuzzy
|
9446 |
#| msgid "Booking is invalid."
|
9447 |
msgid "Invoice is invalid."
|
9448 |
msgstr "Reserva no válida."
|
9449 |
|
9450 |
-
#: app/libraries/main.php:
|
9451 |
msgid ""
|
9452 |
"Your booking still is not confirmed. You can download it after confirmation!"
|
9453 |
msgstr ""
|
9454 |
|
9455 |
-
#: app/libraries/main.php:
|
9456 |
#, fuzzy
|
9457 |
#| msgid "Booking Confirmation"
|
9458 |
msgid "Booking Not Confirmed."
|
9459 |
msgstr "Confirmación de reserva"
|
9460 |
|
9461 |
-
#: app/libraries/main.php:
|
9462 |
msgid "Cannot find the booking!"
|
9463 |
msgstr "¡No se pudo encontrar la reserva!"
|
9464 |
|
9465 |
-
#: app/libraries/main.php:
|
9466 |
msgid "Booking is invalid."
|
9467 |
msgstr "Reserva no válida."
|
9468 |
|
9469 |
-
#: app/libraries/main.php:
|
9470 |
#, php-format
|
9471 |
msgid "%s Invoice"
|
9472 |
msgstr "%s Factura"
|
9473 |
|
9474 |
-
#: app/libraries/main.php:
|
9475 |
#, fuzzy
|
9476 |
#| msgid "Date and Time"
|
9477 |
msgid "Date & Time"
|
9478 |
msgstr "Día y hora"
|
9479 |
|
9480 |
-
#: app/libraries/main.php:
|
9481 |
#, fuzzy
|
9482 |
#| msgid "Booking Price"
|
9483 |
msgid "Booking Fields"
|
9484 |
msgstr "Precio de la reserva"
|
9485 |
|
9486 |
-
#: app/libraries/main.php:
|
9487 |
msgid "Billing"
|
9488 |
msgstr "Facturación"
|
9489 |
|
9490 |
-
#: app/libraries/main.php:
|
9491 |
#, fuzzy
|
9492 |
#| msgid "Coupons"
|
9493 |
msgid "Coupon Code"
|
9494 |
msgstr "Cupones"
|
9495 |
|
9496 |
-
#: app/libraries/main.php:
|
9497 |
msgid "Total"
|
9498 |
msgstr "Total "
|
9499 |
|
9500 |
-
#: app/libraries/main.php:
|
9501 |
#, fuzzy
|
9502 |
#| msgid "Payment Gateways"
|
9503 |
msgid "Payment"
|
9504 |
msgstr "Pasarelas de pago"
|
9505 |
|
9506 |
-
#: app/libraries/main.php:
|
9507 |
#, fuzzy
|
9508 |
#| msgid "Payment Gateways"
|
9509 |
msgid "Payment Time"
|
9510 |
msgstr "Pasarelas de pago"
|
9511 |
|
9512 |
-
#: app/libraries/main.php:
|
9513 |
msgid "Request is not valid."
|
9514 |
msgstr "La solicitud no es válida."
|
9515 |
|
9516 |
-
#: app/libraries/main.php:
|
9517 |
msgid "iCal export stopped!"
|
9518 |
msgstr "¡La exportación de iCal se detuvo!"
|
9519 |
|
9520 |
-
#: app/libraries/main.php:
|
9521 |
-
#: app/libraries/main.php:
|
9522 |
-
#: app/libraries/main.php:
|
9523 |
-
#: app/libraries/main.php:
|
9524 |
-
#: app/libraries/main.php:
|
9525 |
-
#: app/libraries/main.php:
|
9526 |
-
#: app/libraries/main.php:
|
9527 |
-
#: app/libraries/main.php:
|
9528 |
msgid "Sort"
|
9529 |
msgstr "Orden"
|
9530 |
|
9531 |
-
#: app/libraries/main.php:
|
9532 |
-
#: app/libraries/main.php:
|
9533 |
-
#: app/libraries/main.php:
|
9534 |
-
#: app/libraries/main.php:
|
9535 |
-
#: app/libraries/main.php:
|
9536 |
-
#: app/libraries/main.php:
|
9537 |
-
#: app/libraries/main.php:
|
9538 |
msgid "Required Field"
|
9539 |
msgstr "Campo obligatorio"
|
9540 |
|
9541 |
-
#: app/libraries/main.php:
|
9542 |
-
#: app/libraries/main.php:
|
9543 |
-
#: app/libraries/main.php:
|
9544 |
-
#: app/libraries/main.php:
|
9545 |
-
#: app/libraries/main.php:
|
9546 |
-
#: app/libraries/main.php:
|
9547 |
-
#: app/libraries/main.php:
|
9548 |
msgid "Insert a label for this field"
|
9549 |
msgstr "Introduce una etiqueta para este campo"
|
9550 |
|
9551 |
-
#: app/libraries/main.php:
|
9552 |
msgid "HTML and shortcode are allowed."
|
9553 |
msgstr "Se permite HTML"
|
9554 |
|
9555 |
-
#: app/libraries/main.php:
|
9556 |
-
#: app/libraries/main.php:
|
9557 |
msgid "Option"
|
9558 |
msgstr "Opción"
|
9559 |
|
9560 |
-
#: app/libraries/main.php:
|
9561 |
#, php-format
|
9562 |
msgid "Instead of %s, the page title with a link will be show."
|
9563 |
msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
|
9564 |
|
9565 |
-
#: app/libraries/main.php:
|
9566 |
msgid "Agreement Page"
|
9567 |
msgstr "Página de Acuerdo"
|
9568 |
|
9569 |
-
#: app/libraries/main.php:
|
9570 |
msgid "Checked by default"
|
9571 |
msgstr "Marcado por defecto"
|
9572 |
|
9573 |
-
#: app/libraries/main.php:
|
9574 |
msgid "Unchecked by default"
|
9575 |
msgstr "Sin marcar por defecto"
|
9576 |
|
9577 |
-
#: app/libraries/main.php:
|
9578 |
msgid "Insert a label for this option"
|
9579 |
msgstr "Introduce una etiqueta para esta opción"
|
9580 |
|
9581 |
-
#: app/libraries/main.php:
|
9582 |
msgid "Free"
|
9583 |
msgstr "Gratis"
|
9584 |
|
9585 |
-
#: app/libraries/main.php:
|
9586 |
#, fuzzy
|
9587 |
#| msgid "M.E. Calendar"
|
9588 |
msgid "M.E. Calender"
|
9589 |
msgstr "M.E. Calendario"
|
9590 |
|
9591 |
-
#: app/libraries/main.php:
|
9592 |
#, php-format
|
9593 |
msgid "Copy of %s"
|
9594 |
msgstr "Copia de %s"
|
9595 |
|
9596 |
-
#: app/libraries/main.php:
|
9597 |
msgid "Booked an event."
|
9598 |
msgstr "Has reservado para un evento."
|
9599 |
|
9600 |
-
#: app/libraries/main.php:
|
9601 |
#, php-format
|
9602 |
msgid "%s booked %s event."
|
9603 |
msgstr "%s reservado %s evento."
|
9604 |
|
9605 |
-
#: app/libraries/main.php:
|
9606 |
msgid "Taxonomies"
|
9607 |
msgstr "Taxonomías"
|
9608 |
|
9609 |
-
#: app/libraries/main.php:
|
9610 |
msgid "Category Plural Label"
|
9611 |
msgstr "Categoría Etiqueta plural"
|
9612 |
|
9613 |
-
#: app/libraries/main.php:
|
9614 |
msgid "Category Singular Label"
|
9615 |
msgstr "Categoría Etiqueta Singular"
|
9616 |
|
9617 |
-
#: app/libraries/main.php:
|
9618 |
msgid "Label Plural Label"
|
9619 |
msgstr "Etiqueta plural"
|
9620 |
|
9621 |
-
#: app/libraries/main.php:
|
9622 |
msgid "Label Singular Label"
|
9623 |
msgstr "Etiqueta singular de la etiqueta"
|
9624 |
|
9625 |
-
#: app/libraries/main.php:
|
9626 |
msgid "label"
|
9627 |
msgstr "etiqueta"
|
9628 |
|
9629 |
-
#: app/libraries/main.php:
|
9630 |
msgid "Location Plural Label"
|
9631 |
msgstr "Ubicación Etiqueta plural"
|
9632 |
|
9633 |
-
#: app/libraries/main.php:
|
9634 |
msgid "Location Singular Label"
|
9635 |
msgstr "Etiqueta de ubicación en singular"
|
9636 |
|
9637 |
-
#: app/libraries/main.php:
|
9638 |
msgid "Organizer Plural Label"
|
9639 |
msgstr "Etiqueta del organizador en plural"
|
9640 |
|
9641 |
-
#: app/libraries/main.php:
|
9642 |
msgid "Organizer Singular Label"
|
9643 |
msgstr "Etiqueta Singular del Organizador"
|
9644 |
|
9645 |
-
#: app/libraries/main.php:
|
9646 |
msgid "Speaker Plural Label"
|
9647 |
msgstr ""
|
9648 |
|
9649 |
-
#: app/libraries/main.php:
|
9650 |
msgid "Speaker Singular Label"
|
9651 |
msgstr ""
|
9652 |
|
9653 |
-
#: app/libraries/main.php:
|
9654 |
msgid "Sunday abbreviation"
|
9655 |
msgstr "Abreviatura de Domingo"
|
9656 |
|
9657 |
-
#: app/libraries/main.php:
|
9658 |
msgid "Monday abbreviation"
|
9659 |
msgstr "Abreviatura de Lunes"
|
9660 |
|
9661 |
-
#: app/libraries/main.php:
|
9662 |
msgid "Tuesday abbreviation"
|
9663 |
msgstr "Abreviatura de Martes"
|
9664 |
|
9665 |
-
#: app/libraries/main.php:
|
9666 |
msgid "Wednesday abbreviation"
|
9667 |
msgstr "Abreviatura de Miércoles "
|
9668 |
|
9669 |
-
#: app/libraries/main.php:
|
9670 |
msgid "Thursday abbreviation"
|
9671 |
msgstr "Abreviatura de Jueves"
|
9672 |
|
9673 |
-
#: app/libraries/main.php:
|
9674 |
msgid "Friday abbreviation"
|
9675 |
msgstr "Abreviatura de Viernes"
|
9676 |
|
9677 |
-
#: app/libraries/main.php:
|
9678 |
msgid "Saturday abbreviation"
|
9679 |
msgstr "Abreviatura de Sábado "
|
9680 |
|
9681 |
-
#: app/libraries/main.php:
|
9682 |
msgid "Others"
|
9683 |
msgstr "Otros"
|
9684 |
|
9685 |
-
#: app/libraries/main.php:
|
9686 |
msgid "Booking Success Message"
|
9687 |
msgstr "Mensaje de reserva correcta"
|
9688 |
|
9689 |
-
#: app/libraries/main.php:
|
9690 |
#, fuzzy
|
9691 |
#| msgid ""
|
9692 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -9698,60 +9746,60 @@ msgstr ""
|
|
9698 |
"Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
|
9699 |
"una verificación, por favor consulta tu correo."
|
9700 |
|
9701 |
-
#: app/libraries/main.php:
|
9702 |
#, fuzzy
|
9703 |
#| msgid "Booking Success Message"
|
9704 |
msgid "Booking Restriction Message 1"
|
9705 |
msgstr "Mensaje de reserva correcta"
|
9706 |
|
9707 |
-
#: app/libraries/main.php:
|
9708 |
#, php-format
|
9709 |
msgid ""
|
9710 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9711 |
"tickets."
|
9712 |
msgstr ""
|
9713 |
|
9714 |
-
#: app/libraries/main.php:
|
9715 |
#, fuzzy
|
9716 |
#| msgid "Booking Success Message"
|
9717 |
msgid "Booking Restriction Message 2"
|
9718 |
msgstr "Mensaje de reserva correcta"
|
9719 |
|
9720 |
-
#: app/libraries/main.php:
|
9721 |
#, php-format
|
9722 |
msgid ""
|
9723 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9724 |
"tickets."
|
9725 |
msgstr ""
|
9726 |
|
9727 |
-
#: app/libraries/main.php:
|
9728 |
#, fuzzy
|
9729 |
#| msgid "Booking Success Message"
|
9730 |
msgid "Booking IP Restriction Message"
|
9731 |
msgstr "Mensaje de reserva correcta"
|
9732 |
|
9733 |
-
#: app/libraries/main.php:
|
9734 |
#, php-format
|
9735 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9736 |
msgstr ""
|
9737 |
|
9738 |
-
#: app/libraries/main.php:
|
9739 |
#, fuzzy
|
9740 |
#| msgid "Booking Options"
|
9741 |
msgid "Booking Button"
|
9742 |
msgstr "Opciones de reserva"
|
9743 |
|
9744 |
-
#: app/libraries/main.php:
|
9745 |
#: app/modules/booking/steps/tickets.php:102
|
9746 |
msgid "Book Event"
|
9747 |
msgstr "Reservar evento"
|
9748 |
|
9749 |
-
#: app/libraries/main.php:
|
9750 |
#: app/widgets/single.php:133
|
9751 |
msgid "Register Button"
|
9752 |
msgstr "Botón de registro"
|
9753 |
|
9754 |
-
#: app/libraries/main.php:
|
9755 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9756 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:104
|
9757 |
#: app/skins/grid/render.php:163 app/skins/grid/render.php:223
|
@@ -9769,11 +9817,11 @@ msgstr "Botón de registro"
|
|
9769 |
msgid "REGISTER"
|
9770 |
msgstr "REGISTRO"
|
9771 |
|
9772 |
-
#: app/libraries/main.php:
|
9773 |
msgid "View Detail Button"
|
9774 |
msgstr "Ver detalle del botón"
|
9775 |
|
9776 |
-
#: app/libraries/main.php:
|
9777 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9778 |
#: app/skins/grid/render.php:104 app/skins/grid/render.php:163
|
9779 |
#: app/skins/grid/render.php:223 app/skins/grid/render.php:245
|
@@ -9785,144 +9833,144 @@ msgstr "Ver detalle del botón"
|
|
9785 |
msgid "View Detail"
|
9786 |
msgstr "Ver detalle"
|
9787 |
|
9788 |
-
#: app/libraries/main.php:
|
9789 |
msgid "Event Detail Button"
|
9790 |
msgstr "Botón de detalle del evento"
|
9791 |
|
9792 |
-
#: app/libraries/main.php:
|
9793 |
msgid "Event Detail"
|
9794 |
msgstr "Detalle del evento"
|
9795 |
|
9796 |
-
#: app/libraries/main.php:
|
9797 |
msgid "Ticket (Singular)"
|
9798 |
msgstr "Entrada (Singular)"
|
9799 |
|
9800 |
-
#: app/libraries/main.php:
|
9801 |
msgid "Tickets (Plural)"
|
9802 |
msgstr "Entradas (Plural)"
|
9803 |
|
9804 |
-
#: app/libraries/main.php:
|
9805 |
msgid "EventON"
|
9806 |
msgstr "EventON"
|
9807 |
|
9808 |
-
#: app/libraries/main.php:
|
9809 |
msgid "The Events Calendar"
|
9810 |
msgstr "The Events Calendar"
|
9811 |
|
9812 |
-
#: app/libraries/main.php:
|
9813 |
msgid "Events Schedule WP Plugin"
|
9814 |
msgstr "Events Schedule WP Plugin"
|
9815 |
|
9816 |
-
#: app/libraries/main.php:
|
9817 |
msgid "Calendarize It"
|
9818 |
msgstr "Ponlo al calendario"
|
9819 |
|
9820 |
-
#: app/libraries/main.php:
|
9821 |
#, fuzzy
|
9822 |
#| msgid "Event %s"
|
9823 |
msgid "Event Espresso"
|
9824 |
msgstr "Evento %s"
|
9825 |
|
9826 |
-
#: app/libraries/main.php:
|
9827 |
#, fuzzy
|
9828 |
#| msgid "Event Repeating"
|
9829 |
msgid "Events Manager (Recurring)"
|
9830 |
msgstr "Repetir el evento"
|
9831 |
|
9832 |
-
#: app/libraries/main.php:
|
9833 |
#, fuzzy
|
9834 |
#| msgid "Modern Events Calendar (Lite)"
|
9835 |
msgid "Events Manager (Single)"
|
9836 |
msgstr "Modern Events Calendar (Lite)"
|
9837 |
|
9838 |
-
#: app/libraries/main.php:
|
9839 |
#, fuzzy
|
9840 |
#| msgid "Modern Events Calendar (Lite)"
|
9841 |
msgid "WP Event Manager"
|
9842 |
msgstr "Modern Events Calendar (Lite)"
|
9843 |
|
9844 |
-
#: app/libraries/main.php:
|
9845 |
msgid "Waiting"
|
9846 |
msgstr ""
|
9847 |
|
9848 |
-
#: app/libraries/main.php:
|
9849 |
#, fuzzy
|
9850 |
#| msgid "Sunday"
|
9851 |
msgid "Sun"
|
9852 |
msgstr "Domingo"
|
9853 |
|
9854 |
-
#: app/libraries/main.php:
|
9855 |
#, fuzzy
|
9856 |
#| msgid "Monthly"
|
9857 |
msgid "Mon"
|
9858 |
msgstr "Mensual"
|
9859 |
|
9860 |
-
#: app/libraries/main.php:
|
9861 |
#, fuzzy
|
9862 |
#| msgid "Tel"
|
9863 |
msgid "Tue"
|
9864 |
msgstr "Tel"
|
9865 |
|
9866 |
-
#: app/libraries/main.php:
|
9867 |
msgid "Wed"
|
9868 |
msgstr ""
|
9869 |
|
9870 |
-
#: app/libraries/main.php:
|
9871 |
msgid "Thu"
|
9872 |
msgstr ""
|
9873 |
|
9874 |
-
#: app/libraries/main.php:
|
9875 |
#, fuzzy
|
9876 |
#| msgid "Friday"
|
9877 |
msgid "Fri"
|
9878 |
msgstr "Viernes"
|
9879 |
|
9880 |
-
#: app/libraries/main.php:
|
9881 |
#, fuzzy
|
9882 |
#| msgid "Start"
|
9883 |
msgid "Sat"
|
9884 |
msgstr "Inicio"
|
9885 |
|
9886 |
-
#: app/libraries/main.php:
|
9887 |
-
#: app/libraries/render.php:
|
9888 |
msgid "Skin controller does not exist."
|
9889 |
msgstr "No existe skin controller."
|
9890 |
|
9891 |
-
#: app/libraries/main.php:
|
9892 |
#, fuzzy
|
9893 |
#| msgid "Sold out!"
|
9894 |
msgid "Sold Out"
|
9895 |
msgstr "¡Agotado!"
|
9896 |
|
9897 |
-
#: app/libraries/main.php:
|
9898 |
#, fuzzy
|
9899 |
#| msgid "Ticket"
|
9900 |
msgid "Last Few Tickets"
|
9901 |
msgstr "Ticket"
|
9902 |
|
9903 |
-
#: app/libraries/main.php:
|
9904 |
#, fuzzy
|
9905 |
#| msgid "minutes"
|
9906 |
msgid "Minutes"
|
9907 |
msgstr "minutos"
|
9908 |
|
9909 |
-
#: app/libraries/main.php:
|
9910 |
msgid "AM / PM"
|
9911 |
msgstr ""
|
9912 |
|
9913 |
-
#: app/libraries/main.php:
|
9914 |
msgid "AM"
|
9915 |
msgstr "AM"
|
9916 |
|
9917 |
-
#: app/libraries/main.php:
|
9918 |
msgid "PM"
|
9919 |
msgstr "PM"
|
9920 |
|
9921 |
-
#: app/libraries/main.php:
|
9922 |
msgid "Ongoing..."
|
9923 |
msgstr ""
|
9924 |
|
9925 |
-
#: app/libraries/main.php:
|
9926 |
#, fuzzy
|
9927 |
#| msgid "Expired Events"
|
9928 |
msgid "Expired!"
|
@@ -10069,7 +10117,7 @@ msgid "Apply Coupon"
|
|
10069 |
msgstr "Aplicar cupón"
|
10070 |
|
10071 |
#: app/modules/booking/steps/checkout.php:138
|
10072 |
-
#: app/modules/booking/steps/form.php:
|
10073 |
msgid "Back"
|
10074 |
msgstr ""
|
10075 |
|
@@ -10083,17 +10131,17 @@ msgstr "Reserva gratuita"
|
|
10083 |
msgid "Attendee's Form"
|
10084 |
msgstr "Asistentes"
|
10085 |
|
10086 |
-
#: app/modules/booking/steps/form.php:
|
10087 |
msgid "Fill other attendees information like the first form."
|
10088 |
msgstr ""
|
10089 |
"Rellenar la información de los otros asistentes igual que el primer "
|
10090 |
"formulario."
|
10091 |
|
10092 |
-
#: app/modules/booking/steps/form.php:
|
10093 |
msgid "Username"
|
10094 |
msgstr ""
|
10095 |
|
10096 |
-
#: app/modules/booking/steps/form.php:
|
10097 |
#: app/modules/booking/steps/tickets.php:180
|
10098 |
#, fuzzy
|
10099 |
#| msgid "Add to Google Calendar"
|
@@ -10476,6 +10524,11 @@ msgstr "Equipo de Webnus"
|
|
10476 |
msgid "http://webnus.net"
|
10477 |
msgstr "http://webnus.net"
|
10478 |
|
|
|
|
|
|
|
|
|
|
|
10479 |
#~ msgid "Your booking successfully verified."
|
10480 |
#~ msgstr "Tu reserva se ha verificado correctamente."
|
10481 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
+
"POT-Creation-Date: 2020-12-16 12:21+0330\n"
|
8 |
+
"PO-Revision-Date: 2020-12-16 12:22+0330\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
17 |
|
18 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
19 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
20 |
+
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1186
|
21 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
22 |
#: app/widgets/MEC.php:33
|
23 |
msgid "Modern Events Calendar"
|
24 |
msgstr "Modern Events Calendar"
|
83 |
msgstr "Añadir nuevo Shortcode"
|
84 |
|
85 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
86 |
+
#: app/features/mec/settings.php:794
|
87 |
msgid "Event Color"
|
88 |
msgstr "Color del evento"
|
89 |
|
96 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
97 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
98 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
99 |
+
#: app/libraries/main.php:650
|
100 |
msgid "Settings"
|
101 |
msgstr "Ajustes"
|
102 |
|
103 |
+
#: app/features/contextual.php:62 app/features/events.php:1445
|
104 |
+
#: app/features/events.php:2385 app/features/mec/booking.php:607
|
105 |
+
#: app/features/mec/booking.php:873 app/features/mec/settings.php:882
|
106 |
+
#: app/features/mec/support.php:29 app/libraries/main.php:602
|
107 |
msgid "Booking Form"
|
108 |
msgstr "Formulario de Reservas"
|
109 |
|
130 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
131 |
"iframe>"
|
132 |
|
133 |
+
#: app/features/contextual.php:70 app/features/events.php:1453
|
134 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
135 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:604
|
136 |
msgid "Payment Gateways"
|
137 |
msgstr "Pasarelas de pago"
|
138 |
|
146 |
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
147 |
"\"0\" allowfullscreen></iframe>"
|
148 |
|
149 |
+
#: app/features/contextual.php:77 app/features/events.php:353
|
150 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
151 |
+
#: app/libraries/main.php:798
|
152 |
msgid "Notifications"
|
153 |
msgstr "Avisos"
|
154 |
|
233 |
"width=\"854\" height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs"
|
234 |
"\" frameborder=\"0\" allowfullscreen></iframe>"
|
235 |
|
236 |
+
#: app/features/contextual.php:117 app/features/mec/settings.php:66
|
237 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
238 |
msgid "General Options"
|
239 |
msgstr "Opciones generales"
|
240 |
|
241 |
+
#: app/features/contextual.php:139 app/features/mec/settings.php:490
|
242 |
#: app/libraries/main.php:568
|
243 |
msgid "Slugs/Permalinks"
|
244 |
msgstr "Enlaces permanentes"
|
247 |
msgid "Event Details/Single Event Page"
|
248 |
msgstr "Detalles del Evento/Página de Evento Único"
|
249 |
|
250 |
+
#: app/features/contextual.php:166 app/features/mec/settings.php:522
|
251 |
#: app/libraries/main.php:569
|
252 |
msgid "Currency Options"
|
253 |
msgstr "Opciones de moneda"
|
256 |
msgid "Google Maps Options"
|
257 |
msgstr "Opciones de Google Maps"
|
258 |
|
259 |
+
#: app/features/contextual.php:244 app/features/mec/settings.php:579
|
260 |
#: app/libraries/main.php:570
|
261 |
msgid "Google Recaptcha Options"
|
262 |
msgstr "Opciones de Google Recaptcha"
|
263 |
|
264 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
265 |
+
#: app/libraries/main.php:588
|
266 |
msgid "Countdown Options"
|
267 |
msgstr "Opciones de cuenta atrás"
|
268 |
|
269 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
270 |
+
#: app/libraries/main.php:614
|
271 |
msgid "Social Networks"
|
272 |
msgstr "Redes Sociales"
|
273 |
|
275 |
msgid "Next Event Module"
|
276 |
msgstr "Módulo de Siguiente Evento"
|
277 |
|
278 |
+
#: app/features/contextual.php:286 app/features/mec/settings.php:619
|
279 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
280 |
msgid "Frontend Event Submission"
|
281 |
msgstr "Presentación del evento Frontend"
|
282 |
|
283 |
+
#: app/features/contextual.php:298 app/features/events.php:346
|
284 |
+
#: app/libraries/main.php:589
|
285 |
msgid "Exceptional Days"
|
286 |
msgstr "Días excepcionales"
|
287 |
|
288 |
+
#: app/features/contextual.php:308 app/features/events.php:316
|
289 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
290 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
291 |
+
#: app/libraries/main.php:597 app/libraries/main.php:628
|
292 |
+
#: app/libraries/main.php:715
|
293 |
msgid "Booking"
|
294 |
msgstr "Reserva"
|
295 |
|
296 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
297 |
+
#: app/features/mec/booking.php:833 app/libraries/main.php:599
|
298 |
msgid "Coupons"
|
299 |
msgstr "Cupones"
|
300 |
|
301 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
302 |
+
#: app/libraries/main.php:616
|
303 |
msgid "BuddyPress Integration"
|
304 |
msgstr "Integración de BuddyPress"
|
305 |
|
306 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:1095
|
307 |
+
#: app/libraries/main.php:575
|
308 |
msgid "Mailchimp Integration"
|
309 |
msgstr "Integración de MailChimp"
|
310 |
|
312 |
msgid "MEC Activation"
|
313 |
msgstr "Activación MEC"
|
314 |
|
315 |
+
#: app/features/dlfile.php:121 app/features/events.php:1450
|
316 |
+
#: app/features/mec/booking.php:349 app/features/mec/settings.php:916
|
317 |
#, fuzzy
|
318 |
#| msgid "Download ICS file"
|
319 |
msgid "Downloadable File"
|
351 |
msgid "File uploaded!"
|
352 |
msgstr "¡La imagen está subida!"
|
353 |
|
354 |
+
#: app/features/events.php:168 app/features/ix/export.php:34
|
355 |
+
#: app/features/mec/dashboard.php:265 app/libraries/main.php:5603
|
356 |
+
#: app/libraries/main.php:5623 app/skins/daily_view/tpl.php:82
|
357 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
358 |
#: app/skins/yearly_view/tpl.php:71
|
359 |
msgid "Events"
|
360 |
msgstr "Eventos"
|
361 |
|
362 |
+
#: app/features/events.php:169 app/features/fes.php:243
|
363 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
364 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
365 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
369 |
msgid "Event"
|
370 |
msgstr "Evento"
|
371 |
|
372 |
+
#: app/features/events.php:170 app/features/mec.php:457
|
373 |
msgid "Add Event"
|
374 |
msgstr "Nuevo evento"
|
375 |
|
376 |
+
#: app/features/events.php:171 app/features/mec/dashboard.php:140
|
377 |
msgid "Add New Event"
|
378 |
msgstr "Añadir nuevo evento"
|
379 |
|
380 |
+
#: app/features/events.php:172 app/features/ix.php:4403
|
381 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
382 |
#: app/skins/map/tpl.php:89
|
383 |
msgid "No events found!"
|
384 |
msgstr "No hay eventos"
|
385 |
|
386 |
+
#: app/features/events.php:173
|
387 |
msgid "All Events"
|
388 |
msgstr "Todos los eventos"
|
389 |
|
390 |
+
#: app/features/events.php:174
|
391 |
msgid "Edit Event"
|
392 |
msgstr "Editar Evento"
|
393 |
|
394 |
+
#: app/features/events.php:175 app/features/fes/list.php:87
|
395 |
#: app/features/popup/event.php:252
|
396 |
msgid "View Event"
|
397 |
msgstr "Ver evento"
|
398 |
|
399 |
+
#: app/features/events.php:176
|
400 |
msgid "No events found in Trash!"
|
401 |
msgstr "No hay eventos en la papelera"
|
402 |
|
403 |
+
#: app/features/events.php:193 app/features/events.php:3471
|
404 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
405 |
#: app/features/mec/meta_boxes/search_form.php:31
|
406 |
+
#: app/features/mec/meta_boxes/search_form.php:102
|
407 |
+
#: app/features/mec/meta_boxes/search_form.php:173
|
408 |
+
#: app/features/mec/meta_boxes/search_form.php:244
|
409 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
410 |
+
#: app/features/mec/meta_boxes/search_form.php:384
|
411 |
+
#: app/features/mec/meta_boxes/search_form.php:454
|
412 |
+
#: app/features/mec/meta_boxes/search_form.php:517
|
413 |
+
#: app/features/mec/meta_boxes/search_form.php:587
|
414 |
+
#: app/features/mec/meta_boxes/search_form.php:657
|
415 |
+
#: app/features/mec/meta_boxes/search_form.php:763
|
416 |
+
#: app/features/mec/settings.php:988 app/features/mec/settings.php:1048
|
417 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
418 |
+
#: app/features/search.php:68 app/libraries/main.php:6486
|
419 |
+
#: app/libraries/main.php:6540 app/libraries/skins.php:938
|
420 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
421 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
422 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
423 |
msgid "Category"
|
424 |
msgstr "Categoría"
|
425 |
|
426 |
+
#: app/features/events.php:194 app/features/events.php:3426
|
427 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
428 |
#: app/features/mec/meta_boxes/filter.php:69
|
429 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6485
|
430 |
+
#: app/libraries/main.php:6539
|
431 |
msgid "Categories"
|
432 |
msgstr "Categorías"
|
433 |
|
434 |
+
#: app/features/events.php:204 app/features/labels.php:71
|
435 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
436 |
#: app/features/speakers.php:71
|
437 |
#, php-format
|
438 |
msgid "All %s"
|
439 |
msgstr "Todos %s"
|
440 |
|
441 |
+
#: app/features/events.php:205 app/features/labels.php:72
|
442 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
443 |
#: app/features/speakers.php:72
|
444 |
#, php-format
|
445 |
msgid "Edit %s"
|
446 |
msgstr "Editar %s"
|
447 |
|
448 |
+
#: app/features/events.php:206 app/features/labels.php:73
|
449 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
450 |
#: app/features/speakers.php:73
|
451 |
#, php-format
|
452 |
msgid "View %s"
|
453 |
msgstr "Ver %s"
|
454 |
|
455 |
+
#: app/features/events.php:207 app/features/labels.php:74
|
456 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
457 |
#: app/features/speakers.php:74
|
458 |
#, php-format
|
459 |
msgid "Update %s"
|
460 |
msgstr "Actualizar %s"
|
461 |
|
462 |
+
#: app/features/events.php:208 app/features/labels.php:75
|
463 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
464 |
#: app/features/speakers.php:75
|
465 |
#, php-format
|
466 |
msgid "Add New %s"
|
467 |
msgstr "Añadir nuevo %s"
|
468 |
|
469 |
+
#: app/features/events.php:209 app/features/labels.php:76
|
470 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
471 |
#: app/features/speakers.php:76
|
472 |
#, php-format
|
473 |
msgid "New %s Name"
|
474 |
msgstr "Nuevo %s Nombre"
|
475 |
|
476 |
+
#: app/features/events.php:210 app/features/labels.php:77
|
477 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
478 |
#: app/features/speakers.php:77
|
479 |
#, php-format
|
480 |
msgid "Popular %s"
|
481 |
msgstr "Popular %s"
|
482 |
|
483 |
+
#: app/features/events.php:211 app/features/labels.php:78
|
484 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
485 |
#: app/features/speakers.php:78
|
486 |
#, php-format
|
487 |
msgid "Search %s"
|
488 |
msgstr "Buscar %s"
|
489 |
|
490 |
+
#: app/features/events.php:236 app/features/events.php:257
|
491 |
msgid "Category Icon"
|
492 |
msgstr "Icono de categoría"
|
493 |
|
494 |
+
#: app/features/events.php:239 app/features/events.php:262
|
495 |
msgid "Select icon"
|
496 |
msgstr "Seleccionar icono"
|
497 |
|
498 |
+
#: app/features/events.php:311
|
499 |
msgid "Event Details"
|
500 |
msgstr "Detalle de evento"
|
501 |
|
502 |
+
#: app/features/events.php:342
|
503 |
#, fuzzy
|
504 |
#| msgid "Event Details"
|
505 |
msgid "FES Details"
|
506 |
msgstr "Detalle de evento"
|
507 |
|
508 |
+
#: app/features/events.php:343
|
509 |
#, fuzzy
|
510 |
#| msgid "Date and Time"
|
511 |
msgid "Date And Time"
|
512 |
msgstr "Día y hora"
|
513 |
|
514 |
+
#: app/features/events.php:344 app/features/fes/form.php:366
|
515 |
msgid "Event Repeating"
|
516 |
msgstr "Repetir el evento"
|
517 |
|
518 |
+
#: app/features/events.php:345 app/features/events.php:1179
|
519 |
#, fuzzy
|
520 |
#| msgid "Event Detail"
|
521 |
msgid "Event Data"
|
522 |
msgstr "Detalle del evento"
|
523 |
|
524 |
+
#: app/features/events.php:347 app/features/mec/settings.php:824
|
525 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
526 |
msgid "Hourly Schedule"
|
527 |
msgstr "Programación horaria"
|
528 |
|
529 |
+
#: app/features/events.php:348
|
530 |
#, fuzzy
|
531 |
#| msgid "Location"
|
532 |
msgid "Location/Venue"
|
533 |
msgstr "Localización"
|
534 |
|
535 |
+
#: app/features/events.php:349
|
536 |
#, fuzzy
|
537 |
#| msgid "Link"
|
538 |
msgid "Links"
|
539 |
msgstr "Enlace"
|
540 |
|
541 |
+
#: app/features/events.php:350 app/features/events.php:3473
|
542 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
543 |
+
#: app/features/ix.php:4034
|
544 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
545 |
#: app/features/mec/meta_boxes/search_form.php:46
|
546 |
+
#: app/features/mec/meta_boxes/search_form.php:117
|
547 |
+
#: app/features/mec/meta_boxes/search_form.php:188
|
548 |
+
#: app/features/mec/meta_boxes/search_form.php:259
|
549 |
+
#: app/features/mec/meta_boxes/search_form.php:329
|
550 |
+
#: app/features/mec/meta_boxes/search_form.php:399
|
551 |
+
#: app/features/mec/meta_boxes/search_form.php:469
|
552 |
+
#: app/features/mec/meta_boxes/search_form.php:532
|
553 |
+
#: app/features/mec/meta_boxes/search_form.php:602
|
554 |
+
#: app/features/mec/meta_boxes/search_form.php:672
|
555 |
+
#: app/features/mec/meta_boxes/search_form.php:778
|
556 |
+
#: app/features/mec/settings.php:1060 app/features/mec/single.php:335
|
557 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
558 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
559 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
560 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
561 |
+
#: app/features/search.php:80 app/libraries/main.php:6492
|
562 |
+
#: app/libraries/main.php:6546 app/libraries/skins.php:990
|
563 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
564 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
565 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
566 |
msgid "Organizer"
|
567 |
msgstr "Organizador"
|
568 |
|
569 |
+
#: app/features/events.php:351 app/features/events.php:1166
|
570 |
+
#: app/features/fes/form.php:836 app/features/mec/settings.php:985
|
571 |
+
#: app/libraries/main.php:6523 app/libraries/main.php:6572
|
572 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
573 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
574 |
#: app/skins/single/modern.php:237
|
575 |
msgid "Cost"
|
576 |
msgstr "Coste"
|
577 |
|
578 |
+
#: app/features/events.php:352
|
579 |
#, fuzzy
|
580 |
#| msgid "On Event Start"
|
581 |
msgid "SEO Schema / Event Status"
|
582 |
msgstr "En el inicio del evento"
|
583 |
|
584 |
+
#: app/features/events.php:505
|
585 |
msgid "Note for reviewer"
|
586 |
msgstr "Nota para el encargado"
|
587 |
|
588 |
+
#: app/features/events.php:511
|
589 |
msgid "Guest Data"
|
590 |
msgstr "Datos del invitado"
|
591 |
|
592 |
+
#: app/features/events.php:512 app/features/events.php:2371
|
593 |
+
#: app/features/events.php:3985 app/features/fes.php:243
|
594 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
595 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
596 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
598 |
msgid "Name"
|
599 |
msgstr "Nombre"
|
600 |
|
601 |
+
#: app/features/events.php:513 app/features/events.php:2380
|
602 |
+
#: app/features/events.php:2447 app/features/events.php:2536
|
603 |
+
#: app/features/events.php:3988 app/features/fes.php:243
|
604 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
605 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
606 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
607 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
608 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
609 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1903
|
610 |
+
#: app/libraries/main.php:1972 app/libraries/main.php:3424
|
611 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
612 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
613 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
616 |
msgid "Email"
|
617 |
msgstr "Correo electrónico"
|
618 |
|
619 |
+
#: app/features/events.php:522
|
620 |
msgid ""
|
621 |
"This event is imported from Google calendar so if you modify it, it would "
|
622 |
"overwrite in the next import from Google."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: app/features/events.php:526 app/features/fes/form.php:278
|
626 |
msgid "Date and Time"
|
627 |
msgstr "Día y hora"
|
628 |
|
629 |
+
#: app/features/events.php:529 app/features/events.php:533
|
630 |
+
#: app/features/events.php:3474 app/features/events.php:3662
|
631 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
632 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
633 |
+
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1406
|
634 |
#: app/features/mec/meta_boxes/display_options.php:52
|
635 |
#: app/features/mec/meta_boxes/display_options.php:298
|
636 |
#: app/features/mec/meta_boxes/display_options.php:555
|
650 |
msgid "Start Date"
|
651 |
msgstr "Día de inicio"
|
652 |
|
653 |
+
#: app/features/events.php:548 app/features/events.php:552
|
654 |
+
#: app/features/events.php:3475 app/features/events.php:3662
|
655 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
656 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
657 |
+
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1407
|
658 |
#: app/features/popup/event.php:92
|
659 |
msgid "End Date"
|
660 |
msgstr "Día final"
|
661 |
|
662 |
+
#: app/features/events.php:575 app/features/fes/form.php:319
|
663 |
#: app/features/popup/event.php:109
|
664 |
#, fuzzy
|
665 |
#| msgid "All Day Event"
|
666 |
msgid "All-day Event"
|
667 |
msgstr "Evento de todo el día"
|
668 |
|
669 |
+
#: app/features/events.php:585 app/features/fes/form.php:322
|
670 |
msgid "Hide Event Time"
|
671 |
msgstr "Ocultar hora del evento"
|
672 |
|
673 |
+
#: app/features/events.php:595 app/features/fes/form.php:325
|
674 |
msgid "Hide Event End Time"
|
675 |
msgstr "Oculta la hora de finalización del evento"
|
676 |
|
677 |
+
#: app/features/events.php:600 app/features/events.php:604
|
678 |
#: app/features/fes/form.php:329
|
679 |
#, fuzzy
|
680 |
#| msgid "Note to reviewer"
|
681 |
msgid "Notes on the time"
|
682 |
msgstr "Nota al revisor"
|
683 |
|
684 |
+
#: app/features/events.php:605 app/features/fes/form.php:330
|
685 |
#, fuzzy
|
686 |
#| msgid ""
|
687 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
693 |
"Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
|
694 |
"horaria, etc en este campo."
|
695 |
|
696 |
+
#: app/features/events.php:607 app/features/events.php:776
|
697 |
+
#: app/features/events.php:1129 app/features/events.php:1278
|
698 |
+
#: app/features/events.php:1415 app/features/events.php:1530
|
699 |
+
#: app/features/events.php:1765 app/features/events.php:1780
|
700 |
+
#: app/features/events.php:1957 app/features/events.php:1970
|
701 |
+
#: app/features/events.php:2122 app/features/events.php:2158
|
702 |
+
#: app/features/events.php:2256 app/features/events.php:2271
|
703 |
+
#: app/features/events.php:2301 app/features/events.php:2314
|
704 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
705 |
+
#: app/features/locations.php:335 app/features/mec/booking.php:117
|
706 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
707 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
708 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
755 |
#: app/features/mec/notifications.php:950
|
756 |
#: app/features/mec/notifications.php:961
|
757 |
#: app/features/mec/notifications.php:1086
|
758 |
+
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:81
|
759 |
+
#: app/features/mec/settings.php:100 app/features/mec/settings.php:147
|
760 |
+
#: app/features/mec/settings.php:182 app/features/mec/settings.php:203
|
761 |
+
#: app/features/mec/settings.php:248 app/features/mec/settings.php:291
|
762 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
763 |
+
#: app/features/mec/settings.php:462 app/features/mec/settings.php:479
|
764 |
+
#: app/features/mec/settings.php:498 app/features/mec/settings.php:512
|
765 |
+
#: app/features/mec/settings.php:540 app/features/mec/settings.php:631
|
766 |
+
#: app/features/mec/settings.php:956 app/features/mec/settings.php:972
|
767 |
+
#: app/features/mec/settings.php:1110 app/features/mec/settings.php:1123
|
768 |
+
#: app/features/mec/settings.php:1139 app/features/mec/single.php:46
|
769 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
770 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
771 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
779 |
msgid "Read More"
|
780 |
msgstr "Leer más"
|
781 |
|
782 |
+
#: app/features/events.php:617 app/features/fes/form.php:337
|
783 |
#, fuzzy
|
784 |
#| msgid "Timezone: %s"
|
785 |
msgid "Timezone"
|
786 |
msgstr "Zona horaria: %s"
|
787 |
|
788 |
+
#: app/features/events.php:622 app/features/events.php:635
|
789 |
+
#: app/features/events.php:1606 app/features/events.php:1616
|
790 |
+
#: app/features/events.php:1639 app/features/events.php:2084
|
791 |
+
#: app/features/events.php:2216 app/features/events.php:2402
|
792 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
793 |
msgid "Inherit from global options"
|
794 |
msgstr "Heredar opciones globales"
|
795 |
|
796 |
+
#: app/features/events.php:631 app/features/events.php:634
|
797 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
798 |
#, fuzzy
|
799 |
#| msgid "Countdown View"
|
800 |
msgid "Countdown Method"
|
801 |
msgstr "Vista de cuenta regresiva"
|
802 |
|
803 |
+
#: app/features/events.php:636 app/features/fes/form.php:356
|
804 |
#, fuzzy
|
805 |
#| msgid "On Event Start"
|
806 |
msgid "Count to Event Start"
|
807 |
msgstr "En el inicio del evento"
|
808 |
|
809 |
+
#: app/features/events.php:637 app/features/fes/form.php:357
|
810 |
#, fuzzy
|
811 |
#| msgid "On Event End"
|
812 |
msgid "Count to Event End"
|
813 |
msgstr "El fin del evento"
|
814 |
|
815 |
+
#: app/features/events.php:645
|
816 |
#, fuzzy
|
817 |
#| msgid "Repeat"
|
818 |
msgid "Repeating"
|
819 |
msgstr "Repetir"
|
820 |
|
821 |
+
#: app/features/events.php:654
|
822 |
#, fuzzy
|
823 |
#| msgid "Event Repeating"
|
824 |
msgid "Event Repeating (Recurring events)"
|
825 |
msgstr "Repetir el evento"
|
826 |
|
827 |
+
#: app/features/events.php:658 app/features/fes/form.php:370
|
828 |
msgid "Repeats"
|
829 |
msgstr "Repeticiones"
|
830 |
|
831 |
+
#: app/features/events.php:666 app/features/fes/form.php:372
|
832 |
+
#: app/features/mec.php:1409 app/skins/default_full_calendar/tpl.php:77
|
833 |
#: app/skins/full_calendar/tpl.php:124
|
834 |
msgid "Daily"
|
835 |
msgstr "Diariamente"
|
836 |
|
837 |
+
#: app/features/events.php:673 app/features/fes/form.php:373
|
838 |
msgid "Every Weekday"
|
839 |
msgstr "Cada día de la semana"
|
840 |
|
841 |
+
#: app/features/events.php:680 app/features/fes/form.php:374
|
842 |
msgid "Every Weekend"
|
843 |
msgstr "Cada fin de semana"
|
844 |
|
845 |
+
#: app/features/events.php:687 app/features/fes/form.php:375
|
846 |
msgid "Certain Weekdays"
|
847 |
msgstr "Ciertos días de la semana"
|
848 |
|
849 |
+
#: app/features/events.php:694 app/features/fes/form.php:376
|
850 |
#: app/skins/default_full_calendar/tpl.php:76
|
851 |
#: app/skins/full_calendar/tpl.php:123
|
852 |
msgid "Weekly"
|
853 |
msgstr "Semanal"
|
854 |
|
855 |
+
#: app/features/events.php:701 app/features/fes/form.php:377
|
856 |
+
#: app/features/mec.php:1410 app/skins/default_full_calendar/tpl.php:75
|
857 |
#: app/skins/full_calendar/tpl.php:122
|
858 |
msgid "Monthly"
|
859 |
msgstr "Mensual"
|
860 |
|
861 |
+
#: app/features/events.php:708 app/features/fes/form.php:378
|
862 |
+
#: app/features/mec.php:1411 app/skins/default_full_calendar/tpl.php:74
|
863 |
#: app/skins/full_calendar/tpl.php:121
|
864 |
msgid "Yearly"
|
865 |
msgstr "Anual"
|
866 |
|
867 |
+
#: app/features/events.php:715 app/features/fes/form.php:379
|
868 |
msgid "Custom Days"
|
869 |
msgstr "Días personalizados"
|
870 |
|
871 |
+
#: app/features/events.php:722 app/features/fes/form.php:380
|
872 |
#, fuzzy
|
873 |
#| msgid "Advanced Method"
|
874 |
msgid "Advanced"
|
875 |
msgstr "Método avanzado"
|
876 |
|
877 |
+
#: app/features/events.php:727 app/features/fes/form.php:384
|
878 |
msgid "Repeat Interval"
|
879 |
msgstr "Intervalo de repetición"
|
880 |
|
881 |
+
#: app/features/events.php:729 app/features/fes/form.php:385
|
882 |
msgid "Repeat interval"
|
883 |
msgstr "Intervalo de repetición"
|
884 |
|
885 |
+
#: app/features/events.php:733 app/features/fes/form.php:388
|
886 |
msgid "Week Days"
|
887 |
msgstr "Días de semana"
|
888 |
|
889 |
+
#: app/features/events.php:750
|
890 |
#, fuzzy
|
891 |
#| msgid "Pro version of Modern Events Calendar"
|
892 |
msgid ""
|
894 |
"Calendar."
|
895 |
msgstr "Versión Pro de Modern Events Calendar"
|
896 |
|
897 |
+
#: app/features/events.php:756 app/features/events.php:1848
|
898 |
+
#: app/features/events.php:1876 app/features/events.php:2026
|
899 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
900 |
#: app/features/ix/import_g_calendar.php:51
|
901 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
902 |
+
#: app/libraries/skins.php:1142
|
903 |
msgid "Start"
|
904 |
msgstr "Inicio"
|
905 |
|
906 |
+
#: app/features/events.php:769 app/features/events.php:1272
|
907 |
+
#: app/features/events.php:1832 app/features/events.php:2015
|
908 |
+
#: app/features/events.php:2095 app/features/events.php:2228
|
909 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
910 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
911 |
#: app/libraries/hourlyschedule.php:119
|
912 |
msgid "Add"
|
913 |
msgstr "Añadir"
|
914 |
|
915 |
+
#: app/features/events.php:772 app/features/fes/form.php:435
|
916 |
#, fuzzy
|
917 |
#| msgid "Custom Days"
|
918 |
msgid "Custom Days Repeating"
|
919 |
msgstr "Días personalizados"
|
920 |
|
921 |
+
#: app/features/events.php:775 app/features/fes/form.php:438
|
922 |
msgid ""
|
923 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
924 |
"start and end dates should be the same, If you have a multiple day event, "
|
925 |
"the start and end dates must be commensurate with the initial date."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: app/features/events.php:786 app/features/events.php:1852
|
929 |
+
#: app/features/events.php:1880 app/features/events.php:2030
|
930 |
+
#: app/features/fes/form.php:417 app/libraries/skins.php:1145
|
931 |
msgid "End"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: app/features/events.php:863 app/features/fes/form.php:511
|
935 |
#, fuzzy
|
936 |
#| msgid "Ticket name"
|
937 |
msgid "First"
|
938 |
msgstr "Nombre de la entrada"
|
939 |
|
940 |
+
#: app/features/events.php:905 app/features/fes/form.php:553
|
941 |
#, fuzzy
|
942 |
#| msgid "second"
|
943 |
msgid "Second"
|
944 |
msgstr "segundo"
|
945 |
|
946 |
+
#: app/features/events.php:947 app/features/fes/form.php:595
|
947 |
#, fuzzy
|
948 |
#| msgid "Third Party"
|
949 |
msgid "Third"
|
950 |
msgstr "Terceros"
|
951 |
|
952 |
+
#: app/features/events.php:989 app/features/fes/form.php:637
|
953 |
msgid "Fourth"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: app/features/events.php:1031 app/features/fes/form.php:679
|
957 |
#, fuzzy
|
958 |
#| msgid "Last Year"
|
959 |
msgid "Last"
|
960 |
msgstr "Año pasado"
|
961 |
|
962 |
+
#: app/features/events.php:1078 app/features/fes/form.php:725
|
963 |
msgid "Ends Repeat"
|
964 |
msgstr "Finaliza la repetición"
|
965 |
|
966 |
+
#: app/features/events.php:1090 app/features/fes/form.php:729
|
967 |
msgid "Never"
|
968 |
msgstr "Nunca"
|
969 |
|
970 |
+
#: app/features/events.php:1102 app/features/fes/form.php:734
|
971 |
msgid "On"
|
972 |
msgstr "On"
|
973 |
|
974 |
+
#: app/features/events.php:1118 app/features/fes/form.php:741
|
975 |
#: app/features/mec/booking.php:154
|
976 |
msgid "After"
|
977 |
msgstr "Después"
|
978 |
|
979 |
+
#: app/features/events.php:1122 app/features/events.php:1126
|
980 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
981 |
msgid "Occurrences times"
|
982 |
msgstr "Ocurrencias del evento"
|
983 |
|
984 |
+
#: app/features/events.php:1127
|
985 |
#, fuzzy
|
986 |
#| msgid ""
|
987 |
#| "The event will finish after certain repeats. For example if you set it to "
|
993 |
"El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
|
994 |
"estableces en 10, el evento terminará después de 10 repeticiones."
|
995 |
|
996 |
+
#: app/features/events.php:1143 app/features/fes/form.php:760
|
997 |
#, fuzzy
|
998 |
#| msgid "Next Occurrence of Other Events"
|
999 |
msgid "Show only one occurrence of this event"
|
1000 |
msgstr "Próxima aparición de otros eventos"
|
1001 |
|
1002 |
+
#: app/features/events.php:1162 app/features/events.php:3662
|
1003 |
+
#: app/features/fes/form.php:833 app/features/ix.php:3992
|
1004 |
+
#: app/features/ix.php:4034 app/features/mec/settings.php:770
|
1005 |
+
#: app/libraries/main.php:6522 app/libraries/main.php:6571
|
1006 |
#: app/widgets/single.php:105
|
1007 |
msgid "Event Cost"
|
1008 |
msgstr "Coste del evento"
|
1009 |
|
1010 |
+
#: app/features/events.php:1259
|
1011 |
#, fuzzy
|
1012 |
#| msgid "Exceptional Days"
|
1013 |
msgid "Exceptional Days (Exclude Dates)"
|
1014 |
msgstr "Días excepcionales"
|
1015 |
|
1016 |
+
#: app/features/events.php:1265 app/features/events.php:1275
|
1017 |
msgid "Exclude certain days"
|
1018 |
msgstr "Excluir ciertos días"
|
1019 |
|
1020 |
+
#: app/features/events.php:1270 app/features/events.php:2448
|
1021 |
+
#: app/features/events.php:2537 app/features/fes.php:243
|
1022 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
1023 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
1024 |
+
#: app/features/wc.php:83 app/libraries/main.php:3511
|
1025 |
#: app/modules/booking/steps/tickets.php:106
|
1026 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
1027 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
1029 |
msgid "Date"
|
1030 |
msgstr "Fecha"
|
1031 |
|
1032 |
+
#: app/features/events.php:1276
|
1033 |
msgid ""
|
1034 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
1035 |
"exclude only single day occurrences and you cannot exclude one day from "
|
1036 |
"multiple day occurrences."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: app/features/events.php:1334 app/libraries/render.php:566
|
1040 |
msgid "Day 1"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: app/features/events.php:1378 app/features/fes/form.php:810
|
1044 |
+
#: app/features/mec/settings.php:764
|
1045 |
msgid "Event Links"
|
1046 |
msgstr "Enlaces de eventos"
|
1047 |
|
1048 |
+
#: app/features/events.php:1381 app/features/events.php:1389
|
1049 |
+
#: app/features/fes/form.php:812 app/features/mec/settings.php:986
|
1050 |
+
#: app/libraries/main.php:6520 app/libraries/main.php:6569
|
1051 |
msgid "Event Link"
|
1052 |
msgstr "Enlace del evento"
|
1053 |
|
1054 |
+
#: app/features/events.php:1384 app/features/events.php:1402
|
1055 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
1056 |
msgid "eg. http://yoursite.com/your-event"
|
1057 |
msgstr "ej. http://yoursite.com/your-event"
|
1058 |
|
1059 |
+
#: app/features/events.php:1390
|
1060 |
#, fuzzy
|
1061 |
#| msgid ""
|
1062 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
1069 |
"Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
|
1070 |
"defecto. Inserta todo el enlace incluyendo http(s)://"
|
1071 |
|
1072 |
+
#: app/features/events.php:1392
|
1073 |
msgid "URL Shortener"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: app/features/events.php:1399 app/features/events.php:1412
|
1077 |
+
#: app/features/fes/form.php:817 app/libraries/main.php:6521
|
1078 |
+
#: app/libraries/main.php:6570 app/skins/single.php:1126
|
1079 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
1080 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
1081 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
1082 |
msgid "More Info"
|
1083 |
msgstr "Más Información"
|
1084 |
|
1085 |
+
#: app/features/events.php:1405 app/features/fes/form.php:819
|
1086 |
msgid "More Information"
|
1087 |
msgstr "Más Información"
|
1088 |
|
1089 |
+
#: app/features/events.php:1407 app/features/fes/form.php:821
|
1090 |
+
#: app/features/mec.php:1008 app/features/popup/shortcode.php:477
|
1091 |
msgid "Current Window"
|
1092 |
msgstr "Ventana actual"
|
1093 |
|
1094 |
+
#: app/features/events.php:1408 app/features/fes/form.php:822
|
1095 |
+
#: app/features/mec.php:1009 app/features/popup/shortcode.php:481
|
1096 |
msgid "New Window"
|
1097 |
msgstr "Nueva ventana"
|
1098 |
|
1099 |
+
#: app/features/events.php:1413 app/features/fes/form.php:824
|
1100 |
msgid ""
|
1101 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1102 |
"Insert full link including http(s)://"
|
1104 |
"Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
|
1105 |
"opcional. Inserta todo el enlace incluyendo http(s)://"
|
1106 |
|
1107 |
+
#: app/features/events.php:1436 app/features/mec/settings.php:832
|
1108 |
msgid "Booking Options"
|
1109 |
msgstr "Opciones de reserva"
|
1110 |
|
1111 |
+
#: app/features/events.php:1437 app/features/events.php:1628
|
1112 |
+
#: app/features/mec/settings.php:869
|
1113 |
#, fuzzy
|
1114 |
#| msgid "Total booking limits"
|
1115 |
msgid "Total User Booking Limits"
|
1116 |
msgstr "Límite total de reservas"
|
1117 |
|
1118 |
+
#: app/features/events.php:1438 app/features/events.php:1684
|
1119 |
+
#: app/libraries/book.php:63 app/libraries/main.php:6525
|
1120 |
#: app/modules/booking/steps/tickets.php:137
|
1121 |
#: app/modules/booking/steps/tickets.php:143
|
1122 |
msgid "Tickets"
|
1123 |
msgstr "Tickets"
|
1124 |
|
1125 |
+
#: app/features/events.php:1440 app/features/events.php:2072
|
1126 |
msgid "Fees"
|
1127 |
msgstr "Tasas"
|
1128 |
|
1129 |
+
#: app/features/events.php:1443 app/features/events.php:2204
|
1130 |
+
#: app/features/mec/settings.php:894
|
1131 |
msgid "Ticket Variations / Options"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: app/features/events.php:1447 app/features/mec/booking.php:904
|
1135 |
#: app/features/mec/support-page.php:118
|
1136 |
#, fuzzy
|
1137 |
#| msgid "Organizer Tel"
|
1138 |
msgid "Organizer Payment"
|
1139 |
msgstr "Teléfono del Organizador"
|
1140 |
|
1141 |
+
#: app/features/events.php:1512 app/features/events.php:1526
|
1142 |
#, fuzzy
|
1143 |
#| msgid "Total booking limits"
|
1144 |
msgid "Total booking limit"
|
1145 |
msgstr "Límite total de reservas"
|
1146 |
|
1147 |
+
#: app/features/events.php:1523 app/features/events.php:1801
|
1148 |
+
#: app/features/events.php:1984 app/modules/booking/default.php:98
|
1149 |
#: app/modules/booking/steps/tickets.php:137
|
1150 |
#: app/modules/booking/steps/tickets.php:143
|
1151 |
#: app/skins/available_spot/tpl.php:140
|
1152 |
msgid "Unlimited"
|
1153 |
msgstr "Ilimitado"
|
1154 |
|
1155 |
+
#: app/features/events.php:1529
|
1156 |
msgid ""
|
1157 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1158 |
"limitation number."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: app/features/events.php:1531
|
1162 |
msgid "Read About A Booking System"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: app/features/events.php:1539
|
1166 |
msgid "100"
|
1167 |
msgstr "100"
|
1168 |
|
1169 |
+
#: app/features/events.php:1544
|
1170 |
#, fuzzy
|
1171 |
#| msgid "Discount"
|
1172 |
msgid "Discount per user roles"
|
1173 |
msgstr "Descuento"
|
1174 |
|
1175 |
+
#: app/features/events.php:1550
|
1176 |
msgid "5"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: app/features/events.php:1556 app/features/events.php:1570
|
1180 |
+
#: app/features/mec/settings.php:851
|
1181 |
#, fuzzy
|
1182 |
#| msgid "Next Occurrence"
|
1183 |
msgid "Book All Occurrences"
|
1184 |
msgstr "Siguiente repetición"
|
1185 |
|
1186 |
+
#: app/features/events.php:1567
|
1187 |
msgid "Sell all occurrences by one booking"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: app/features/events.php:1573
|
1191 |
msgid ""
|
1192 |
"If you have a series of events and you want to sell all of them at once, "
|
1193 |
"this option is for you! For example a weekly yoga course or something "
|
1194 |
"similar."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: app/features/events.php:1584 app/features/mec/booking.php:129
|
1198 |
+
#: app/features/mec/settings.php:857
|
1199 |
#, fuzzy
|
1200 |
#| msgid "General Options"
|
1201 |
msgid "Interval Options"
|
1202 |
msgstr "Opciones generales"
|
1203 |
|
1204 |
+
#: app/features/events.php:1586 app/features/events.php:1591
|
1205 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1206 |
#, fuzzy
|
1207 |
#| msgid "Booking Form"
|
1208 |
msgid "Show Booking Form Interval"
|
1209 |
msgstr "Formulario de Reservas"
|
1210 |
|
1211 |
+
#: app/features/events.php:1588 app/features/mec/booking.php:133
|
1212 |
msgid "Minutes (e.g 5)"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: app/features/events.php:1592 app/features/mec/booking.php:137
|
1216 |
msgid ""
|
1217 |
"You can show booking form only at certain times before event start. If you "
|
1218 |
"set this option to 30 then booking form will open only 30 minutes before "
|
1219 |
"starting the event! One day is 1440 minutes."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: app/features/events.php:1601 app/features/mec/settings.php:863
|
1223 |
msgid "Automatic Approval"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: app/features/events.php:1603 app/features/notifications.php:160
|
1227 |
#, fuzzy
|
1228 |
#| msgid "Email verification"
|
1229 |
msgid "Email Verification"
|
1230 |
msgstr "Verificación por email"
|
1231 |
|
1232 |
+
#: app/features/events.php:1607 app/features/events.php:1617
|
1233 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1234 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1235 |
#: app/features/mec/booking.php:868
|
1241 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1242 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1243 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1244 |
+
#: app/features/mec/meta_boxes/search_form.php:91
|
1245 |
+
#: app/features/mec/meta_boxes/search_form.php:104
|
1246 |
+
#: app/features/mec/meta_boxes/search_form.php:111
|
1247 |
+
#: app/features/mec/meta_boxes/search_form.php:119
|
1248 |
+
#: app/features/mec/meta_boxes/search_form.php:126
|
1249 |
+
#: app/features/mec/meta_boxes/search_form.php:133
|
1250 |
+
#: app/features/mec/meta_boxes/search_form.php:140
|
1251 |
+
#: app/features/mec/meta_boxes/search_form.php:147
|
1252 |
+
#: app/features/mec/meta_boxes/search_form.php:154
|
1253 |
+
#: app/features/mec/meta_boxes/search_form.php:162
|
1254 |
+
#: app/features/mec/meta_boxes/search_form.php:175
|
1255 |
+
#: app/features/mec/meta_boxes/search_form.php:182
|
1256 |
+
#: app/features/mec/meta_boxes/search_form.php:190
|
1257 |
+
#: app/features/mec/meta_boxes/search_form.php:197
|
1258 |
+
#: app/features/mec/meta_boxes/search_form.php:204
|
1259 |
+
#: app/features/mec/meta_boxes/search_form.php:211
|
1260 |
+
#: app/features/mec/meta_boxes/search_form.php:218
|
1261 |
+
#: app/features/mec/meta_boxes/search_form.php:225
|
1262 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
1263 |
+
#: app/features/mec/meta_boxes/search_form.php:246
|
1264 |
+
#: app/features/mec/meta_boxes/search_form.php:253
|
1265 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
1266 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
1267 |
+
#: app/features/mec/meta_boxes/search_form.php:275
|
1268 |
+
#: app/features/mec/meta_boxes/search_form.php:282
|
1269 |
+
#: app/features/mec/meta_boxes/search_form.php:289
|
1270 |
+
#: app/features/mec/meta_boxes/search_form.php:296
|
1271 |
+
#: app/features/mec/meta_boxes/search_form.php:303
|
1272 |
+
#: app/features/mec/meta_boxes/search_form.php:316
|
1273 |
+
#: app/features/mec/meta_boxes/search_form.php:323
|
1274 |
+
#: app/features/mec/meta_boxes/search_form.php:331
|
1275 |
+
#: app/features/mec/meta_boxes/search_form.php:338
|
1276 |
+
#: app/features/mec/meta_boxes/search_form.php:345
|
1277 |
+
#: app/features/mec/meta_boxes/search_form.php:352
|
1278 |
+
#: app/features/mec/meta_boxes/search_form.php:359
|
1279 |
+
#: app/features/mec/meta_boxes/search_form.php:366
|
1280 |
+
#: app/features/mec/meta_boxes/search_form.php:373
|
1281 |
+
#: app/features/mec/meta_boxes/search_form.php:386
|
1282 |
+
#: app/features/mec/meta_boxes/search_form.php:393
|
1283 |
+
#: app/features/mec/meta_boxes/search_form.php:401
|
1284 |
+
#: app/features/mec/meta_boxes/search_form.php:408
|
1285 |
+
#: app/features/mec/meta_boxes/search_form.php:415
|
1286 |
+
#: app/features/mec/meta_boxes/search_form.php:422
|
1287 |
+
#: app/features/mec/meta_boxes/search_form.php:429
|
1288 |
+
#: app/features/mec/meta_boxes/search_form.php:436
|
1289 |
+
#: app/features/mec/meta_boxes/search_form.php:443
|
1290 |
+
#: app/features/mec/meta_boxes/search_form.php:456
|
1291 |
+
#: app/features/mec/meta_boxes/search_form.php:463
|
1292 |
+
#: app/features/mec/meta_boxes/search_form.php:471
|
1293 |
+
#: app/features/mec/meta_boxes/search_form.php:478
|
1294 |
+
#: app/features/mec/meta_boxes/search_form.php:485
|
1295 |
+
#: app/features/mec/meta_boxes/search_form.php:492
|
1296 |
+
#: app/features/mec/meta_boxes/search_form.php:499
|
1297 |
+
#: app/features/mec/meta_boxes/search_form.php:506
|
1298 |
+
#: app/features/mec/meta_boxes/search_form.php:519
|
1299 |
+
#: app/features/mec/meta_boxes/search_form.php:526
|
1300 |
+
#: app/features/mec/meta_boxes/search_form.php:534
|
1301 |
+
#: app/features/mec/meta_boxes/search_form.php:541
|
1302 |
+
#: app/features/mec/meta_boxes/search_form.php:548
|
1303 |
+
#: app/features/mec/meta_boxes/search_form.php:555
|
1304 |
+
#: app/features/mec/meta_boxes/search_form.php:562
|
1305 |
+
#: app/features/mec/meta_boxes/search_form.php:569
|
1306 |
+
#: app/features/mec/meta_boxes/search_form.php:576
|
1307 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1308 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
1309 |
+
#: app/features/mec/meta_boxes/search_form.php:604
|
1310 |
+
#: app/features/mec/meta_boxes/search_form.php:611
|
1311 |
+
#: app/features/mec/meta_boxes/search_form.php:618
|
1312 |
+
#: app/features/mec/meta_boxes/search_form.php:625
|
1313 |
+
#: app/features/mec/meta_boxes/search_form.php:632
|
1314 |
+
#: app/features/mec/meta_boxes/search_form.php:639
|
1315 |
+
#: app/features/mec/meta_boxes/search_form.php:646
|
1316 |
+
#: app/features/mec/meta_boxes/search_form.php:659
|
1317 |
+
#: app/features/mec/meta_boxes/search_form.php:666
|
1318 |
+
#: app/features/mec/meta_boxes/search_form.php:674
|
1319 |
+
#: app/features/mec/meta_boxes/search_form.php:681
|
1320 |
+
#: app/features/mec/meta_boxes/search_form.php:688
|
1321 |
+
#: app/features/mec/meta_boxes/search_form.php:695
|
1322 |
+
#: app/features/mec/meta_boxes/search_form.php:702
|
1323 |
+
#: app/features/mec/meta_boxes/search_form.php:709
|
1324 |
+
#: app/features/mec/meta_boxes/search_form.php:716
|
1325 |
+
#: app/features/mec/meta_boxes/search_form.php:765
|
1326 |
+
#: app/features/mec/meta_boxes/search_form.php:772
|
1327 |
+
#: app/features/mec/meta_boxes/search_form.php:780
|
1328 |
+
#: app/features/mec/meta_boxes/search_form.php:787
|
1329 |
+
#: app/features/mec/meta_boxes/search_form.php:794
|
1330 |
+
#: app/features/mec/meta_boxes/search_form.php:801
|
1331 |
+
#: app/features/mec/meta_boxes/search_form.php:808
|
1332 |
+
#: app/features/mec/meta_boxes/search_form.php:815
|
1333 |
+
#: app/features/mec/meta_boxes/search_form.php:822
|
1334 |
+
#: app/features/mec/modules.php:124 app/features/mec/settings.php:112
|
1335 |
+
#: app/features/mec/settings.php:474
|
1336 |
msgid "Disabled"
|
1337 |
msgstr "Desactivado"
|
1338 |
|
1339 |
+
#: app/features/events.php:1608 app/features/events.php:1618
|
1340 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1341 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1342 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1343 |
+
#: app/features/mec/settings.php:113
|
1344 |
msgid "Enabled"
|
1345 |
msgstr "Habilitado"
|
1346 |
|
1347 |
+
#: app/features/events.php:1613 app/features/mec/booking.php:376
|
1348 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1349 |
+
#: app/libraries/main.php:629
|
1350 |
msgid "Booking Confirmation"
|
1351 |
msgstr "Confirmación de reserva"
|
1352 |
|
1353 |
+
#: app/features/events.php:1642
|
|
|
|
|
|
|
|
|
|
|
|
|
1354 |
msgid "12"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: app/features/events.php:1649
|
1358 |
#, fuzzy
|
1359 |
#| msgid "Payment Gateways"
|
1360 |
msgid "Disabled Gateways"
|
1361 |
msgstr "Pasarelas de pago"
|
1362 |
|
1363 |
+
#: app/features/events.php:1650
|
1364 |
msgid ""
|
1365 |
"You can disable some of the following payment gateways by checking them "
|
1366 |
"otherwise they will be enabled."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: app/features/events.php:1687
|
1370 |
msgid ""
|
1371 |
"You're translating an event so MEC will use the original event for tickets "
|
1372 |
"and booking. You can only translate the ticket name and description. Please "
|
1377 |
"entrada. Por favor define las entradas exactas que podrías definir en un "
|
1378 |
"evento original aquí."
|
1379 |
|
1380 |
+
#: app/features/events.php:1692
|
1381 |
#, fuzzy
|
1382 |
#| msgid "Ticket"
|
1383 |
msgid "Add Ticket"
|
1384 |
msgstr "Ticket"
|
1385 |
|
1386 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1387 |
#, fuzzy
|
1388 |
#| msgid "Ticket"
|
1389 |
msgid "Ticket ID"
|
1390 |
msgstr "Ticket"
|
1391 |
|
1392 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1393 |
+
#: app/features/events.php:3662 app/features/fes.php:243
|
1394 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1395 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1396 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1397 |
msgid "ID"
|
1398 |
msgstr "ID"
|
1399 |
|
1400 |
+
#: app/features/events.php:1707 app/features/events.php:1903
|
1401 |
msgid "Ticket Name"
|
1402 |
msgstr "Nombre del ticket"
|
1403 |
|
1404 |
+
#: app/features/events.php:1712 app/features/events.php:1907
|
1405 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1406 |
+
#: app/features/ix.php:4034
|
1407 |
msgid "Start Time"
|
1408 |
msgstr "Hora de Inicio"
|
1409 |
|
1410 |
+
#: app/features/events.php:1725 app/features/events.php:1920
|
1411 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1412 |
+
#: app/features/ix.php:4034
|
1413 |
msgid "End Time"
|
1414 |
msgstr "Hora de finalización"
|
1415 |
|
1416 |
+
#: app/features/events.php:1741 app/features/events.php:1935
|
1417 |
+
#: app/features/events.php:3662 app/libraries/hourlyschedule.php:65
|
1418 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1419 |
msgid "Description"
|
1420 |
msgstr "Descripción"
|
1421 |
|
1422 |
+
#: app/features/events.php:1746 app/features/events.php:1749
|
1423 |
+
#: app/features/events.php:1939 app/features/events.php:1942
|
1424 |
#, fuzzy
|
1425 |
#| msgid "Description"
|
1426 |
msgid "Private Description"
|
1427 |
msgstr "Descripción"
|
1428 |
|
1429 |
+
#: app/features/events.php:1750 app/features/events.php:1943
|
1430 |
#, php-format
|
1431 |
msgid ""
|
1432 |
"You can show it on the email notifications by placing "
|
1433 |
"%%ticket_private_description%% into the email template."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: app/features/events.php:1758 app/features/events.php:1762
|
1437 |
+
#: app/features/events.php:1856 app/features/events.php:1883
|
1438 |
+
#: app/features/events.php:1951 app/features/events.php:1954
|
1439 |
+
#: app/features/events.php:2032 app/features/events.php:2249
|
1440 |
+
#: app/features/events.php:2253 app/features/events.php:2295
|
1441 |
+
#: app/features/events.php:2298 app/features/mec/booking.php:547
|
1442 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1443 |
#: app/features/mec/booking.php:582
|
1444 |
msgid "Price"
|
1445 |
msgstr "Precio"
|
1446 |
|
1447 |
+
#: app/features/events.php:1763 app/features/events.php:1955
|
1448 |
#, fuzzy
|
1449 |
#| msgid "Insert 0 for free ticket. Only numbers please."
|
1450 |
msgid ""
|
1452 |
"any symbols or characters."
|
1453 |
msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
|
1454 |
|
1455 |
+
#: app/features/events.php:1772 app/features/events.php:1777
|
1456 |
+
#: app/features/events.php:1964 app/features/events.php:1967
|
1457 |
msgid "Price Label"
|
1458 |
msgstr "Etiqueta de precio"
|
1459 |
|
1460 |
+
#: app/features/events.php:1778 app/features/events.php:1968
|
1461 |
msgid "For showing on website. e.g. $15"
|
1462 |
msgstr "Para mostrar en la web. Ej. 15€"
|
1463 |
|
1464 |
+
#: app/features/events.php:1788 app/features/events.php:1978
|
1465 |
msgid "Available Tickets"
|
1466 |
msgstr "Tickets disponibles"
|
1467 |
|
1468 |
+
#: app/features/events.php:1805 app/features/events.php:1988
|
1469 |
msgid "Minimum Ticket e.g. 3"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: app/features/events.php:1808 app/features/events.php:1991
|
1473 |
#, fuzzy
|
1474 |
#| msgid "Ticket"
|
1475 |
msgid "MinimumTicket"
|
1476 |
msgstr "Ticket"
|
1477 |
|
1478 |
+
#: app/features/events.php:1810 app/features/events.php:1993
|
1479 |
msgid "Set a number for the minimum ticket reservation possible"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: app/features/events.php:1818 app/features/events.php:2001
|
1483 |
msgid "e.g. 0"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: app/features/events.php:1820 app/features/events.php:2003
|
1487 |
#, fuzzy
|
1488 |
#| msgid "Days"
|
1489 |
msgid "Day"
|
1490 |
msgstr "Días"
|
1491 |
|
1492 |
+
#: app/features/events.php:1821 app/features/events.php:2004
|
1493 |
msgid "Hour"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: app/features/events.php:1823 app/features/events.php:2006
|
1497 |
#, php-format
|
1498 |
msgid "Stop selling ticket %s before event start."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: app/features/events.php:1830 app/features/events.php:2013
|
1502 |
msgid "Price per Date"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: app/features/events.php:1860 app/features/events.php:1886
|
1506 |
+
#: app/features/events.php:2034 app/features/labels.php:60
|
1507 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1508 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1509 |
+
#: app/features/mec/meta_boxes/search_form.php:138
|
1510 |
+
#: app/features/mec/meta_boxes/search_form.php:209
|
1511 |
+
#: app/features/mec/meta_boxes/search_form.php:280
|
1512 |
+
#: app/features/mec/meta_boxes/search_form.php:350
|
1513 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
1514 |
+
#: app/features/mec/meta_boxes/search_form.php:490
|
1515 |
+
#: app/features/mec/meta_boxes/search_form.php:553
|
1516 |
+
#: app/features/mec/meta_boxes/search_form.php:623
|
1517 |
+
#: app/features/mec/meta_boxes/search_form.php:693
|
1518 |
+
#: app/features/mec/meta_boxes/search_form.php:799
|
1519 |
+
#: app/features/mec/settings.php:989 app/features/mec/settings.php:1080
|
1520 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1521 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1522 |
msgid "Label"
|
1523 |
msgstr "Etiqueta"
|
1524 |
|
1525 |
+
#: app/features/events.php:1862 app/features/events.php:1888
|
1526 |
+
#: app/features/events.php:2036 app/features/events.php:2135
|
1527 |
+
#: app/features/events.php:2171 app/features/events.php:2278
|
1528 |
+
#: app/features/events.php:2320 app/features/mec/booking.php:486
|
1529 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1530 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1531 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1532 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1533 |
+
#: app/libraries/main.php:3346 app/libraries/main.php:3375
|
1534 |
+
#: app/libraries/main.php:3404 app/libraries/main.php:3433
|
1535 |
+
#: app/libraries/main.php:3462 app/libraries/main.php:3491
|
1536 |
+
#: app/libraries/main.php:3520 app/libraries/main.php:3549
|
1537 |
+
#: app/libraries/main.php:3578 app/libraries/main.php:3599
|
1538 |
+
#: app/libraries/main.php:3630 app/libraries/main.php:3676
|
1539 |
+
#: app/libraries/main.php:3722 app/libraries/main.php:3771
|
1540 |
+
#: app/libraries/main.php:3811
|
1541 |
msgid "Remove"
|
1542 |
msgstr "Eliminar"
|
1543 |
|
1544 |
+
#: app/features/events.php:2109 app/features/events.php:2147
|
1545 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1546 |
msgid "Fee Title"
|
1547 |
msgstr "Título de la cuota"
|
1548 |
|
1549 |
+
#: app/features/events.php:2115 app/features/events.php:2119
|
1550 |
+
#: app/features/events.php:2152 app/features/events.php:2155
|
1551 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1552 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1553 |
msgid "Amount"
|
1554 |
msgstr "Cantidad"
|
1555 |
|
1556 |
+
#: app/features/events.php:2120 app/features/events.php:2156
|
1557 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1558 |
msgid ""
|
1559 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1562 |
"Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
|
1563 |
"cantidad, si no será considerada como porcentaje"
|
1564 |
|
1565 |
+
#: app/features/events.php:2129 app/features/events.php:2165
|
1566 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1567 |
msgid "Percent"
|
1568 |
msgstr "Porcentaje"
|
1569 |
|
1570 |
+
#: app/features/events.php:2130 app/features/events.php:2166
|
1571 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1572 |
msgid "Amount (Per Ticket)"
|
1573 |
msgstr "Cantidad (Por ticket)"
|
1574 |
|
1575 |
+
#: app/features/events.php:2131 app/features/events.php:2167
|
1576 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1577 |
msgid "Amount (Per Booking)"
|
1578 |
msgstr "Cantidad (por reservas)"
|
1579 |
|
1580 |
+
#: app/features/events.php:2243 app/features/events.php:2290
|
1581 |
+
#: app/features/events.php:3470 app/features/events.php:3662
|
1582 |
+
#: app/features/fes/form.php:256 app/features/ix.php:3992
|
1583 |
+
#: app/features/ix.php:4034 app/features/mec/booking.php:543
|
1584 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1585 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1586 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
1588 |
msgid "Title"
|
1589 |
msgstr "Titulo"
|
1590 |
|
1591 |
+
#: app/features/events.php:2254 app/features/events.php:2299
|
1592 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1593 |
msgid "Option Price"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: app/features/events.php:2264 app/features/events.php:2268
|
1597 |
+
#: app/features/events.php:2308 app/features/events.php:2311
|
1598 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1599 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1600 |
msgid "Maximum Per Ticket"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: app/features/events.php:2269 app/features/events.php:2312
|
1604 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1605 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: app/features/events.php:2388
|
1609 |
#, fuzzy
|
1610 |
#| msgid ""
|
1611 |
#| "You're translating an event so MEC will use the original event for "
|
1622 |
"entrada. Por favor define las entradas exactas que podrías definir en un "
|
1623 |
"evento original aquí."
|
1624 |
|
1625 |
+
#: app/features/events.php:2414 app/features/mec/booking.php:609
|
1626 |
#, fuzzy
|
1627 |
#| msgid "Attendees Limit"
|
1628 |
msgid "Per Attendee Fields"
|
1629 |
msgstr "Límite de asistentes"
|
1630 |
|
1631 |
+
#: app/features/events.php:2444 app/features/mec/booking.php:642
|
1632 |
+
#: app/libraries/main.php:3366
|
1633 |
#, fuzzy
|
1634 |
#| msgid "Name"
|
1635 |
msgid "MEC Name"
|
1636 |
msgstr "Nombre"
|
1637 |
|
1638 |
+
#: app/features/events.php:2445 app/features/mec/booking.php:643
|
1639 |
+
#: app/libraries/main.php:3395
|
1640 |
#, fuzzy
|
1641 |
#| msgid "Email"
|
1642 |
msgid "MEC Email"
|
1643 |
msgstr "Correo electrónico"
|
1644 |
|
1645 |
+
#: app/features/events.php:2446 app/features/events.php:2535
|
1646 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1647 |
+
#: app/features/mec/single.php:190 app/libraries/main.php:3337
|
1648 |
msgid "Text"
|
1649 |
msgstr "Texto"
|
1650 |
|
1651 |
+
#: app/features/events.php:2449 app/features/events.php:2538
|
1652 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1653 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1654 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1655 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1656 |
+
#: app/libraries/main.php:3540
|
1657 |
msgid "Tel"
|
1658 |
msgstr "Tel"
|
1659 |
|
1660 |
+
#: app/features/events.php:2450 app/features/mec/booking.php:648
|
1661 |
+
#: app/libraries/main.php:3482
|
1662 |
msgid "File"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: app/features/events.php:2451 app/features/events.php:2539
|
1666 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1667 |
+
#: app/features/mec/single.php:195 app/libraries/main.php:3569
|
1668 |
msgid "Textarea"
|
1669 |
msgstr "Área de texto"
|
1670 |
|
1671 |
+
#: app/features/events.php:2452 app/features/events.php:2540
|
1672 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1673 |
+
#: app/features/mec/single.php:197 app/libraries/main.php:3621
|
1674 |
msgid "Checkboxes"
|
1675 |
msgstr "Checkboxes"
|
1676 |
|
1677 |
+
#: app/features/events.php:2453 app/features/events.php:2541
|
1678 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1679 |
+
#: app/features/mec/single.php:198 app/libraries/main.php:3667
|
1680 |
msgid "Radio Buttons"
|
1681 |
msgstr "Botón tipo radio"
|
1682 |
|
1683 |
+
#: app/features/events.php:2454 app/features/events.php:2542
|
1684 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1685 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1686 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1688 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1689 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1690 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1691 |
+
#: app/features/mec/meta_boxes/search_form.php:105
|
1692 |
+
#: app/features/mec/meta_boxes/search_form.php:112
|
1693 |
+
#: app/features/mec/meta_boxes/search_form.php:120
|
1694 |
+
#: app/features/mec/meta_boxes/search_form.php:127
|
1695 |
+
#: app/features/mec/meta_boxes/search_form.php:134
|
1696 |
+
#: app/features/mec/meta_boxes/search_form.php:141
|
1697 |
+
#: app/features/mec/meta_boxes/search_form.php:176
|
1698 |
+
#: app/features/mec/meta_boxes/search_form.php:183
|
1699 |
+
#: app/features/mec/meta_boxes/search_form.php:191
|
1700 |
+
#: app/features/mec/meta_boxes/search_form.php:198
|
1701 |
+
#: app/features/mec/meta_boxes/search_form.php:205
|
1702 |
+
#: app/features/mec/meta_boxes/search_form.php:212
|
1703 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
1704 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
1705 |
+
#: app/features/mec/meta_boxes/search_form.php:262
|
1706 |
+
#: app/features/mec/meta_boxes/search_form.php:269
|
1707 |
+
#: app/features/mec/meta_boxes/search_form.php:276
|
1708 |
+
#: app/features/mec/meta_boxes/search_form.php:283
|
1709 |
+
#: app/features/mec/meta_boxes/search_form.php:297
|
1710 |
+
#: app/features/mec/meta_boxes/search_form.php:317
|
1711 |
+
#: app/features/mec/meta_boxes/search_form.php:324
|
1712 |
+
#: app/features/mec/meta_boxes/search_form.php:332
|
1713 |
+
#: app/features/mec/meta_boxes/search_form.php:339
|
1714 |
+
#: app/features/mec/meta_boxes/search_form.php:346
|
1715 |
+
#: app/features/mec/meta_boxes/search_form.php:353
|
1716 |
+
#: app/features/mec/meta_boxes/search_form.php:367
|
1717 |
+
#: app/features/mec/meta_boxes/search_form.php:387
|
1718 |
+
#: app/features/mec/meta_boxes/search_form.php:394
|
1719 |
+
#: app/features/mec/meta_boxes/search_form.php:402
|
1720 |
+
#: app/features/mec/meta_boxes/search_form.php:409
|
1721 |
+
#: app/features/mec/meta_boxes/search_form.php:416
|
1722 |
+
#: app/features/mec/meta_boxes/search_form.php:423
|
1723 |
+
#: app/features/mec/meta_boxes/search_form.php:437
|
1724 |
+
#: app/features/mec/meta_boxes/search_form.php:457
|
1725 |
+
#: app/features/mec/meta_boxes/search_form.php:464
|
1726 |
+
#: app/features/mec/meta_boxes/search_form.php:472
|
1727 |
+
#: app/features/mec/meta_boxes/search_form.php:479
|
1728 |
+
#: app/features/mec/meta_boxes/search_form.php:486
|
1729 |
+
#: app/features/mec/meta_boxes/search_form.php:493
|
1730 |
+
#: app/features/mec/meta_boxes/search_form.php:520
|
1731 |
+
#: app/features/mec/meta_boxes/search_form.php:527
|
1732 |
+
#: app/features/mec/meta_boxes/search_form.php:535
|
1733 |
+
#: app/features/mec/meta_boxes/search_form.php:542
|
1734 |
+
#: app/features/mec/meta_boxes/search_form.php:549
|
1735 |
+
#: app/features/mec/meta_boxes/search_form.php:556
|
1736 |
+
#: app/features/mec/meta_boxes/search_form.php:570
|
1737 |
+
#: app/features/mec/meta_boxes/search_form.php:590
|
1738 |
+
#: app/features/mec/meta_boxes/search_form.php:597
|
1739 |
+
#: app/features/mec/meta_boxes/search_form.php:605
|
1740 |
+
#: app/features/mec/meta_boxes/search_form.php:612
|
1741 |
+
#: app/features/mec/meta_boxes/search_form.php:619
|
1742 |
+
#: app/features/mec/meta_boxes/search_form.php:626
|
1743 |
+
#: app/features/mec/meta_boxes/search_form.php:640
|
1744 |
+
#: app/features/mec/meta_boxes/search_form.php:660
|
1745 |
+
#: app/features/mec/meta_boxes/search_form.php:667
|
1746 |
+
#: app/features/mec/meta_boxes/search_form.php:675
|
1747 |
+
#: app/features/mec/meta_boxes/search_form.php:682
|
1748 |
+
#: app/features/mec/meta_boxes/search_form.php:689
|
1749 |
+
#: app/features/mec/meta_boxes/search_form.php:696
|
1750 |
+
#: app/features/mec/meta_boxes/search_form.php:710
|
1751 |
+
#: app/features/mec/meta_boxes/search_form.php:766
|
1752 |
+
#: app/features/mec/meta_boxes/search_form.php:773
|
1753 |
+
#: app/features/mec/meta_boxes/search_form.php:781
|
1754 |
+
#: app/features/mec/meta_boxes/search_form.php:788
|
1755 |
+
#: app/features/mec/meta_boxes/search_form.php:795
|
1756 |
+
#: app/features/mec/meta_boxes/search_form.php:802
|
1757 |
+
#: app/features/mec/meta_boxes/search_form.php:816
|
1758 |
+
#: app/features/mec/single.php:199 app/libraries/main.php:3713
|
|
|
|
|
|
|
1759 |
msgid "Dropdown"
|
1760 |
msgstr "Desplegable"
|
1761 |
|
1762 |
+
#: app/features/events.php:2455 app/features/events.php:2543
|
1763 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1764 |
+
#: app/libraries/main.php:3762
|
1765 |
msgid "Agreement"
|
1766 |
msgstr "Acuerdo"
|
1767 |
|
1768 |
+
#: app/features/events.php:2456 app/features/events.php:2544
|
1769 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1770 |
+
#: app/features/mec/single.php:196 app/libraries/main.php:3598
|
1771 |
msgid "Paragraph"
|
1772 |
msgstr "Párrafo"
|
1773 |
|
1774 |
+
#: app/features/events.php:2505 app/features/mec/booking.php:707
|
1775 |
#, fuzzy
|
1776 |
#| msgid "Required Field"
|
1777 |
msgid "Fixed Fields"
|
1778 |
msgstr "Campo obligatorio"
|
1779 |
|
1780 |
+
#: app/features/events.php:3372 app/features/events.php:3390
|
1781 |
+
#: app/features/events.php:3408 app/features/events.php:3426
|
1782 |
#, php-format
|
1783 |
msgid "Show all %s"
|
1784 |
msgstr "Mostrar todos %s"
|
1785 |
|
1786 |
+
#: app/features/events.php:3372
|
1787 |
msgid "labels"
|
1788 |
msgstr "etiquetas"
|
1789 |
|
1790 |
+
#: app/features/events.php:3390
|
1791 |
msgid "locations"
|
1792 |
msgstr "ubicaciones"
|
1793 |
|
1794 |
+
#: app/features/events.php:3408
|
1795 |
msgid "organizers"
|
1796 |
msgstr "organizadores"
|
1797 |
|
1798 |
+
#: app/features/events.php:3442
|
1799 |
#, fuzzy
|
1800 |
#| msgid "Attendees Limit"
|
1801 |
msgid "Attendees List"
|
1802 |
msgstr "Límite de asistentes"
|
1803 |
|
1804 |
+
#: app/features/events.php:3472 app/features/events.php:3662
|
1805 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1806 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1807 |
+
#: app/features/locations.php:323 app/features/locations.php:325
|
1808 |
+
#: app/features/locations.php:334
|
1809 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1810 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1811 |
+
#: app/features/mec/meta_boxes/search_form.php:109
|
1812 |
+
#: app/features/mec/meta_boxes/search_form.php:180
|
1813 |
+
#: app/features/mec/meta_boxes/search_form.php:251
|
1814 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
1815 |
+
#: app/features/mec/meta_boxes/search_form.php:391
|
1816 |
+
#: app/features/mec/meta_boxes/search_form.php:461
|
1817 |
+
#: app/features/mec/meta_boxes/search_form.php:524
|
1818 |
+
#: app/features/mec/meta_boxes/search_form.php:594
|
1819 |
+
#: app/features/mec/meta_boxes/search_form.php:664
|
1820 |
+
#: app/features/mec/meta_boxes/search_form.php:770
|
1821 |
+
#: app/features/mec/settings.php:1054 app/features/mec/single.php:339
|
1822 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1823 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1824 |
+
#: app/libraries/main.php:2688 app/libraries/main.php:6490
|
1825 |
+
#: app/libraries/main.php:6544 app/libraries/skins.php:964
|
1826 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1827 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1828 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1830 |
msgid "Location"
|
1831 |
msgstr "Localización"
|
1832 |
|
1833 |
+
#: app/features/events.php:3477
|
1834 |
msgid "Repeat"
|
1835 |
msgstr "Repetir"
|
1836 |
|
1837 |
+
#: app/features/events.php:3478
|
1838 |
msgid "Author"
|
1839 |
msgstr "Autor"
|
1840 |
|
1841 |
+
#: app/features/events.php:3599 app/features/events.php:3600
|
1842 |
#, fuzzy
|
1843 |
#| msgid "iCal Export"
|
1844 |
msgid "iCal / Outlook Export"
|
1845 |
msgstr "Exportar iCal"
|
1846 |
|
1847 |
+
#: app/features/events.php:3602 app/features/events.php:3603
|
1848 |
msgid "CSV Export"
|
1849 |
msgstr "Exportar CSV"
|
1850 |
|
1851 |
+
#: app/features/events.php:3605 app/features/events.php:3606
|
1852 |
msgid "MS Excel Export"
|
1853 |
msgstr "Exportar Excel"
|
1854 |
|
1855 |
+
#: app/features/events.php:3608 app/features/events.php:3609
|
1856 |
msgid "XML Export"
|
1857 |
msgstr "Exportación XML"
|
1858 |
|
1859 |
+
#: app/features/events.php:3611 app/features/events.php:3612
|
1860 |
msgid "JSON Export"
|
1861 |
msgstr "Exportación JSON"
|
1862 |
|
1863 |
+
#: app/features/events.php:3614 app/features/events.php:3615
|
1864 |
+
#: app/features/events.php:3771
|
1865 |
msgid "Duplicate"
|
1866 |
msgstr "Duplicar"
|
1867 |
|
1868 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1869 |
+
#: app/features/ix.php:4034
|
1870 |
msgid "Link"
|
1871 |
msgstr "Enlace"
|
1872 |
|
1873 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1874 |
+
#: app/features/ix.php:4034 app/features/locations.php:110
|
1875 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1876 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1877 |
+
#: app/features/mec/meta_boxes/search_form.php:145
|
1878 |
+
#: app/features/mec/meta_boxes/search_form.php:216
|
1879 |
+
#: app/features/mec/meta_boxes/search_form.php:287
|
1880 |
+
#: app/features/mec/meta_boxes/search_form.php:357
|
1881 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
1882 |
+
#: app/features/mec/meta_boxes/search_form.php:497
|
1883 |
+
#: app/features/mec/meta_boxes/search_form.php:560
|
1884 |
+
#: app/features/mec/meta_boxes/search_form.php:630
|
1885 |
+
#: app/features/mec/meta_boxes/search_form.php:700
|
1886 |
+
#: app/features/mec/meta_boxes/search_form.php:806
|
1887 |
msgid "Address"
|
1888 |
msgstr "Dirección"
|
1889 |
|
1890 |
+
#: app/features/events.php:3662
|
1891 |
#, php-format
|
1892 |
msgid "%s Tel"
|
1893 |
msgstr "%s Teléfono "
|
1894 |
|
1895 |
+
#: app/features/events.php:3662
|
1896 |
#, php-format
|
1897 |
msgid "%s Email"
|
1898 |
msgstr "%s Correo electrónico"
|
1899 |
|
1900 |
+
#: app/features/events.php:3662 app/features/fes/form.php:850
|
1901 |
+
#: app/features/mec/settings.php:776
|
1902 |
msgid "Featured Image"
|
1903 |
msgstr "Imagen destacada"
|
1904 |
|
1905 |
+
#: app/features/events.php:3991 app/features/fes.php:243
|
1906 |
+
#: app/features/profile/profile.php:183 app/libraries/main.php:2772
|
1907 |
+
#: app/libraries/main.php:6524
|
1908 |
msgid "Ticket"
|
1909 |
msgstr "Ticket"
|
1910 |
|
1911 |
+
#: app/features/events.php:3994 app/features/profile/profile.php:186
|
1912 |
msgid "Variations"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: app/features/events.php:4009 app/features/fes.php:317
|
1916 |
msgid "Unknown"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: app/features/events.php:4035
|
1920 |
msgid ""
|
1921 |
"If you want to send an email, first select your attendees and then click in "
|
1922 |
"the button below, please."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: app/features/events.php:4035 app/features/mec/report.php:58
|
1926 |
#, fuzzy
|
1927 |
#| msgid "Organizer Email"
|
1928 |
msgid "Send Email"
|
1929 |
msgstr "Correo electrónico del organizador"
|
1930 |
|
1931 |
+
#: app/features/events.php:4039
|
1932 |
#, fuzzy
|
1933 |
#| msgid "Attendees Form"
|
1934 |
msgid "No Attendees Found!"
|
1941 |
|
1942 |
#: app/features/fes.php:94 app/features/fes.php:175
|
1943 |
#: app/features/login/login.php:19 app/features/profile.php:74
|
1944 |
+
#: app/features/userevents.php:58
|
1945 |
msgid "Login"
|
1946 |
msgstr "Iniciar sesión"
|
1947 |
|
1948 |
#: app/features/fes.php:94 app/features/fes.php:175 app/features/profile.php:74
|
1949 |
+
#: app/features/userevents.php:58
|
1950 |
msgid "Register"
|
1951 |
msgstr "Registro"
|
1952 |
|
1975 |
msgid "Order Time"
|
1976 |
msgstr "Hora de finalización"
|
1977 |
|
1978 |
+
#: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2720
|
1979 |
+
#: app/libraries/main.php:2835
|
1980 |
msgid "Transaction ID"
|
1981 |
msgstr "ID Transacción"
|
1982 |
|
1986 |
msgid "Total Price"
|
1987 |
msgstr "%s Precio"
|
1988 |
|
1989 |
+
#: app/features/fes.php:243 app/libraries/main.php:2830
|
1990 |
#, fuzzy
|
1991 |
#| msgid "Popular Gateways"
|
1992 |
msgid "Gateway"
|
2076 |
msgid "Go back to events list"
|
2077 |
msgstr "Regrese a la lista de eventos."
|
2078 |
|
2079 |
+
#: app/features/fes/form.php:264 app/features/mec/settings.php:908
|
2080 |
+
#: app/features/mec/settings.php:984
|
2081 |
msgid "Excerpt"
|
2082 |
msgstr ""
|
2083 |
|
2179 |
#: app/features/fes/form.php:891 app/features/labels.php:61
|
2180 |
#: app/features/labels.php:221 app/features/mec.php:460
|
2181 |
#: app/features/mec/meta_boxes/filter.php:72
|
2182 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6487
|
2183 |
+
#: app/libraries/main.php:6541 app/skins/single.php:1156
|
2184 |
#: app/skins/single/default.php:173 app/skins/single/default.php:405
|
2185 |
#: app/skins/single/m1.php:76 app/skins/single/modern.php:252
|
2186 |
msgid "Labels"
|
2197 |
msgstr "Inserta las etiquetas que quieras, separadas por comas."
|
2198 |
|
2199 |
#: app/features/fes/form.php:959 app/features/mec.php:467
|
2200 |
+
#: app/features/mec/modules.php:51 app/features/mec/settings.php:818
|
2201 |
#: app/features/speakers.php:61 app/libraries/hourlyschedule.php:69
|
2202 |
#: app/libraries/hourlyschedule.php:90 app/libraries/hourlyschedule.php:135
|
2203 |
+
#: app/libraries/main.php:608 app/libraries/main.php:6493
|
2204 |
+
#: app/libraries/main.php:6547 app/modules/speakers/details.php:18
|
2205 |
msgid "Speakers"
|
2206 |
msgstr ""
|
2207 |
|
2213 |
msgid "Separate names with commas: Justin, Chris"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: app/features/fes/form.php:1003 app/modules/booking/steps/form.php:349
|
2217 |
msgid "Submit"
|
2218 |
msgstr "Enviar"
|
2219 |
|
2255 |
msgstr "MEC - Importar / Exportar"
|
2256 |
|
2257 |
#: app/features/ix.php:107 app/features/mec/support.php:73
|
2258 |
+
#: app/libraries/main.php:858
|
2259 |
msgid "Import / Export"
|
2260 |
msgstr "Import / Export"
|
2261 |
|
2277 |
"¡Ha ocurrido un error durante la subida del archivo! ¡Por favor, revisa los "
|
2278 |
"permisos!"
|
2279 |
|
2280 |
+
#: app/features/ix.php:265 app/libraries/main.php:6772
|
2281 |
+
#: app/libraries/main.php:6792
|
2282 |
msgid "Confirmed"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: app/features/ix.php:266 app/libraries/main.php:6773
|
2286 |
+
#: app/libraries/main.php:6800
|
2287 |
msgid "Rejected"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
#: app/features/ix.php:270 app/features/mec/booking.php:1011
|
2291 |
#: app/features/mec/booking.php:1033 app/features/mec/modules.php:440
|
2292 |
#: app/features/mec/modules.php:462 app/features/mec/notifications.php:1312
|
2293 |
+
#: app/features/mec/notifications.php:1334 app/features/mec/settings.php:1418
|
2294 |
+
#: app/features/mec/settings.php:1440 app/features/mec/single.php:446
|
2295 |
+
#: app/features/mec/single.php:468 app/libraries/main.php:6820
|
2296 |
msgid "Verified"
|
2297 |
msgstr "Verificado"
|
2298 |
|
2299 |
#: app/features/ix.php:271 app/features/labels.php:118
|
2300 |
+
#: app/features/labels.php:143 app/libraries/main.php:6821
|
2301 |
#: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
|
2302 |
#: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
|
2303 |
#: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
|
2333 |
msgid "The events are imported successfully!"
|
2334 |
msgstr "¡Los eventos se importaron correctamente!"
|
2335 |
|
2336 |
+
#: app/features/ix.php:1178
|
2337 |
msgid "Third Party plugin is not installed and activated!"
|
2338 |
msgstr "¡Plugin de terceros no esta instalado ni activado!"
|
2339 |
|
2340 |
+
#: app/features/ix.php:1202
|
2341 |
msgid "Third Party plugin is invalid!"
|
2342 |
msgstr "¡El Plugin de terceros no es válido!"
|
2343 |
|
2344 |
+
#: app/features/ix.php:3177 app/features/ix.php:3235
|
2345 |
#, fuzzy
|
2346 |
#| msgid "Both of API key and Calendar ID are required!"
|
2347 |
msgid "API key and Calendar ID are required!"
|
2348 |
msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
|
2349 |
|
2350 |
+
#: app/features/ix.php:3230 app/features/ix.php:3675 app/features/ix.php:4410
|
2351 |
#, fuzzy
|
2352 |
#| msgid "Please select some events to import!"
|
2353 |
msgid "Please select events to import!"
|
2354 |
msgstr "Por favor, ¡selecciona algunos eventos para importar!"
|
2355 |
|
2356 |
+
#: app/features/ix.php:3617 app/features/ix.php:3680
|
2357 |
#, fuzzy
|
2358 |
#| msgid "Both of API key and Calendar ID are required!"
|
2359 |
msgid "API key and Group URL are required!"
|
2360 |
msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
|
2361 |
|
2362 |
+
#: app/features/ix.php:3919
|
2363 |
msgid "Check at Meetup"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
2367 |
msgid "Organizer Tel"
|
2368 |
msgstr "Teléfono del Organizador"
|
2369 |
|
2370 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
2371 |
msgid "Organizer Email"
|
2372 |
msgstr "Correo electrónico del organizador"
|
2373 |
|
2374 |
+
#: app/features/ix.php:4110
|
2375 |
#, fuzzy
|
2376 |
#| msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
2377 |
msgid "All of Client ID, Client Secret, and Calendar ID are required!"
|
2379 |
"Todos los ID de cliente, secreto de cliente y ID de calendario son "
|
2380 |
"necesarios."
|
2381 |
|
2382 |
+
#: app/features/ix.php:4133
|
2383 |
#, fuzzy, php-format
|
2384 |
#| msgid "All seems good! Please click %s for authenticating your app."
|
2385 |
msgid "All seems good! Please click %s to authenticate your app."
|
2386 |
msgstr "¡Todo parece correcto! Haz clic en %s para autenticar su aplicación."
|
2387 |
|
2388 |
+
#: app/features/ix.php:4133 app/features/mec/settings.php:1307
|
2389 |
msgid "here"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: app/features/ix.php:4187
|
2393 |
#, fuzzy
|
2394 |
#| msgid "All of Client App, Client Secret and Calendar ID are required!"
|
2395 |
msgid "Client App, Client Secret, and Calendar ID are all required!"
|
2397 |
"¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
|
2398 |
"son obligatorios!"
|
2399 |
|
2400 |
+
#: app/features/ix.php:4332
|
2401 |
#, fuzzy, php-format
|
2402 |
#| msgid "%s events added to Google Calendar successfully."
|
2403 |
msgid "%s events added to Google Calendar with success."
|
2404 |
msgstr "%s eventos añadidos con éxito a Google Calendar."
|
2405 |
|
2406 |
+
#: app/features/ix.php:4333
|
2407 |
#, fuzzy, php-format
|
2408 |
#| msgid "%s previously added events get updated."
|
2409 |
msgid "%s Updated previously added events."
|
2410 |
msgstr "%s eventos añadidos previamente se actualizan."
|
2411 |
|
2412 |
+
#: app/features/ix.php:4334
|
2413 |
#, php-format
|
2414 |
msgid "%s events failed to add for following reasons: %s"
|
2415 |
msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
|
2416 |
|
2417 |
+
#: app/features/ix.php:4366
|
2418 |
msgid "Please insert your Facebook page's link."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: app/features/ix.php:4377 app/features/ix.php:4419
|
2422 |
#, fuzzy
|
2423 |
#| msgid ""
|
2424 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
2430 |
"No pudimos reconocer tu página de Facebook. Por favor, verifícala y escribe "
|
2431 |
"un nuevo enlace de página de Facebook."
|
2432 |
|
2433 |
+
#: app/features/ix.php:4414
|
2434 |
msgid "Please insert your facebook page's link."
|
2435 |
msgstr "Por favor, inserta el enlace de tu página de Facebook."
|
2436 |
|
2603 |
|
2604 |
#: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1013
|
2605 |
#: app/features/mec/modules.php:442 app/features/mec/notifications.php:1314
|
2606 |
+
#: app/features/mec/settings.php:1420 app/features/mec/single.php:448
|
2607 |
msgid "Checking ..."
|
2608 |
msgstr "Verificando…"
|
2609 |
|
3088 |
msgid "Slug"
|
3089 |
msgstr "Slug"
|
3090 |
|
3091 |
+
#: app/features/labels.php:221 app/features/locations.php:323
|
3092 |
#, php-format
|
3093 |
msgid "Event %s"
|
3094 |
msgstr "Evento %s"
|
3095 |
|
3096 |
#: app/features/locations.php:59 app/features/mec.php:461
|
3097 |
#: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
|
3098 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6489
|
3099 |
+
#: app/libraries/main.php:6543
|
3100 |
msgid "Locations"
|
3101 |
msgstr "Lugar"
|
3102 |
|
3105 |
msgstr "Introduce la dirección del lugar"
|
3106 |
|
3107 |
#: app/features/locations.php:130 app/features/locations.php:196
|
3108 |
+
#: app/features/locations.php:368 app/features/popup/event.php:147
|
3109 |
msgid "Latitude"
|
3110 |
msgstr "Latitud"
|
3111 |
|
3114 |
msgstr "Geo latitud (Opcional)"
|
3115 |
|
3116 |
#: app/features/locations.php:138 app/features/locations.php:200
|
3117 |
+
#: app/features/locations.php:369 app/features/popup/event.php:148
|
3118 |
msgid "Longitude"
|
3119 |
msgstr "Longitud"
|
3120 |
|
3123 |
msgstr "Geolongitud (opcional)"
|
3124 |
|
3125 |
#: app/features/locations.php:146 app/features/locations.php:204
|
3126 |
+
#: app/features/locations.php:379
|
3127 |
#, fuzzy
|
3128 |
#| msgid "Locations"
|
3129 |
msgid "Location Website"
|
3148 |
msgstr "Subir/Añadir imagen"
|
3149 |
|
3150 |
#: app/features/locations.php:161 app/features/locations.php:213
|
3151 |
+
#: app/features/locations.php:387 app/features/locations.php:394
|
3152 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
3153 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
3154 |
#: app/features/speakers.php:181 app/features/speakers.php:232
|
3155 |
msgid "Remove image"
|
3156 |
msgstr "Eliminar imagen"
|
3157 |
|
3158 |
+
#: app/features/locations.php:326 app/features/popup/event.php:117
|
3159 |
msgid "Hide location"
|
3160 |
msgstr "Ocultar lugar"
|
3161 |
|
3162 |
+
#: app/features/locations.php:327 app/features/popup/event.php:118
|
3163 |
msgid "Insert a new location"
|
3164 |
msgstr "Insertar nuevo lugar"
|
3165 |
|
3166 |
+
#: app/features/locations.php:335
|
3167 |
msgid "Choose one of saved locations or insert new one below."
|
3168 |
msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
|
3169 |
|
3170 |
+
#: app/features/locations.php:342 app/features/popup/event.php:139
|
3171 |
msgid "Location Name"
|
3172 |
msgstr "Nombre del lugar"
|
3173 |
|
3174 |
+
#: app/features/locations.php:343 app/features/popup/event.php:140
|
3175 |
msgid "eg. City Hall"
|
3176 |
msgstr "ej. Almería"
|
3177 |
|
3178 |
+
#: app/features/locations.php:346 app/features/mec/settings.php:806
|
3179 |
#: app/features/popup/event.php:143 app/widgets/single.php:117
|
3180 |
msgid "Event Location"
|
3181 |
msgstr "Lugar del evento"
|
3182 |
|
3183 |
+
#: app/features/locations.php:347 app/features/popup/event.php:144
|
3184 |
msgid "eg. City hall, Manhattan, New York"
|
3185 |
msgstr "ej. Almería, España"
|
3186 |
|
3187 |
+
#: app/features/locations.php:372 app/features/popup/event.php:151
|
3188 |
#, fuzzy
|
3189 |
#| msgid "Longitude"
|
3190 |
msgid "Latitude/Longitude"
|
3191 |
msgstr "Longitud"
|
3192 |
|
3193 |
+
#: app/features/locations.php:373 app/features/popup/event.php:152
|
3194 |
msgid ""
|
3195 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
3196 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
3199 |
"the location on the map to find lat long coordinates."
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: app/features/locations.php:373 app/features/popup/event.php:152
|
3203 |
msgid "Get Latitude and Longitude"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: app/features/locations.php:386 app/features/organizers.php:298
|
3207 |
#: app/features/popup/event.php:202
|
3208 |
msgid "Choose image"
|
3209 |
msgstr "Elegir imagen"
|
3210 |
|
3211 |
+
#: app/features/locations.php:400 app/features/popup/event.php:135
|
3212 |
msgid "Don't show map in single event page"
|
3213 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
3214 |
|
3215 |
+
#: app/features/locations.php:403 app/libraries/main.php:6527
|
3216 |
+
#: app/libraries/main.php:6574
|
3217 |
#, fuzzy
|
3218 |
#| msgid "Locations"
|
3219 |
msgid "Other Locations"
|
3220 |
msgstr "Lugar"
|
3221 |
|
3222 |
+
#: app/features/locations.php:405
|
3223 |
#, fuzzy
|
3224 |
#| msgid ""
|
3225 |
#| "You can select extra organizers in addition to main organizer if you like."
|
3241 |
msgid "Login successful, redirecting..."
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: app/features/login/login.php:11 app/modules/booking/steps/form.php:333
|
3245 |
msgid "Password"
|
3246 |
msgstr ""
|
3247 |
|
3297 |
#: app/features/mec.php:462 app/features/mec/dashboard.php:286
|
3298 |
#: app/features/mec/meta_boxes/filter.php:71
|
3299 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
3300 |
+
#: app/libraries/main.php:6491 app/libraries/main.php:6545
|
3301 |
msgid "Organizers"
|
3302 |
msgstr "Organizadores"
|
3303 |
|
3338 |
msgid "MEC - Go Pro"
|
3339 |
msgstr "Soporte"
|
3340 |
|
3341 |
+
#: app/features/mec.php:479 app/features/mec.php:1288
|
3342 |
#: app/features/mec/go-pro.php:9
|
3343 |
msgid "Go Pro"
|
3344 |
msgstr ""
|
3379 |
msgid "Search Form"
|
3380 |
msgstr "Formulario de Búsqueda"
|
3381 |
|
3382 |
+
#: app/features/mec.php:989
|
3383 |
msgid "Display content's images as Popup"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: app/features/mec.php:1003 app/features/popup/shortcode.php:473
|
3387 |
msgid "Single Event Display Method"
|
3388 |
msgstr "Método de vista para página del evento"
|
3389 |
|
3390 |
+
#: app/features/mec.php:1010 app/features/popup/shortcode.php:485
|
3391 |
#, fuzzy
|
3392 |
#| msgid "Modal 1"
|
3393 |
msgid "Modal Popup"
|
3394 |
msgstr "Modal 1"
|
3395 |
|
3396 |
+
#: app/features/mec.php:1011
|
3397 |
#, fuzzy
|
3398 |
#| msgid "Disabled"
|
3399 |
msgid "Disable Link"
|
3400 |
msgstr "Desactivado"
|
3401 |
|
3402 |
+
#: app/features/mec.php:1024
|
3403 |
#, fuzzy
|
3404 |
#| msgid "Booking Options"
|
3405 |
msgid "Booking Button / Icon"
|
3406 |
msgstr "Opciones de reserva"
|
3407 |
|
3408 |
+
#: app/features/mec.php:1037
|
3409 |
#, fuzzy
|
3410 |
#| msgid "Organizers"
|
3411 |
msgid "Display Organizers"
|
3412 |
msgstr "Organizadores"
|
3413 |
|
3414 |
+
#: app/features/mec.php:1194 app/features/mec.php:1367
|
3415 |
msgid "Total Bookings"
|
3416 |
msgstr "Total reservas"
|
3417 |
|
3418 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
3419 |
msgid "Modern Events Calendar (Lite)"
|
3420 |
msgstr "Modern Events Calendar (Lite)"
|
3421 |
|
3422 |
+
#: app/features/mec.php:1219 app/features/mec/dashboard.php:297
|
3423 |
+
#: app/features/mec/settings.php:456
|
3424 |
msgid "Upcoming Events"
|
3425 |
msgstr "Próximos Eventos"
|
3426 |
|
3427 |
+
#: app/features/mec.php:1274
|
3428 |
#, fuzzy
|
3429 |
#| msgid "Update %s"
|
3430 |
msgid "News & Updates"
|
3431 |
msgstr "Actualizar %s"
|
3432 |
|
3433 |
+
#: app/features/mec.php:1287
|
3434 |
msgid "Blog"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: app/features/mec.php:1287
|
3438 |
msgid "Help"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: app/features/mec.php:1342
|
3442 |
#, php-format
|
3443 |
msgid "Total Sells (%s)"
|
3444 |
msgstr "Ventas Totales (%s)"
|
3445 |
|
3446 |
+
#: app/features/mec.php:1376
|
3447 |
msgid "This Month"
|
3448 |
msgstr "Este mes"
|
3449 |
|
3450 |
+
#: app/features/mec.php:1382
|
3451 |
msgid "Last Month"
|
3452 |
msgstr "Último mes"
|
3453 |
|
3455 |
msgid "This Year"
|
3456 |
msgstr "Este año"
|
3457 |
|
3458 |
+
#: app/features/mec.php:1394
|
3459 |
msgid "Last Year"
|
3460 |
msgstr "Año pasado"
|
3461 |
|
3462 |
+
#: app/features/mec.php:1414
|
3463 |
msgid "Bar"
|
3464 |
msgstr "Barra"
|
3465 |
|
3466 |
+
#: app/features/mec.php:1415
|
3467 |
msgid "Line"
|
3468 |
msgstr "Línea"
|
3469 |
|
3470 |
+
#: app/features/mec.php:1417
|
3471 |
msgid "Filter"
|
3472 |
msgstr "Filtrar"
|
3473 |
|
3474 |
+
#: app/features/mec.php:1441
|
3475 |
#, fuzzy
|
3476 |
#| msgid "Modern Events Calendar"
|
3477 |
msgid "Print Calendar"
|
3478 |
msgstr "Modern Events Calendar"
|
3479 |
|
3480 |
+
#: app/features/mec.php:1456
|
3481 |
#, fuzzy
|
3482 |
#| msgid "Display Event Price"
|
3483 |
msgid "Display Events"
|
3502 |
|
3503 |
#: app/features/mec/booking.php:78 app/features/mec/messages.php:13
|
3504 |
#: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
|
3505 |
+
#: app/features/mec/settings.php:47 app/features/mec/single.php:19
|
3506 |
#: app/features/mec/styling.php:35
|
3507 |
#, fuzzy
|
3508 |
#| msgid "Search %s"
|
3521 |
#: app/features/mec/notifications.php:1213
|
3522 |
#: app/features/mec/notifications.php:1225
|
3523 |
#: app/features/mec/notifications.php:1331
|
3524 |
+
#: app/features/mec/notifications.php:1345 app/features/mec/settings.php:49
|
3525 |
+
#: app/features/mec/settings.php:1369 app/features/mec/settings.php:1379
|
3526 |
+
#: app/features/mec/settings.php:1437 app/features/mec/settings.php:1451
|
3527 |
#: app/features/mec/single.php:21 app/features/mec/single.php:413
|
3528 |
#: app/features/mec/single.php:423 app/features/mec/single.php:465
|
3529 |
#: app/features/mec/single.php:479 app/features/mec/styles.php:11
|
3633 |
msgstr "Botón de registro"
|
3634 |
|
3635 |
#: app/features/mec/booking.php:168 app/features/mec/booking.php:176
|
3636 |
+
#: app/modules/booking/steps/form.php:327
|
3637 |
#, fuzzy
|
3638 |
#| msgid "Register Button"
|
3639 |
msgid "Registration"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
#: app/features/mec/booking.php:267 app/features/mec/booking.php:269
|
3742 |
+
#: app/features/mec/booking.php:279 app/features/mec/settings.php:674
|
3743 |
+
#: app/features/mec/settings.php:684
|
3744 |
msgid "Thank You Page"
|
3745 |
msgstr "Página de agradecimiento"
|
3746 |
|
3753 |
"Déjalo vacío si lo deseas desactivado."
|
3754 |
|
3755 |
#: app/features/mec/booking.php:287 app/features/mec/booking.php:292
|
3756 |
+
#: app/features/mec/settings.php:707 app/features/mec/settings.php:712
|
3757 |
#, fuzzy
|
3758 |
#| msgid "Thank You Page"
|
3759 |
msgid "Thank You Page Time Interval"
|
3760 |
msgstr "Página de agradecimiento"
|
3761 |
|
3762 |
+
#: app/features/mec/booking.php:289 app/features/mec/settings.php:709
|
3763 |
msgid "2000 mean 2 seconds"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: app/features/mec/booking.php:293 app/features/mec/settings.php:713
|
3767 |
msgid ""
|
3768 |
"Waiting time before redirecting to thank you page. It's in miliseconds so "
|
3769 |
"2000 means 2 seconds."
|
3835 |
msgid "Send confirmation email in auto confirmation mode"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: app/features/mec/booking.php:413 app/libraries/main.php:598
|
3839 |
#, fuzzy
|
3840 |
#| msgid "Booking Price"
|
3841 |
msgid "Booking Shortcode"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
#: app/features/mec/booking.php:447 app/features/mec/booking.php:835
|
3872 |
+
#: app/libraries/main.php:600
|
3873 |
msgid "Taxes / Fees"
|
3874 |
msgstr "Impuestos/Tasas"
|
3875 |
|
3881 |
msgid "Add Fee"
|
3882 |
msgstr "Nueva tasa"
|
3883 |
|
3884 |
+
#: app/features/mec/booking.php:524 app/libraries/main.php:601
|
3885 |
msgid "Ticket Variations & Options"
|
3886 |
msgstr ""
|
3887 |
|
4025 |
|
4026 |
#: app/features/mec/booking.php:1008 app/features/mec/messages.php:78
|
4027 |
#: app/features/mec/modules.php:437 app/features/mec/notifications.php:1309
|
4028 |
+
#: app/features/mec/settings.php:1415 app/features/mec/single.php:443
|
4029 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:323
|
4030 |
msgid "Saved"
|
4031 |
msgstr "Guardado"
|
4032 |
|
4033 |
#: app/features/mec/booking.php:1009 app/features/mec/messages.php:79
|
4034 |
#: app/features/mec/modules.php:438 app/features/mec/notifications.php:1310
|
4035 |
+
#: app/features/mec/settings.php:1416 app/features/mec/single.php:444
|
4036 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:324
|
4037 |
msgid "Settings Saved!"
|
4038 |
msgstr "¡Ajustes guardados!"
|
4039 |
|
4040 |
#: app/features/mec/booking.php:1035 app/features/mec/modules.php:464
|
4041 |
+
#: app/features/mec/notifications.php:1336 app/features/mec/settings.php:1442
|
4042 |
#: app/features/mec/single.php:470
|
4043 |
msgid "Please Refresh Page"
|
4044 |
msgstr "Por favor, actualiza la página"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
#: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
|
4175 |
+
#: app/features/mec/support.php:66 app/libraries/main.php:851
|
4176 |
msgid "Messages"
|
4177 |
msgstr "Mensajes"
|
4178 |
|
4203 |
#: app/features/mec/meta_boxes/display_options.php:953
|
4204 |
#: app/features/mec/meta_boxes/display_options.php:1284
|
4205 |
#: app/features/mec/meta_boxes/display_options.php:1575
|
4206 |
+
#: app/features/mec/settings.php:317 app/features/mec/settings.php:341
|
4207 |
+
#: app/features/mec/settings.php:350 app/features/mec/settings.php:394
|
4208 |
+
#: app/features/mec/settings.php:418 app/features/mec/settings.php:427
|
4209 |
#: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:102
|
4210 |
#: app/features/popup/shortcode.php:199 app/features/popup/shortcode.php:236
|
4211 |
#: app/features/popup/shortcode.php:250 app/features/popup/shortcode.php:283
|
4216 |
|
4217 |
#: app/features/mec/meta_boxes/display_options.php:44
|
4218 |
#: app/features/mec/meta_boxes/display_options.php:289
|
4219 |
+
#: app/features/mec/settings.php:342 app/features/mec/settings.php:352
|
4220 |
+
#: app/features/mec/settings.php:419 app/features/mec/settings.php:429
|
4221 |
#: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
|
4222 |
msgid "Minimal"
|
4223 |
msgstr "Mínimo"
|
4228 |
#: app/features/mec/meta_boxes/display_options.php:955
|
4229 |
#: app/features/mec/meta_boxes/display_options.php:1282
|
4230 |
#: app/features/mec/meta_boxes/display_options.php:1577
|
4231 |
+
#: app/features/mec/settings.php:319 app/features/mec/settings.php:332
|
4232 |
+
#: app/features/mec/settings.php:343 app/features/mec/settings.php:353
|
4233 |
+
#: app/features/mec/settings.php:396 app/features/mec/settings.php:409
|
4234 |
+
#: app/features/mec/settings.php:420 app/features/mec/settings.php:430
|
4235 |
#: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:117
|
4236 |
#: app/features/popup/shortcode.php:185 app/features/popup/shortcode.php:209
|
4237 |
#: app/features/popup/shortcode.php:263 app/features/popup/shortcode.php:306
|
4239 |
msgstr "Moderno"
|
4240 |
|
4241 |
#: app/features/mec/meta_boxes/display_options.php:46
|
4242 |
+
#: app/features/mec/settings.php:344 app/features/mec/settings.php:421
|
4243 |
#: app/features/popup/shortcode.php:83
|
4244 |
msgid "Standard"
|
4245 |
msgstr "Estándar"
|
4246 |
|
4247 |
#: app/features/mec/meta_boxes/display_options.php:47
|
4248 |
+
#: app/features/mec/settings.php:345 app/features/mec/settings.php:422
|
4249 |
#: app/features/popup/shortcode.php:88
|
4250 |
msgid "Accordion"
|
4251 |
msgstr "Acordeón"
|
4645 |
#: app/features/mec/meta_boxes/display_options.php:954
|
4646 |
#: app/features/mec/meta_boxes/display_options.php:1283
|
4647 |
#: app/features/mec/meta_boxes/display_options.php:1576
|
4648 |
+
#: app/features/mec/settings.php:318 app/features/mec/settings.php:333
|
4649 |
+
#: app/features/mec/settings.php:351 app/features/mec/settings.php:395
|
4650 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:428
|
4651 |
#: app/features/popup/shortcode.php:107 app/features/popup/shortcode.php:146
|
4652 |
#: app/features/popup/shortcode.php:161 app/features/popup/shortcode.php:204
|
4653 |
#: app/features/popup/shortcode.php:268 app/features/popup/shortcode.php:301
|
4657 |
#: app/features/mec/meta_boxes/display_options.php:291
|
4658 |
#: app/features/mec/meta_boxes/display_options.php:693
|
4659 |
#: app/features/mec/meta_boxes/display_options.php:957
|
4660 |
+
#: app/features/mec/settings.php:321 app/features/mec/settings.php:354
|
4661 |
+
#: app/features/mec/settings.php:398 app/features/mec/settings.php:431
|
4662 |
#: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
|
4663 |
#: app/features/popup/shortcode.php:219
|
4664 |
msgid "Simple"
|
4672 |
#: app/features/mec/meta_boxes/display_options.php:293
|
4673 |
#: app/features/mec/meta_boxes/display_options.php:692
|
4674 |
#: app/features/mec/meta_boxes/display_options.php:956
|
4675 |
+
#: app/features/mec/settings.php:320 app/features/mec/settings.php:356
|
4676 |
+
#: app/features/mec/settings.php:397 app/features/mec/settings.php:433
|
4677 |
#: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
|
4678 |
#: app/features/popup/shortcode.php:214
|
4679 |
msgid "Novel"
|
4725 |
|
4726 |
#: app/features/mec/meta_boxes/display_options.php:679
|
4727 |
#: app/features/mec/meta_boxes/display_options.php:703
|
4728 |
+
#: app/libraries/main.php:364 app/libraries/main.php:2121
|
4729 |
+
#: app/libraries/main.php:2146
|
4730 |
msgid "List View"
|
4731 |
msgstr "Vista de lista"
|
4732 |
|
4733 |
#: app/features/mec/meta_boxes/display_options.php:680
|
4734 |
#: app/features/mec/meta_boxes/display_options.php:724
|
4735 |
+
#: app/libraries/main.php:365 app/libraries/main.php:2122
|
4736 |
+
#: app/libraries/main.php:2147
|
4737 |
msgid "Grid View"
|
4738 |
msgstr "Vista cuadrícula"
|
4739 |
|
4747 |
|
4748 |
#: app/features/mec/meta_boxes/display_options.php:682
|
4749 |
#: app/features/mec/meta_boxes/display_options.php:745
|
4750 |
+
#: app/libraries/main.php:368 app/libraries/main.php:2115
|
4751 |
+
#: app/libraries/main.php:2140
|
4752 |
msgid "Yearly View"
|
4753 |
msgstr "Vista anual"
|
4754 |
|
4759 |
|
4760 |
#: app/features/mec/meta_boxes/display_options.php:684
|
4761 |
#: app/features/mec/meta_boxes/display_options.php:794
|
4762 |
+
#: app/libraries/main.php:371 app/libraries/main.php:2117
|
4763 |
+
#: app/libraries/main.php:2142
|
4764 |
msgid "Weekly View"
|
4765 |
msgstr "Vista de semana"
|
4766 |
|
4767 |
#: app/features/mec/meta_boxes/display_options.php:685
|
4768 |
#: app/features/mec/meta_boxes/display_options.php:804
|
4769 |
+
#: app/libraries/main.php:370 app/libraries/main.php:2118
|
4770 |
+
#: app/libraries/main.php:2143
|
4771 |
msgid "Daily View"
|
4772 |
msgstr "Vista de día"
|
4773 |
|
5216 |
msgid "Choose your desired authors for filtering the events."
|
5217 |
msgstr "Elije los autores deseados para filtrar los eventos."
|
5218 |
|
5219 |
+
#: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:457
|
5220 |
msgid "Expired Events"
|
5221 |
msgstr "Eventos pasados"
|
5222 |
|
5282 |
msgstr "Mostrar formulario búsqueda"
|
5283 |
|
5284 |
#: app/features/mec/meta_boxes/search_form.php:53
|
5285 |
+
#: app/features/mec/meta_boxes/search_form.php:124
|
5286 |
+
#: app/features/mec/meta_boxes/search_form.php:195
|
5287 |
+
#: app/features/mec/meta_boxes/search_form.php:266
|
5288 |
+
#: app/features/mec/meta_boxes/search_form.php:336
|
5289 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
5290 |
+
#: app/features/mec/meta_boxes/search_form.php:476
|
5291 |
+
#: app/features/mec/meta_boxes/search_form.php:539
|
5292 |
+
#: app/features/mec/meta_boxes/search_form.php:609
|
5293 |
+
#: app/features/mec/meta_boxes/search_form.php:679
|
5294 |
+
#: app/features/mec/meta_boxes/search_form.php:785
|
5295 |
+
#: app/features/mec/settings.php:1067 app/features/mec/single.php:344
|
5296 |
#: app/features/mec/single.php:386 app/features/search.php:86
|
5297 |
#: app/features/speakers.php:60 app/features/speakers.php:283
|
5298 |
+
#: app/libraries/main.php:6494 app/libraries/main.php:6548
|
5299 |
#: app/libraries/skins.php:1016 app/modules/speakers/details.php:18
|
5300 |
msgid "Speaker"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
#: app/features/mec/meta_boxes/search_form.php:60
|
5304 |
+
#: app/features/mec/meta_boxes/search_form.php:131
|
5305 |
+
#: app/features/mec/meta_boxes/search_form.php:202
|
5306 |
+
#: app/features/mec/meta_boxes/search_form.php:273
|
5307 |
+
#: app/features/mec/meta_boxes/search_form.php:343
|
5308 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
5309 |
+
#: app/features/mec/meta_boxes/search_form.php:483
|
5310 |
+
#: app/features/mec/meta_boxes/search_form.php:546
|
5311 |
+
#: app/features/mec/meta_boxes/search_form.php:616
|
5312 |
+
#: app/features/mec/meta_boxes/search_form.php:686
|
5313 |
+
#: app/features/mec/meta_boxes/search_form.php:792
|
5314 |
+
#: app/features/mec/settings.php:1074 app/features/mec/single.php:353
|
5315 |
#: app/features/mec/single.php:395 app/features/search.php:92
|
5316 |
#: app/libraries/skins.php:1042
|
5317 |
#, fuzzy
|
5320 |
msgstr "Tags"
|
5321 |
|
5322 |
#: app/features/mec/meta_boxes/search_form.php:77
|
5323 |
+
#: app/features/mec/meta_boxes/search_form.php:148
|
5324 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
5325 |
+
#: app/features/mec/meta_boxes/search_form.php:290
|
5326 |
+
#: app/features/mec/meta_boxes/search_form.php:360
|
5327 |
+
#: app/features/mec/meta_boxes/search_form.php:430
|
5328 |
+
#: app/features/mec/meta_boxes/search_form.php:500
|
5329 |
+
#: app/features/mec/meta_boxes/search_form.php:563
|
5330 |
+
#: app/features/mec/meta_boxes/search_form.php:633
|
5331 |
+
#: app/features/mec/meta_boxes/search_form.php:703
|
5332 |
+
#: app/features/mec/meta_boxes/search_form.php:809
|
5333 |
#, fuzzy
|
5334 |
#| msgid "Address"
|
5335 |
msgid "Address Input"
|
5336 |
msgstr "Dirección"
|
5337 |
|
5338 |
#: app/features/mec/meta_boxes/search_form.php:81
|
5339 |
+
#: app/features/mec/meta_boxes/search_form.php:152
|
5340 |
+
#: app/features/mec/meta_boxes/search_form.php:223
|
5341 |
+
#, fuzzy
|
5342 |
+
#| msgid "Filter"
|
5343 |
+
msgid "Date Filter"
|
5344 |
+
msgstr "Filtrar"
|
|
|
|
|
|
|
|
|
|
|
5345 |
|
5346 |
+
#: app/features/mec/meta_boxes/search_form.php:84
|
5347 |
+
#: app/features/mec/meta_boxes/search_form.php:155
|
5348 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
5349 |
+
msgid "Year & Month Dropdown"
|
5350 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5351 |
|
5352 |
+
#: app/features/mec/meta_boxes/search_form.php:85
|
5353 |
+
#: app/features/mec/meta_boxes/search_form.php:156
|
5354 |
+
#: app/features/mec/meta_boxes/search_form.php:227
|
5355 |
+
#, fuzzy
|
5356 |
+
#| msgid "Date Format"
|
5357 |
+
msgid "Date Picker"
|
5358 |
+
msgstr "Formato de fecha"
|
5359 |
+
|
5360 |
+
#: app/features/mec/meta_boxes/search_form.php:89
|
5361 |
+
#: app/features/mec/meta_boxes/search_form.php:160
|
5362 |
#: app/features/mec/meta_boxes/search_form.php:231
|
5363 |
#: app/features/mec/meta_boxes/search_form.php:301
|
5364 |
#: app/features/mec/meta_boxes/search_form.php:371
|
5368 |
#: app/features/mec/meta_boxes/search_form.php:644
|
5369 |
#: app/features/mec/meta_boxes/search_form.php:714
|
5370 |
#: app/features/mec/meta_boxes/search_form.php:820
|
5371 |
+
msgid "Text Search"
|
5372 |
+
msgstr "Búsqueda de texto"
|
5373 |
+
|
5374 |
+
#: app/features/mec/meta_boxes/search_form.php:92
|
5375 |
+
#: app/features/mec/meta_boxes/search_form.php:163
|
5376 |
+
#: app/features/mec/meta_boxes/search_form.php:234
|
5377 |
+
#: app/features/mec/meta_boxes/search_form.php:304
|
5378 |
+
#: app/features/mec/meta_boxes/search_form.php:374
|
5379 |
+
#: app/features/mec/meta_boxes/search_form.php:444
|
5380 |
+
#: app/features/mec/meta_boxes/search_form.php:507
|
5381 |
+
#: app/features/mec/meta_boxes/search_form.php:577
|
5382 |
+
#: app/features/mec/meta_boxes/search_form.php:647
|
5383 |
+
#: app/features/mec/meta_boxes/search_form.php:717
|
5384 |
+
#: app/features/mec/meta_boxes/search_form.php:823
|
5385 |
msgid "Text Input"
|
5386 |
msgstr "Campo de texto"
|
5387 |
|
5388 |
+
#: app/features/mec/meta_boxes/search_form.php:294
|
5389 |
+
#: app/features/mec/meta_boxes/search_form.php:364
|
5390 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
5391 |
+
#: app/features/mec/meta_boxes/search_form.php:567
|
5392 |
+
#: app/features/mec/meta_boxes/search_form.php:637
|
5393 |
+
#: app/features/mec/meta_boxes/search_form.php:707
|
5394 |
+
#: app/features/mec/meta_boxes/search_form.php:813
|
5395 |
+
msgid "Month Filter"
|
5396 |
+
msgstr "Filtrar por mes"
|
5397 |
+
|
5398 |
+
#: app/features/mec/meta_boxes/search_form.php:726
|
5399 |
+
#: app/features/mec/meta_boxes/search_form.php:732
|
5400 |
+
#: app/features/mec/meta_boxes/search_form.php:738
|
5401 |
+
#: app/features/mec/meta_boxes/search_form.php:744
|
5402 |
+
#: app/features/mec/meta_boxes/search_form.php:750
|
5403 |
+
#: app/features/mec/meta_boxes/search_form.php:756
|
5404 |
msgid "No Search Options"
|
5405 |
msgstr "No hay opciones de búsqueda"
|
5406 |
|
5424 |
"new menu on the Dashboard > MEC"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
+
#: app/features/mec/modules.php:66 app/libraries/main.php:609
|
5428 |
#, fuzzy
|
5429 |
#| msgid "Google Maps Options"
|
5430 |
msgid "Map Options"
|
5448 |
msgid "Google Map Options"
|
5449 |
msgstr "Opciones de Google Maps"
|
5450 |
|
5451 |
+
#: app/features/mec/modules.php:85 app/features/mec/settings.php:1110
|
5452 |
+
#: app/features/mec/settings.php:1123
|
5453 |
msgid "Required!"
|
5454 |
msgstr "¡Obligatorio!"
|
5455 |
|
5516 |
msgid "Fullscreen Button"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: app/features/mec/modules.php:176 app/libraries/main.php:610
|
5520 |
#, fuzzy
|
5521 |
#| msgid "Import Options"
|
5522 |
msgid "Export Options"
|
5531 |
msgid "Google Calendar"
|
5532 |
msgstr "Google Calendar"
|
5533 |
|
5534 |
+
#: app/features/mec/modules.php:203 app/libraries/main.php:611
|
5535 |
#: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:42
|
5536 |
#: app/widgets/single.php:101
|
5537 |
msgid "Local Time"
|
5543 |
"Mostrar el tiempo del evento basado en la hora local del visitante en la "
|
5544 |
"página del evento"
|
5545 |
|
5546 |
+
#: app/features/mec/modules.php:217 app/libraries/main.php:612
|
5547 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:157
|
5548 |
msgid "QR Code"
|
5549 |
msgstr "Código QR"
|
5554 |
"Mostrar código QR del evento en la pagina de detalles de la pagina y en el "
|
5555 |
"recibo de la reservación"
|
5556 |
|
5557 |
+
#: app/features/mec/modules.php:235 app/libraries/main.php:613
|
5558 |
#: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
|
5559 |
msgid "Weather"
|
5560 |
msgstr "El Tiempo"
|
5591 |
msgid "Show social network module"
|
5592 |
msgstr "Ver módulo de redes sociales"
|
5593 |
|
5594 |
+
#: app/features/mec/modules.php:308 app/libraries/main.php:615
|
5595 |
#: app/modules/next-event/details.php:136 app/widgets/single.php:141
|
5596 |
msgid "Next Event"
|
5597 |
msgstr "Próximo Evento"
|
5652 |
msgid "Add events menu to user profile"
|
5653 |
msgstr "Añadir actividad de reservaciones en el perfil del usuario"
|
5654 |
|
5655 |
+
#: app/features/mec/modules.php:385 app/libraries/main.php:617
|
5656 |
#, fuzzy
|
5657 |
#| msgid "Mailchimp Integration"
|
5658 |
msgid "LearnDash Integration"
|
6369 |
msgid "Add to Google Calendar Links for next 20 occurrences"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
+
#: app/features/mec/notifications.php:160 app/libraries/main.php:631
|
6373 |
msgid "Booking Verification"
|
6374 |
msgstr "Verificación de la reserva"
|
6375 |
|
6414 |
msgstr "Enlace de cancelación de la reserva."
|
6415 |
|
6416 |
#: app/features/mec/notifications.php:402 app/features/notifications.php:157
|
6417 |
+
#: app/libraries/main.php:630
|
6418 |
#, fuzzy
|
6419 |
#| msgid "Booking Verification"
|
6420 |
msgid "Booking Rejection"
|
6450 |
msgstr "Enviar correo al organizador del evento"
|
6451 |
|
6452 |
#: app/features/mec/notifications.php:540 app/features/notifications.php:163
|
6453 |
+
#: app/libraries/main.php:632
|
6454 |
#, fuzzy
|
6455 |
#| msgid "Booking cancellation link."
|
6456 |
msgid "Booking Cancellation"
|
6474 |
msgid "Admin booking management link."
|
6475 |
msgstr "Enlace del administrador de reservas."
|
6476 |
|
6477 |
+
#: app/features/mec/notifications.php:662 app/libraries/main.php:635
|
6478 |
msgid "Admin"
|
6479 |
msgstr ""
|
6480 |
|
6491 |
msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
|
6492 |
|
6493 |
#: app/features/mec/notifications.php:784 app/features/notifications.php:169
|
6494 |
+
#: app/libraries/main.php:634
|
6495 |
#, fuzzy
|
6496 |
#| msgid "Event Color"
|
6497 |
msgid "Event Soldout"
|
6512 |
msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
|
6513 |
|
6514 |
#: app/features/mec/notifications.php:893 app/features/notifications.php:166
|
6515 |
+
#: app/libraries/main.php:633 app/libraries/notifications.php:733
|
6516 |
msgid "Booking Reminder"
|
6517 |
msgstr "Recordatorio de reserva"
|
6518 |
|
6542 |
msgid "only once per hour"
|
6543 |
msgstr "una vez al día"
|
6544 |
|
6545 |
+
#: app/features/mec/notifications.php:956 app/libraries/main.php:7582
|
6546 |
+
#: app/libraries/main.php:7599
|
6547 |
#, fuzzy
|
6548 |
#| msgid "hours"
|
6549 |
msgid "Hours"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
#: app/features/mec/notifications.php:1026 app/features/popup/event.php:253
|
6561 |
+
#: app/libraries/main.php:621
|
6562 |
msgid "New Event"
|
6563 |
msgstr "Nuevo evento"
|
6564 |
|
6596 |
msgstr "Estado del evento"
|
6597 |
|
6598 |
#: app/features/mec/notifications.php:1103
|
6599 |
+
#: app/features/mec/notifications.php:1188 app/features/mec/settings.php:951
|
6600 |
+
#: app/features/mec/settings.php:955 app/features/notifications.php:140
|
6601 |
msgid "Event Note"
|
6602 |
msgstr "Nota de evento"
|
6603 |
|
6606 |
msgid "Admin events management link."
|
6607 |
msgstr "Enlace del administrador de reservas."
|
6608 |
|
6609 |
+
#: app/features/mec/notifications.php:1117 app/libraries/main.php:622
|
6610 |
#, fuzzy
|
6611 |
#| msgid "The event published."
|
6612 |
msgid "User Event Publishing"
|
6630 |
"Se envía después de agregar un nuevo evento de presentación de evento de "
|
6631 |
"frontend o desde el sitio web backend."
|
6632 |
|
6633 |
+
#: app/features/mec/notifications.php:1200 app/libraries/main.php:638
|
6634 |
#, fuzzy
|
6635 |
#| msgid "Notifications"
|
6636 |
msgid "Notifications Per Event"
|
6718 |
msgid "There was an error please try again!"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
+
#: app/features/mec/settings.php:69 app/features/mec/settings.php:80
|
6722 |
msgid "Hide Events"
|
6723 |
msgstr "Ocultar eventos"
|
6724 |
|
6725 |
+
#: app/features/mec/settings.php:72
|
6726 |
msgid "On Event Start"
|
6727 |
msgstr "En el inicio del evento"
|
6728 |
|
6729 |
+
#: app/features/mec/settings.php:73
|
6730 |
msgid "+1 Hour after start"
|
6731 |
msgstr "+1 hora después del inicio"
|
6732 |
|
6733 |
+
#: app/features/mec/settings.php:74
|
6734 |
msgid "+2 Hours after start"
|
6735 |
msgstr "+2 horas después del inicio"
|
6736 |
|
6737 |
+
#: app/features/mec/settings.php:75
|
6738 |
msgid "On Event End"
|
6739 |
msgstr "El fin del evento"
|
6740 |
|
6741 |
+
#: app/features/mec/settings.php:81
|
6742 |
msgid ""
|
6743 |
"This option is for showing start/end time of events on frontend of website."
|
6744 |
msgstr ""
|
6745 |
"Esta opción es para mostrar el tiempo de inicio / finalización de los "
|
6746 |
"eventos en la interfaz del sitio web."
|
6747 |
|
6748 |
+
#: app/features/mec/settings.php:90 app/features/mec/settings.php:99
|
6749 |
msgid "Multiple Day Events"
|
6750 |
msgstr "Eventos de varios días"
|
6751 |
|
6752 |
+
#: app/features/mec/settings.php:93
|
6753 |
#, fuzzy
|
6754 |
#| msgid "Show only first day on List/Grid/Slider skins"
|
6755 |
msgid "Show only first day on List/Grid/Slider/Agenda skins"
|
6756 |
msgstr ""
|
6757 |
"Muestra únicamente el primer día en los temas de Lista, Cuadricula y Rotativo"
|
6758 |
|
6759 |
+
#: app/features/mec/settings.php:94
|
6760 |
msgid "Show only first day on all skins"
|
6761 |
msgstr "Mostrar solo el primer día en todas los temas"
|
6762 |
|
6763 |
+
#: app/features/mec/settings.php:95
|
6764 |
msgid "Show all days"
|
6765 |
msgstr "Mostrar todos los días"
|
6766 |
|
6767 |
+
#: app/features/mec/settings.php:100
|
6768 |
msgid ""
|
6769 |
"For showing all days of multiple day events on frontend or only show the "
|
6770 |
"first day."
|
6772 |
"Para mostrar todos los días en un evento multidía en la pagina o solo "
|
6773 |
"mostrar el primer día."
|
6774 |
|
6775 |
+
#: app/features/mec/settings.php:109
|
6776 |
msgid "Remove MEC Data on Plugin Uninstall"
|
6777 |
msgstr "Elimina los datos de MEC al desinstalar el plugin."
|
6778 |
|
6779 |
+
#: app/features/mec/settings.php:120
|
6780 |
msgid "Sender Name"
|
6781 |
msgstr ""
|
6782 |
|
6783 |
+
#: app/features/mec/settings.php:123
|
6784 |
msgid "e.g. Webnus"
|
6785 |
msgstr ""
|
6786 |
|
6787 |
+
#: app/features/mec/settings.php:130
|
6788 |
#, fuzzy
|
6789 |
#| msgid "Organizer Email"
|
6790 |
msgid "Sender Email"
|
6791 |
msgstr "Correo electrónico del organizador"
|
6792 |
|
6793 |
+
#: app/features/mec/settings.php:133
|
6794 |
msgid "e.g. info@webnus.biz"
|
6795 |
msgstr ""
|
6796 |
|
6797 |
+
#: app/features/mec/settings.php:139
|
6798 |
msgid "Exclude Date Suffix"
|
6799 |
msgstr "Excluir sufijo de la fecha"
|
6800 |
|
6801 |
+
#: app/features/mec/settings.php:142
|
6802 |
msgid "Remove suffix from calendars"
|
6803 |
msgstr "Elimina el sufijo de los calendarios."
|
6804 |
|
6805 |
+
#: app/features/mec/settings.php:146
|
6806 |
#, fuzzy
|
6807 |
#| msgid "Remove suffix from calendars"
|
6808 |
msgid "Remove \"Th\" on calendar"
|
6809 |
msgstr "Elimina el sufijo de los calendarios."
|
6810 |
|
6811 |
+
#: app/features/mec/settings.php:147
|
6812 |
msgid ""
|
6813 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
6814 |
"showing just '12' )"
|
6815 |
msgstr ""
|
6816 |
|
6817 |
+
#: app/features/mec/settings.php:154 app/features/mec/settings.php:161
|
6818 |
msgid "Schema"
|
6819 |
msgstr ""
|
6820 |
|
6821 |
+
#: app/features/mec/settings.php:157
|
6822 |
#, fuzzy
|
6823 |
#| msgid "Enable coupons module"
|
6824 |
msgid "Enable Schema Code"
|
6825 |
msgstr "Activar módulo de cupones"
|
6826 |
|
6827 |
+
#: app/features/mec/settings.php:162
|
6828 |
msgid "You can enable/disable Schema scripts"
|
6829 |
msgstr ""
|
6830 |
|
6831 |
+
#: app/features/mec/settings.php:171 app/features/mec/settings.php:181
|
6832 |
+
#: app/libraries/main.php:6498 app/libraries/main.php:6552
|
6833 |
msgid "Weekdays"
|
6834 |
msgstr "Días de la semana"
|
6835 |
|
6836 |
+
#: app/features/mec/settings.php:182
|
6837 |
#, fuzzy
|
6838 |
#| msgid ""
|
6839 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
6845 |
msgstr ""
|
6846 |
"Ten cuidado. El predeterminado es Lunes, Martes, Miércoles, Jueves y Viernes."
|
6847 |
|
6848 |
+
#: app/features/mec/settings.php:192 app/features/mec/settings.php:202
|
6849 |
msgid "Weekends"
|
6850 |
msgstr "Fines de semana"
|
6851 |
|
6852 |
+
#: app/features/mec/settings.php:203
|
6853 |
#, fuzzy
|
6854 |
#| msgid ""
|
6855 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
6861 |
msgstr ""
|
6862 |
"Ten cuidado. El predeterminado es Lunes, Martes, Miércoles, Jueves y Viernes."
|
6863 |
|
6864 |
+
#: app/features/mec/settings.php:212
|
6865 |
#, fuzzy
|
6866 |
#| msgid "Date Format"
|
6867 |
msgid "Datepicker Format"
|
6868 |
msgstr "Formato de fecha"
|
6869 |
|
6870 |
+
#: app/features/mec/settings.php:220
|
6871 |
msgid "(Y-m-d)"
|
6872 |
msgstr ""
|
6873 |
|
6874 |
+
#: app/features/mec/settings.php:221
|
6875 |
msgid "(d-m-Y)"
|
6876 |
msgstr ""
|
6877 |
|
6878 |
+
#: app/features/mec/settings.php:224
|
6879 |
msgid "(Y/m/d)"
|
6880 |
msgstr ""
|
6881 |
|
6882 |
+
#: app/features/mec/settings.php:225
|
6883 |
msgid "(m/d/Y)"
|
6884 |
msgstr ""
|
6885 |
|
6886 |
+
#: app/features/mec/settings.php:228
|
6887 |
msgid "(Y.m.d)"
|
6888 |
msgstr ""
|
6889 |
|
6890 |
+
#: app/features/mec/settings.php:229
|
6891 |
msgid "(d.m.Y)"
|
6892 |
msgstr ""
|
6893 |
|
6894 |
+
#: app/features/mec/settings.php:235 app/features/mec/settings.php:247
|
6895 |
msgid "Midnight Hour"
|
6896 |
msgstr ""
|
6897 |
|
6898 |
+
#: app/features/mec/settings.php:238
|
6899 |
msgid "12 AM"
|
6900 |
msgstr ""
|
6901 |
|
6902 |
+
#: app/features/mec/settings.php:239
|
6903 |
msgid "1 AM"
|
6904 |
msgstr ""
|
6905 |
|
6906 |
+
#: app/features/mec/settings.php:240
|
6907 |
msgid "2 AM"
|
6908 |
msgstr ""
|
6909 |
|
6910 |
+
#: app/features/mec/settings.php:241
|
6911 |
msgid "3 AM"
|
6912 |
msgstr ""
|
6913 |
|
6914 |
+
#: app/features/mec/settings.php:242
|
6915 |
msgid "4 AM"
|
6916 |
msgstr ""
|
6917 |
|
6918 |
+
#: app/features/mec/settings.php:243
|
6919 |
msgid "5 AM"
|
6920 |
msgstr ""
|
6921 |
|
6922 |
+
#: app/features/mec/settings.php:248
|
6923 |
msgid ""
|
6924 |
"12 AM is midnight by default but you can change it if your event ends after "
|
6925 |
"12 AM and you don't want those events considered as multiple days events!"
|
6926 |
msgstr ""
|
6927 |
|
6928 |
+
#: app/features/mec/settings.php:256
|
6929 |
#, fuzzy
|
6930 |
#| msgid "Add Shortcode"
|
6931 |
msgid "Open \"Add Event\" as Popup"
|
6932 |
msgstr "Nuevo Shortcode"
|
6933 |
|
6934 |
+
#: app/features/mec/settings.php:259 app/features/mec/settings.php:267
|
6935 |
+
#: app/features/mec/settings.php:275 app/features/mec/single.php:111
|
6936 |
#, fuzzy
|
6937 |
#| msgid "Enabled"
|
6938 |
msgid "Enable"
|
6939 |
msgstr "Habilitado"
|
6940 |
|
6941 |
+
#: app/features/mec/settings.php:264
|
6942 |
#, fuzzy
|
6943 |
#| msgid "Add Shortcode"
|
6944 |
msgid "Open \"Add Shortcode\" as Popup"
|
6945 |
msgstr "Nuevo Shortcode"
|
6946 |
|
6947 |
+
#: app/features/mec/settings.php:272
|
6948 |
#, fuzzy
|
6949 |
#| msgid "Featured Image"
|
6950 |
msgid "Include Event Featured Image in Feed"
|
6951 |
msgstr "Imagen destacada"
|
6952 |
|
6953 |
+
#: app/features/mec/settings.php:282 app/libraries/main.php:567
|
6954 |
msgid "Archive Pages"
|
6955 |
msgstr "Páginas de archivo"
|
6956 |
|
6957 |
+
#: app/features/mec/settings.php:285 app/features/mec/settings.php:290
|
6958 |
msgid "Archive Page Title"
|
6959 |
msgstr "Título de la página de archivo"
|
6960 |
|
6961 |
+
#: app/features/mec/settings.php:291
|
6962 |
#, fuzzy
|
6963 |
#| msgid "Default value is Events"
|
6964 |
msgid "Default value is Events - It's title of the page"
|
6965 |
msgstr "Valor por defecto del evento"
|
6966 |
|
6967 |
+
#: app/features/mec/settings.php:299 app/features/mec/settings.php:367
|
6968 |
msgid "Archive Page Skin"
|
6969 |
msgstr "Tema de la página de archivo"
|
6970 |
|
6971 |
+
#: app/features/mec/settings.php:307 app/features/mec/settings.php:384
|
6972 |
#, fuzzy
|
6973 |
#| msgid "Edit shortcodes"
|
6974 |
msgid "Put shortcode..."
|
6975 |
msgstr "Editar Shortcodes"
|
6976 |
|
6977 |
+
#: app/features/mec/settings.php:310 app/features/mec/settings.php:325
|
6978 |
+
#: app/features/mec/settings.php:328 app/features/mec/settings.php:337
|
6979 |
+
#: app/features/mec/settings.php:363 app/features/mec/settings.php:387
|
6980 |
+
#: app/features/mec/settings.php:402 app/features/mec/settings.php:405
|
6981 |
+
#: app/features/mec/settings.php:414 app/features/mec/settings.php:440
|
6982 |
#, fuzzy
|
6983 |
#| msgid "The event is ongoing."
|
6984 |
msgid "There is no skins"
|
6985 |
msgstr "El evento está en curso."
|
6986 |
|
6987 |
+
#: app/features/mec/settings.php:313 app/features/mec/settings.php:390
|
6988 |
#: app/features/mec/single.php:73
|
6989 |
msgid "Modern Style"
|
6990 |
msgstr "Estilo moderno"
|
6991 |
|
6992 |
+
#: app/features/mec/settings.php:355 app/features/mec/settings.php:432
|
6993 |
#, fuzzy
|
6994 |
#| msgid "Colorful"
|
6995 |
msgid "colorful"
|
6996 |
msgstr "Colorido"
|
6997 |
|
6998 |
+
#: app/features/mec/settings.php:360 app/features/mec/settings.php:437
|
6999 |
#, fuzzy
|
7000 |
#| msgid "Plain Style"
|
7001 |
msgid "Clean Style"
|
7002 |
msgstr "Estilo simple"
|
7003 |
|
7004 |
+
#: app/features/mec/settings.php:368
|
7005 |
#, fuzzy
|
7006 |
#| msgid "Default value is Calendar/Monthly View"
|
7007 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
7008 |
msgstr "El valor predeterminado es calendario / vista mensual"
|
7009 |
|
7010 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
7011 |
msgid "See Demo"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
+
#: app/features/mec/settings.php:376 app/features/mec/settings.php:444
|
7015 |
msgid "Category Page Skin"
|
7016 |
msgstr "Skin de página de categoría"
|
7017 |
|
7018 |
+
#: app/features/mec/settings.php:445
|
7019 |
#, fuzzy
|
7020 |
#| msgid "Default value is Calendar/Monthly View"
|
7021 |
msgid ""
|
7023 |
"categories."
|
7024 |
msgstr "El valor predeterminado es calendario / vista mensual"
|
7025 |
|
7026 |
+
#: app/features/mec/settings.php:453 app/features/mec/settings.php:461
|
7027 |
msgid "Category Events Method"
|
7028 |
msgstr "Método de categoría de eventos"
|
7029 |
|
7030 |
+
#: app/features/mec/settings.php:462
|
7031 |
msgid "Default value is Upcoming Events"
|
7032 |
msgstr "El valor predeterminado es Próximos eventos"
|
7033 |
|
7034 |
+
#: app/features/mec/settings.php:470 app/features/mec/settings.php:478
|
7035 |
msgid "Events Archive Status"
|
7036 |
msgstr "Estado del archivo de eventos"
|
7037 |
|
7038 |
+
#: app/features/mec/settings.php:473
|
7039 |
msgid "Enabled (Recommended)"
|
7040 |
msgstr "Activado (recomendado)"
|
7041 |
|
7042 |
+
#: app/features/mec/settings.php:479
|
7043 |
msgid ""
|
7044 |
"If you disable it, then you should create a page as archive page of MEC. "
|
7045 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
7049 |
"archivo de MEC. El slug debe igualarse al slug principal de MEC. También "
|
7050 |
"desactivará todas las reglas de sobreescripción."
|
7051 |
|
7052 |
+
#: app/features/mec/settings.php:492 app/features/mec/settings.php:497
|
7053 |
msgid "Main Slug"
|
7054 |
msgstr "Slug principal"
|
7055 |
|
7056 |
+
#: app/features/mec/settings.php:498
|
7057 |
msgid ""
|
7058 |
"Default value is events. You can not have a page with this name. MEC allows "
|
7059 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
7060 |
"applicability and forward-compatibility of the links."
|
7061 |
msgstr ""
|
7062 |
|
7063 |
+
#: app/features/mec/settings.php:502 app/features/mec/settings.php:516
|
7064 |
#, fuzzy
|
7065 |
#| msgid ""
|
7066 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
7070 |
"El valor por defecto es eventos. Los caracteres válidos son a-z minúsculas, "
|
7071 |
"- carácteres y números."
|
7072 |
|
7073 |
+
#: app/features/mec/settings.php:506 app/features/mec/settings.php:511
|
7074 |
msgid "Category Slug"
|
7075 |
msgstr "Slug de la categoría"
|
7076 |
|
7077 |
+
#: app/features/mec/settings.php:512
|
7078 |
#, fuzzy
|
7079 |
#| msgid ""
|
7080 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
7088 |
"cat o a algo más. El valor por defecto es mec-category. Se pueden utilizar "
|
7089 |
"letras de la a-z en minúsculas y numerosas."
|
7090 |
|
7091 |
+
#: app/features/mec/settings.php:524
|
7092 |
msgid "Currency"
|
7093 |
msgstr "Moneda corriente"
|
7094 |
|
7095 |
+
#: app/features/mec/settings.php:534 app/features/mec/settings.php:539
|
7096 |
msgid "Currency Sign"
|
7097 |
msgstr "Tipo de moneda"
|
7098 |
|
7099 |
+
#: app/features/mec/settings.php:540
|
7100 |
msgid "Default value will be \"currency\" if you leave it empty."
|
7101 |
msgstr "El valor por defecto será \"moneda\" si lo dejas en blanco."
|
7102 |
|
7103 |
+
#: app/features/mec/settings.php:547
|
7104 |
msgid "Currency Position"
|
7105 |
msgstr "Posición en moneda extranjera"
|
7106 |
|
7107 |
+
#: app/features/mec/settings.php:550
|
7108 |
msgid "Before $10"
|
7109 |
msgstr "Menos de 10€"
|
7110 |
|
7111 |
+
#: app/features/mec/settings.php:551
|
7112 |
msgid "After 10$"
|
7113 |
msgstr "Más de 10€"
|
7114 |
|
7115 |
+
#: app/features/mec/settings.php:556
|
7116 |
msgid "Thousand Separator"
|
7117 |
msgstr "Separador de miles"
|
7118 |
|
7119 |
+
#: app/features/mec/settings.php:562
|
7120 |
msgid "Decimal Separator"
|
7121 |
msgstr "Separador de decimales"
|
7122 |
|
7123 |
+
#: app/features/mec/settings.php:572
|
7124 |
msgid "No decimal"
|
7125 |
msgstr "No decimal"
|
7126 |
|
7127 |
+
#: app/features/mec/settings.php:583
|
7128 |
msgid "Enable Google Recaptcha"
|
7129 |
msgstr "Habilitar Google Recaptcha"
|
7130 |
|
7131 |
+
#: app/features/mec/settings.php:592
|
7132 |
msgid "Enable on booking form"
|
7133 |
msgstr "Activar en el formulario de reserva"
|
7134 |
|
7135 |
+
#: app/features/mec/settings.php:600
|
7136 |
msgid "Enable on \"Frontend Event Submission\" form"
|
7137 |
msgstr "Activa el formulario \"Envío de eventos desde portada\""
|
7138 |
|
7139 |
+
#: app/features/mec/settings.php:604
|
7140 |
msgid "Site Key"
|
7141 |
msgstr "Clave del Sitio"
|
7142 |
|
7143 |
+
#: app/features/mec/settings.php:610
|
7144 |
msgid "Secret Key"
|
7145 |
msgstr "Clave secreta"
|
7146 |
|
7147 |
+
#: app/features/mec/settings.php:622 app/features/mec/settings.php:630
|
7148 |
msgid "Time Format"
|
7149 |
msgstr "Formato de la hora"
|
7150 |
|
7151 |
+
#: app/features/mec/settings.php:625
|
7152 |
msgid "12 hours format with AM/PM"
|
7153 |
msgstr "Formato de 12 horas con AM / PM"
|
7154 |
|
7155 |
+
#: app/features/mec/settings.php:626
|
7156 |
msgid "24 hours format"
|
7157 |
msgstr "Formato de 24 horas"
|
7158 |
|
7159 |
+
#: app/features/mec/settings.php:631
|
7160 |
msgid "This option, affects the selection of Start/End time."
|
7161 |
msgstr ""
|
7162 |
|
7163 |
+
#: app/features/mec/settings.php:639
|
7164 |
msgid "Events List Page"
|
7165 |
msgstr "Página de lista de eventos"
|
7166 |
|
7167 |
+
#: app/features/mec/settings.php:648 app/features/mec/settings.php:660
|
7168 |
#, php-format
|
7169 |
msgid "Put %s shortcode into the page."
|
7170 |
msgstr "Pon el shortcode %s en la página."
|
7171 |
|
7172 |
+
#: app/features/mec/settings.php:651
|
7173 |
msgid "Add/Edit Events Page"
|
7174 |
msgstr "Añadir/Editar página de eventos"
|
7175 |
|
7176 |
+
#: app/features/mec/settings.php:663
|
7177 |
#, fuzzy
|
7178 |
#| msgid "On Event Start"
|
7179 |
msgid "New Events Status"
|
7180 |
msgstr "En el inicio del evento"
|
7181 |
|
7182 |
+
#: app/features/mec/settings.php:666
|
7183 |
#, fuzzy
|
7184 |
#| msgid "Address"
|
7185 |
msgid "Let WordPress decide"
|
7186 |
msgstr "Dirección"
|
7187 |
|
7188 |
+
#: app/features/mec/settings.php:667 app/libraries/main.php:6774
|
7189 |
+
#: app/libraries/main.php:6796
|
7190 |
msgid "Pending"
|
7191 |
msgstr ""
|
7192 |
|
7193 |
+
#: app/features/mec/settings.php:668
|
7194 |
msgid "Publish"
|
7195 |
msgstr ""
|
7196 |
|
7197 |
+
#: app/features/mec/settings.php:685
|
7198 |
#, fuzzy
|
7199 |
#| msgid ""
|
7200 |
#| "User redirects to this page after booking. Leave it empty if you want to "
|
7206 |
"Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
|
7207 |
"Déjalo vacío si lo deseas desactivado."
|
7208 |
|
7209 |
+
#: app/features/mec/settings.php:692 app/features/mec/settings.php:697
|
7210 |
#, fuzzy
|
7211 |
#| msgid "Thank You Page"
|
7212 |
msgid "Thank You Page URL"
|
7213 |
msgstr "Página de agradecimiento"
|
7214 |
|
7215 |
+
#: app/features/mec/settings.php:698
|
7216 |
msgid "If filled it will use instead of thank you page set above."
|
7217 |
msgstr ""
|
7218 |
|
7219 |
+
#: app/features/mec/settings.php:721 app/features/mec/settings.php:726
|
7220 |
#, fuzzy
|
7221 |
#| msgid "Maximum Dates"
|
7222 |
msgid "Maximum File Size"
|
7223 |
msgstr "Fechas máximas"
|
7224 |
|
7225 |
+
#: app/features/mec/settings.php:723
|
7226 |
msgid "in KB"
|
7227 |
msgstr ""
|
7228 |
|
7229 |
+
#: app/features/mec/settings.php:727
|
7230 |
msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
|
7231 |
msgstr ""
|
7232 |
|
7233 |
+
#: app/features/mec/settings.php:736
|
7234 |
#, fuzzy
|
7235 |
#| msgid "Enable event submission by guest (Not logged-in) users"
|
7236 |
msgid "Enable event submission by guest (Not logged in) users"
|
7238 |
"Habilitar la presentación de eventos por los usuarios invitados (no "
|
7239 |
"conectados)"
|
7240 |
|
7241 |
+
#: app/features/mec/settings.php:743
|
7242 |
msgid "Enable mandatory email and name for guest user"
|
7243 |
msgstr ""
|
7244 |
"Activa que sea obligatorio el correo y nombre del usuario para el usuario "
|
7245 |
"invitado"
|
7246 |
|
7247 |
+
#: app/features/mec/settings.php:749
|
7248 |
msgid ""
|
7249 |
"Automatically create users after event publish and assign event to the "
|
7250 |
"created user"
|
7251 |
msgstr ""
|
7252 |
|
7253 |
+
#: app/features/mec/settings.php:754
|
7254 |
msgid "Frontend Event Submission Sections"
|
7255 |
msgstr "Secciones de envío de eventos en la pagina."
|
7256 |
|
7257 |
+
#: app/features/mec/settings.php:758
|
7258 |
#, fuzzy
|
7259 |
#| msgid "Event Details"
|
7260 |
msgid "Event Data Fields"
|
7261 |
msgstr "Detalle de evento"
|
7262 |
|
7263 |
+
#: app/features/mec/settings.php:782 app/widgets/single.php:121
|
7264 |
msgid "Event Categories"
|
7265 |
msgstr "Categorías de evento"
|
7266 |
|
7267 |
+
#: app/features/mec/settings.php:788
|
7268 |
msgid "Event Labels"
|
7269 |
msgstr "Etiqueta de eventos"
|
7270 |
|
7271 |
+
#: app/features/mec/settings.php:800
|
7272 |
msgid "Event Tags"
|
7273 |
msgstr "Etiquetas del Evento"
|
7274 |
|
7275 |
+
#: app/features/mec/settings.php:812 app/widgets/single.php:125
|
7276 |
msgid "Event Organizer"
|
7277 |
msgstr "Organizador de eventos"
|
7278 |
|
7279 |
+
#: app/features/mec/settings.php:839 app/features/occurrences.php:385
|
7280 |
+
#, fuzzy
|
7281 |
+
#| msgid "Total booking limits"
|
7282 |
+
msgid "Total Booking Limit"
|
7283 |
+
msgstr "Límite total de reservas"
|
7284 |
+
|
7285 |
+
#: app/features/mec/settings.php:845
|
7286 |
+
#, fuzzy
|
7287 |
+
#| msgid "Discount"
|
7288 |
+
msgid "Discount Per User Roles"
|
7289 |
+
msgstr "Descuento"
|
7290 |
+
|
7291 |
+
#: app/features/mec/settings.php:876
|
7292 |
+
#, fuzzy
|
7293 |
+
#| msgid "Ticket time"
|
7294 |
+
msgid "Ticket Options"
|
7295 |
+
msgstr "Hora de la entrada"
|
7296 |
+
|
7297 |
+
#: app/features/mec/settings.php:888
|
7298 |
msgid "Fees / Taxes Options"
|
7299 |
msgstr "Opciones de Cuotas/Impuestos"
|
7300 |
|
7301 |
+
#: app/features/mec/settings.php:902 app/features/schema.php:64
|
7302 |
msgid "SEO Schema"
|
7303 |
msgstr ""
|
7304 |
|
7305 |
+
#: app/features/mec/settings.php:925 app/features/occurrences.php:72
|
7306 |
#: app/features/occurrences.php:102
|
7307 |
#, fuzzy
|
7308 |
#| msgid "Occurrences times"
|
7309 |
msgid "Occurrences"
|
7310 |
msgstr "Ocurrencias del evento"
|
7311 |
|
7312 |
+
#: app/features/mec/settings.php:934 app/widgets/single.php:165
|
7313 |
#, fuzzy
|
7314 |
#| msgid "Edit Event"
|
7315 |
msgid "Virtual Event"
|
7316 |
msgstr "Editar Evento"
|
7317 |
|
7318 |
+
#: app/features/mec/settings.php:943
|
7319 |
#, fuzzy
|
7320 |
#| msgid "Book Event"
|
7321 |
msgid "Zoom Event"
|
7322 |
msgstr "Reservar evento"
|
7323 |
|
7324 |
+
#: app/features/mec/settings.php:956
|
7325 |
#, php-format
|
7326 |
msgid ""
|
7327 |
"Users can put a note for editors while they're submitting the event. Also "
|
7332 |
"evento. También puede poner %%event_note%% en la notificación de nuevo "
|
7333 |
"evento para obtener la nota de los usuarios en el correo electrónico."
|
7334 |
|
7335 |
+
#: app/features/mec/settings.php:963 app/features/mec/settings.php:971
|
7336 |
#, fuzzy
|
7337 |
#| msgid "Visibility"
|
7338 |
msgid "Note visibility"
|
7339 |
msgstr "Visibilidad"
|
7340 |
|
7341 |
+
#: app/features/mec/settings.php:966
|
7342 |
msgid "Always"
|
7343 |
msgstr "Siempre"
|
7344 |
|
7345 |
+
#: app/features/mec/settings.php:967
|
7346 |
msgid "While event is not published"
|
7347 |
msgstr "Mientras no se publique el evento"
|
7348 |
|
7349 |
+
#: app/features/mec/settings.php:972
|
7350 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
7351 |
msgstr ""
|
7352 |
"La nota de evento se muestra en el formulario de presentación de Frontend y "
|
7353 |
"Editar evento en el backend."
|
7354 |
|
7355 |
+
#: app/features/mec/settings.php:980
|
7356 |
#, fuzzy
|
7357 |
#| msgid "Required Field"
|
7358 |
msgid "Required Fields"
|
7359 |
msgstr "Campo obligatorio"
|
7360 |
|
7361 |
+
#: app/features/mec/settings.php:983
|
7362 |
#, fuzzy
|
7363 |
#| msgid "Description"
|
7364 |
msgid "Event Description"
|
7365 |
msgstr "Descripción"
|
7366 |
|
7367 |
+
#: app/features/mec/settings.php:987 app/libraries/main.php:6521
|
7368 |
+
#: app/libraries/main.php:6570
|
7369 |
msgid "More Info Link"
|
7370 |
msgstr "Enlace a Más Información"
|
7371 |
|
7372 |
+
#: app/features/mec/settings.php:1000 app/libraries/main.php:572
|
7373 |
msgid "User Profile"
|
7374 |
msgstr ""
|
7375 |
|
7376 |
+
#: app/features/mec/settings.php:1002
|
7377 |
#, php-format
|
7378 |
msgid ""
|
7379 |
"Put %s shortcode into your desired page. Then users are able to see the "
|
7380 |
"history of their bookings."
|
7381 |
msgstr ""
|
7382 |
|
7383 |
+
#: app/features/mec/settings.php:1007 app/libraries/main.php:573
|
7384 |
+
#, fuzzy
|
7385 |
+
#| msgid "Hide Events"
|
7386 |
+
msgid "User Events"
|
7387 |
+
msgstr "Ocultar eventos"
|
7388 |
+
|
7389 |
+
#: app/features/mec/settings.php:1009
|
7390 |
+
#, php-format
|
7391 |
+
msgid ""
|
7392 |
+
"Put %s shortcode into your desired page. Then users are able to see the "
|
7393 |
+
"their own events."
|
7394 |
+
msgstr ""
|
7395 |
+
|
7396 |
+
#: app/features/mec/settings.php:1021 app/libraries/main.php:574
|
7397 |
#, fuzzy
|
7398 |
#| msgid "Search Form"
|
7399 |
msgid "Search Bar"
|
7400 |
msgstr "Formulario de Búsqueda"
|
7401 |
|
7402 |
+
#: app/features/mec/settings.php:1023
|
7403 |
#, php-format
|
7404 |
msgid ""
|
7405 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
7406 |
msgstr ""
|
7407 |
|
7408 |
+
#: app/features/mec/settings.php:1027
|
7409 |
msgid "Ajax Live mode"
|
7410 |
msgstr ""
|
7411 |
|
7412 |
+
#: app/features/mec/settings.php:1031
|
7413 |
msgid "Ajax mode"
|
7414 |
msgstr ""
|
7415 |
|
7416 |
+
#: app/features/mec/settings.php:1032
|
7417 |
msgid ""
|
7418 |
"if you enable this option, the search button will disappear. To use this "
|
7419 |
"feature, text input field must be enabled."
|
7420 |
msgstr ""
|
7421 |
|
7422 |
+
#: app/features/mec/settings.php:1040
|
7423 |
#, fuzzy
|
7424 |
#| msgid "Modern Style"
|
7425 |
msgid "Modern Type"
|
7426 |
msgstr "Estilo moderno"
|
7427 |
|
7428 |
+
#: app/features/mec/settings.php:1044
|
7429 |
#, fuzzy
|
7430 |
#| msgid "Search Form"
|
7431 |
msgid "Search bar fields"
|
7432 |
msgstr "Formulario de Búsqueda"
|
7433 |
|
7434 |
+
#: app/features/mec/settings.php:1086
|
7435 |
#, fuzzy
|
7436 |
#| msgid "Text Input"
|
7437 |
msgid "Text input"
|
7438 |
msgstr "Campo de texto"
|
7439 |
|
7440 |
+
#: app/features/mec/settings.php:1099
|
7441 |
msgid "Enable Mailchimp Integration"
|
7442 |
msgstr "Activar integración con MailChimp"
|
7443 |
|
7444 |
+
#: app/features/mec/settings.php:1104 app/features/mec/settings.php:1109
|
7445 |
+
#: app/features/mec/settings.php:1158 app/features/mec/settings.php:1182
|
7446 |
+
#: app/features/mec/settings.php:1206 app/features/mec/settings.php:1277
|
7447 |
msgid "API Key"
|
7448 |
msgstr "API Key"
|
7449 |
|
7450 |
+
#: app/features/mec/settings.php:1117 app/features/mec/settings.php:1122
|
7451 |
+
#: app/features/mec/settings.php:1164 app/features/mec/settings.php:1283
|
7452 |
+
#: app/features/mec/settings.php:1301 app/features/mec/settings.php:1349
|
7453 |
msgid "List ID"
|
7454 |
msgstr "ID de la lista"
|
7455 |
|
7456 |
+
#: app/features/mec/settings.php:1130 app/features/mec/settings.php:1138
|
7457 |
msgid "Subscription Status"
|
7458 |
msgstr "Estado Suscripción"
|
7459 |
|
7460 |
+
#: app/features/mec/settings.php:1133
|
7461 |
msgid "Subscribe automatically"
|
7462 |
msgstr "Suscribirse automáticamente "
|
7463 |
|
7464 |
+
#: app/features/mec/settings.php:1134
|
7465 |
msgid "Subscribe by verification"
|
7466 |
msgstr "Suscribirse por verificación"
|
7467 |
|
7468 |
+
#: app/features/mec/settings.php:1139
|
7469 |
#, fuzzy
|
7470 |
#| msgid ""
|
7471 |
#| "If you choose \"Subscribe by verification\" then an email will send to "
|
7477 |
"Si eliges “Suscribir por verificación” entonces un email de verificación de "
|
7478 |
"suscripción se le enviará al usuario."
|
7479 |
|
7480 |
+
#: app/features/mec/settings.php:1149 app/libraries/main.php:576
|
7481 |
#, fuzzy
|
7482 |
#| msgid "Mailchimp Integration"
|
7483 |
msgid "Campaign Monitor Integration"
|
7484 |
msgstr "Integración de MailChimp"
|
7485 |
|
7486 |
+
#: app/features/mec/settings.php:1153
|
7487 |
#, fuzzy
|
7488 |
#| msgid "Enable Mailchimp Integration"
|
7489 |
msgid "Enable Campaign Monitor Integration"
|
7490 |
msgstr "Activar integración con MailChimp"
|
7491 |
|
7492 |
+
#: app/features/mec/settings.php:1173 app/libraries/main.php:577
|
7493 |
#, fuzzy
|
7494 |
#| msgid "Mailchimp Integration"
|
7495 |
msgid "MailerLite Integration"
|
7496 |
msgstr "Integración de MailChimp"
|
7497 |
|
7498 |
+
#: app/features/mec/settings.php:1177
|
7499 |
#, fuzzy
|
7500 |
#| msgid "Enable Mailchimp Integration"
|
7501 |
msgid "Enable MailerLite Integration"
|
7502 |
msgstr "Activar integración con MailChimp"
|
7503 |
|
7504 |
+
#: app/features/mec/settings.php:1188
|
7505 |
msgid "Group ID"
|
7506 |
msgstr ""
|
7507 |
|
7508 |
+
#: app/features/mec/settings.php:1197 app/libraries/main.php:578
|
7509 |
#, fuzzy
|
7510 |
#| msgid "BuddyPress Integration"
|
7511 |
msgid "Constant Contact Integration"
|
7512 |
msgstr "Integración de BuddyPress"
|
7513 |
|
7514 |
+
#: app/features/mec/settings.php:1201
|
7515 |
#, fuzzy
|
7516 |
#| msgid "Enable Mailchimp Integration"
|
7517 |
msgid "Enable constantcontact Integration"
|
7518 |
msgstr "Activar integración con MailChimp"
|
7519 |
|
7520 |
+
#: app/features/mec/settings.php:1212
|
7521 |
#, fuzzy
|
7522 |
#| msgid "Facebook Page Link"
|
7523 |
msgid "Access Token"
|
7524 |
msgstr "Enlace de página Facebook enlace"
|
7525 |
|
7526 |
+
#: app/features/mec/settings.php:1236 app/features/mec/settings.php:1251
|
7527 |
#, fuzzy
|
7528 |
#| msgid "Select icon"
|
7529 |
msgid "Select List"
|
7530 |
msgstr "Seleccionar icono"
|
7531 |
|
7532 |
+
#: app/features/mec/settings.php:1252
|
7533 |
msgid ""
|
7534 |
"Please fill in the API key and Access Token field and save settings. after "
|
7535 |
"that, please refresh the page and select a list."
|
7536 |
msgstr ""
|
7537 |
|
7538 |
+
#: app/features/mec/settings.php:1262 app/libraries/main.php:579
|
7539 |
#, fuzzy
|
7540 |
#| msgid "Mailchimp Integration"
|
7541 |
msgid "Active Campaign Integration"
|
7542 |
msgstr "Integración de MailChimp"
|
7543 |
|
7544 |
+
#: app/features/mec/settings.php:1266
|
7545 |
#, fuzzy
|
7546 |
#| msgid "Enable Mailchimp Integration"
|
7547 |
msgid "Enable Active Campaign Integration"
|
7548 |
msgstr "Activar integración con MailChimp"
|
7549 |
|
7550 |
+
#: app/features/mec/settings.php:1271
|
7551 |
msgid "API URL"
|
7552 |
msgstr ""
|
7553 |
|
7554 |
+
#: app/features/mec/settings.php:1292 app/libraries/main.php:580
|
7555 |
#, fuzzy
|
7556 |
#| msgid "Mailchimp Integration"
|
7557 |
msgid "AWeber Integration"
|
7558 |
msgstr "Integración de MailChimp"
|
7559 |
|
7560 |
+
#: app/features/mec/settings.php:1296
|
7561 |
#, fuzzy
|
7562 |
#| msgid "Enable Mailchimp Integration"
|
7563 |
msgid "Enable AWeber Integration"
|
7564 |
msgstr "Activar integración con MailChimp"
|
7565 |
|
7566 |
+
#: app/features/mec/settings.php:1306
|
7567 |
#, fuzzy, php-format
|
7568 |
#| msgid "Third Party plugin is not installed and activated!"
|
7569 |
msgid "%s plugin should be installed and connected to your AWeber account."
|
7570 |
msgstr "¡Plugin de terceros no esta instalado ni activado!"
|
7571 |
|
7572 |
+
#: app/features/mec/settings.php:1307
|
7573 |
#, php-format
|
7574 |
msgid "More information about the list ID can be found %s."
|
7575 |
msgstr ""
|
7576 |
|
7577 |
+
#: app/features/mec/settings.php:1312 app/libraries/main.php:581
|
7578 |
#, fuzzy
|
7579 |
#| msgid "Mailchimp Integration"
|
7580 |
msgid "MailPoet Integration"
|
7581 |
msgstr "Integración de MailChimp"
|
7582 |
|
7583 |
+
#: app/features/mec/settings.php:1316
|
7584 |
#, fuzzy
|
7585 |
#| msgid "Enable Mailchimp Integration"
|
7586 |
msgid "Enable MailPoet Integration"
|
7587 |
msgstr "Activar integración con MailChimp"
|
7588 |
|
7589 |
+
#: app/features/mec/settings.php:1322
|
7590 |
#: app/skins/default_full_calendar/tpl.php:78
|
7591 |
#: app/skins/full_calendar/tpl.php:125
|
7592 |
msgid "List"
|
7593 |
msgstr "Lista"
|
7594 |
|
7595 |
+
#: app/features/mec/settings.php:1333
|
7596 |
#, fuzzy, php-format
|
7597 |
#| msgid "Third Party plugin is not installed and activated!"
|
7598 |
msgid "%s plugin should be installed and activated."
|
7599 |
msgstr "¡Plugin de terceros no esta instalado ni activado!"
|
7600 |
|
7601 |
+
#: app/features/mec/settings.php:1338 app/libraries/main.php:582
|
7602 |
#, fuzzy
|
7603 |
#| msgid "Mailchimp Integration"
|
7604 |
msgid "Sendfox Integration"
|
7605 |
msgstr "Integración de MailChimp"
|
7606 |
|
7607 |
+
#: app/features/mec/settings.php:1342
|
7608 |
#, fuzzy
|
7609 |
#| msgid "Enable Mailchimp Integration"
|
7610 |
msgid "Enable Sendfox Integration"
|
7611 |
msgstr "Activar integración con MailChimp"
|
7612 |
|
7613 |
+
#: app/features/mec/settings.php:1359
|
7614 |
#, fuzzy, php-format
|
7615 |
#| msgid "Third Party plugin is not installed and activated!"
|
7616 |
msgid "%s plugin should be installed and connected to your Sendfox account."
|
7617 |
msgstr "¡Plugin de terceros no esta instalado ni activado!"
|
7618 |
|
7619 |
+
#: app/features/mec/single.php:38 app/libraries/main.php:586
|
7620 |
#, fuzzy
|
7621 |
#| msgid "Single Event Style"
|
7622 |
msgid "Single Event Page"
|
7734 |
"the settings page.' tab"
|
7735 |
msgstr ""
|
7736 |
|
7737 |
+
#: app/features/mec/single.php:162 app/libraries/main.php:587
|
7738 |
#, fuzzy
|
7739 |
#| msgid "Custom Styles"
|
7740 |
msgid "Custom Fields"
|
7741 |
msgstr "Estilo personalizado"
|
7742 |
|
7743 |
+
#: app/features/mec/single.php:192 app/libraries/main.php:3453
|
7744 |
msgid "URL"
|
7745 |
msgstr ""
|
7746 |
|
7788 |
"Usar esta opción permite incluir o excluir ciertos días para la ocurrencia "
|
7789 |
"de eventos."
|
7790 |
|
7791 |
+
#: app/features/mec/single.php:286 app/libraries/main.php:590
|
7792 |
msgid "Additional Organizers"
|
7793 |
msgstr "Organizadores adicionales"
|
7794 |
|
7822 |
"Mostrar la opción de organizadores adicionales en la pagina de añadir "
|
7823 |
"eventos y la pagina de evento individual."
|
7824 |
|
7825 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:592
|
7826 |
#: app/skins/single.php:170 app/skins/single.php:435
|
7827 |
#, fuzzy
|
7828 |
#| msgid "featured event"
|
7839 |
msgid "Select Taxonomies:"
|
7840 |
msgstr "Taxonomías"
|
7841 |
|
7842 |
+
#: app/features/mec/single.php:360 app/libraries/main.php:593
|
7843 |
#, fuzzy
|
7844 |
#| msgid "Next/Previous Buttons"
|
7845 |
msgid "Next / Previous Events"
|
7849 |
msgid "Display next / previous events based on taxonomy in single event page."
|
7850 |
msgstr ""
|
7851 |
|
7852 |
+
#: app/features/mec/single.php:402 app/libraries/main.php:639
|
7853 |
#, fuzzy
|
7854 |
#| msgid "Next Occurrence"
|
7855 |
msgid "Edit Per Occurrences"
|
7886 |
msgstr "Fuente por defecto"
|
7887 |
|
7888 |
#: app/features/mec/styling.php:50 app/features/mec/support.php:52
|
7889 |
+
#: app/libraries/main.php:837
|
7890 |
msgid "Styling Options"
|
7891 |
msgstr "Opciones visuales"
|
7892 |
|
8067 |
msgid "MEC Settings"
|
8068 |
msgstr "Ajustes MEC"
|
8069 |
|
8070 |
+
#: app/features/mec/support-page.php:99 app/libraries/main.php:691
|
8071 |
#, fuzzy
|
8072 |
#| msgid "Single Event Style"
|
8073 |
msgid "Single Event"
|
8428 |
msgid "Create a support ticket"
|
8429 |
msgstr "Añadir nuevo Shortcode"
|
8430 |
|
8431 |
+
#: app/features/mec/support.php:59 app/libraries/main.php:844
|
8432 |
msgid "Custom CSS"
|
8433 |
msgstr "CSS personalizado"
|
8434 |
|
8549 |
msgid "Delete"
|
8550 |
msgstr ""
|
8551 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8552 |
#: app/features/occurrences.php:393 app/features/schema.php:70
|
8553 |
#, fuzzy
|
8554 |
#| msgid "Hourly Schedule"
|
8680 |
msgid "eg. https://webnus.net"
|
8681 |
msgstr "ej. https://webnus.net"
|
8682 |
|
8683 |
+
#: app/features/organizers.php:312 app/libraries/main.php:6526
|
8684 |
+
#: app/libraries/main.php:6573 app/skins/single.php:1314
|
8685 |
msgid "Other Organizers"
|
8686 |
msgstr "En común"
|
8687 |
|
8757 |
msgstr ""
|
8758 |
|
8759 |
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:550
|
8760 |
+
#: app/modules/booking/steps/form.php:349
|
8761 |
#: app/modules/booking/steps/tickets.php:180 app/skins/countdown/tpl.php:123
|
8762 |
#: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:216
|
8763 |
msgid "Next"
|
8872 |
msgid "Please %s/%s in order to see your bookings / profile."
|
8873 |
msgstr ""
|
8874 |
|
8875 |
+
#: app/features/profile/profile.php:20 app/libraries/main.php:2538
|
8876 |
#, fuzzy
|
8877 |
#| msgid "Your booking cannot be canceled."
|
8878 |
msgid "Your booking already canceled!"
|
8882 |
msgid "#"
|
8883 |
msgstr ""
|
8884 |
|
8885 |
+
#: app/features/profile/profile.php:61 app/libraries/main.php:3785
|
8886 |
msgid "Status"
|
8887 |
msgstr "Estado"
|
8888 |
|
8889 |
+
#: app/features/profile/profile.php:64 app/libraries/main.php:2756
|
8890 |
msgid "Attendees"
|
8891 |
msgstr "Asistentes"
|
8892 |
|
8944 |
msgid "No search result."
|
8945 |
msgstr ""
|
8946 |
|
8947 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:6528
|
8948 |
+
#: app/libraries/main.php:6575 app/libraries/notifications.php:1265
|
8949 |
+
#: app/libraries/render.php:538 app/libraries/render.php:730
|
8950 |
+
#: app/libraries/render.php:788 app/libraries/render.php:885
|
8951 |
#: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
|
8952 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
8953 |
#: app/modules/next-event/details.php:154
|
9038 |
"section and speaker widget section!"
|
9039 |
msgstr ""
|
9040 |
|
9041 |
+
#: app/features/userevents.php:58
|
9042 |
+
#, fuzzy, php-format
|
9043 |
+
#| msgid "Please %s/%s in order to submit new events."
|
9044 |
+
msgid "Please %s/%s in order to see your own events."
|
9045 |
+
msgstr "Por favor %s/%s para poder añadir nuevos eventos."
|
9046 |
+
|
9047 |
#: app/features/wc.php:103 app/libraries/notifications.php:1250
|
9048 |
#: app/libraries/notifications.php:1265 app/libraries/notifications.php:1276
|
9049 |
#: app/libraries/notifications.php:1549 app/libraries/notifications.php:1550
|
9181 |
msgid "New Day"
|
9182 |
msgstr "Días de semana"
|
9183 |
|
9184 |
+
#: app/libraries/main.php:366 app/libraries/main.php:2123
|
9185 |
+
#: app/libraries/main.php:2148
|
9186 |
msgid "Agenda View"
|
9187 |
msgstr "Vista de Agenda"
|
9188 |
|
9189 |
+
#: app/libraries/main.php:367 app/libraries/main.php:2114
|
9190 |
+
#: app/libraries/main.php:2139
|
9191 |
msgid "Full Calendar"
|
9192 |
msgstr "Calendario completo"
|
9193 |
|
9194 |
+
#: app/libraries/main.php:369 app/libraries/main.php:2116
|
9195 |
+
#: app/libraries/main.php:2141
|
9196 |
msgid "Calendar/Monthly View"
|
9197 |
msgstr "Ver Calendario/Mes"
|
9198 |
|
9199 |
+
#: app/libraries/main.php:372 app/libraries/main.php:2119
|
9200 |
+
#: app/libraries/main.php:2144
|
9201 |
msgid "Timetable View"
|
9202 |
msgstr "Vista de Horario"
|
9203 |
|
9204 |
+
#: app/libraries/main.php:373 app/libraries/main.php:2120
|
9205 |
+
#: app/libraries/main.php:2145
|
9206 |
msgid "Masonry View"
|
9207 |
msgstr "Vista en mosaico"
|
9208 |
|
9209 |
+
#: app/libraries/main.php:374 app/libraries/main.php:2124
|
9210 |
+
#: app/libraries/main.php:2149
|
9211 |
msgid "Map View"
|
9212 |
msgstr "Vista de mapa"
|
9213 |
|
9237 |
msgid "Timeline View"
|
9238 |
msgstr "Vista de Horario"
|
9239 |
|
9240 |
+
#: app/libraries/main.php:419 app/libraries/main.php:6500
|
9241 |
+
#: app/libraries/main.php:6554
|
9242 |
msgid "SU"
|
9243 |
msgstr "DO"
|
9244 |
|
9245 |
+
#: app/libraries/main.php:420 app/libraries/main.php:6501
|
9246 |
+
#: app/libraries/main.php:6555
|
9247 |
msgid "MO"
|
9248 |
msgstr "LU"
|
9249 |
|
9250 |
+
#: app/libraries/main.php:421 app/libraries/main.php:6502
|
9251 |
+
#: app/libraries/main.php:6556
|
9252 |
msgid "TU"
|
9253 |
msgstr "MA"
|
9254 |
|
9255 |
+
#: app/libraries/main.php:422 app/libraries/main.php:6503
|
9256 |
+
#: app/libraries/main.php:6557
|
9257 |
msgid "WE"
|
9258 |
msgstr "MI"
|
9259 |
|
9260 |
+
#: app/libraries/main.php:423 app/libraries/main.php:6504
|
9261 |
+
#: app/libraries/main.php:6558
|
9262 |
msgid "TH"
|
9263 |
msgstr "JU"
|
9264 |
|
9265 |
+
#: app/libraries/main.php:424 app/libraries/main.php:6505
|
9266 |
+
#: app/libraries/main.php:6559
|
9267 |
msgid "FR"
|
9268 |
msgstr "VI"
|
9269 |
|
9270 |
+
#: app/libraries/main.php:425 app/libraries/main.php:6506
|
9271 |
+
#: app/libraries/main.php:6560
|
9272 |
msgid "SA"
|
9273 |
msgstr "SA"
|
9274 |
|
9275 |
+
#: app/libraries/main.php:591
|
9276 |
#, fuzzy
|
9277 |
#| msgid "Additional Organizers"
|
9278 |
msgid "Additional Locations"
|
9279 |
msgstr "Organizadores adicionales"
|
9280 |
|
9281 |
+
#: app/libraries/main.php:603
|
9282 |
#, fuzzy
|
9283 |
#| msgid "Upload/Add image"
|
9284 |
msgid "Upload Field"
|
9285 |
msgstr "Subir/Añadir imagen"
|
9286 |
|
9287 |
+
#: app/libraries/main.php:757
|
9288 |
#, fuzzy
|
9289 |
#| msgid "Social Module"
|
9290 |
msgid "Modules"
|
9291 |
msgstr "Módulo social"
|
9292 |
|
9293 |
+
#: app/libraries/main.php:925
|
9294 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
9295 |
msgstr ""
|
9296 |
|
9297 |
+
#: app/libraries/main.php:932
|
9298 |
msgid ""
|
9299 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
9300 |
"released. This is a revolution in the world of Event Calendars. We have "
|
9302 |
"below:"
|
9303 |
msgstr ""
|
9304 |
|
9305 |
+
#: app/libraries/main.php:934
|
9306 |
msgid ""
|
9307 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
9308 |
"products) and Woo products at the same time."
|
9309 |
msgstr ""
|
9310 |
|
9311 |
+
#: app/libraries/main.php:935
|
9312 |
msgid ""
|
9313 |
"<strong>Event API:</strong> display your events (shortcodes/single event) on "
|
9314 |
"other websites without MEC. Use JSON output features to make your Apps "
|
9315 |
"compatible with MEC."
|
9316 |
msgstr ""
|
9317 |
|
9318 |
+
#: app/libraries/main.php:936
|
9319 |
msgid ""
|
9320 |
"<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
|
9321 |
"main websites. Changes in the main one will be inherited by the subsites. "
|
9322 |
"you can set these up in the admin panel."
|
9323 |
msgstr ""
|
9324 |
|
9325 |
+
#: app/libraries/main.php:937
|
9326 |
msgid ""
|
9327 |
"<strong>User Dashboard:</strong> Create exclusive pages for users. These "
|
9328 |
"pages can contain ticket purchase information, information about registered "
|
9329 |
"events. Users can now log in to purchase tickets."
|
9330 |
msgstr ""
|
9331 |
|
9332 |
+
#: app/libraries/main.php:939
|
9333 |
msgid "find out more"
|
9334 |
msgstr ""
|
9335 |
|
9336 |
+
#: app/libraries/main.php:1840
|
9337 |
msgid "Events at this location"
|
9338 |
msgstr "Eventos en este lugar"
|
9339 |
|
9340 |
+
#: app/libraries/main.php:1840
|
9341 |
msgid "Event at this location"
|
9342 |
msgstr "Evento en este lugar"
|
9343 |
|
9344 |
+
#: app/libraries/main.php:1892
|
9345 |
msgid "Facebook"
|
9346 |
msgstr "Facebook"
|
9347 |
|
9348 |
+
#: app/libraries/main.php:1893
|
9349 |
msgid "Twitter"
|
9350 |
msgstr "Twitter"
|
9351 |
|
9352 |
+
#: app/libraries/main.php:1894 app/libraries/main.php:1951
|
9353 |
msgid "Linkedin"
|
9354 |
msgstr "LinkedIn"
|
9355 |
|
9356 |
+
#: app/libraries/main.php:1895 app/libraries/main.php:1987
|
9357 |
msgid "VK"
|
9358 |
msgstr "VK"
|
9359 |
|
9360 |
+
#: app/libraries/main.php:1896
|
9361 |
msgid "Tumblr"
|
9362 |
msgstr ""
|
9363 |
|
9364 |
+
#: app/libraries/main.php:1897
|
9365 |
msgid "Pinterest"
|
9366 |
msgstr ""
|
9367 |
|
9368 |
+
#: app/libraries/main.php:1898
|
9369 |
msgid "Flipboard"
|
9370 |
msgstr ""
|
9371 |
|
9372 |
+
#: app/libraries/main.php:1899
|
9373 |
#, fuzzy
|
9374 |
#| msgid "Tickets"
|
9375 |
msgid "GetPocket"
|
9376 |
msgstr "Tickets"
|
9377 |
|
9378 |
+
#: app/libraries/main.php:1900
|
9379 |
msgid "Reddit"
|
9380 |
msgstr ""
|
9381 |
|
9382 |
+
#: app/libraries/main.php:1901
|
9383 |
msgid "WhatsApp"
|
9384 |
msgstr ""
|
9385 |
|
9386 |
+
#: app/libraries/main.php:1902
|
9387 |
msgid "Telegram"
|
9388 |
msgstr ""
|
9389 |
|
9390 |
+
#: app/libraries/main.php:1921
|
9391 |
msgid "Share on Facebook"
|
9392 |
msgstr "Compartir en Facebook"
|
9393 |
|
9394 |
+
#: app/libraries/main.php:1936
|
9395 |
msgid "Tweet"
|
9396 |
msgstr "Tweet"
|
9397 |
|
9398 |
+
#: app/libraries/main.php:2002
|
9399 |
#, fuzzy
|
9400 |
#| msgid "Share on Facebook"
|
9401 |
msgid "Share on Tumblr"
|
9402 |
msgstr "Compartir en Facebook"
|
9403 |
|
9404 |
+
#: app/libraries/main.php:2018
|
9405 |
msgid "Share on Pinterest"
|
9406 |
msgstr ""
|
9407 |
|
9408 |
+
#: app/libraries/main.php:2034
|
9409 |
#, fuzzy
|
9410 |
#| msgid "Share on Facebook"
|
9411 |
msgid "Share on Flipboard"
|
9412 |
msgstr "Compartir en Facebook"
|
9413 |
|
9414 |
+
#: app/libraries/main.php:2052
|
9415 |
#, fuzzy
|
9416 |
#| msgid "Share on Facebook"
|
9417 |
msgid "Share on GetPocket"
|
9418 |
msgstr "Compartir en Facebook"
|
9419 |
|
9420 |
+
#: app/libraries/main.php:2068
|
9421 |
#, fuzzy
|
9422 |
#| msgid "Share on Facebook"
|
9423 |
msgid "Share on Reddit"
|
9424 |
msgstr "Compartir en Facebook"
|
9425 |
|
9426 |
+
#: app/libraries/main.php:2084
|
9427 |
msgid "Share on Telegram"
|
9428 |
msgstr ""
|
9429 |
|
9430 |
+
#: app/libraries/main.php:2102
|
9431 |
msgid "Share on WhatsApp"
|
9432 |
msgstr ""
|
9433 |
|
9434 |
+
#: app/libraries/main.php:2125 app/libraries/main.php:2150
|
9435 |
#, fuzzy
|
9436 |
#| msgid "Shortcode"
|
9437 |
msgid "Custom Shortcode"
|
9438 |
msgstr "Shortcode"
|
9439 |
|
9440 |
+
#: app/libraries/main.php:2499 app/libraries/main.php:2510
|
9441 |
#, fuzzy
|
9442 |
#| msgid "The events are imported successfully!"
|
9443 |
msgid "Your booking has been verified successfully!"
|
9444 |
msgstr "¡Los eventos se importaron correctamente!"
|
9445 |
|
9446 |
+
#: app/libraries/main.php:2504
|
9447 |
#, fuzzy
|
9448 |
#| msgid "Your booking successfully verified."
|
9449 |
msgid "Your booking already verified!"
|
9450 |
msgstr "Tu reserva se ha verificado correctamente."
|
9451 |
|
9452 |
+
#: app/libraries/main.php:2511
|
9453 |
msgid "Your booking cannot verify!"
|
9454 |
msgstr "¡Tu reserva no se puede verificar!"
|
9455 |
|
9456 |
+
#: app/libraries/main.php:2533 app/libraries/main.php:2590
|
9457 |
msgid "Your booking successfully canceled."
|
9458 |
msgstr "Tu reserva se ha cancelado correctamente."
|
9459 |
|
9460 |
+
#: app/libraries/main.php:2550
|
9461 |
#, fuzzy
|
9462 |
#| msgid "The event is finished."
|
9463 |
msgid "The event is already finished!"
|
9464 |
msgstr "El evento está terminado."
|
9465 |
|
9466 |
+
#: app/libraries/main.php:2571
|
9467 |
msgid "The cancelation window is not started yet."
|
9468 |
msgstr ""
|
9469 |
|
9470 |
+
#: app/libraries/main.php:2583
|
9471 |
msgid "The cancelation window is passed."
|
9472 |
msgstr ""
|
9473 |
|
9474 |
+
#: app/libraries/main.php:2591
|
9475 |
msgid "Your booking cannot be canceled."
|
9476 |
msgstr "La reserva no puede cancelarse."
|
9477 |
|
9478 |
+
#: app/libraries/main.php:2595
|
9479 |
msgid "You canceled the payment successfully."
|
9480 |
msgstr "Has cancelado el pago correctamente."
|
9481 |
|
9482 |
+
#: app/libraries/main.php:2599
|
9483 |
msgid "You returned from payment gateway successfully."
|
9484 |
msgstr "Has vuelto correctamente de tu pasarela de pago."
|
9485 |
|
9486 |
+
#: app/libraries/main.php:2618
|
9487 |
#, fuzzy
|
9488 |
#| msgid "Cannot find the booking!"
|
9489 |
msgid "Cannot find the invoice!"
|
9490 |
msgstr "¡No se pudo encontrar la reserva!"
|
9491 |
|
9492 |
+
#: app/libraries/main.php:2618
|
9493 |
#, fuzzy
|
9494 |
#| msgid "Booking is invalid."
|
9495 |
msgid "Invoice is invalid."
|
9496 |
msgstr "Reserva no válida."
|
9497 |
|
9498 |
+
#: app/libraries/main.php:2638
|
9499 |
msgid ""
|
9500 |
"Your booking still is not confirmed. You can download it after confirmation!"
|
9501 |
msgstr ""
|
9502 |
|
9503 |
+
#: app/libraries/main.php:2638
|
9504 |
#, fuzzy
|
9505 |
#| msgid "Booking Confirmation"
|
9506 |
msgid "Booking Not Confirmed."
|
9507 |
msgstr "Confirmación de reserva"
|
9508 |
|
9509 |
+
#: app/libraries/main.php:2644
|
9510 |
msgid "Cannot find the booking!"
|
9511 |
msgstr "¡No se pudo encontrar la reserva!"
|
9512 |
|
9513 |
+
#: app/libraries/main.php:2644
|
9514 |
msgid "Booking is invalid."
|
9515 |
msgstr "Reserva no válida."
|
9516 |
|
9517 |
+
#: app/libraries/main.php:2677
|
9518 |
#, php-format
|
9519 |
msgid "%s Invoice"
|
9520 |
msgstr "%s Factura"
|
9521 |
|
9522 |
+
#: app/libraries/main.php:2713
|
9523 |
#, fuzzy
|
9524 |
#| msgid "Date and Time"
|
9525 |
msgid "Date & Time"
|
9526 |
msgstr "Día y hora"
|
9527 |
|
9528 |
+
#: app/libraries/main.php:2730
|
9529 |
#, fuzzy
|
9530 |
#| msgid "Booking Price"
|
9531 |
msgid "Booking Fields"
|
9532 |
msgstr "Precio de la reserva"
|
9533 |
|
9534 |
+
#: app/libraries/main.php:2802
|
9535 |
msgid "Billing"
|
9536 |
msgstr "Facturación"
|
9537 |
|
9538 |
+
#: app/libraries/main.php:2814
|
9539 |
#, fuzzy
|
9540 |
#| msgid "Coupons"
|
9541 |
msgid "Coupon Code"
|
9542 |
msgstr "Cupones"
|
9543 |
|
9544 |
+
#: app/libraries/main.php:2819
|
9545 |
msgid "Total"
|
9546 |
msgstr "Total "
|
9547 |
|
9548 |
+
#: app/libraries/main.php:2826
|
9549 |
#, fuzzy
|
9550 |
#| msgid "Payment Gateways"
|
9551 |
msgid "Payment"
|
9552 |
msgstr "Pasarelas de pago"
|
9553 |
|
9554 |
+
#: app/libraries/main.php:2843
|
9555 |
#, fuzzy
|
9556 |
#| msgid "Payment Gateways"
|
9557 |
msgid "Payment Time"
|
9558 |
msgstr "Pasarelas de pago"
|
9559 |
|
9560 |
+
#: app/libraries/main.php:2985
|
9561 |
msgid "Request is not valid."
|
9562 |
msgstr "La solicitud no es válida."
|
9563 |
|
9564 |
+
#: app/libraries/main.php:2985
|
9565 |
msgid "iCal export stopped!"
|
9566 |
msgstr "¡La exportación de iCal se detuvo!"
|
9567 |
|
9568 |
+
#: app/libraries/main.php:3336 app/libraries/main.php:3365
|
9569 |
+
#: app/libraries/main.php:3394 app/libraries/main.php:3423
|
9570 |
+
#: app/libraries/main.php:3452 app/libraries/main.php:3481
|
9571 |
+
#: app/libraries/main.php:3510 app/libraries/main.php:3539
|
9572 |
+
#: app/libraries/main.php:3568 app/libraries/main.php:3597
|
9573 |
+
#: app/libraries/main.php:3620 app/libraries/main.php:3666
|
9574 |
+
#: app/libraries/main.php:3712 app/libraries/main.php:3761
|
9575 |
+
#: app/libraries/main.php:3810
|
9576 |
msgid "Sort"
|
9577 |
msgstr "Orden"
|
9578 |
|
9579 |
+
#: app/libraries/main.php:3343 app/libraries/main.php:3372
|
9580 |
+
#: app/libraries/main.php:3401 app/libraries/main.php:3430
|
9581 |
+
#: app/libraries/main.php:3459 app/libraries/main.php:3488
|
9582 |
+
#: app/libraries/main.php:3517 app/libraries/main.php:3546
|
9583 |
+
#: app/libraries/main.php:3575 app/libraries/main.php:3627
|
9584 |
+
#: app/libraries/main.php:3673 app/libraries/main.php:3719
|
9585 |
+
#: app/libraries/main.php:3768
|
9586 |
msgid "Required Field"
|
9587 |
msgstr "Campo obligatorio"
|
9588 |
|
9589 |
+
#: app/libraries/main.php:3349 app/libraries/main.php:3378
|
9590 |
+
#: app/libraries/main.php:3407 app/libraries/main.php:3436
|
9591 |
+
#: app/libraries/main.php:3465 app/libraries/main.php:3494
|
9592 |
+
#: app/libraries/main.php:3523 app/libraries/main.php:3552
|
9593 |
+
#: app/libraries/main.php:3581 app/libraries/main.php:3633
|
9594 |
+
#: app/libraries/main.php:3679 app/libraries/main.php:3725
|
9595 |
+
#: app/libraries/main.php:3774
|
9596 |
msgid "Insert a label for this field"
|
9597 |
msgstr "Introduce una etiqueta para este campo"
|
9598 |
|
9599 |
+
#: app/libraries/main.php:3603
|
9600 |
msgid "HTML and shortcode are allowed."
|
9601 |
msgstr "Se permite HTML"
|
9602 |
|
9603 |
+
#: app/libraries/main.php:3646 app/libraries/main.php:3692
|
9604 |
+
#: app/libraries/main.php:3738
|
9605 |
msgid "Option"
|
9606 |
msgstr "Opción"
|
9607 |
|
9608 |
+
#: app/libraries/main.php:3774
|
9609 |
#, php-format
|
9610 |
msgid "Instead of %s, the page title with a link will be show."
|
9611 |
msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
|
9612 |
|
9613 |
+
#: app/libraries/main.php:3776
|
9614 |
msgid "Agreement Page"
|
9615 |
msgstr "Página de Acuerdo"
|
9616 |
|
9617 |
+
#: app/libraries/main.php:3787
|
9618 |
msgid "Checked by default"
|
9619 |
msgstr "Marcado por defecto"
|
9620 |
|
9621 |
+
#: app/libraries/main.php:3788
|
9622 |
msgid "Unchecked by default"
|
9623 |
msgstr "Sin marcar por defecto"
|
9624 |
|
9625 |
+
#: app/libraries/main.php:3812
|
9626 |
msgid "Insert a label for this option"
|
9627 |
msgstr "Introduce una etiqueta para esta opción"
|
9628 |
|
9629 |
+
#: app/libraries/main.php:3825
|
9630 |
msgid "Free"
|
9631 |
msgstr "Gratis"
|
9632 |
|
9633 |
+
#: app/libraries/main.php:4498 app/libraries/main.php:6835
|
9634 |
#, fuzzy
|
9635 |
#| msgid "M.E. Calendar"
|
9636 |
msgid "M.E. Calender"
|
9637 |
msgstr "M.E. Calendario"
|
9638 |
|
9639 |
+
#: app/libraries/main.php:4654
|
9640 |
#, php-format
|
9641 |
msgid "Copy of %s"
|
9642 |
msgstr "Copia de %s"
|
9643 |
|
9644 |
+
#: app/libraries/main.php:5527
|
9645 |
msgid "Booked an event."
|
9646 |
msgstr "Has reservado para un evento."
|
9647 |
|
9648 |
+
#: app/libraries/main.php:5568
|
9649 |
#, php-format
|
9650 |
msgid "%s booked %s event."
|
9651 |
msgstr "%s reservado %s evento."
|
9652 |
|
9653 |
+
#: app/libraries/main.php:6483 app/libraries/main.php:6537
|
9654 |
msgid "Taxonomies"
|
9655 |
msgstr "Taxonomías"
|
9656 |
|
9657 |
+
#: app/libraries/main.php:6485 app/libraries/main.php:6539
|
9658 |
msgid "Category Plural Label"
|
9659 |
msgstr "Categoría Etiqueta plural"
|
9660 |
|
9661 |
+
#: app/libraries/main.php:6486 app/libraries/main.php:6540
|
9662 |
msgid "Category Singular Label"
|
9663 |
msgstr "Categoría Etiqueta Singular"
|
9664 |
|
9665 |
+
#: app/libraries/main.php:6487 app/libraries/main.php:6541
|
9666 |
msgid "Label Plural Label"
|
9667 |
msgstr "Etiqueta plural"
|
9668 |
|
9669 |
+
#: app/libraries/main.php:6488 app/libraries/main.php:6542
|
9670 |
msgid "Label Singular Label"
|
9671 |
msgstr "Etiqueta singular de la etiqueta"
|
9672 |
|
9673 |
+
#: app/libraries/main.php:6488 app/libraries/main.php:6542
|
9674 |
msgid "label"
|
9675 |
msgstr "etiqueta"
|
9676 |
|
9677 |
+
#: app/libraries/main.php:6489 app/libraries/main.php:6543
|
9678 |
msgid "Location Plural Label"
|
9679 |
msgstr "Ubicación Etiqueta plural"
|
9680 |
|
9681 |
+
#: app/libraries/main.php:6490 app/libraries/main.php:6544
|
9682 |
msgid "Location Singular Label"
|
9683 |
msgstr "Etiqueta de ubicación en singular"
|
9684 |
|
9685 |
+
#: app/libraries/main.php:6491 app/libraries/main.php:6545
|
9686 |
msgid "Organizer Plural Label"
|
9687 |
msgstr "Etiqueta del organizador en plural"
|
9688 |
|
9689 |
+
#: app/libraries/main.php:6492 app/libraries/main.php:6546
|
9690 |
msgid "Organizer Singular Label"
|
9691 |
msgstr "Etiqueta Singular del Organizador"
|
9692 |
|
9693 |
+
#: app/libraries/main.php:6493 app/libraries/main.php:6547
|
9694 |
msgid "Speaker Plural Label"
|
9695 |
msgstr ""
|
9696 |
|
9697 |
+
#: app/libraries/main.php:6494 app/libraries/main.php:6548
|
9698 |
msgid "Speaker Singular Label"
|
9699 |
msgstr ""
|
9700 |
|
9701 |
+
#: app/libraries/main.php:6500 app/libraries/main.php:6554
|
9702 |
msgid "Sunday abbreviation"
|
9703 |
msgstr "Abreviatura de Domingo"
|
9704 |
|
9705 |
+
#: app/libraries/main.php:6501 app/libraries/main.php:6555
|
9706 |
msgid "Monday abbreviation"
|
9707 |
msgstr "Abreviatura de Lunes"
|
9708 |
|
9709 |
+
#: app/libraries/main.php:6502 app/libraries/main.php:6556
|
9710 |
msgid "Tuesday abbreviation"
|
9711 |
msgstr "Abreviatura de Martes"
|
9712 |
|
9713 |
+
#: app/libraries/main.php:6503 app/libraries/main.php:6557
|
9714 |
msgid "Wednesday abbreviation"
|
9715 |
msgstr "Abreviatura de Miércoles "
|
9716 |
|
9717 |
+
#: app/libraries/main.php:6504 app/libraries/main.php:6558
|
9718 |
msgid "Thursday abbreviation"
|
9719 |
msgstr "Abreviatura de Jueves"
|
9720 |
|
9721 |
+
#: app/libraries/main.php:6505 app/libraries/main.php:6559
|
9722 |
msgid "Friday abbreviation"
|
9723 |
msgstr "Abreviatura de Viernes"
|
9724 |
|
9725 |
+
#: app/libraries/main.php:6506 app/libraries/main.php:6560
|
9726 |
msgid "Saturday abbreviation"
|
9727 |
msgstr "Abreviatura de Sábado "
|
9728 |
|
9729 |
+
#: app/libraries/main.php:6510 app/libraries/main.php:6564
|
9730 |
msgid "Others"
|
9731 |
msgstr "Otros"
|
9732 |
|
9733 |
+
#: app/libraries/main.php:6512
|
9734 |
msgid "Booking Success Message"
|
9735 |
msgstr "Mensaje de reserva correcta"
|
9736 |
|
9737 |
+
#: app/libraries/main.php:6512
|
9738 |
#, fuzzy
|
9739 |
#| msgid ""
|
9740 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
9746 |
"Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
|
9747 |
"una verificación, por favor consulta tu correo."
|
9748 |
|
9749 |
+
#: app/libraries/main.php:6513
|
9750 |
#, fuzzy
|
9751 |
#| msgid "Booking Success Message"
|
9752 |
msgid "Booking Restriction Message 1"
|
9753 |
msgstr "Mensaje de reserva correcta"
|
9754 |
|
9755 |
+
#: app/libraries/main.php:6513
|
9756 |
#, php-format
|
9757 |
msgid ""
|
9758 |
"You selected %s tickets to book but maximum number of tikets per user is %s "
|
9759 |
"tickets."
|
9760 |
msgstr ""
|
9761 |
|
9762 |
+
#: app/libraries/main.php:6514
|
9763 |
#, fuzzy
|
9764 |
#| msgid "Booking Success Message"
|
9765 |
msgid "Booking Restriction Message 2"
|
9766 |
msgstr "Mensaje de reserva correcta"
|
9767 |
|
9768 |
+
#: app/libraries/main.php:6514
|
9769 |
#, php-format
|
9770 |
msgid ""
|
9771 |
"You booked %s tickets till now but maximum number of tickets per user is %s "
|
9772 |
"tickets."
|
9773 |
msgstr ""
|
9774 |
|
9775 |
+
#: app/libraries/main.php:6515
|
9776 |
#, fuzzy
|
9777 |
#| msgid "Booking Success Message"
|
9778 |
msgid "Booking IP Restriction Message"
|
9779 |
msgstr "Mensaje de reserva correcta"
|
9780 |
|
9781 |
+
#: app/libraries/main.php:6515
|
9782 |
#, php-format
|
9783 |
msgid "Maximum allowed number of tickets that you can book is %s."
|
9784 |
msgstr ""
|
9785 |
|
9786 |
+
#: app/libraries/main.php:6516
|
9787 |
#, fuzzy
|
9788 |
#| msgid "Booking Options"
|
9789 |
msgid "Booking Button"
|
9790 |
msgstr "Opciones de reserva"
|
9791 |
|
9792 |
+
#: app/libraries/main.php:6516 app/libraries/skins.php:1304
|
9793 |
#: app/modules/booking/steps/tickets.php:102
|
9794 |
msgid "Book Event"
|
9795 |
msgstr "Reservar evento"
|
9796 |
|
9797 |
+
#: app/libraries/main.php:6517 app/libraries/main.php:6566
|
9798 |
#: app/widgets/single.php:133
|
9799 |
msgid "Register Button"
|
9800 |
msgstr "Botón de registro"
|
9801 |
|
9802 |
+
#: app/libraries/main.php:6517 app/libraries/main.php:6566
|
9803 |
#: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
|
9804 |
#: app/skins/carousel/render.php:144 app/skins/grid/render.php:104
|
9805 |
#: app/skins/grid/render.php:163 app/skins/grid/render.php:223
|
9817 |
msgid "REGISTER"
|
9818 |
msgstr "REGISTRO"
|
9819 |
|
9820 |
+
#: app/libraries/main.php:6518 app/libraries/main.php:6567
|
9821 |
msgid "View Detail Button"
|
9822 |
msgstr "Ver detalle del botón"
|
9823 |
|
9824 |
+
#: app/libraries/main.php:6518 app/libraries/main.php:6567
|
9825 |
#: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
|
9826 |
#: app/skins/grid/render.php:104 app/skins/grid/render.php:163
|
9827 |
#: app/skins/grid/render.php:223 app/skins/grid/render.php:245
|
9833 |
msgid "View Detail"
|
9834 |
msgstr "Ver detalle"
|
9835 |
|
9836 |
+
#: app/libraries/main.php:6519 app/libraries/main.php:6568
|
9837 |
msgid "Event Detail Button"
|
9838 |
msgstr "Botón de detalle del evento"
|
9839 |
|
9840 |
+
#: app/libraries/main.php:6519 app/libraries/main.php:6568
|
9841 |
msgid "Event Detail"
|
9842 |
msgstr "Detalle del evento"
|
9843 |
|
9844 |
+
#: app/libraries/main.php:6524
|
9845 |
msgid "Ticket (Singular)"
|
9846 |
msgstr "Entrada (Singular)"
|
9847 |
|
9848 |
+
#: app/libraries/main.php:6525
|
9849 |
msgid "Tickets (Plural)"
|
9850 |
msgstr "Entradas (Plural)"
|
9851 |
|
9852 |
+
#: app/libraries/main.php:6683
|
9853 |
msgid "EventON"
|
9854 |
msgstr "EventON"
|
9855 |
|
9856 |
+
#: app/libraries/main.php:6684
|
9857 |
msgid "The Events Calendar"
|
9858 |
msgstr "The Events Calendar"
|
9859 |
|
9860 |
+
#: app/libraries/main.php:6685
|
9861 |
msgid "Events Schedule WP Plugin"
|
9862 |
msgstr "Events Schedule WP Plugin"
|
9863 |
|
9864 |
+
#: app/libraries/main.php:6686
|
9865 |
msgid "Calendarize It"
|
9866 |
msgstr "Ponlo al calendario"
|
9867 |
|
9868 |
+
#: app/libraries/main.php:6687
|
9869 |
#, fuzzy
|
9870 |
#| msgid "Event %s"
|
9871 |
msgid "Event Espresso"
|
9872 |
msgstr "Evento %s"
|
9873 |
|
9874 |
+
#: app/libraries/main.php:6688
|
9875 |
#, fuzzy
|
9876 |
#| msgid "Event Repeating"
|
9877 |
msgid "Events Manager (Recurring)"
|
9878 |
msgstr "Repetir el evento"
|
9879 |
|
9880 |
+
#: app/libraries/main.php:6689
|
9881 |
#, fuzzy
|
9882 |
#| msgid "Modern Events Calendar (Lite)"
|
9883 |
msgid "Events Manager (Single)"
|
9884 |
msgstr "Modern Events Calendar (Lite)"
|
9885 |
|
9886 |
+
#: app/libraries/main.php:6690
|
9887 |
#, fuzzy
|
9888 |
#| msgid "Modern Events Calendar (Lite)"
|
9889 |
msgid "WP Event Manager"
|
9890 |
msgstr "Modern Events Calendar (Lite)"
|
9891 |
|
9892 |
+
#: app/libraries/main.php:6822
|
9893 |
msgid "Waiting"
|
9894 |
msgstr ""
|
9895 |
|
9896 |
+
#: app/libraries/main.php:6865
|
9897 |
#, fuzzy
|
9898 |
#| msgid "Sunday"
|
9899 |
msgid "Sun"
|
9900 |
msgstr "Domingo"
|
9901 |
|
9902 |
+
#: app/libraries/main.php:6865
|
9903 |
#, fuzzy
|
9904 |
#| msgid "Monthly"
|
9905 |
msgid "Mon"
|
9906 |
msgstr "Mensual"
|
9907 |
|
9908 |
+
#: app/libraries/main.php:6865
|
9909 |
#, fuzzy
|
9910 |
#| msgid "Tel"
|
9911 |
msgid "Tue"
|
9912 |
msgstr "Tel"
|
9913 |
|
9914 |
+
#: app/libraries/main.php:6865
|
9915 |
msgid "Wed"
|
9916 |
msgstr ""
|
9917 |
|
9918 |
+
#: app/libraries/main.php:6865
|
9919 |
msgid "Thu"
|
9920 |
msgstr ""
|
9921 |
|
9922 |
+
#: app/libraries/main.php:6865
|
9923 |
#, fuzzy
|
9924 |
#| msgid "Friday"
|
9925 |
msgid "Fri"
|
9926 |
msgstr "Viernes"
|
9927 |
|
9928 |
+
#: app/libraries/main.php:6865
|
9929 |
#, fuzzy
|
9930 |
#| msgid "Start"
|
9931 |
msgid "Sat"
|
9932 |
msgstr "Inicio"
|
9933 |
|
9934 |
+
#: app/libraries/main.php:7031 app/libraries/render.php:80
|
9935 |
+
#: app/libraries/render.php:451
|
9936 |
msgid "Skin controller does not exist."
|
9937 |
msgstr "No existe skin controller."
|
9938 |
|
9939 |
+
#: app/libraries/main.php:7246
|
9940 |
#, fuzzy
|
9941 |
#| msgid "Sold out!"
|
9942 |
msgid "Sold Out"
|
9943 |
msgstr "¡Agotado!"
|
9944 |
|
9945 |
+
#: app/libraries/main.php:7257
|
9946 |
#, fuzzy
|
9947 |
#| msgid "Ticket"
|
9948 |
msgid "Last Few Tickets"
|
9949 |
msgstr "Ticket"
|
9950 |
|
9951 |
+
#: app/libraries/main.php:7588 app/libraries/main.php:7605
|
9952 |
#, fuzzy
|
9953 |
#| msgid "minutes"
|
9954 |
msgid "Minutes"
|
9955 |
msgstr "minutos"
|
9956 |
|
9957 |
+
#: app/libraries/main.php:7610
|
9958 |
msgid "AM / PM"
|
9959 |
msgstr ""
|
9960 |
|
9961 |
+
#: app/libraries/main.php:7611
|
9962 |
msgid "AM"
|
9963 |
msgstr "AM"
|
9964 |
|
9965 |
+
#: app/libraries/main.php:7612
|
9966 |
msgid "PM"
|
9967 |
msgstr "PM"
|
9968 |
|
9969 |
+
#: app/libraries/main.php:7620
|
9970 |
msgid "Ongoing..."
|
9971 |
msgstr ""
|
9972 |
|
9973 |
+
#: app/libraries/main.php:7621
|
9974 |
#, fuzzy
|
9975 |
#| msgid "Expired Events"
|
9976 |
msgid "Expired!"
|
10117 |
msgstr "Aplicar cupón"
|
10118 |
|
10119 |
#: app/modules/booking/steps/checkout.php:138
|
10120 |
+
#: app/modules/booking/steps/form.php:348
|
10121 |
msgid "Back"
|
10122 |
msgstr ""
|
10123 |
|
10131 |
msgid "Attendee's Form"
|
10132 |
msgstr "Asistentes"
|
10133 |
|
10134 |
+
#: app/modules/booking/steps/form.php:318
|
10135 |
msgid "Fill other attendees information like the first form."
|
10136 |
msgstr ""
|
10137 |
"Rellenar la información de los otros asistentes igual que el primer "
|
10138 |
"formulario."
|
10139 |
|
10140 |
+
#: app/modules/booking/steps/form.php:329
|
10141 |
msgid "Username"
|
10142 |
msgstr ""
|
10143 |
|
10144 |
+
#: app/modules/booking/steps/form.php:349
|
10145 |
#: app/modules/booking/steps/tickets.php:180
|
10146 |
#, fuzzy
|
10147 |
#| msgid "Add to Google Calendar"
|
10524 |
msgid "http://webnus.net"
|
10525 |
msgstr "http://webnus.net"
|
10526 |
|
10527 |
+
#, fuzzy
|
10528 |
+
#~| msgid "Total booking limits"
|
10529 |
+
#~ msgid "Total user booking limits"
|
10530 |
+
#~ msgstr "Límite total de reservas"
|
10531 |
+
|
10532 |
#~ msgid "Your booking successfully verified."
|
10533 |
#~ msgstr "Tu reserva se ha verificado correctamente."
|
10534 |
|
languages/modern-events-calendar-lite-fi_FI.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-fi_FI.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2020-12-
|
5 |
-
"PO-Revision-Date: 2020-12-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fi_FI\n"
|
@@ -23,8 +23,8 @@ msgstr ""
|
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
26 |
-
#: app/features/ix/thirdparty.php:26 app/features/mec.php:
|
27 |
-
#: app/features/mec.php:
|
28 |
#: app/widgets/MEC.php:33
|
29 |
msgid "Modern Events Calendar"
|
30 |
msgstr ""
|
@@ -81,7 +81,7 @@ msgid "Select Shortcode"
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
84 |
-
#: app/features/mec/settings.php:
|
85 |
msgid "Event Color"
|
86 |
msgstr ""
|
87 |
|
@@ -92,14 +92,14 @@ msgstr ""
|
|
92 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
93 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
94 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
95 |
-
#: app/libraries/main.php:
|
96 |
msgid "Settings"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
100 |
-
#: app/features/events.php:
|
101 |
-
#: app/features/mec/booking.php:873 app/features/mec/
|
102 |
-
#: app/libraries/main.php:
|
103 |
msgid "Booking Form"
|
104 |
msgstr ""
|
105 |
|
@@ -112,9 +112,9 @@ msgid ""
|
|
112 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: app/features/contextual.php:70 app/features/events.php:
|
116 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
117 |
-
#: app/features/mec/support.php:36 app/libraries/main.php:
|
118 |
msgid "Payment Gateways"
|
119 |
msgstr ""
|
120 |
|
@@ -125,9 +125,9 @@ msgid ""
|
|
125 |
"\"0\" allowfullscreen></iframe>"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: app/features/contextual.php:77 app/features/events.php:
|
129 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
130 |
-
#: app/libraries/main.php:
|
131 |
msgid "Notifications"
|
132 |
msgstr ""
|
133 |
|
@@ -190,12 +190,12 @@ msgid ""
|
|
190 |
"\"0\" allowfullscreen></iframe>"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: app/features/contextual.php:117 app/features/mec/settings.php:
|
194 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
195 |
msgid "General Options"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: app/features/contextual.php:139 app/features/mec/settings.php:
|
199 |
#: app/libraries/main.php:568
|
200 |
msgid "Slugs/Permalinks"
|
201 |
msgstr ""
|
@@ -204,7 +204,7 @@ msgstr ""
|
|
204 |
msgid "Event Details/Single Event Page"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: app/features/contextual.php:166 app/features/mec/settings.php:
|
208 |
#: app/libraries/main.php:569
|
209 |
msgid "Currency Options"
|
210 |
msgstr ""
|
@@ -213,18 +213,18 @@ msgstr ""
|
|
213 |
msgid "Google Maps Options"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: app/features/contextual.php:244 app/features/mec/settings.php:
|
217 |
#: app/libraries/main.php:570
|
218 |
msgid "Google Recaptcha Options"
|
219 |
msgstr ""
|
220 |
|
221 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
222 |
-
#: app/libraries/main.php:
|
223 |
msgid "Countdown Options"
|
224 |
msgstr ""
|
225 |
|
226 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
227 |
-
#: app/libraries/main.php:
|
228 |
msgid "Social Networks"
|
229 |
msgstr ""
|
230 |
|
@@ -232,36 +232,36 @@ msgstr ""
|
|
232 |
msgid "Next Event Module"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: app/features/contextual.php:286 app/features/mec/settings.php:
|
236 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
237 |
msgid "Frontend Event Submission"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: app/features/contextual.php:298 app/features/events.php:
|
241 |
-
#: app/libraries/main.php:
|
242 |
msgid "Exceptional Days"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: app/features/contextual.php:308 app/features/events.php:
|
246 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
247 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
248 |
-
#: app/libraries/main.php:
|
249 |
-
#: app/libraries/main.php:
|
250 |
msgid "Booking"
|
251 |
msgstr ""
|
252 |
|
253 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
254 |
-
#: app/features/mec/booking.php:833 app/libraries/main.php:
|
255 |
msgid "Coupons"
|
256 |
msgstr ""
|
257 |
|
258 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
259 |
-
#: app/libraries/main.php:
|
260 |
msgid "BuddyPress Integration"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: app/features/contextual.php:334 app/features/mec/settings.php:
|
264 |
-
#: app/libraries/main.php:
|
265 |
msgid "Mailchimp Integration"
|
266 |
msgstr ""
|
267 |
|
@@ -269,8 +269,8 @@ msgstr ""
|
|
269 |
msgid "MEC Activation"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: app/features/dlfile.php:121 app/features/events.php:
|
273 |
-
#: app/features/mec/booking.php:349 app/features/mec/settings.php:
|
274 |
msgid "Downloadable File"
|
275 |
msgstr ""
|
276 |
|
@@ -300,15 +300,15 @@ msgstr ""
|
|
300 |
msgid "File uploaded!"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: app/features/events.php:
|
304 |
-
#: app/features/mec/dashboard.php:265 app/libraries/main.php:
|
305 |
-
#: app/libraries/main.php:
|
306 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
307 |
#: app/skins/yearly_view/tpl.php:71
|
308 |
msgid "Events"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: app/features/events.php:
|
312 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
313 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
314 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
@@ -318,216 +318,216 @@ msgstr ""
|
|
318 |
msgid "Event"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: app/features/events.php:
|
322 |
msgid "Add Event"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: app/features/events.php:
|
326 |
msgid "Add New Event"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: app/features/events.php:
|
330 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
331 |
#: app/skins/map/tpl.php:89
|
332 |
msgid "No events found!"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: app/features/events.php:
|
336 |
msgid "All Events"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: app/features/events.php:
|
340 |
msgid "Edit Event"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: app/features/events.php:
|
344 |
#: app/features/popup/event.php:252
|
345 |
msgid "View Event"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: app/features/events.php:
|
349 |
msgid "No events found in Trash!"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: app/features/events.php:
|
353 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
354 |
#: app/features/mec/meta_boxes/search_form.php:31
|
355 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
356 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
357 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
358 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
359 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
360 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
361 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
362 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
363 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
364 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
365 |
-
#: app/features/mec/settings.php:
|
366 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
367 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
368 |
-
#: app/libraries/main.php:
|
369 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
370 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
371 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
372 |
msgid "Category"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: app/features/events.php:
|
376 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
377 |
#: app/features/mec/meta_boxes/filter.php:69
|
378 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
379 |
-
#: app/libraries/main.php:
|
380 |
msgid "Categories"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: app/features/events.php:
|
384 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
385 |
#: app/features/speakers.php:71
|
386 |
#, php-format
|
387 |
msgid "All %s"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: app/features/events.php:
|
391 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
392 |
#: app/features/speakers.php:72
|
393 |
#, php-format
|
394 |
msgid "Edit %s"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: app/features/events.php:
|
398 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
399 |
#: app/features/speakers.php:73
|
400 |
#, php-format
|
401 |
msgid "View %s"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: app/features/events.php:
|
405 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
406 |
#: app/features/speakers.php:74
|
407 |
#, php-format
|
408 |
msgid "Update %s"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: app/features/events.php:
|
412 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
413 |
#: app/features/speakers.php:75
|
414 |
#, php-format
|
415 |
msgid "Add New %s"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: app/features/events.php:
|
419 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
420 |
#: app/features/speakers.php:76
|
421 |
#, php-format
|
422 |
msgid "New %s Name"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: app/features/events.php:
|
426 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
427 |
#: app/features/speakers.php:77
|
428 |
#, php-format
|
429 |
msgid "Popular %s"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: app/features/events.php:
|
433 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
434 |
#: app/features/speakers.php:78
|
435 |
#, php-format
|
436 |
msgid "Search %s"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: app/features/events.php:
|
440 |
msgid "Category Icon"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: app/features/events.php:
|
444 |
msgid "Select icon"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: app/features/events.php:
|
448 |
msgid "Event Details"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: app/features/events.php:
|
452 |
msgid "FES Details"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: app/features/events.php:
|
456 |
msgid "Date And Time"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: app/features/events.php:
|
460 |
msgid "Event Repeating"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: app/features/events.php:
|
464 |
msgid "Event Data"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: app/features/events.php:
|
468 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
469 |
msgid "Hourly Schedule"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: app/features/events.php:
|
473 |
msgid "Location/Venue"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: app/features/events.php:
|
477 |
msgid "Links"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: app/features/events.php:
|
481 |
-
#: app/features/events.php:
|
482 |
-
#: app/features/ix.php:
|
483 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
484 |
#: app/features/mec/meta_boxes/search_form.php:46
|
485 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
486 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
487 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
488 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
489 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
490 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
491 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
492 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
493 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
494 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
495 |
-
#: app/features/mec/settings.php:
|
496 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
497 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
498 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
499 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
500 |
-
#: app/features/search.php:80 app/libraries/main.php:
|
501 |
-
#: app/libraries/main.php:
|
502 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
503 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
504 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
505 |
msgid "Organizer"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: app/features/events.php:
|
509 |
-
#: app/features/fes/form.php:836 app/features/mec/settings.php:
|
510 |
-
#: app/libraries/main.php:
|
511 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
512 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
513 |
#: app/skins/single/modern.php:237
|
514 |
msgid "Cost"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: app/features/events.php:
|
518 |
msgid "SEO Schema / Event Status"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: app/features/events.php:
|
522 |
msgid "Note for reviewer"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: app/features/events.php:
|
526 |
msgid "Guest Data"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: app/features/events.php:
|
530 |
-
#: app/features/events.php:
|
531 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
532 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
533 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
@@ -535,16 +535,16 @@ msgstr ""
|
|
535 |
msgid "Name"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: app/features/events.php:
|
539 |
-
#: app/features/events.php:
|
540 |
-
#: app/features/events.php:
|
541 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
542 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
543 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
544 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
545 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
546 |
-
#: app/features/speakers.php:204 app/libraries/main.php:
|
547 |
-
#: app/libraries/main.php:
|
548 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
549 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
550 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
@@ -553,21 +553,21 @@ msgstr ""
|
|
553 |
msgid "Email"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: app/features/events.php:
|
557 |
msgid ""
|
558 |
"This event is imported from Google calendar so if you modify it, it would "
|
559 |
"overwrite in the next import from Google."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: app/features/events.php:
|
563 |
msgid "Date and Time"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: app/features/events.php:
|
567 |
-
#: app/features/events.php:
|
568 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
569 |
-
#: app/features/ix.php:
|
570 |
-
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:
|
571 |
#: app/features/mec/meta_boxes/display_options.php:52
|
572 |
#: app/features/mec/meta_boxes/display_options.php:298
|
573 |
#: app/features/mec/meta_boxes/display_options.php:555
|
@@ -587,49 +587,49 @@ msgstr ""
|
|
587 |
msgid "Start Date"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: app/features/events.php:
|
591 |
-
#: app/features/events.php:
|
592 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
593 |
-
#: app/features/ix.php:
|
594 |
-
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:
|
595 |
#: app/features/popup/event.php:92
|
596 |
msgid "End Date"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: app/features/events.php:
|
600 |
#: app/features/popup/event.php:109
|
601 |
msgid "All-day Event"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: app/features/events.php:
|
605 |
msgid "Hide Event Time"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: app/features/events.php:
|
609 |
msgid "Hide Event End Time"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: app/features/events.php:
|
613 |
#: app/features/fes/form.php:329
|
614 |
msgid "Notes on the time"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: app/features/events.php:
|
618 |
msgid ""
|
619 |
"It shows next to event time on the Single Event Page. You can enter notes "
|
620 |
"such as timezone in this field."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: app/features/events.php:
|
624 |
-
#: app/features/events.php:
|
625 |
-
#: app/features/events.php:
|
626 |
-
#: app/features/events.php:
|
627 |
-
#: app/features/events.php:
|
628 |
-
#: app/features/events.php:
|
629 |
-
#: app/features/events.php:
|
630 |
-
#: app/features/events.php:
|
631 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
632 |
-
#: app/features/locations.php:
|
633 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
634 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
635 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
@@ -682,17 +682,17 @@ msgstr ""
|
|
682 |
#: app/features/mec/notifications.php:950
|
683 |
#: app/features/mec/notifications.php:961
|
684 |
#: app/features/mec/notifications.php:1086
|
685 |
-
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:
|
686 |
-
#: app/features/mec/settings.php:
|
687 |
-
#: app/features/mec/settings.php:
|
688 |
-
#: app/features/mec/settings.php:
|
689 |
-
#: app/features/mec/settings.php:
|
690 |
-
#: app/features/mec/settings.php:
|
691 |
-
#: app/features/mec/settings.php:
|
692 |
-
#: app/features/mec/settings.php:
|
693 |
-
#: app/features/mec/settings.php:
|
694 |
-
#: app/features/mec/settings.php:
|
695 |
-
#: app/features/mec/settings.php:
|
696 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
697 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
698 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
@@ -706,212 +706,213 @@ msgstr ""
|
|
706 |
msgid "Read More"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: app/features/events.php:
|
710 |
msgid "Timezone"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: app/features/events.php:
|
714 |
-
#: app/features/events.php:
|
715 |
-
#: app/features/events.php:
|
716 |
-
#: app/features/events.php:
|
717 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
718 |
msgid "Inherit from global options"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: app/features/events.php:
|
722 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
723 |
msgid "Countdown Method"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: app/features/events.php:
|
727 |
msgid "Count to Event Start"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: app/features/events.php:
|
731 |
msgid "Count to Event End"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: app/features/events.php:
|
735 |
msgid "Repeating"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: app/features/events.php:
|
739 |
msgid "Event Repeating (Recurring events)"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: app/features/events.php:
|
743 |
msgid "Repeats"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: app/features/events.php:
|
747 |
-
#: app/features/mec.php:
|
748 |
#: app/skins/full_calendar/tpl.php:124
|
749 |
msgid "Daily"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: app/features/events.php:
|
753 |
msgid "Every Weekday"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: app/features/events.php:
|
757 |
msgid "Every Weekend"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: app/features/events.php:
|
761 |
msgid "Certain Weekdays"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: app/features/events.php:
|
765 |
#: app/skins/default_full_calendar/tpl.php:76
|
766 |
#: app/skins/full_calendar/tpl.php:123
|
767 |
msgid "Weekly"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: app/features/events.php:
|
771 |
-
#: app/features/mec.php:
|
772 |
#: app/skins/full_calendar/tpl.php:122
|
773 |
msgid "Monthly"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: app/features/events.php:
|
777 |
-
#: app/features/mec.php:
|
778 |
#: app/skins/full_calendar/tpl.php:121
|
779 |
msgid "Yearly"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: app/features/events.php:
|
783 |
msgid "Custom Days"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: app/features/events.php:
|
787 |
msgid "Advanced"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: app/features/events.php:
|
791 |
msgid "Repeat Interval"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: app/features/events.php:
|
795 |
msgid "Repeat interval"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: app/features/events.php:
|
799 |
msgid "Week Days"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: app/features/events.php:
|
803 |
msgid ""
|
804 |
"To add multiple occurrences per day you need Pro version of Modern Events "
|
805 |
"Calendar."
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: app/features/events.php:
|
809 |
-
#: app/features/events.php:
|
810 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
811 |
#: app/features/ix/import_g_calendar.php:51
|
812 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
|
|
813 |
msgid "Start"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: app/features/events.php:
|
817 |
-
#: app/features/events.php:
|
818 |
-
#: app/features/events.php:
|
819 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
820 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
821 |
#: app/libraries/hourlyschedule.php:119
|
822 |
msgid "Add"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: app/features/events.php:
|
826 |
msgid "Custom Days Repeating"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: app/features/events.php:
|
830 |
msgid ""
|
831 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
832 |
"start and end dates should be the same, If you have a multiple day event, "
|
833 |
"the start and end dates must be commensurate with the initial date."
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: app/features/events.php:
|
837 |
-
#: app/features/events.php:
|
838 |
-
#: app/features/fes/form.php:417
|
839 |
msgid "End"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: app/features/events.php:
|
843 |
msgid "First"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: app/features/events.php:
|
847 |
msgid "Second"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: app/features/events.php:
|
851 |
msgid "Third"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: app/features/events.php:
|
855 |
msgid "Fourth"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: app/features/events.php:
|
859 |
msgid "Last"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: app/features/events.php:
|
863 |
msgid "Ends Repeat"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: app/features/events.php:
|
867 |
msgid "Never"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: app/features/events.php:
|
871 |
msgid "On"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: app/features/events.php:
|
875 |
#: app/features/mec/booking.php:154
|
876 |
msgid "After"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: app/features/events.php:
|
880 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
881 |
msgid "Occurrences times"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: app/features/events.php:
|
885 |
msgid ""
|
886 |
"The event will finish after certain repeats. For example if you set it to "
|
887 |
"10, the event will finish after 10 occurrences."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: app/features/events.php:
|
891 |
msgid "Show only one occurrence of this event"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: app/features/events.php:
|
895 |
-
#: app/features/fes/form.php:833 app/features/ix.php:
|
896 |
-
#: app/features/ix.php:
|
897 |
-
#: app/libraries/main.php:
|
898 |
#: app/widgets/single.php:105
|
899 |
msgid "Event Cost"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: app/features/events.php:
|
903 |
msgid "Exceptional Days (Exclude Dates)"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: app/features/events.php:
|
907 |
msgid "Exclude certain days"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: app/features/events.php:
|
911 |
-
#: app/features/events.php:
|
912 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
913 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
914 |
-
#: app/features/wc.php:83 app/libraries/main.php:
|
915 |
#: app/modules/booking/steps/tickets.php:106
|
916 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
917 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
@@ -919,180 +920,183 @@ msgstr ""
|
|
919 |
msgid "Date"
|
920 |
msgstr "Päivämäärä"
|
921 |
|
922 |
-
#: app/features/events.php:
|
923 |
msgid ""
|
924 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
925 |
"exclude only single day occurrences and you cannot exclude one day from "
|
926 |
"multiple day occurrences."
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: app/features/events.php:
|
930 |
msgid "Day 1"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: app/features/events.php:
|
934 |
-
#: app/features/mec/settings.php:
|
935 |
msgid "Event Links"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: app/features/events.php:
|
939 |
-
#: app/features/fes/form.php:812 app/features/mec/settings.php:
|
940 |
-
#: app/libraries/main.php:
|
941 |
msgid "Event Link"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: app/features/events.php:
|
945 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
946 |
msgid "eg. http://yoursite.com/your-event"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: app/features/events.php:
|
950 |
msgid ""
|
951 |
"If you fill it, it will replace the default event page link. Insert full "
|
952 |
"link including http(s):// - Also, if you use advertising URL, can use URL "
|
953 |
"Shortener"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: app/features/events.php:
|
957 |
msgid "URL Shortener"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: app/features/events.php:
|
961 |
-
#: app/features/fes/form.php:817 app/libraries/main.php:
|
962 |
-
#: app/libraries/main.php:
|
963 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
964 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
965 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
966 |
msgid "More Info"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: app/features/events.php:
|
970 |
msgid "More Information"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: app/features/events.php:
|
974 |
-
#: app/features/mec.php:
|
975 |
msgid "Current Window"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: app/features/events.php:
|
979 |
-
#: app/features/mec.php:
|
980 |
msgid "New Window"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: app/features/events.php:
|
984 |
msgid ""
|
985 |
"If you fill it, it will be shown in event details page as an optional link. "
|
986 |
"Insert full link including http(s)://"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: app/features/events.php:
|
990 |
msgid "Booking Options"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: app/features/events.php:
|
|
|
994 |
msgid "Total User Booking Limits"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: app/features/events.php:
|
998 |
-
#: app/libraries/book.php:63 app/libraries/main.php:
|
999 |
#: app/modules/booking/steps/tickets.php:137
|
1000 |
#: app/modules/booking/steps/tickets.php:143
|
1001 |
msgid "Tickets"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: app/features/events.php:
|
1005 |
msgid "Fees"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: app/features/events.php:
|
1009 |
-
#: app/features/mec/settings.php:
|
1010 |
msgid "Ticket Variations / Options"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: app/features/events.php:
|
1014 |
#: app/features/mec/support-page.php:118
|
1015 |
msgid "Organizer Payment"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: app/features/events.php:
|
1019 |
msgid "Total booking limit"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: app/features/events.php:
|
1023 |
-
#: app/features/events.php:
|
1024 |
#: app/modules/booking/steps/tickets.php:137
|
1025 |
#: app/modules/booking/steps/tickets.php:143
|
1026 |
#: app/skins/available_spot/tpl.php:140
|
1027 |
msgid "Unlimited"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: app/features/events.php:
|
1031 |
msgid ""
|
1032 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1033 |
"limitation number."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: app/features/events.php:
|
1037 |
msgid "Read About A Booking System"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: app/features/events.php:
|
1041 |
msgid "100"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: app/features/events.php:
|
1045 |
msgid "Discount per user roles"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: app/features/events.php:
|
1049 |
msgid "5"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: app/features/events.php:
|
|
|
1053 |
msgid "Book All Occurrences"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: app/features/events.php:
|
1057 |
msgid "Sell all occurrences by one booking"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: app/features/events.php:
|
1061 |
msgid ""
|
1062 |
"If you have a series of events and you want to sell all of them at once, "
|
1063 |
"this option is for you! For example a weekly yoga course or something "
|
1064 |
"similar."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: app/features/events.php:
|
|
|
1068 |
msgid "Interval Options"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: app/features/events.php:
|
1072 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1073 |
msgid "Show Booking Form Interval"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: app/features/events.php:
|
1077 |
msgid "Minutes (e.g 5)"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: app/features/events.php:
|
1081 |
msgid ""
|
1082 |
"You can show booking form only at certain times before event start. If you "
|
1083 |
"set this option to 30 then booking form will open only 30 minutes before "
|
1084 |
"starting the event! One day is 1440 minutes."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: app/features/events.php:
|
1088 |
msgid "Automatic Approval"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: app/features/events.php:
|
1092 |
msgid "Email Verification"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: app/features/events.php:
|
1096 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1097 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1098 |
#: app/features/mec/booking.php:868
|
@@ -1104,330 +1108,326 @@ msgstr ""
|
|
1104 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1105 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1106 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1107 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1108 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1109 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1110 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1111 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1112 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1113 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1114 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1115 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1116 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1117 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1118 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1119 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1120 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1121 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1122 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1123 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1124 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1125 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1126 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1127 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1128 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1129 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1130 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1131 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1132 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1133 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1134 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1135 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1136 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1137 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1138 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1139 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1140 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1141 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1142 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1143 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1144 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1145 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1146 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1147 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1148 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1149 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1150 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1151 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1152 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1153 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1154 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1155 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1156 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1157 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1158 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1159 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1160 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1161 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1162 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1163 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1164 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1165 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1166 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1167 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1168 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1169 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1170 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1171 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1172 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1173 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1174 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1175 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1176 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1177 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1178 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1179 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1180 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1181 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1182 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1183 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1184 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1185 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1186 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1187 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1188 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1189 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1190 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1191 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1192 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1193 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1194 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1195 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1196 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1197 |
-
#: app/features/mec/modules.php:124 app/features/mec/settings.php:
|
1198 |
-
#: app/features/mec/settings.php:
|
1199 |
msgid "Disabled"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: app/features/events.php:
|
1203 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1204 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1205 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1206 |
-
#: app/features/mec/settings.php:
|
1207 |
msgid "Enabled"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: app/features/events.php:
|
1211 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1212 |
-
#: app/libraries/main.php:
|
1213 |
msgid "Booking Confirmation"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: app/features/events.php:
|
1217 |
-
msgid "Total user booking limits"
|
1218 |
-
msgstr ""
|
1219 |
-
|
1220 |
-
#: app/features/events.php:1621
|
1221 |
msgid "12"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: app/features/events.php:
|
1225 |
msgid "Disabled Gateways"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: app/features/events.php:
|
1229 |
msgid ""
|
1230 |
"You can disable some of the following payment gateways by checking them "
|
1231 |
"otherwise they will be enabled."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: app/features/events.php:
|
1235 |
msgid ""
|
1236 |
"You're translating an event so MEC will use the original event for tickets "
|
1237 |
"and booking. You can only translate the ticket name and description. Please "
|
1238 |
"define exact tickets that you defined in the original event here."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: app/features/events.php:
|
1242 |
msgid "Add Ticket"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: app/features/events.php:
|
1246 |
msgid "Ticket ID"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: app/features/events.php:
|
1250 |
-
#: app/features/events.php:
|
1251 |
-
#: app/features/ix.php:
|
1252 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1253 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1254 |
msgid "ID"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: app/features/events.php:
|
1258 |
msgid "Ticket Name"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: app/features/events.php:
|
1262 |
-
#: app/features/events.php:
|
1263 |
-
#: app/features/ix.php:
|
1264 |
msgid "Start Time"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: app/features/events.php:
|
1268 |
-
#: app/features/events.php:
|
1269 |
-
#: app/features/ix.php:
|
1270 |
msgid "End Time"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: app/features/events.php:
|
1274 |
-
#: app/features/events.php:
|
1275 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1276 |
msgid "Description"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: app/features/events.php:
|
1280 |
-
#: app/features/events.php:
|
1281 |
msgid "Private Description"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: app/features/events.php:
|
1285 |
#, php-format
|
1286 |
msgid ""
|
1287 |
"You can show it on the email notifications by placing "
|
1288 |
"%%ticket_private_description%% into the email template."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: app/features/events.php:
|
1292 |
-
#: app/features/events.php:
|
1293 |
-
#: app/features/events.php:
|
1294 |
-
#: app/features/events.php:
|
1295 |
-
#: app/features/events.php:
|
1296 |
-
#: app/features/events.php:
|
1297 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1298 |
#: app/features/mec/booking.php:582
|
1299 |
msgid "Price"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: app/features/events.php:
|
1303 |
msgid ""
|
1304 |
"Insert 0 for free ticket. Only numbers please — Enter only the price without "
|
1305 |
"any symbols or characters."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: app/features/events.php:
|
1309 |
-
#: app/features/events.php:
|
1310 |
msgid "Price Label"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: app/features/events.php:
|
1314 |
msgid "For showing on website. e.g. $15"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: app/features/events.php:
|
1318 |
msgid "Available Tickets"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: app/features/events.php:
|
1322 |
msgid "Minimum Ticket e.g. 3"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: app/features/events.php:
|
1326 |
msgid "MinimumTicket"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: app/features/events.php:
|
1330 |
msgid "Set a number for the minimum ticket reservation possible"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: app/features/events.php:
|
1334 |
msgid "e.g. 0"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: app/features/events.php:
|
1338 |
msgid "Day"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: app/features/events.php:
|
1342 |
msgid "Hour"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: app/features/events.php:
|
1346 |
#, php-format
|
1347 |
msgid "Stop selling ticket %s before event start."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: app/features/events.php:
|
1351 |
msgid "Price per Date"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: app/features/events.php:
|
1355 |
-
#: app/features/events.php:
|
1356 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1357 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1358 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1359 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1360 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1361 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1362 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1363 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1364 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1365 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1366 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1367 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1368 |
-
#: app/features/mec/settings.php:
|
1369 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1370 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1371 |
msgid "Label"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: app/features/events.php:
|
1375 |
-
#: app/features/events.php:
|
1376 |
-
#: app/features/events.php:
|
1377 |
-
#: app/features/events.php:
|
1378 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1379 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1380 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1381 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1382 |
-
#: app/libraries/main.php:
|
1383 |
-
#: app/libraries/main.php:
|
1384 |
-
#: app/libraries/main.php:
|
1385 |
-
#: app/libraries/main.php:
|
1386 |
-
#: app/libraries/main.php:
|
1387 |
-
#: app/libraries/main.php:
|
1388 |
-
#: app/libraries/main.php:
|
1389 |
-
#: app/libraries/main.php:
|
1390 |
msgid "Remove"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: app/features/events.php:
|
1394 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1395 |
msgid "Fee Title"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: app/features/events.php:
|
1399 |
-
#: app/features/events.php:
|
1400 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1401 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1402 |
msgid "Amount"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: app/features/events.php:
|
1406 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1407 |
msgid ""
|
1408 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1409 |
"otherwise considered as percentage"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: app/features/events.php:
|
1413 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1414 |
msgid "Percent"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: app/features/events.php:
|
1418 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1419 |
msgid "Amount (Per Ticket)"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: app/features/events.php:
|
1423 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1424 |
msgid "Amount (Per Booking)"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: app/features/events.php:
|
1428 |
-
#: app/features/events.php:
|
1429 |
-
#: app/features/fes/form.php:256 app/features/ix.php:
|
1430 |
-
#: app/features/ix.php:
|
1431 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1432 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1433 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
@@ -1435,83 +1435,83 @@ msgstr ""
|
|
1435 |
msgid "Title"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: app/features/events.php:
|
1439 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1440 |
msgid "Option Price"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: app/features/events.php:
|
1444 |
-
#: app/features/events.php:
|
1445 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1446 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1447 |
msgid "Maximum Per Ticket"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: app/features/events.php:
|
1451 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1452 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: app/features/events.php:
|
1456 |
msgid ""
|
1457 |
"You're translating an event so MEC will use the original event for booking "
|
1458 |
"form. You can only translate the field name and options. Please define exact "
|
1459 |
"fields that you defined in the original event here."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: app/features/events.php:
|
1463 |
msgid "Per Attendee Fields"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: app/features/events.php:
|
1467 |
-
#: app/libraries/main.php:
|
1468 |
msgid "MEC Name"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: app/features/events.php:
|
1472 |
-
#: app/libraries/main.php:
|
1473 |
msgid "MEC Email"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: app/features/events.php:
|
1477 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1478 |
-
#: app/features/mec/single.php:190 app/libraries/main.php:
|
1479 |
msgid "Text"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: app/features/events.php:
|
1483 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1484 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1485 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1486 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1487 |
-
#: app/libraries/main.php:
|
1488 |
msgid "Tel"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: app/features/events.php:
|
1492 |
-
#: app/libraries/main.php:
|
1493 |
msgid "File"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: app/features/events.php:
|
1497 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1498 |
-
#: app/features/mec/single.php:195 app/libraries/main.php:
|
1499 |
msgid "Textarea"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: app/features/events.php:
|
1503 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1504 |
-
#: app/features/mec/single.php:197 app/libraries/main.php:
|
1505 |
msgid "Checkboxes"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: app/features/events.php:
|
1509 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1510 |
-
#: app/features/mec/single.php:198 app/libraries/main.php:
|
1511 |
msgid "Radio Buttons"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: app/features/events.php:
|
1515 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1516 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1517 |
#: app/features/mec/meta_boxes/search_form.php:41
|
@@ -1519,140 +1519,137 @@ msgstr ""
|
|
1519 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1520 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1521 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1522 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1523 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1524 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1525 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1526 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1527 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1528 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1529 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1530 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1531 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1532 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1533 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1534 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1535 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1536 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1537 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1538 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1539 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1540 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1541 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1542 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1543 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1544 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1545 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1546 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1547 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1548 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1549 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1550 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1551 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1552 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1553 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1554 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1555 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1556 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1557 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1558 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1559 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1560 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1561 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1562 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1563 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1564 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1565 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1566 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1567 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1568 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1569 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1570 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1571 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1572 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1573 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1574 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1575 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1576 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1577 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1578 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1579 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1580 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1581 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1582 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1583 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1584 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1585 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1586 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1587 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1588 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1589 |
-
#: app/features/mec/
|
1590 |
-
#: app/features/mec/meta_boxes/search_form.php:799
|
1591 |
-
#: app/features/mec/meta_boxes/search_form.php:813
|
1592 |
-
#: app/features/mec/single.php:199 app/libraries/main.php:3712
|
1593 |
msgid "Dropdown"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: app/features/events.php:
|
1597 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1598 |
-
#: app/libraries/main.php:
|
1599 |
msgid "Agreement"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: app/features/events.php:
|
1603 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1604 |
-
#: app/features/mec/single.php:196 app/libraries/main.php:
|
1605 |
msgid "Paragraph"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: app/features/events.php:
|
1609 |
msgid "Fixed Fields"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: app/features/events.php:
|
1613 |
-
#: app/features/events.php:
|
1614 |
#, php-format
|
1615 |
msgid "Show all %s"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: app/features/events.php:
|
1619 |
msgid "labels"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: app/features/events.php:
|
1623 |
msgid "locations"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: app/features/events.php:
|
1627 |
msgid "organizers"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: app/features/events.php:
|
1631 |
msgid "Attendees List"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: app/features/events.php:
|
1635 |
-
#: app/features/ix.php:
|
1636 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1637 |
-
#: app/features/locations.php:
|
1638 |
-
#: app/features/locations.php:
|
1639 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1640 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1641 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1642 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1643 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1644 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1645 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1646 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1647 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1648 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1649 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1650 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1651 |
-
#: app/features/mec/settings.php:
|
1652 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1653 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1654 |
-
#: app/libraries/main.php:
|
1655 |
-
#: app/libraries/main.php:
|
1656 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1657 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1658 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
@@ -1660,101 +1657,101 @@ msgstr ""
|
|
1660 |
msgid "Location"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: app/features/events.php:
|
1664 |
msgid "Repeat"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: app/features/events.php:
|
1668 |
msgid "Author"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: app/features/events.php:
|
1672 |
msgid "iCal / Outlook Export"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: app/features/events.php:
|
1676 |
msgid "CSV Export"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: app/features/events.php:
|
1680 |
msgid "MS Excel Export"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: app/features/events.php:
|
1684 |
msgid "XML Export"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: app/features/events.php:
|
1688 |
msgid "JSON Export"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: app/features/events.php:
|
1692 |
-
#: app/features/events.php:
|
1693 |
msgid "Duplicate"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: app/features/events.php:
|
1697 |
-
#: app/features/ix.php:
|
1698 |
msgid "Link"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: app/features/events.php:
|
1702 |
-
#: app/features/ix.php:
|
1703 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1704 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1705 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1706 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1707 |
-
|
1708 |
-
#: app/features/mec/meta_boxes/search_form.php:354
|
1709 |
-
#: app/features/mec/meta_boxes/search_form.php:424
|
1710 |
-
#: app/features/mec/meta_boxes/search_form.php:494
|
1711 |
-
#: app/features/mec/meta_boxes/search_form.php:557
|
1712 |
-
#: app/features/mec/meta_boxes/search_form.php:627
|
1713 |
-
#: app/features/mec/meta_boxes/search_form.php:697
|
1714 |
-
#: app/features/mec/meta_boxes/search_form.php:803
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2020-12-16 12:21+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-12-16 12:23+0330\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fi_FI\n"
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/import.php:55
|
26 |
+
#: app/features/ix/thirdparty.php:26 app/features/mec.php:1186
|
27 |
+
#: app/features/mec.php:1210 app/features/mec/dashboard.php:63
|
28 |
#: app/widgets/MEC.php:33
|
29 |
msgid "Modern Events Calendar"
|
30 |
msgstr ""
|
81 |
msgstr ""
|
82 |
|
83 |
#: app/features/colors.php:50 app/features/fes/form.php:915
|
84 |
+
#: app/features/mec/settings.php:794
|
85 |
msgid "Event Color"
|
86 |
msgstr ""
|
87 |
|
92 |
#: app/features/contextual.php:55 app/features/mec.php:471
|
93 |
#: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
|
94 |
#: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
|
95 |
+
#: app/libraries/main.php:650
|
96 |
msgid "Settings"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: app/features/contextual.php:62 app/features/events.php:1445
|
100 |
+
#: app/features/events.php:2385 app/features/mec/booking.php:607
|
101 |
+
#: app/features/mec/booking.php:873 app/features/mec/settings.php:882
|
102 |
+
#: app/features/mec/support.php:29 app/libraries/main.php:602
|
103 |
msgid "Booking Form"
|
104 |
msgstr ""
|
105 |
|
112 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: app/features/contextual.php:70 app/features/events.php:1453
|
116 |
#: app/features/mec/booking.php:817 app/features/mec/support-page.php:115
|
117 |
+
#: app/features/mec/support.php:36 app/libraries/main.php:604
|
118 |
msgid "Payment Gateways"
|
119 |
msgstr ""
|
120 |
|
125 |
"\"0\" allowfullscreen></iframe>"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: app/features/contextual.php:77 app/features/events.php:353
|
129 |
#: app/features/mec/support-page.php:117 app/features/mec/support.php:45
|
130 |
+
#: app/libraries/main.php:798
|
131 |
msgid "Notifications"
|
132 |
msgstr ""
|
133 |
|
190 |
"\"0\" allowfullscreen></iframe>"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: app/features/contextual.php:117 app/features/mec/settings.php:66
|
194 |
#: app/features/mec/support-page.php:97 app/libraries/main.php:566
|
195 |
msgid "General Options"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: app/features/contextual.php:139 app/features/mec/settings.php:490
|
199 |
#: app/libraries/main.php:568
|
200 |
msgid "Slugs/Permalinks"
|
201 |
msgstr ""
|
204 |
msgid "Event Details/Single Event Page"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: app/features/contextual.php:166 app/features/mec/settings.php:522
|
208 |
#: app/libraries/main.php:569
|
209 |
msgid "Currency Options"
|
210 |
msgstr ""
|
213 |
msgid "Google Maps Options"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: app/features/contextual.php:244 app/features/mec/settings.php:579
|
217 |
#: app/libraries/main.php:570
|
218 |
msgid "Google Recaptcha Options"
|
219 |
msgstr ""
|
220 |
|
221 |
#: app/features/contextual.php:258 app/features/mec/single.php:248
|
222 |
+
#: app/libraries/main.php:588
|
223 |
msgid "Countdown Options"
|
224 |
msgstr ""
|
225 |
|
226 |
#: app/features/contextual.php:268 app/features/mec/modules.php:278
|
227 |
+
#: app/libraries/main.php:614
|
228 |
msgid "Social Networks"
|
229 |
msgstr ""
|
230 |
|
232 |
msgid "Next Event Module"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: app/features/contextual.php:286 app/features/mec/settings.php:619
|
236 |
#: app/features/mec/support-page.php:98 app/libraries/main.php:571
|
237 |
msgid "Frontend Event Submission"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: app/features/contextual.php:298 app/features/events.php:346
|
241 |
+
#: app/libraries/main.php:589
|
242 |
msgid "Exceptional Days"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: app/features/contextual.php:308 app/features/events.php:316
|
246 |
#: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
|
247 |
#: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
|
248 |
+
#: app/libraries/main.php:597 app/libraries/main.php:628
|
249 |
+
#: app/libraries/main.php:715
|
250 |
msgid "Booking"
|
251 |
msgstr ""
|
252 |
|
253 |
#: app/features/contextual.php:318 app/features/mec/booking.php:429
|
254 |
+
#: app/features/mec/booking.php:833 app/libraries/main.php:599
|
255 |
msgid "Coupons"
|
256 |
msgstr ""
|
257 |
|
258 |
#: app/features/contextual.php:326 app/features/mec/modules.php:350
|
259 |
+
#: app/libraries/main.php:616
|
260 |
msgid "BuddyPress Integration"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: app/features/contextual.php:334 app/features/mec/settings.php:1095
|
264 |
+
#: app/libraries/main.php:575
|
265 |
msgid "Mailchimp Integration"
|
266 |
msgstr ""
|
267 |
|
269 |
msgid "MEC Activation"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: app/features/dlfile.php:121 app/features/events.php:1450
|
273 |
+
#: app/features/mec/booking.php:349 app/features/mec/settings.php:916
|
274 |
msgid "Downloadable File"
|
275 |
msgstr ""
|
276 |
|
300 |
msgid "File uploaded!"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: app/features/events.php:168 app/features/ix/export.php:34
|
304 |
+
#: app/features/mec/dashboard.php:265 app/libraries/main.php:5603
|
305 |
+
#: app/libraries/main.php:5623 app/skins/daily_view/tpl.php:82
|
306 |
#: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
|
307 |
#: app/skins/yearly_view/tpl.php:71
|
308 |
msgid "Events"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: app/features/events.php:169 app/features/fes.php:243
|
312 |
#: app/features/mec/meta_boxes/display_options.php:1618
|
313 |
#: app/features/mec/meta_boxes/display_options.php:1712
|
314 |
#: app/features/mec/meta_boxes/display_options.php:1785
|
318 |
msgid "Event"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: app/features/events.php:170 app/features/mec.php:457
|
322 |
msgid "Add Event"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: app/features/events.php:171 app/features/mec/dashboard.php:140
|
326 |
msgid "Add New Event"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: app/features/events.php:172 app/features/ix.php:4403
|
330 |
#: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
|
331 |
#: app/skins/map/tpl.php:89
|
332 |
msgid "No events found!"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: app/features/events.php:173
|
336 |
msgid "All Events"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: app/features/events.php:174
|
340 |
msgid "Edit Event"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: app/features/events.php:175 app/features/fes/list.php:87
|
344 |
#: app/features/popup/event.php:252
|
345 |
msgid "View Event"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: app/features/events.php:176
|
349 |
msgid "No events found in Trash!"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: app/features/events.php:193 app/features/events.php:3471
|
353 |
#: app/features/mec/meta_boxes/display_options.php:1475
|
354 |
#: app/features/mec/meta_boxes/search_form.php:31
|
355 |
+
#: app/features/mec/meta_boxes/search_form.php:102
|
356 |
+
#: app/features/mec/meta_boxes/search_form.php:173
|
357 |
+
#: app/features/mec/meta_boxes/search_form.php:244
|
358 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
359 |
+
#: app/features/mec/meta_boxes/search_form.php:384
|
360 |
+
#: app/features/mec/meta_boxes/search_form.php:454
|
361 |
+
#: app/features/mec/meta_boxes/search_form.php:517
|
362 |
+
#: app/features/mec/meta_boxes/search_form.php:587
|
363 |
+
#: app/features/mec/meta_boxes/search_form.php:657
|
364 |
+
#: app/features/mec/meta_boxes/search_form.php:763
|
365 |
+
#: app/features/mec/settings.php:988 app/features/mec/settings.php:1048
|
366 |
#: app/features/mec/single.php:331 app/features/mec/single.php:373
|
367 |
+
#: app/features/search.php:68 app/libraries/main.php:6486
|
368 |
+
#: app/libraries/main.php:6540 app/libraries/skins.php:938
|
369 |
#: app/skins/single.php:1016 app/skins/single/default.php:219
|
370 |
#: app/skins/single/default.php:452 app/skins/single/m1.php:196
|
371 |
#: app/skins/single/m2.php:119 app/skins/single/modern.php:140
|
372 |
msgid "Category"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: app/features/events.php:194 app/features/events.php:3426
|
376 |
#: app/features/fes/form.php:865 app/features/mec.php:459
|
377 |
#: app/features/mec/meta_boxes/filter.php:69
|
378 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6485
|
379 |
+
#: app/libraries/main.php:6539
|
380 |
msgid "Categories"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: app/features/events.php:204 app/features/labels.php:71
|
384 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
385 |
#: app/features/speakers.php:71
|
386 |
#, php-format
|
387 |
msgid "All %s"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: app/features/events.php:205 app/features/labels.php:72
|
391 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
392 |
#: app/features/speakers.php:72
|
393 |
#, php-format
|
394 |
msgid "Edit %s"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: app/features/events.php:206 app/features/labels.php:73
|
398 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
399 |
#: app/features/speakers.php:73
|
400 |
#, php-format
|
401 |
msgid "View %s"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: app/features/events.php:207 app/features/labels.php:74
|
405 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
406 |
#: app/features/speakers.php:74
|
407 |
#, php-format
|
408 |
msgid "Update %s"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: app/features/events.php:208 app/features/labels.php:75
|
412 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
413 |
#: app/features/speakers.php:75
|
414 |
#, php-format
|
415 |
msgid "Add New %s"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: app/features/events.php:209 app/features/labels.php:76
|
419 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
420 |
#: app/features/speakers.php:76
|
421 |
#, php-format
|
422 |
msgid "New %s Name"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: app/features/events.php:210 app/features/labels.php:77
|
426 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
427 |
#: app/features/speakers.php:77
|
428 |
#, php-format
|
429 |
msgid "Popular %s"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: app/features/events.php:211 app/features/labels.php:78
|
433 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
434 |
#: app/features/speakers.php:78
|
435 |
#, php-format
|
436 |
msgid "Search %s"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: app/features/events.php:236 app/features/events.php:257
|
440 |
msgid "Category Icon"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: app/features/events.php:239 app/features/events.php:262
|
444 |
msgid "Select icon"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: app/features/events.php:311
|
448 |
msgid "Event Details"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: app/features/events.php:342
|
452 |
msgid "FES Details"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: app/features/events.php:343
|
456 |
msgid "Date And Time"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: app/features/events.php:344 app/features/fes/form.php:366
|
460 |
msgid "Event Repeating"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: app/features/events.php:345 app/features/events.php:1179
|
464 |
msgid "Event Data"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: app/features/events.php:347 app/features/mec/settings.php:824
|
468 |
#: app/libraries/hourlyschedule.php:35 app/skins/single.php:1415
|
469 |
msgid "Hourly Schedule"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: app/features/events.php:348
|
473 |
msgid "Location/Venue"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: app/features/events.php:349
|
477 |
msgid "Links"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: app/features/events.php:350 app/features/events.php:3473
|
481 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
482 |
+
#: app/features/ix.php:4034
|
483 |
#: app/features/mec/meta_boxes/display_options.php:1478
|
484 |
#: app/features/mec/meta_boxes/search_form.php:46
|
485 |
+
#: app/features/mec/meta_boxes/search_form.php:117
|
486 |
+
#: app/features/mec/meta_boxes/search_form.php:188
|
487 |
+
#: app/features/mec/meta_boxes/search_form.php:259
|
488 |
+
#: app/features/mec/meta_boxes/search_form.php:329
|
489 |
+
#: app/features/mec/meta_boxes/search_form.php:399
|
490 |
+
#: app/features/mec/meta_boxes/search_form.php:469
|
491 |
+
#: app/features/mec/meta_boxes/search_form.php:532
|
492 |
+
#: app/features/mec/meta_boxes/search_form.php:602
|
493 |
+
#: app/features/mec/meta_boxes/search_form.php:672
|
494 |
+
#: app/features/mec/meta_boxes/search_form.php:778
|
495 |
+
#: app/features/mec/settings.php:1060 app/features/mec/single.php:335
|
496 |
#: app/features/mec/single.php:377 app/features/organizers.php:58
|
497 |
#: app/features/organizers.php:204 app/features/organizers.php:260
|
498 |
#: app/features/organizers.php:262 app/features/organizers.php:271
|
499 |
#: app/features/popup/event.php:163 app/features/popup/event.php:172
|
500 |
+
#: app/features/search.php:80 app/libraries/main.php:6492
|
501 |
+
#: app/libraries/main.php:6546 app/libraries/skins.php:990
|
502 |
#: app/skins/single.php:1264 app/skins/single/default.php:244
|
503 |
#: app/skins/single/default.php:477 app/skins/single/m1.php:102
|
504 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:48
|
505 |
msgid "Organizer"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: app/features/events.php:351 app/features/events.php:1166
|
509 |
+
#: app/features/fes/form.php:836 app/features/mec/settings.php:985
|
510 |
+
#: app/libraries/main.php:6523 app/libraries/main.php:6572
|
511 |
#: app/skins/single.php:1042 app/skins/single/default.php:142
|
512 |
#: app/skins/single/default.php:376 app/skins/single/m1.php:61
|
513 |
#: app/skins/single/modern.php:237
|
514 |
msgid "Cost"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: app/features/events.php:352
|
518 |
msgid "SEO Schema / Event Status"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: app/features/events.php:505
|
522 |
msgid "Note for reviewer"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: app/features/events.php:511
|
526 |
msgid "Guest Data"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: app/features/events.php:512 app/features/events.php:2371
|
530 |
+
#: app/features/events.php:3985 app/features/fes.php:243
|
531 |
#: app/features/fes/form.php:795 app/features/labels.php:178
|
532 |
#: app/features/mec/booking.php:53 app/features/organizers.php:279
|
533 |
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
535 |
msgid "Name"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: app/features/events.php:513 app/features/events.php:2380
|
539 |
+
#: app/features/events.php:2447 app/features/events.php:2536
|
540 |
+
#: app/features/events.php:3988 app/features/fes.php:243
|
541 |
#: app/features/fes/form.php:791 app/features/login/login.php:5
|
542 |
#: app/features/mec/booking.php:65 app/features/mec/booking.php:645
|
543 |
#: app/features/mec/booking.php:741 app/features/mec/single.php:191
|
544 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
545 |
#: app/features/profile/profile.php:180 app/features/speakers.php:127
|
546 |
+
#: app/features/speakers.php:204 app/libraries/main.php:1903
|
547 |
+
#: app/libraries/main.php:1972 app/libraries/main.php:3424
|
548 |
#: app/libraries/notifications.php:1625 app/modules/booking/steps/form.php:72
|
549 |
#: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
|
550 |
#: app/skins/single.php:1340 app/skins/single/default.php:261
|
553 |
msgid "Email"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: app/features/events.php:522
|
557 |
msgid ""
|
558 |
"This event is imported from Google calendar so if you modify it, it would "
|
559 |
"overwrite in the next import from Google."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: app/features/events.php:526 app/features/fes/form.php:278
|
563 |
msgid "Date and Time"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: app/features/events.php:529 app/features/events.php:533
|
567 |
+
#: app/features/events.php:3474 app/features/events.php:3662
|
568 |
#: app/features/fes/form.php:282 app/features/fes/form.php:286
|
569 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
570 |
+
#: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1406
|
571 |
#: app/features/mec/meta_boxes/display_options.php:52
|
572 |
#: app/features/mec/meta_boxes/display_options.php:298
|
573 |
#: app/features/mec/meta_boxes/display_options.php:555
|
587 |
msgid "Start Date"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: app/features/events.php:548 app/features/events.php:552
|
591 |
+
#: app/features/events.php:3475 app/features/events.php:3662
|
592 |
#: app/features/fes/form.php:301 app/features/fes/form.php:305
|
593 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
594 |
+
#: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1407
|
595 |
#: app/features/popup/event.php:92
|
596 |
msgid "End Date"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: app/features/events.php:575 app/features/fes/form.php:319
|
600 |
#: app/features/popup/event.php:109
|
601 |
msgid "All-day Event"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: app/features/events.php:585 app/features/fes/form.php:322
|
605 |
msgid "Hide Event Time"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: app/features/events.php:595 app/features/fes/form.php:325
|
609 |
msgid "Hide Event End Time"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: app/features/events.php:600 app/features/events.php:604
|
613 |
#: app/features/fes/form.php:329
|
614 |
msgid "Notes on the time"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: app/features/events.php:605 app/features/fes/form.php:330
|
618 |
msgid ""
|
619 |
"It shows next to event time on the Single Event Page. You can enter notes "
|
620 |
"such as timezone in this field."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: app/features/events.php:607 app/features/events.php:776
|
624 |
+
#: app/features/events.php:1129 app/features/events.php:1278
|
625 |
+
#: app/features/events.php:1415 app/features/events.php:1530
|
626 |
+
#: app/features/events.php:1765 app/features/events.php:1780
|
627 |
+
#: app/features/events.php:1957 app/features/events.php:1970
|
628 |
+
#: app/features/events.php:2122 app/features/events.php:2158
|
629 |
+
#: app/features/events.php:2256 app/features/events.php:2271
|
630 |
+
#: app/features/events.php:2301 app/features/events.php:2314
|
631 |
#: app/features/fes/form.php:439 app/features/fes/form.php:747
|
632 |
+
#: app/features/locations.php:335 app/features/mec/booking.php:117
|
633 |
#: app/features/mec/booking.php:196 app/features/mec/booking.php:261
|
634 |
#: app/features/mec/booking.php:280 app/features/mec/booking.php:293
|
635 |
#: app/features/mec/booking.php:310 app/features/mec/booking.php:350
|
682 |
#: app/features/mec/notifications.php:950
|
683 |
#: app/features/mec/notifications.php:961
|
684 |
#: app/features/mec/notifications.php:1086
|
685 |
+
#: app/features/mec/notifications.php:1171 app/features/mec/settings.php:81
|
686 |
+
#: app/features/mec/settings.php:100 app/features/mec/settings.php:147
|
687 |
+
#: app/features/mec/settings.php:182 app/features/mec/settings.php:203
|
688 |
+
#: app/features/mec/settings.php:248 app/features/mec/settings.php:291
|
689 |
+
#: app/features/mec/settings.php:368 app/features/mec/settings.php:445
|
690 |
+
#: app/features/mec/settings.php:462 app/features/mec/settings.php:479
|
691 |
+
#: app/features/mec/settings.php:498 app/features/mec/settings.php:512
|
692 |
+
#: app/features/mec/settings.php:540 app/features/mec/settings.php:631
|
693 |
+
#: app/features/mec/settings.php:956 app/features/mec/settings.php:972
|
694 |
+
#: app/features/mec/settings.php:1110 app/features/mec/settings.php:1123
|
695 |
+
#: app/features/mec/settings.php:1139 app/features/mec/single.php:46
|
696 |
#: app/features/mec/single.php:62 app/features/mec/single.php:82
|
697 |
#: app/features/mec/single.php:100 app/features/mec/single.php:123
|
698 |
#: app/features/mec/single.php:138 app/features/mec/single.php:277
|
706 |
msgid "Read More"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: app/features/events.php:617 app/features/fes/form.php:337
|
710 |
msgid "Timezone"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: app/features/events.php:622 app/features/events.php:635
|
714 |
+
#: app/features/events.php:1606 app/features/events.php:1616
|
715 |
+
#: app/features/events.php:1639 app/features/events.php:2084
|
716 |
+
#: app/features/events.php:2216 app/features/events.php:2402
|
717 |
#: app/features/fes/form.php:342 app/features/fes/form.php:355
|
718 |
msgid "Inherit from global options"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: app/features/events.php:631 app/features/events.php:634
|
722 |
#: app/features/fes/form.php:351 app/features/fes/form.php:354
|
723 |
msgid "Countdown Method"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: app/features/events.php:636 app/features/fes/form.php:356
|
727 |
msgid "Count to Event Start"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: app/features/events.php:637 app/features/fes/form.php:357
|
731 |
msgid "Count to Event End"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: app/features/events.php:645
|
735 |
msgid "Repeating"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: app/features/events.php:654
|
739 |
msgid "Event Repeating (Recurring events)"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: app/features/events.php:658 app/features/fes/form.php:370
|
743 |
msgid "Repeats"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: app/features/events.php:666 app/features/fes/form.php:372
|
747 |
+
#: app/features/mec.php:1409 app/skins/default_full_calendar/tpl.php:77
|
748 |
#: app/skins/full_calendar/tpl.php:124
|
749 |
msgid "Daily"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: app/features/events.php:673 app/features/fes/form.php:373
|
753 |
msgid "Every Weekday"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: app/features/events.php:680 app/features/fes/form.php:374
|
757 |
msgid "Every Weekend"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: app/features/events.php:687 app/features/fes/form.php:375
|
761 |
msgid "Certain Weekdays"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: app/features/events.php:694 app/features/fes/form.php:376
|
765 |
#: app/skins/default_full_calendar/tpl.php:76
|
766 |
#: app/skins/full_calendar/tpl.php:123
|
767 |
msgid "Weekly"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: app/features/events.php:701 app/features/fes/form.php:377
|
771 |
+
#: app/features/mec.php:1410 app/skins/default_full_calendar/tpl.php:75
|
772 |
#: app/skins/full_calendar/tpl.php:122
|
773 |
msgid "Monthly"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: app/features/events.php:708 app/features/fes/form.php:378
|
777 |
+
#: app/features/mec.php:1411 app/skins/default_full_calendar/tpl.php:74
|
778 |
#: app/skins/full_calendar/tpl.php:121
|
779 |
msgid "Yearly"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: app/features/events.php:715 app/features/fes/form.php:379
|
783 |
msgid "Custom Days"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: app/features/events.php:722 app/features/fes/form.php:380
|
787 |
msgid "Advanced"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: app/features/events.php:727 app/features/fes/form.php:384
|
791 |
msgid "Repeat Interval"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: app/features/events.php:729 app/features/fes/form.php:385
|
795 |
msgid "Repeat interval"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: app/features/events.php:733 app/features/fes/form.php:388
|
799 |
msgid "Week Days"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: app/features/events.php:750
|
803 |
msgid ""
|
804 |
"To add multiple occurrences per day you need Pro version of Modern Events "
|
805 |
"Calendar."
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: app/features/events.php:756 app/features/events.php:1848
|
809 |
+
#: app/features/events.php:1876 app/features/events.php:2026
|
810 |
#: app/features/fes/form.php:402 app/features/ix/import_f_calendar.php:42
|
811 |
#: app/features/ix/import_g_calendar.php:51
|
812 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
|
813 |
+
#: app/libraries/skins.php:1142
|
814 |
msgid "Start"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: app/features/events.php:769 app/features/events.php:1272
|
818 |
+
#: app/features/events.php:1832 app/features/events.php:2015
|
819 |
+
#: app/features/events.php:2095 app/features/events.php:2228
|
820 |
#: app/features/fes/form.php:432 app/features/fes/form.php:963
|
821 |
#: app/features/occurrences.php:114 app/libraries/hourlyschedule.php:56
|
822 |
#: app/libraries/hourlyschedule.php:119
|
823 |
msgid "Add"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: app/features/events.php:772 app/features/fes/form.php:435
|
827 |
msgid "Custom Days Repeating"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: app/features/events.php:775 app/features/fes/form.php:438
|
831 |
msgid ""
|
832 |
"Add certain days to event occurrence dates. If you have a single day event, "
|
833 |
"start and end dates should be the same, If you have a multiple day event, "
|
834 |
"the start and end dates must be commensurate with the initial date."
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: app/features/events.php:786 app/features/events.php:1852
|
838 |
+
#: app/features/events.php:1880 app/features/events.php:2030
|
839 |
+
#: app/features/fes/form.php:417 app/libraries/skins.php:1145
|
840 |
msgid "End"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: app/features/events.php:863 app/features/fes/form.php:511
|
844 |
msgid "First"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: app/features/events.php:905 app/features/fes/form.php:553
|
848 |
msgid "Second"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: app/features/events.php:947 app/features/fes/form.php:595
|
852 |
msgid "Third"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: app/features/events.php:989 app/features/fes/form.php:637
|
856 |
msgid "Fourth"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: app/features/events.php:1031 app/features/fes/form.php:679
|
860 |
msgid "Last"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: app/features/events.php:1078 app/features/fes/form.php:725
|
864 |
msgid "Ends Repeat"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: app/features/events.php:1090 app/features/fes/form.php:729
|
868 |
msgid "Never"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: app/features/events.php:1102 app/features/fes/form.php:734
|
872 |
msgid "On"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: app/features/events.php:1118 app/features/fes/form.php:741
|
876 |
#: app/features/mec/booking.php:154
|
877 |
msgid "After"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: app/features/events.php:1122 app/features/events.php:1126
|
881 |
#: app/features/fes/form.php:743 app/features/fes/form.php:746
|
882 |
msgid "Occurrences times"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: app/features/events.php:1127
|
886 |
msgid ""
|
887 |
"The event will finish after certain repeats. For example if you set it to "
|
888 |
"10, the event will finish after 10 occurrences."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: app/features/events.php:1143 app/features/fes/form.php:760
|
892 |
msgid "Show only one occurrence of this event"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: app/features/events.php:1162 app/features/events.php:3662
|
896 |
+
#: app/features/fes/form.php:833 app/features/ix.php:3992
|
897 |
+
#: app/features/ix.php:4034 app/features/mec/settings.php:770
|
898 |
+
#: app/libraries/main.php:6522 app/libraries/main.php:6571
|
899 |
#: app/widgets/single.php:105
|
900 |
msgid "Event Cost"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: app/features/events.php:1259
|
904 |
msgid "Exceptional Days (Exclude Dates)"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: app/features/events.php:1265 app/features/events.php:1275
|
908 |
msgid "Exclude certain days"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: app/features/events.php:1270 app/features/events.php:2448
|
912 |
+
#: app/features/events.php:2537 app/features/fes.php:243
|
913 |
#: app/features/mec/booking.php:646 app/features/mec/booking.php:742
|
914 |
#: app/features/mec/single.php:193 app/features/profile/profile.php:58
|
915 |
+
#: app/features/wc.php:83 app/libraries/main.php:3511
|
916 |
#: app/modules/booking/steps/tickets.php:106
|
917 |
#: app/modules/next-event/details.php:143 app/skins/single.php:1100
|
918 |
#: app/skins/single/default.php:99 app/skins/single/default.php:333
|
920 |
msgid "Date"
|
921 |
msgstr "Päivämäärä"
|
922 |
|
923 |
+
#: app/features/events.php:1276
|
924 |
msgid ""
|
925 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
926 |
"exclude only single day occurrences and you cannot exclude one day from "
|
927 |
"multiple day occurrences."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: app/features/events.php:1334 app/libraries/render.php:566
|
931 |
msgid "Day 1"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: app/features/events.php:1378 app/features/fes/form.php:810
|
935 |
+
#: app/features/mec/settings.php:764
|
936 |
msgid "Event Links"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: app/features/events.php:1381 app/features/events.php:1389
|
940 |
+
#: app/features/fes/form.php:812 app/features/mec/settings.php:986
|
941 |
+
#: app/libraries/main.php:6520 app/libraries/main.php:6569
|
942 |
msgid "Event Link"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: app/features/events.php:1384 app/features/events.php:1402
|
946 |
#: app/features/fes/form.php:813 app/features/fes/form.php:818
|
947 |
msgid "eg. http://yoursite.com/your-event"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: app/features/events.php:1390
|
951 |
msgid ""
|
952 |
"If you fill it, it will replace the default event page link. Insert full "
|
953 |
"link including http(s):// - Also, if you use advertising URL, can use URL "
|
954 |
"Shortener"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: app/features/events.php:1392
|
958 |
msgid "URL Shortener"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: app/features/events.php:1399 app/features/events.php:1412
|
962 |
+
#: app/features/fes/form.php:817 app/libraries/main.php:6521
|
963 |
+
#: app/libraries/main.php:6570 app/skins/single.php:1126
|
964 |
#: app/skins/single/default.php:158 app/skins/single/default.php:390
|
965 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
966 |
#: app/skins/single/modern.php:162 app/widgets/single.php:109
|
967 |
msgid "More Info"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: app/features/events.php:1405 app/features/fes/form.php:819
|
971 |
msgid "More Information"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: app/features/events.php:1407 app/features/fes/form.php:821
|
975 |
+
#: app/features/mec.php:1008 app/features/popup/shortcode.php:477
|
976 |
msgid "Current Window"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: app/features/events.php:1408 app/features/fes/form.php:822
|
980 |
+
#: app/features/mec.php:1009 app/features/popup/shortcode.php:481
|
981 |
msgid "New Window"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: app/features/events.php:1413 app/features/fes/form.php:824
|
985 |
msgid ""
|
986 |
"If you fill it, it will be shown in event details page as an optional link. "
|
987 |
"Insert full link including http(s)://"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: app/features/events.php:1436 app/features/mec/settings.php:832
|
991 |
msgid "Booking Options"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: app/features/events.php:1437 app/features/events.php:1628
|
995 |
+
#: app/features/mec/settings.php:869
|
996 |
msgid "Total User Booking Limits"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: app/features/events.php:1438 app/features/events.php:1684
|
1000 |
+
#: app/libraries/book.php:63 app/libraries/main.php:6525
|
1001 |
#: app/modules/booking/steps/tickets.php:137
|
1002 |
#: app/modules/booking/steps/tickets.php:143
|
1003 |
msgid "Tickets"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: app/features/events.php:1440 app/features/events.php:2072
|
1007 |
msgid "Fees"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: app/features/events.php:1443 app/features/events.php:2204
|
1011 |
+
#: app/features/mec/settings.php:894
|
1012 |
msgid "Ticket Variations / Options"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: app/features/events.php:1447 app/features/mec/booking.php:904
|
1016 |
#: app/features/mec/support-page.php:118
|
1017 |
msgid "Organizer Payment"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: app/features/events.php:1512 app/features/events.php:1526
|
1021 |
msgid "Total booking limit"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: app/features/events.php:1523 app/features/events.php:1801
|
1025 |
+
#: app/features/events.php:1984 app/modules/booking/default.php:98
|
1026 |
#: app/modules/booking/steps/tickets.php:137
|
1027 |
#: app/modules/booking/steps/tickets.php:143
|
1028 |
#: app/skins/available_spot/tpl.php:140
|
1029 |
msgid "Unlimited"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: app/features/events.php:1529
|
1033 |
msgid ""
|
1034 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1035 |
"limitation number."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: app/features/events.php:1531
|
1039 |
msgid "Read About A Booking System"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: app/features/events.php:1539
|
1043 |
msgid "100"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: app/features/events.php:1544
|
1047 |
msgid "Discount per user roles"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: app/features/events.php:1550
|
1051 |
msgid "5"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: app/features/events.php:1556 app/features/events.php:1570
|
1055 |
+
#: app/features/mec/settings.php:851
|
1056 |
msgid "Book All Occurrences"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: app/features/events.php:1567
|
1060 |
msgid "Sell all occurrences by one booking"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: app/features/events.php:1573
|
1064 |
msgid ""
|
1065 |
"If you have a series of events and you want to sell all of them at once, "
|
1066 |
"this option is for you! For example a weekly yoga course or something "
|
1067 |
"similar."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: app/features/events.php:1584 app/features/mec/booking.php:129
|
1071 |
+
#: app/features/mec/settings.php:857
|
1072 |
msgid "Interval Options"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: app/features/events.php:1586 app/features/events.php:1591
|
1076 |
#: app/features/mec/booking.php:131 app/features/mec/booking.php:136
|
1077 |
msgid "Show Booking Form Interval"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: app/features/events.php:1588 app/features/mec/booking.php:133
|
1081 |
msgid "Minutes (e.g 5)"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: app/features/events.php:1592 app/features/mec/booking.php:137
|
1085 |
msgid ""
|
1086 |
"You can show booking form only at certain times before event start. If you "
|
1087 |
"set this option to 30 then booking form will open only 30 minutes before "
|
1088 |
"starting the event! One day is 1440 minutes."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: app/features/events.php:1601 app/features/mec/settings.php:863
|
1092 |
msgid "Automatic Approval"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: app/features/events.php:1603 app/features/notifications.php:160
|
1096 |
msgid "Email Verification"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: app/features/events.php:1607 app/features/events.php:1617
|
1100 |
#: app/features/mec/booking.php:172 app/features/mec/booking.php:239
|
1101 |
#: app/features/mec/booking.php:254 app/features/mec/booking.php:843
|
1102 |
#: app/features/mec/booking.php:868
|
1108 |
#: app/features/mec/meta_boxes/search_form.php:69
|
1109 |
#: app/features/mec/meta_boxes/search_form.php:76
|
1110 |
#: app/features/mec/meta_boxes/search_form.php:83
|
1111 |
+
#: app/features/mec/meta_boxes/search_form.php:91
|
1112 |
+
#: app/features/mec/meta_boxes/search_form.php:104
|
1113 |
+
#: app/features/mec/meta_boxes/search_form.php:111
|
1114 |
+
#: app/features/mec/meta_boxes/search_form.php:119
|
1115 |
+
#: app/features/mec/meta_boxes/search_form.php:126
|
1116 |
+
#: app/features/mec/meta_boxes/search_form.php:133
|
1117 |
+
#: app/features/mec/meta_boxes/search_form.php:140
|
1118 |
+
#: app/features/mec/meta_boxes/search_form.php:147
|
1119 |
+
#: app/features/mec/meta_boxes/search_form.php:154
|
1120 |
+
#: app/features/mec/meta_boxes/search_form.php:162
|
1121 |
+
#: app/features/mec/meta_boxes/search_form.php:175
|
1122 |
+
#: app/features/mec/meta_boxes/search_form.php:182
|
1123 |
+
#: app/features/mec/meta_boxes/search_form.php:190
|
1124 |
+
#: app/features/mec/meta_boxes/search_form.php:197
|
1125 |
+
#: app/features/mec/meta_boxes/search_form.php:204
|
1126 |
+
#: app/features/mec/meta_boxes/search_form.php:211
|
1127 |
+
#: app/features/mec/meta_boxes/search_form.php:218
|
1128 |
+
#: app/features/mec/meta_boxes/search_form.php:225
|
1129 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
1130 |
+
#: app/features/mec/meta_boxes/search_form.php:246
|
1131 |
+
#: app/features/mec/meta_boxes/search_form.php:253
|
1132 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
1133 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
1134 |
+
#: app/features/mec/meta_boxes/search_form.php:275
|
1135 |
+
#: app/features/mec/meta_boxes/search_form.php:282
|
1136 |
+
#: app/features/mec/meta_boxes/search_form.php:289
|
1137 |
+
#: app/features/mec/meta_boxes/search_form.php:296
|
1138 |
+
#: app/features/mec/meta_boxes/search_form.php:303
|
1139 |
+
#: app/features/mec/meta_boxes/search_form.php:316
|
1140 |
+
#: app/features/mec/meta_boxes/search_form.php:323
|
1141 |
+
#: app/features/mec/meta_boxes/search_form.php:331
|
1142 |
+
#: app/features/mec/meta_boxes/search_form.php:338
|
1143 |
+
#: app/features/mec/meta_boxes/search_form.php:345
|
1144 |
+
#: app/features/mec/meta_boxes/search_form.php:352
|
1145 |
+
#: app/features/mec/meta_boxes/search_form.php:359
|
1146 |
+
#: app/features/mec/meta_boxes/search_form.php:366
|
1147 |
+
#: app/features/mec/meta_boxes/search_form.php:373
|
1148 |
+
#: app/features/mec/meta_boxes/search_form.php:386
|
1149 |
+
#: app/features/mec/meta_boxes/search_form.php:393
|
1150 |
+
#: app/features/mec/meta_boxes/search_form.php:401
|
1151 |
+
#: app/features/mec/meta_boxes/search_form.php:408
|
1152 |
+
#: app/features/mec/meta_boxes/search_form.php:415
|
1153 |
+
#: app/features/mec/meta_boxes/search_form.php:422
|
1154 |
+
#: app/features/mec/meta_boxes/search_form.php:429
|
1155 |
+
#: app/features/mec/meta_boxes/search_form.php:436
|
1156 |
+
#: app/features/mec/meta_boxes/search_form.php:443
|
1157 |
+
#: app/features/mec/meta_boxes/search_form.php:456
|
1158 |
+
#: app/features/mec/meta_boxes/search_form.php:463
|
1159 |
+
#: app/features/mec/meta_boxes/search_form.php:471
|
1160 |
+
#: app/features/mec/meta_boxes/search_form.php:478
|
1161 |
+
#: app/features/mec/meta_boxes/search_form.php:485
|
1162 |
+
#: app/features/mec/meta_boxes/search_form.php:492
|
1163 |
+
#: app/features/mec/meta_boxes/search_form.php:499
|
1164 |
+
#: app/features/mec/meta_boxes/search_form.php:506
|
1165 |
+
#: app/features/mec/meta_boxes/search_form.php:519
|
1166 |
+
#: app/features/mec/meta_boxes/search_form.php:526
|
1167 |
+
#: app/features/mec/meta_boxes/search_form.php:534
|
1168 |
+
#: app/features/mec/meta_boxes/search_form.php:541
|
1169 |
+
#: app/features/mec/meta_boxes/search_form.php:548
|
1170 |
+
#: app/features/mec/meta_boxes/search_form.php:555
|
1171 |
+
#: app/features/mec/meta_boxes/search_form.php:562
|
1172 |
+
#: app/features/mec/meta_boxes/search_form.php:569
|
1173 |
+
#: app/features/mec/meta_boxes/search_form.php:576
|
1174 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1175 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
1176 |
+
#: app/features/mec/meta_boxes/search_form.php:604
|
1177 |
+
#: app/features/mec/meta_boxes/search_form.php:611
|
1178 |
+
#: app/features/mec/meta_boxes/search_form.php:618
|
1179 |
+
#: app/features/mec/meta_boxes/search_form.php:625
|
1180 |
+
#: app/features/mec/meta_boxes/search_form.php:632
|
1181 |
+
#: app/features/mec/meta_boxes/search_form.php:639
|
1182 |
+
#: app/features/mec/meta_boxes/search_form.php:646
|
1183 |
+
#: app/features/mec/meta_boxes/search_form.php:659
|
1184 |
+
#: app/features/mec/meta_boxes/search_form.php:666
|
1185 |
+
#: app/features/mec/meta_boxes/search_form.php:674
|
1186 |
+
#: app/features/mec/meta_boxes/search_form.php:681
|
1187 |
+
#: app/features/mec/meta_boxes/search_form.php:688
|
1188 |
+
#: app/features/mec/meta_boxes/search_form.php:695
|
1189 |
+
#: app/features/mec/meta_boxes/search_form.php:702
|
1190 |
+
#: app/features/mec/meta_boxes/search_form.php:709
|
1191 |
+
#: app/features/mec/meta_boxes/search_form.php:716
|
1192 |
+
#: app/features/mec/meta_boxes/search_form.php:765
|
1193 |
+
#: app/features/mec/meta_boxes/search_form.php:772
|
1194 |
+
#: app/features/mec/meta_boxes/search_form.php:780
|
1195 |
+
#: app/features/mec/meta_boxes/search_form.php:787
|
1196 |
+
#: app/features/mec/meta_boxes/search_form.php:794
|
1197 |
+
#: app/features/mec/meta_boxes/search_form.php:801
|
1198 |
+
#: app/features/mec/meta_boxes/search_form.php:808
|
1199 |
+
#: app/features/mec/meta_boxes/search_form.php:815
|
1200 |
+
#: app/features/mec/meta_boxes/search_form.php:822
|
1201 |
+
#: app/features/mec/modules.php:124 app/features/mec/settings.php:112
|
1202 |
+
#: app/features/mec/settings.php:474
|
1203 |
msgid "Disabled"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: app/features/events.php:1608 app/features/events.php:1618
|
1207 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:238
|
1208 |
#: app/features/mec/booking.php:255 app/features/mec/booking.php:842
|
1209 |
#: app/features/mec/booking.php:869 app/features/mec/modules.php:164
|
1210 |
+
#: app/features/mec/settings.php:113
|
1211 |
msgid "Enabled"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: app/features/events.php:1613 app/features/mec/booking.php:376
|
1215 |
#: app/features/mec/notifications.php:273 app/features/notifications.php:154
|
1216 |
+
#: app/libraries/main.php:629
|
1217 |
msgid "Booking Confirmation"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: app/features/events.php:1642
|
|
|
|
|
|
|
|
|
1221 |
msgid "12"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: app/features/events.php:1649
|
1225 |
msgid "Disabled Gateways"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: app/features/events.php:1650
|
1229 |
msgid ""
|
1230 |
"You can disable some of the following payment gateways by checking them "
|
1231 |
"otherwise they will be enabled."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: app/features/events.php:1687
|
1235 |
msgid ""
|
1236 |
"You're translating an event so MEC will use the original event for tickets "
|
1237 |
"and booking. You can only translate the ticket name and description. Please "
|
1238 |
"define exact tickets that you defined in the original event here."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: app/features/events.php:1692
|
1242 |
msgid "Add Ticket"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1246 |
msgid "Ticket ID"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: app/features/events.php:1704 app/features/events.php:1900
|
1250 |
+
#: app/features/events.php:3662 app/features/fes.php:243
|
1251 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1252 |
#: app/features/labels.php:177 app/features/locations.php:262
|
1253 |
#: app/features/organizers.php:203 app/features/speakers.php:282
|
1254 |
msgid "ID"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: app/features/events.php:1707 app/features/events.php:1903
|
1258 |
msgid "Ticket Name"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: app/features/events.php:1712 app/features/events.php:1907
|
1262 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1263 |
+
#: app/features/ix.php:4034
|
1264 |
msgid "Start Time"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: app/features/events.php:1725 app/features/events.php:1920
|
1268 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1269 |
+
#: app/features/ix.php:4034
|
1270 |
msgid "End Time"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: app/features/events.php:1741 app/features/events.php:1935
|
1274 |
+
#: app/features/events.php:3662 app/libraries/hourlyschedule.php:65
|
1275 |
#: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:131
|
1276 |
msgid "Description"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: app/features/events.php:1746 app/features/events.php:1749
|
1280 |
+
#: app/features/events.php:1939 app/features/events.php:1942
|
1281 |
msgid "Private Description"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: app/features/events.php:1750 app/features/events.php:1943
|
1285 |
#, php-format
|
1286 |
msgid ""
|
1287 |
"You can show it on the email notifications by placing "
|
1288 |
"%%ticket_private_description%% into the email template."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: app/features/events.php:1758 app/features/events.php:1762
|
1292 |
+
#: app/features/events.php:1856 app/features/events.php:1883
|
1293 |
+
#: app/features/events.php:1951 app/features/events.php:1954
|
1294 |
+
#: app/features/events.php:2032 app/features/events.php:2249
|
1295 |
+
#: app/features/events.php:2253 app/features/events.php:2295
|
1296 |
+
#: app/features/events.php:2298 app/features/mec/booking.php:547
|
1297 |
#: app/features/mec/booking.php:550 app/features/mec/booking.php:579
|
1298 |
#: app/features/mec/booking.php:582
|
1299 |
msgid "Price"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: app/features/events.php:1763 app/features/events.php:1955
|
1303 |
msgid ""
|
1304 |
"Insert 0 for free ticket. Only numbers please — Enter only the price without "
|
1305 |
"any symbols or characters."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: app/features/events.php:1772 app/features/events.php:1777
|
1309 |
+
#: app/features/events.php:1964 app/features/events.php:1967
|
1310 |
msgid "Price Label"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: app/features/events.php:1778 app/features/events.php:1968
|
1314 |
msgid "For showing on website. e.g. $15"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: app/features/events.php:1788 app/features/events.php:1978
|
1318 |
msgid "Available Tickets"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: app/features/events.php:1805 app/features/events.php:1988
|
1322 |
msgid "Minimum Ticket e.g. 3"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: app/features/events.php:1808 app/features/events.php:1991
|
1326 |
msgid "MinimumTicket"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: app/features/events.php:1810 app/features/events.php:1993
|
1330 |
msgid "Set a number for the minimum ticket reservation possible"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: app/features/events.php:1818 app/features/events.php:2001
|
1334 |
msgid "e.g. 0"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: app/features/events.php:1820 app/features/events.php:2003
|
1338 |
msgid "Day"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: app/features/events.php:1821 app/features/events.php:2004
|
1342 |
msgid "Hour"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: app/features/events.php:1823 app/features/events.php:2006
|
1346 |
#, php-format
|
1347 |
msgid "Stop selling ticket %s before event start."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: app/features/events.php:1830 app/features/events.php:2013
|
1351 |
msgid "Price per Date"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: app/features/events.php:1860 app/features/events.php:1886
|
1355 |
+
#: app/features/events.php:2034 app/features/labels.php:60
|
1356 |
#: app/features/mec/meta_boxes/display_options.php:1476
|
1357 |
#: app/features/mec/meta_boxes/search_form.php:67
|
1358 |
+
#: app/features/mec/meta_boxes/search_form.php:138
|
1359 |
+
#: app/features/mec/meta_boxes/search_form.php:209
|
1360 |
+
#: app/features/mec/meta_boxes/search_form.php:280
|
1361 |
+
#: app/features/mec/meta_boxes/search_form.php:350
|
1362 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
1363 |
+
#: app/features/mec/meta_boxes/search_form.php:490
|
1364 |
+
#: app/features/mec/meta_boxes/search_form.php:553
|
1365 |
+
#: app/features/mec/meta_boxes/search_form.php:623
|
1366 |
+
#: app/features/mec/meta_boxes/search_form.php:693
|
1367 |
+
#: app/features/mec/meta_boxes/search_form.php:799
|
1368 |
+
#: app/features/mec/settings.php:989 app/features/mec/settings.php:1080
|
1369 |
#: app/features/mec/single.php:349 app/features/mec/single.php:391
|
1370 |
#: app/features/search.php:98 app/libraries/skins.php:1068
|
1371 |
msgid "Label"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: app/features/events.php:1862 app/features/events.php:1888
|
1375 |
+
#: app/features/events.php:2036 app/features/events.php:2135
|
1376 |
+
#: app/features/events.php:2171 app/features/events.php:2278
|
1377 |
+
#: app/features/events.php:2320 app/features/mec/booking.php:486
|
1378 |
#: app/features/mec/booking.php:515 app/features/mec/booking.php:566
|
1379 |
#: app/features/mec/booking.php:598 app/libraries/hourlyschedule.php:52
|
1380 |
#: app/libraries/hourlyschedule.php:66 app/libraries/hourlyschedule.php:87
|
1381 |
#: app/libraries/hourlyschedule.php:115 app/libraries/hourlyschedule.php:132
|
1382 |
+
#: app/libraries/main.php:3346 app/libraries/main.php:3375
|
1383 |
+
#: app/libraries/main.php:3404 app/libraries/main.php:3433
|
1384 |
+
#: app/libraries/main.php:3462 app/libraries/main.php:3491
|
1385 |
+
#: app/libraries/main.php:3520 app/libraries/main.php:3549
|
1386 |
+
#: app/libraries/main.php:3578 app/libraries/main.php:3599
|
1387 |
+
#: app/libraries/main.php:3630 app/libraries/main.php:3676
|
1388 |
+
#: app/libraries/main.php:3722 app/libraries/main.php:3771
|
1389 |
+
#: app/libraries/main.php:3811
|
1390 |
msgid "Remove"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: app/features/events.php:2109 app/features/events.php:2147
|
1394 |
#: app/features/mec/booking.php:466 app/features/mec/booking.php:495
|
1395 |
msgid "Fee Title"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: app/features/events.php:2115 app/features/events.php:2119
|
1399 |
+
#: app/features/events.php:2152 app/features/events.php:2155
|
1400 |
#: app/features/mec/booking.php:470 app/features/mec/booking.php:473
|
1401 |
#: app/features/mec/booking.php:499 app/features/mec/booking.php:502
|
1402 |
msgid "Amount"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: app/features/events.php:2120 app/features/events.php:2156
|
1406 |
#: app/features/mec/booking.php:474 app/features/mec/booking.php:503
|
1407 |
msgid ""
|
1408 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1409 |
"otherwise considered as percentage"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: app/features/events.php:2129 app/features/events.php:2165
|
1413 |
#: app/features/mec/booking.php:481 app/features/mec/booking.php:510
|
1414 |
msgid "Percent"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: app/features/events.php:2130 app/features/events.php:2166
|
1418 |
#: app/features/mec/booking.php:482 app/features/mec/booking.php:511
|
1419 |
msgid "Amount (Per Ticket)"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: app/features/events.php:2131 app/features/events.php:2167
|
1423 |
#: app/features/mec/booking.php:483 app/features/mec/booking.php:512
|
1424 |
msgid "Amount (Per Booking)"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: app/features/events.php:2243 app/features/events.php:2290
|
1428 |
+
#: app/features/events.php:3470 app/features/events.php:3662
|
1429 |
+
#: app/features/fes/form.php:256 app/features/ix.php:3992
|
1430 |
+
#: app/features/ix.php:4034 app/features/mec/booking.php:543
|
1431 |
#: app/features/mec/booking.php:575 app/features/mec/styling.php:130
|
1432 |
#: app/libraries/hourlyschedule.php:48 app/libraries/hourlyschedule.php:64
|
1433 |
#: app/libraries/hourlyschedule.php:85 app/libraries/hourlyschedule.php:110
|
1435 |
msgid "Title"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: app/features/events.php:2254 app/features/events.php:2299
|
1439 |
#: app/features/mec/booking.php:551 app/features/mec/booking.php:583
|
1440 |
msgid "Option Price"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: app/features/events.php:2264 app/features/events.php:2268
|
1444 |
+
#: app/features/events.php:2308 app/features/events.php:2311
|
1445 |
#: app/features/mec/booking.php:557 app/features/mec/booking.php:560
|
1446 |
#: app/features/mec/booking.php:589 app/features/mec/booking.php:592
|
1447 |
msgid "Maximum Per Ticket"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: app/features/events.php:2269 app/features/events.php:2312
|
1451 |
#: app/features/mec/booking.php:561 app/features/mec/booking.php:593
|
1452 |
msgid "Maximum Per Ticket. Leave blank for unlimited."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: app/features/events.php:2388
|
1456 |
msgid ""
|
1457 |
"You're translating an event so MEC will use the original event for booking "
|
1458 |
"form. You can only translate the field name and options. Please define exact "
|
1459 |
"fields that you defined in the original event here."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: app/features/events.php:2414 app/features/mec/booking.php:609
|
1463 |
msgid "Per Attendee Fields"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: app/features/events.php:2444 app/features/mec/booking.php:642
|
1467 |
+
#: app/libraries/main.php:3366
|
1468 |
msgid "MEC Name"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: app/features/events.php:2445 app/features/mec/booking.php:643
|
1472 |
+
#: app/libraries/main.php:3395
|
1473 |
msgid "MEC Email"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: app/features/events.php:2446 app/features/events.php:2535
|
1477 |
#: app/features/mec/booking.php:644 app/features/mec/booking.php:740
|
1478 |
+
#: app/features/mec/single.php:190 app/libraries/main.php:3337
|
1479 |
msgid "Text"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: app/features/events.php:2449 app/features/events.php:2538
|
1483 |
#: app/features/mec/booking.php:647 app/features/mec/booking.php:743
|
1484 |
#: app/features/mec/single.php:194 app/features/organizers.php:103
|
1485 |
#: app/features/organizers.php:148 app/features/speakers.php:119
|
1486 |
#: app/features/speakers.php:200 app/features/speakers.php:285
|
1487 |
+
#: app/libraries/main.php:3540
|
1488 |
msgid "Tel"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: app/features/events.php:2450 app/features/mec/booking.php:648
|
1492 |
+
#: app/libraries/main.php:3482
|
1493 |
msgid "File"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: app/features/events.php:2451 app/features/events.php:2539
|
1497 |
#: app/features/mec/booking.php:649 app/features/mec/booking.php:744
|
1498 |
+
#: app/features/mec/single.php:195 app/libraries/main.php:3569
|
1499 |
msgid "Textarea"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: app/features/events.php:2452 app/features/events.php:2540
|
1503 |
#: app/features/mec/booking.php:650 app/features/mec/booking.php:745
|
1504 |
+
#: app/features/mec/single.php:197 app/libraries/main.php:3621
|
1505 |
msgid "Checkboxes"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: app/features/events.php:2453 app/features/events.php:2541
|
1509 |
#: app/features/mec/booking.php:651 app/features/mec/booking.php:746
|
1510 |
+
#: app/features/mec/single.php:198 app/libraries/main.php:3667
|
1511 |
msgid "Radio Buttons"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: app/features/events.php:2454 app/features/events.php:2542
|
1515 |
#: app/features/mec/booking.php:652 app/features/mec/booking.php:747
|
1516 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1517 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1519 |
#: app/features/mec/meta_boxes/search_form.php:56
|
1520 |
#: app/features/mec/meta_boxes/search_form.php:63
|
1521 |
#: app/features/mec/meta_boxes/search_form.php:70
|
1522 |
+
#: app/features/mec/meta_boxes/search_form.php:105
|
1523 |
+
#: app/features/mec/meta_boxes/search_form.php:112
|
1524 |
+
#: app/features/mec/meta_boxes/search_form.php:120
|
1525 |
+
#: app/features/mec/meta_boxes/search_form.php:127
|
1526 |
+
#: app/features/mec/meta_boxes/search_form.php:134
|
1527 |
+
#: app/features/mec/meta_boxes/search_form.php:141
|
1528 |
+
#: app/features/mec/meta_boxes/search_form.php:176
|
1529 |
+
#: app/features/mec/meta_boxes/search_form.php:183
|
1530 |
+
#: app/features/mec/meta_boxes/search_form.php:191
|
1531 |
+
#: app/features/mec/meta_boxes/search_form.php:198
|
1532 |
+
#: app/features/mec/meta_boxes/search_form.php:205
|
1533 |
+
#: app/features/mec/meta_boxes/search_form.php:212
|
1534 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
1535 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
1536 |
+
#: app/features/mec/meta_boxes/search_form.php:262
|
1537 |
+
#: app/features/mec/meta_boxes/search_form.php:269
|
1538 |
+
#: app/features/mec/meta_boxes/search_form.php:276
|
1539 |
+
#: app/features/mec/meta_boxes/search_form.php:283
|
1540 |
+
#: app/features/mec/meta_boxes/search_form.php:297
|
1541 |
+
#: app/features/mec/meta_boxes/search_form.php:317
|
1542 |
+
#: app/features/mec/meta_boxes/search_form.php:324
|
1543 |
+
#: app/features/mec/meta_boxes/search_form.php:332
|
1544 |
+
#: app/features/mec/meta_boxes/search_form.php:339
|
1545 |
+
#: app/features/mec/meta_boxes/search_form.php:346
|
1546 |
+
#: app/features/mec/meta_boxes/search_form.php:353
|
1547 |
+
#: app/features/mec/meta_boxes/search_form.php:367
|
1548 |
+
#: app/features/mec/meta_boxes/search_form.php:387
|
1549 |
+
#: app/features/mec/meta_boxes/search_form.php:394
|
1550 |
+
#: app/features/mec/meta_boxes/search_form.php:402
|
1551 |
+
#: app/features/mec/meta_boxes/search_form.php:409
|
1552 |
+
#: app/features/mec/meta_boxes/search_form.php:416
|
1553 |
+
#: app/features/mec/meta_boxes/search_form.php:423
|
1554 |
+
#: app/features/mec/meta_boxes/search_form.php:437
|
1555 |
+
#: app/features/mec/meta_boxes/search_form.php:457
|
1556 |
+
#: app/features/mec/meta_boxes/search_form.php:464
|
1557 |
+
#: app/features/mec/meta_boxes/search_form.php:472
|
1558 |
+
#: app/features/mec/meta_boxes/search_form.php:479
|
1559 |
+
#: app/features/mec/meta_boxes/search_form.php:486
|
1560 |
+
#: app/features/mec/meta_boxes/search_form.php:493
|
1561 |
+
#: app/features/mec/meta_boxes/search_form.php:520
|
1562 |
+
#: app/features/mec/meta_boxes/search_form.php:527
|
1563 |
+
#: app/features/mec/meta_boxes/search_form.php:535
|
1564 |
+
#: app/features/mec/meta_boxes/search_form.php:542
|
1565 |
+
#: app/features/mec/meta_boxes/search_form.php:549
|
1566 |
+
#: app/features/mec/meta_boxes/search_form.php:556
|
1567 |
+
#: app/features/mec/meta_boxes/search_form.php:570
|
1568 |
+
#: app/features/mec/meta_boxes/search_form.php:590
|
1569 |
+
#: app/features/mec/meta_boxes/search_form.php:597
|
1570 |
+
#: app/features/mec/meta_boxes/search_form.php:605
|
1571 |
+
#: app/features/mec/meta_boxes/search_form.php:612
|
1572 |
+
#: app/features/mec/meta_boxes/search_form.php:619
|
1573 |
+
#: app/features/mec/meta_boxes/search_form.php:626
|
1574 |
+
#: app/features/mec/meta_boxes/search_form.php:640
|
1575 |
+
#: app/features/mec/meta_boxes/search_form.php:660
|
1576 |
+
#: app/features/mec/meta_boxes/search_form.php:667
|
1577 |
+
#: app/features/mec/meta_boxes/search_form.php:675
|
1578 |
+
#: app/features/mec/meta_boxes/search_form.php:682
|
1579 |
+
#: app/features/mec/meta_boxes/search_form.php:689
|
1580 |
+
#: app/features/mec/meta_boxes/search_form.php:696
|
1581 |
+
#: app/features/mec/meta_boxes/search_form.php:710
|
1582 |
+
#: app/features/mec/meta_boxes/search_form.php:766
|
1583 |
+
#: app/features/mec/meta_boxes/search_form.php:773
|
1584 |
+
#: app/features/mec/meta_boxes/search_form.php:781
|
1585 |
+
#: app/features/mec/meta_boxes/search_form.php:788
|
1586 |
+
#: app/features/mec/meta_boxes/search_form.php:795
|
1587 |
+
#: app/features/mec/meta_boxes/search_form.php:802
|
1588 |
+
#: app/features/mec/meta_boxes/search_form.php:816
|
1589 |
+
#: app/features/mec/single.php:199 app/libraries/main.php:3713
|
|
|
|
|
|
|
1590 |
msgid "Dropdown"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: app/features/events.php:2455 app/features/events.php:2543
|
1594 |
#: app/features/mec/booking.php:653 app/features/mec/booking.php:748
|
1595 |
+
#: app/libraries/main.php:3762
|
1596 |
msgid "Agreement"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: app/features/events.php:2456 app/features/events.php:2544
|
1600 |
#: app/features/mec/booking.php:654 app/features/mec/booking.php:749
|
1601 |
+
#: app/features/mec/single.php:196 app/libraries/main.php:3598
|
1602 |
msgid "Paragraph"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: app/features/events.php:2505 app/features/mec/booking.php:707
|
1606 |
msgid "Fixed Fields"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: app/features/events.php:3372 app/features/events.php:3390
|
1610 |
+
#: app/features/events.php:3408 app/features/events.php:3426
|
1611 |
#, php-format
|
1612 |
msgid "Show all %s"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: app/features/events.php:3372
|
1616 |
msgid "labels"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: app/features/events.php:3390
|
1620 |
msgid "locations"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: app/features/events.php:3408
|
1624 |
msgid "organizers"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: app/features/events.php:3442
|
1628 |
msgid "Attendees List"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: app/features/events.php:3472 app/features/events.php:3662
|
1632 |
+
#: app/features/ix.php:3992 app/features/ix.php:4034
|
1633 |
#: app/features/locations.php:58 app/features/locations.php:263
|
1634 |
+
#: app/features/locations.php:323 app/features/locations.php:325
|
1635 |
+
#: app/features/locations.php:334
|
1636 |
#: app/features/mec/meta_boxes/display_options.php:1477
|
1637 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1638 |
+
#: app/features/mec/meta_boxes/search_form.php:109
|
1639 |
+
#: app/features/mec/meta_boxes/search_form.php:180
|
1640 |
+
#: app/features/mec/meta_boxes/search_form.php:251
|
1641 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
1642 |
+
#: app/features/mec/meta_boxes/search_form.php:391
|
1643 |
+
#: app/features/mec/meta_boxes/search_form.php:461
|
1644 |
+
#: app/features/mec/meta_boxes/search_form.php:524
|
1645 |
+
#: app/features/mec/meta_boxes/search_form.php:594
|
1646 |
+
#: app/features/mec/meta_boxes/search_form.php:664
|
1647 |
+
#: app/features/mec/meta_boxes/search_form.php:770
|
1648 |
+
#: app/features/mec/settings.php:1054 app/features/mec/single.php:339
|
1649 |
#: app/features/mec/single.php:381 app/features/popup/event.php:116
|
1650 |
#: app/features/popup/event.php:125 app/features/search.php:74
|
1651 |
+
#: app/libraries/main.php:2688 app/libraries/main.php:6490
|
1652 |
+
#: app/libraries/main.php:6544 app/libraries/skins.php:964
|
1653 |
#: app/skins/single.php:943 app/skins/single.php:1386
|
1654 |
#: app/skins/single/default.php:195 app/skins/single/default.php:428
|
1655 |
#: app/skins/single/m1.php:173 app/skins/single/m2.php:96
|
1657 |
msgid "Location"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: app/features/events.php:3477
|
1661 |
msgid "Repeat"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: app/features/events.php:3478
|
1665 |
msgid "Author"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: app/features/events.php:3599 app/features/events.php:3600
|
1669 |
msgid "iCal / Outlook Export"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: app/features/events.php:3602 app/features/events.php:3603
|
1673 |
msgid "CSV Export"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: app/features/events.php:3605 app/features/events.php:3606
|
1677 |
msgid "MS Excel Export"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: app/features/events.php:3608 app/features/events.php:3609
|
1681 |
msgid "XML Export"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: app/features/events.php:3611 app/features/events.php:3612
|
1685 |
msgid "JSON Export"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: app/features/events.php:3614 app/features/events.php:3615
|
1689 |
+
#: app/features/events.php:3771
|
1690 |
msgid "Duplicate"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1694 |
+
#: app/features/ix.php:4034
|
1695 |
msgid "Link"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: app/features/events.php:3662 app/features/ix.php:3992
|
1699 |
+
#: app/features/ix.php:4034 app/features/locations.php:110
|
1700 |
#: app/features/locations.php:180 app/features/locations.php:264
|
1701 |
#: app/features/mec/meta_boxes/search_form.php:74
|
1702 |
+
#: app/features/mec/meta_boxes/search_form.php:145
|
1703 |
+
#: app/features/mec/meta_boxes/search_form.php:216
|
1704 |
+
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|