Version Description
- Changes in all versions:
- Improvement. Changed title 'Trash' to 'Trash / Reject', as some users can confuse missed Reject status.
- Fix. Incorrectly showing bookings in Calendar Overview in situation, when at some date was started booking at specific start time, and in closest future date start other new booking (its means that previous booking was not closed with end time), and sometimes we have showing this previous booking at date, where booking does not exist, at all. (8.7.1.1)
- Fix. Compatibility issue with Polylang plugin 2.6.5 or newer, of not loading translation of Booking Calendar plugin in admin panel (8.7.1.3)
- Fix. Parse error: syntax error, unexpected '[' in ../core/timeline/v2/wpbc-class-timeline_v2.php on line 1667 (8.7.1.4)
- Fix. Fatal error: Can't use function return value in write context in ../core/lib/wpdev-booking-class.php on line 918 (8.7.1.5)
- Fix. Fatal errors, relative using plugin at servers with old PHP version 5.2 (8.7.1.7)
- Changes in Personal / Business Small / Business Medium / Business Large / MultiUser versions:
- New. Ability to use this shortcode [booking_featured_image] in the email templates for inserting URL of featured images of posts, where was inserted the booking form for specific booking resource of this specific booking. (8.7.1.6)
Download this release
Release Info
Developer | wpdevelop |
Plugin | Booking Calendar |
Version | 8.7.1 |
Comparing to | |
See all releases |
Code changes from version 8.7 to 8.7.1
- core/admin/page-email-trash.php +2 -2
- core/admin/wpbc-class-listing.php +3 -4
- core/admin/wpbc-toolbars.php +3 -3
- core/lib/wpbc_all_translations.php +32 -19
- core/lib/wpdev-booking-class.php +8 -1
- core/timeline/v2/wpbc-class-timeline_v2.php +60 -9
- core/wpbc-constants.php +1 -1
- core/wpbc-translation.php +4 -2
- languages/booking-ar_SA.mo +0 -0
- languages/booking-be_BY.mo +0 -0
- languages/booking-bg_BG.mo +0 -0
- languages/booking-ca.mo +0 -0
- languages/booking-cs_CZ.mo +0 -0
- languages/booking-da_DK.mo +0 -0
- languages/booking-de_DE.mo +0 -0
- languages/booking-el.mo +0 -0
- languages/booking-es_ES.mo +0 -0
- languages/booking-fi.mo +0 -0
- languages/booking-fr_FR.mo +0 -0
- languages/booking-gl_ES.mo +0 -0
- languages/booking-he_IL.mo +0 -0
- languages/booking-hr.mo +0 -0
- languages/booking-hu_HU.mo +0 -0
- languages/booking-it_IT.mo +0 -0
- languages/booking-nb_NO.mo +0 -0
- languages/booking-nl_NL.mo +0 -0
- languages/booking-pl_PL.mo +0 -0
- languages/booking-pt_BR.mo +0 -0
- languages/booking-pt_PT.mo +0 -0
- languages/booking-ro_RO.mo +0 -0
- languages/booking-ru_RU.mo +0 -0
- languages/booking-sk_SK.mo +0 -0
- languages/booking-sl_SI.mo +0 -0
- languages/booking-sv_SE.mo +0 -0
- languages/booking-th_TH.mo +0 -0
- languages/booking-tr_TR.mo +0 -0
- languages/booking-uk_UK.mo +0 -0
- languages/booking-zh_CN.mo +0 -0
- languages/booking-zh_TW.mo +0 -0
- languages/booking.pot +2151 -2136
- readme.txt +25 -14
- wpdev-booking.php +2 -2
core/admin/page-email-trash.php
CHANGED
@@ -560,9 +560,9 @@ class WPBC_Settings_Page_Email_Trash extends WPBC_Page_Structure {
|
|
560 |
|
561 |
$subtabs['trash'] = array(
|
562 |
'type' => 'subtab' // Required| Possible values: 'subtab' | 'separator' | 'button' | 'goto-link' | 'html'
|
563 |
-
, 'title' => $icon . __('Trash' ,'booking') . $sufix // Title of TAB
|
564 |
, 'page_title' => __('Emails Settings', 'booking') // Title of Page
|
565 |
-
, 'hint' => __('Customization of email template, which is sent to Visitor after
|
566 |
, 'link' => '' // link
|
567 |
, 'position' => '' // 'left' || 'right' || ''
|
568 |
, 'css_classes' => '' // CSS class(es)
|
560 |
|
561 |
$subtabs['trash'] = array(
|
562 |
'type' => 'subtab' // Required| Possible values: 'subtab' | 'separator' | 'button' | 'goto-link' | 'html'
|
563 |
+
, 'title' => $icon . __('Trash / Reject' ,'booking') . $sufix // Title of TAB
|
564 |
, 'page_title' => __('Emails Settings', 'booking') // Title of Page
|
565 |
+
, 'hint' => __('Customization of email template, which is sent to Visitor after rejecting of booking' ,'booking') //FixIn: 8.1.2.17.1
|
566 |
, 'link' => '' // link
|
567 |
, 'position' => '' // 'left' || 'right' || ''
|
568 |
, 'css_classes' => '' // CSS class(es)
|
core/admin/wpbc-class-listing.php
CHANGED
@@ -316,8 +316,7 @@ class WPBC_Booking_Listing_Table {
|
|
316 |
id="booking_id_selected_<?php echo $row_data[ 'id' ]; ?>"
|
317 |
name="booking_appr_<?php $row_data[ 'id' ]; ?>"
|
318 |
/>
|
319 |
-
</div><?php
|
320 |
-
|
321 |
// ID
|
322 |
?><div class="wpbc-no-margin col-sm-1 col-xs-1 field-id text-center wpbc_column_2">
|
323 |
<span class="label"><?php echo $row_data[ 'id' ]; ?></span>
|
@@ -329,7 +328,7 @@ class WPBC_Booking_Listing_Table {
|
|
329 |
<span class="label label-default label-pending <?php if ($row_data['is_approved']) echo ' hidden_items '; ?> "><?php _e('Pending' ,'booking'); ?></span>
|
330 |
<span class="label label-default label-approved <?php if (! $row_data['is_approved']) echo ' hidden_items '; ?>"><?php _e('Approved' ,'booking'); ?></span>
|
331 |
<?php make_bk_action('wpdev_bk_listing_show_payment_label', $row_data['is_paid'], $row_data['pay_print_status'], $row_data['current_payment_status_titles']); ?>
|
332 |
-
<span class="label label-trash label-danger <?php if (! $row_data['is_trash']) echo ' hidden_items '; ?> "><?php _e('Trash' ,'booking'); ?></span><?php //FixIn: 6.1.1.10 ?>
|
333 |
<?php //FixIn: 8.4.5.10
|
334 |
if ( ! empty ( $row_data['sync_gid'] ) ) {
|
335 |
?><span class="label label-imported label-primary"><?php _e( 'Imported', 'booking' ); ?></span><?php
|
@@ -396,7 +395,7 @@ class WPBC_Booking_Listing_Table {
|
|
396 |
?><a href="javascript:void(0)"
|
397 |
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to do this ?' ,'booking')); ?>') ) trash__restore_booking( 1, <?php echo $row_data[ 'id' ]; ?>, <?php echo $this->user_id; ?>, '<?php echo wpbc_get_booking_locale(); ?>' , 1 );"
|
398 |
class="tooltip_top button-secondary button trash_bk_link <?php if ( $row_data['is_trash'] ) echo ' hidden_items '; ?>"
|
399 |
-
title="<?php _e('
|
400 |
><i class="glyphicon glyphicon-trash"></i></a><?php
|
401 |
// Restore
|
402 |
?><a href="javascript:void(0)"
|
316 |
id="booking_id_selected_<?php echo $row_data[ 'id' ]; ?>"
|
317 |
name="booking_appr_<?php $row_data[ 'id' ]; ?>"
|
318 |
/>
|
319 |
+
</div><?php
|
|
|
320 |
// ID
|
321 |
?><div class="wpbc-no-margin col-sm-1 col-xs-1 field-id text-center wpbc_column_2">
|
322 |
<span class="label"><?php echo $row_data[ 'id' ]; ?></span>
|
328 |
<span class="label label-default label-pending <?php if ($row_data['is_approved']) echo ' hidden_items '; ?> "><?php _e('Pending' ,'booking'); ?></span>
|
329 |
<span class="label label-default label-approved <?php if (! $row_data['is_approved']) echo ' hidden_items '; ?>"><?php _e('Approved' ,'booking'); ?></span>
|
330 |
<?php make_bk_action('wpdev_bk_listing_show_payment_label', $row_data['is_paid'], $row_data['pay_print_status'], $row_data['current_payment_status_titles']); ?>
|
331 |
+
<span class="label label-trash label-danger <?php if (! $row_data['is_trash']) echo ' hidden_items '; ?> "><?php _e('In Trash / Rejected' ,'booking'); ?></span><?php //FixIn: 6.1.1.10 ?>
|
332 |
<?php //FixIn: 8.4.5.10
|
333 |
if ( ! empty ( $row_data['sync_gid'] ) ) {
|
334 |
?><span class="label label-imported label-primary"><?php _e( 'Imported', 'booking' ); ?></span><?php
|
395 |
?><a href="javascript:void(0)"
|
396 |
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to do this ?' ,'booking')); ?>') ) trash__restore_booking( 1, <?php echo $row_data[ 'id' ]; ?>, <?php echo $this->user_id; ?>, '<?php echo wpbc_get_booking_locale(); ?>' , 1 );"
|
397 |
class="tooltip_top button-secondary button trash_bk_link <?php if ( $row_data['is_trash'] ) echo ' hidden_items '; ?>"
|
398 |
+
title="<?php _e('Reject - move to trash' ,'booking'); ?>"
|
399 |
><i class="glyphicon glyphicon-trash"></i></a><?php
|
400 |
// Restore
|
401 |
?><a href="javascript:void(0)"
|
core/admin/wpbc-toolbars.php
CHANGED
@@ -762,7 +762,7 @@ function wpbc_toolbar_filter__trash(){
|
|
762 |
'id' => 'wh_trash'
|
763 |
, 'options' => array (
|
764 |
__('Exist', 'booking') => '0',
|
765 |
-
__('In Trash', 'booking') => 'trash',
|
766 |
'divider0' => 'divider',
|
767 |
__('Any', 'booking') => 'any'
|
768 |
)
|
@@ -991,8 +991,8 @@ function wpbc_toolbar_btn__delete_reason( $user_bk_id ) {
|
|
991 |
, 'items' => array(
|
992 |
array( //FixIn: 6.1.1.10
|
993 |
'type' => 'button'
|
994 |
-
, 'title' => __('Trash', 'booking') . ' ' // Title of the button
|
995 |
-
, 'hint' => array( 'title' => __('
|
996 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
997 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to do this ?' ,'booking') ) . "') )
|
998 |
trash__restore_booking( 1, get_selected_bookings_id_in_booking_listing() , "
|
762 |
'id' => 'wh_trash'
|
763 |
, 'options' => array (
|
764 |
__('Exist', 'booking') => '0',
|
765 |
+
__('In Trash / Rejected', 'booking') => 'trash',
|
766 |
'divider0' => 'divider',
|
767 |
__('Any', 'booking') => 'any'
|
768 |
)
|
991 |
, 'items' => array(
|
992 |
array( //FixIn: 6.1.1.10
|
993 |
'type' => 'button'
|
994 |
+
, 'title' => __('Trash / Reject', 'booking') . ' ' // Title of the button
|
995 |
+
, 'hint' => array( 'title' => __('Reject booking - move selected bookings to trash' ,'booking') , 'position' => 'top' ) // Hint
|
996 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
997 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to do this ?' ,'booking') ) . "') )
|
998 |
trash__restore_booking( 1, get_selected_bookings_id_in_booking_listing() , "
|
core/lib/wpbc_all_translations.php
CHANGED
@@ -67,10 +67,6 @@
|
|
67 |
$wpbc_all_translations[] = __('Calendar Overview', 'booking');
|
68 |
$wpbc_all_translations[] = __('Default booking admin page', 'booking');
|
69 |
$wpbc_all_translations[] = __('Select your default view mode of bookings at the booking listing page', 'booking');
|
70 |
-
$wpbc_all_translations[] = __('Timeline type', 'booking');
|
71 |
-
$wpbc_all_translations[] = __('Select type of timeline to load', 'booking');
|
72 |
-
$wpbc_all_translations[] = __('Flex Timeline', 'booking');
|
73 |
-
$wpbc_all_translations[] = __('Old Timeline', 'booking');
|
74 |
$wpbc_all_translations[] = __('Day', 'booking');
|
75 |
$wpbc_all_translations[] = __('Week', 'booking');
|
76 |
$wpbc_all_translations[] = __('Month', 'booking');
|
@@ -231,7 +227,8 @@
|
|
231 |
$wpbc_all_translations[] = __('visitor', 'booking');
|
232 |
$wpbc_all_translations[] = __('Customization of email template, which is sending to Visitor after new booking', 'booking');
|
233 |
$wpbc_all_translations[] = __('Email is sending to Visitor after creation of booking.', 'booking');
|
234 |
-
$wpbc_all_translations[] = __('Trash', 'booking');
|
|
|
235 |
$wpbc_all_translations[] = __('Email is sent to visitor after cancelling of booking (moved to trash).', 'booking');
|
236 |
$wpbc_all_translations[] = __('Form', 'booking');
|
237 |
$wpbc_all_translations[] = __('Fields Settings', 'booking');
|
@@ -415,24 +412,13 @@
|
|
415 |
$wpbc_all_translations[] = __('Resource not exist', 'booking');
|
416 |
$wpbc_all_translations[] = __('Unknown', 'booking');
|
417 |
$wpbc_all_translations[] = __('Imported', 'booking');
|
418 |
-
$wpbc_all_translations[] = __('
|
419 |
$wpbc_all_translations[] = __('Restore', 'booking');
|
420 |
$wpbc_all_translations[] = __('Do you really want to delete this booking ?', 'booking');
|
421 |
$wpbc_all_translations[] = __('Completely Delete', 'booking');
|
422 |
$wpbc_all_translations[] = __('Approve', 'booking');
|
423 |
$wpbc_all_translations[] = __('Do you really want to set booking as pending ?', 'booking');
|
424 |
$wpbc_all_translations[] = __('Created', 'booking');
|
425 |
-
$wpbc_all_translations[] = __('Mon', 'booking');
|
426 |
-
$wpbc_all_translations[] = __('Tue', 'booking');
|
427 |
-
$wpbc_all_translations[] = __('Wed', 'booking');
|
428 |
-
$wpbc_all_translations[] = __('Thu', 'booking');
|
429 |
-
$wpbc_all_translations[] = __('Fri', 'booking');
|
430 |
-
$wpbc_all_translations[] = __('Sat', 'booking');
|
431 |
-
$wpbc_all_translations[] = __('Sun', 'booking');
|
432 |
-
$wpbc_all_translations[] = __('Times', 'booking');
|
433 |
-
$wpbc_all_translations[] = __('Decline', 'booking');
|
434 |
-
$wpbc_all_translations[] = __('Pay', 'booking');
|
435 |
-
$wpbc_all_translations[] = __('Payment', 'booking');
|
436 |
$wpbc_all_translations[] = __('Booking Calendar', 'booking');
|
437 |
$wpbc_all_translations[] = __('Video guide', 'booking');
|
438 |
$wpbc_all_translations[] = __('Support', 'booking');
|
@@ -570,12 +556,12 @@
|
|
570 |
$wpbc_all_translations[] = __('Check-out', 'booking');
|
571 |
$wpbc_all_translations[] = __('Order by', 'booking');
|
572 |
$wpbc_all_translations[] = __('Exist', 'booking');
|
573 |
-
$wpbc_all_translations[] = __('In Trash', 'booking');
|
574 |
$wpbc_all_translations[] = __('New bookings', 'booking');
|
575 |
$wpbc_all_translations[] = __('Creation', 'booking');
|
576 |
$wpbc_all_translations[] = __('Approve selected bookings', 'booking');
|
577 |
$wpbc_all_translations[] = __('Set selected bookings as pending', 'booking');
|
578 |
-
$wpbc_all_translations[] = __('
|
579 |
$wpbc_all_translations[] = __('Restore selected bookings', 'booking');
|
580 |
$wpbc_all_translations[] = __('Delete', 'booking');
|
581 |
$wpbc_all_translations[] = __('Delete selected bookings', 'booking');
|
@@ -622,6 +608,8 @@
|
|
622 |
$wpbc_all_translations[] = __('%sError!%s Request do not pass security check! Please refresh the page and try one more time.', 'booking');
|
623 |
$wpbc_all_translations[] = __('Set as Unread', 'booking');
|
624 |
$wpbc_all_translations[] = __('Set as Read', 'booking');
|
|
|
|
|
625 |
$wpbc_all_translations[] = __('Set as Approved', 'booking');
|
626 |
$wpbc_all_translations[] = __('Set as Pending', 'booking');
|
627 |
$wpbc_all_translations[] = __('Reason for cancellation here', 'booking');
|
@@ -635,6 +623,25 @@
|
|
635 |
$wpbc_all_translations[] = __('Updated successfully', 'booking');
|
636 |
$wpbc_all_translations[] = __('Error!', 'booking');
|
637 |
$wpbc_all_translations[] = __('Probably these date(s) just was booking by other visitor. Please reload this page and make booking again.', 'booking');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
638 |
$wpbc_all_translations[] = __('Check the box, if you want to use syntax highlighter during customization booking form at Settings - Form page.', 'booking');
|
639 |
$wpbc_all_translations[] = __('Show 3 months', 'booking');
|
640 |
$wpbc_all_translations[] = __('Show year', 'booking');
|
@@ -1811,4 +1818,10 @@
|
|
1811 |
$wpbc_all_translations[] = __('Find lost bookings', 'booking');
|
1812 |
$wpbc_all_translations[] = __('require correct configuration of this option: %sURL to edit bookings%s', 'booking');
|
1813 |
$wpbc_all_translations[] = __('You may test your integration over HTTP. However, live integrations must use HTTPS.', 'booking');
|
|
|
|
|
|
|
|
|
|
|
|
|
1814 |
}
|
67 |
$wpbc_all_translations[] = __('Calendar Overview', 'booking');
|
68 |
$wpbc_all_translations[] = __('Default booking admin page', 'booking');
|
69 |
$wpbc_all_translations[] = __('Select your default view mode of bookings at the booking listing page', 'booking');
|
|
|
|
|
|
|
|
|
70 |
$wpbc_all_translations[] = __('Day', 'booking');
|
71 |
$wpbc_all_translations[] = __('Week', 'booking');
|
72 |
$wpbc_all_translations[] = __('Month', 'booking');
|
227 |
$wpbc_all_translations[] = __('visitor', 'booking');
|
228 |
$wpbc_all_translations[] = __('Customization of email template, which is sending to Visitor after new booking', 'booking');
|
229 |
$wpbc_all_translations[] = __('Email is sending to Visitor after creation of booking.', 'booking');
|
230 |
+
$wpbc_all_translations[] = __('Trash / Reject', 'booking');
|
231 |
+
$wpbc_all_translations[] = __('Customization of email template, which is sent to Visitor after rejecting of booking', 'booking');
|
232 |
$wpbc_all_translations[] = __('Email is sent to visitor after cancelling of booking (moved to trash).', 'booking');
|
233 |
$wpbc_all_translations[] = __('Form', 'booking');
|
234 |
$wpbc_all_translations[] = __('Fields Settings', 'booking');
|
412 |
$wpbc_all_translations[] = __('Resource not exist', 'booking');
|
413 |
$wpbc_all_translations[] = __('Unknown', 'booking');
|
414 |
$wpbc_all_translations[] = __('Imported', 'booking');
|
415 |
+
$wpbc_all_translations[] = __('Reject - move to trash', 'booking');
|
416 |
$wpbc_all_translations[] = __('Restore', 'booking');
|
417 |
$wpbc_all_translations[] = __('Do you really want to delete this booking ?', 'booking');
|
418 |
$wpbc_all_translations[] = __('Completely Delete', 'booking');
|
419 |
$wpbc_all_translations[] = __('Approve', 'booking');
|
420 |
$wpbc_all_translations[] = __('Do you really want to set booking as pending ?', 'booking');
|
421 |
$wpbc_all_translations[] = __('Created', 'booking');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
$wpbc_all_translations[] = __('Booking Calendar', 'booking');
|
423 |
$wpbc_all_translations[] = __('Video guide', 'booking');
|
424 |
$wpbc_all_translations[] = __('Support', 'booking');
|
556 |
$wpbc_all_translations[] = __('Check-out', 'booking');
|
557 |
$wpbc_all_translations[] = __('Order by', 'booking');
|
558 |
$wpbc_all_translations[] = __('Exist', 'booking');
|
559 |
+
$wpbc_all_translations[] = __('In Trash / Rejected', 'booking');
|
560 |
$wpbc_all_translations[] = __('New bookings', 'booking');
|
561 |
$wpbc_all_translations[] = __('Creation', 'booking');
|
562 |
$wpbc_all_translations[] = __('Approve selected bookings', 'booking');
|
563 |
$wpbc_all_translations[] = __('Set selected bookings as pending', 'booking');
|
564 |
+
$wpbc_all_translations[] = __('Reject booking - move selected bookings to trash', 'booking');
|
565 |
$wpbc_all_translations[] = __('Restore selected bookings', 'booking');
|
566 |
$wpbc_all_translations[] = __('Delete', 'booking');
|
567 |
$wpbc_all_translations[] = __('Delete selected bookings', 'booking');
|
608 |
$wpbc_all_translations[] = __('%sError!%s Request do not pass security check! Please refresh the page and try one more time.', 'booking');
|
609 |
$wpbc_all_translations[] = __('Set as Unread', 'booking');
|
610 |
$wpbc_all_translations[] = __('Set as Read', 'booking');
|
611 |
+
$wpbc_all_translations[] = __('Approved by:', 'booking');
|
612 |
+
$wpbc_all_translations[] = __('Declined by:', 'booking');
|
613 |
$wpbc_all_translations[] = __('Set as Approved', 'booking');
|
614 |
$wpbc_all_translations[] = __('Set as Pending', 'booking');
|
615 |
$wpbc_all_translations[] = __('Reason for cancellation here', 'booking');
|
623 |
$wpbc_all_translations[] = __('Updated successfully', 'booking');
|
624 |
$wpbc_all_translations[] = __('Error!', 'booking');
|
625 |
$wpbc_all_translations[] = __('Probably these date(s) just was booking by other visitor. Please reload this page and make booking again.', 'booking');
|
626 |
+
$wpbc_all_translations[] = __('Timeline type', 'booking');
|
627 |
+
$wpbc_all_translations[] = __('Select type of timeline to load', 'booking');
|
628 |
+
$wpbc_all_translations[] = __('Flex Timeline', 'booking');
|
629 |
+
$wpbc_all_translations[] = __('Old Timeline', 'booking');
|
630 |
+
$wpbc_all_translations[] = __('Trash', 'booking');
|
631 |
+
$wpbc_all_translations[] = __('Move to trash', 'booking');
|
632 |
+
$wpbc_all_translations[] = __('Mon', 'booking');
|
633 |
+
$wpbc_all_translations[] = __('Tue', 'booking');
|
634 |
+
$wpbc_all_translations[] = __('Wed', 'booking');
|
635 |
+
$wpbc_all_translations[] = __('Thu', 'booking');
|
636 |
+
$wpbc_all_translations[] = __('Fri', 'booking');
|
637 |
+
$wpbc_all_translations[] = __('Sat', 'booking');
|
638 |
+
$wpbc_all_translations[] = __('Sun', 'booking');
|
639 |
+
$wpbc_all_translations[] = __('Times', 'booking');
|
640 |
+
$wpbc_all_translations[] = __('Decline', 'booking');
|
641 |
+
$wpbc_all_translations[] = __('Pay', 'booking');
|
642 |
+
$wpbc_all_translations[] = __('Payment', 'booking');
|
643 |
+
$wpbc_all_translations[] = __('In Trash', 'booking');
|
644 |
+
$wpbc_all_translations[] = __('Move selected bookings to trash', 'booking');
|
645 |
$wpbc_all_translations[] = __('Check the box, if you want to use syntax highlighter during customization booking form at Settings - Form page.', 'booking');
|
646 |
$wpbc_all_translations[] = __('Show 3 months', 'booking');
|
647 |
$wpbc_all_translations[] = __('Show year', 'booking');
|
1818 |
$wpbc_all_translations[] = __('Find lost bookings', 'booking');
|
1819 |
$wpbc_all_translations[] = __('require correct configuration of this option: %sURL to edit bookings%s', 'booking');
|
1820 |
$wpbc_all_translations[] = __('You may test your integration over HTTP. However, live integrations must use HTTPS.', 'booking');
|
1821 |
+
$wpbc_all_translations[] = __('Select date format for search form', 'booking');
|
1822 |
+
$wpbc_all_translations[] = __('Logging of booking approving or rejection', 'booking');
|
1823 |
+
$wpbc_all_translations[] = __('Check this box if you want to log approving or rejection of bookings and add it to your booking notes.', 'booking');
|
1824 |
+
$wpbc_all_translations[] = __('%sFor Malaysia Only%s. iPay88 - Payment Switching Gateway integration %s', 'booking');
|
1825 |
+
$wpbc_all_translations[] = __('Update cost, after booking editing in admin panel', 'booking');
|
1826 |
+
$wpbc_all_translations[] = __('Check this box if you want to update cost after editing booking in admin panel, based on new booking data', 'booking');
|
1827 |
}
|
core/lib/wpdev-booking-class.php
CHANGED
@@ -897,6 +897,13 @@ class wpdev_booking {
|
|
897 |
if ( $curr_user->ID > 0 ) {
|
898 |
//$user_nick_name =get_user_meta($curr_user->ID, 'nickname')[0];
|
899 |
//debuge( $user_nick_name );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
900 |
$return_form .= '<script type="text/javascript">
|
901 |
jQuery(document).ready( function(){
|
902 |
var bk_af_submit_form = document.getElementById( "booking_form'.$my_boook_type.'" );
|
@@ -915,7 +922,7 @@ class wpdev_booking {
|
|
915 |
bk_af_reg = /^([A-Za-z0-9_\-\.])*(nickname){1}([A-Za-z0-9_\-\.])*$/;
|
916 |
if(bk_af_reg.test(bk_af_element.name) != false)
|
917 |
if (bk_af_element.value == "" )
|
918 |
-
bk_af_element.value = "' . str_replace( "'", '',
|
919 |
// Second Name
|
920 |
bk_af_reg = /^([A-Za-z0-9_\-\.])*(last|second){1}([_\-\.])?name([A-Za-z0-9_\-\.])*$/;
|
921 |
if(bk_af_reg.test(bk_af_element.name) != false)
|
897 |
if ( $curr_user->ID > 0 ) {
|
898 |
//$user_nick_name =get_user_meta($curr_user->ID, 'nickname')[0];
|
899 |
//debuge( $user_nick_name );
|
900 |
+
//FixIn: 8.7.1.5
|
901 |
+
$user_nick_name = get_user_meta( $curr_user->ID, 'nickname' );
|
902 |
+
if ( empty( $user_nick_name ) ) {
|
903 |
+
$user_nick_name = '';
|
904 |
+
} else {
|
905 |
+
$user_nick_name = $user_nick_name[0];
|
906 |
+
}
|
907 |
$return_form .= '<script type="text/javascript">
|
908 |
jQuery(document).ready( function(){
|
909 |
var bk_af_submit_form = document.getElementById( "booking_form'.$my_boook_type.'" );
|
922 |
bk_af_reg = /^([A-Za-z0-9_\-\.])*(nickname){1}([A-Za-z0-9_\-\.])*$/;
|
923 |
if(bk_af_reg.test(bk_af_element.name) != false)
|
924 |
if (bk_af_element.value == "" )
|
925 |
+
bk_af_element.value = "' . str_replace( "'", '', $user_nick_name ) . '";
|
926 |
// Second Name
|
927 |
bk_af_reg = /^([A-Za-z0-9_\-\.])*(last|second){1}([_\-\.])?name([A-Za-z0-9_\-\.])*$/;
|
928 |
if(bk_af_reg.test(bk_af_element.name) != false)
|
core/timeline/v2/wpbc-class-timeline_v2.php
CHANGED
@@ -1052,14 +1052,58 @@ class WPBC_TimelineFlex {
|
|
1052 |
// Fil specific times based on start and end times
|
1053 |
foreach ( $time_array_new as $ddate => $ttime_round_array ) {
|
1054 |
foreach ( $ttime_round_array as $ttime_round => $bk_id_array ) { // [3600] => Array( [0] => Array ( [id] => 214 [resource] => 9 ), [1] => Array ( [id] => 154 [resource] => 7
|
1055 |
-
|
1056 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1057 |
//}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
if ( isset( $time_array[$ddate] ) ) {
|
1059 |
|
1060 |
if ( isset( $time_array[$ddate]['start'][$ttime_round] ) ) // array
|
1061 |
$fill_this_date = array_merge( $fill_this_date, array_values( $time_array[$ddate]['start'][$ttime_round] ) );
|
|
|
1062 |
//debuge($fill_this_date);
|
|
|
1063 |
$time_array_new[$ddate][$ttime_round] = array_merge( $time_array_new[$ddate][$ttime_round], $fill_this_date );
|
1064 |
//debuge('$ttime_round',$ttime_round);
|
1065 |
//debuge($ddate, $ttime_round, $time_array_new[$ddate][$ttime_round]);
|
@@ -1093,7 +1137,8 @@ class WPBC_TimelineFlex {
|
|
1093 |
// was booked for entire day, and last day booking, have the end time.
|
1094 |
// So in this case at day with end time we need to fill all "round times" with End time data
|
1095 |
*/
|
1096 |
-
|
|
|
1097 |
if ( empty( $fill_this_date_keys_to_delete ) ) {
|
1098 |
// Fill the date by data $toDelete
|
1099 |
foreach ( $time_array_new[ $ddate ] as $time_round_refill => $time_array_new_value_refill ) {
|
@@ -1127,7 +1172,7 @@ if(0)
|
|
1127 |
}
|
1128 |
}
|
1129 |
}
|
1130 |
-
//debuge( $time_array_new );
|
1131 |
return array( $dates_array, $time_array_new );
|
1132 |
}
|
1133 |
|
@@ -1664,7 +1709,13 @@ if(0)
|
|
1664 |
*/
|
1665 |
private function show_booking_title_for_pipeline_bar( $booking_id, $row_settings ){
|
1666 |
|
1667 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1668 |
|
1669 |
$bk_title .= " \n" . $this->get_booking_title_for_timeline( $booking_id, $row_settings['bookings'] );
|
1670 |
|
@@ -2605,7 +2656,7 @@ if(0)
|
|
2605 |
|
2606 |
// Trash
|
2607 |
$header_title .= '<a class=\'button button-secondary trash_bk_link'.(( $is_trash)?' hidden_items ':'').'\'
|
2608 |
-
title=\'' . esc_js( str_replace( "'", '', __( 'Trash', 'booking' ) ) ) . '\'
|
2609 |
href=\'javascript:;\' onclick=\'javascript:if ( wpbc_are_you_sure_popup() ) trash__restore_booking(1,' . $bk_id . ', ' . $this->current_user_id . ', "' . wpbc_get_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-trash\'></i></a>'; //FixIn: 8.4.7.14
|
2610 |
// Restore
|
2611 |
$header_title .= '<a class=\'button button-secondary restore_bk_link'.((!$is_trash)?' hidden_items ':'').'\'
|
@@ -2622,7 +2673,7 @@ if(0)
|
|
2622 |
title=\'' . esc_js( str_replace( "'", '', __( 'Approve', 'booking' ) ) ) . '\'
|
2623 |
href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',1, ' . $this->current_user_id . ', "' . wpbc_get_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-ok-circle\'></i></a>';
|
2624 |
$header_title .= '<a class=\'button button-secondary pending_bk_link ' . ($is_approved ? '' : 'hidden_items') . '\'
|
2625 |
-
title=\'' . esc_js( str_replace( "'", '', __( '
|
2626 |
href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',0, ' . $this->current_user_id . ', "' . wpbc_get_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-ban-circle\'></i></a>';
|
2627 |
|
2628 |
|
@@ -2644,7 +2695,7 @@ if(0)
|
|
2644 |
$visitorbookingpayurl = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingpayurl]', $bk_id );
|
2645 |
|
2646 |
$header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( 'Edit', 'booking' ) ).'\' href=\'' . $visitorbookingediturl . '\' ><i class=\'glyphicon glyphicon-edit\'></i></a>';
|
2647 |
-
$header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( '
|
2648 |
$header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( 'Pay', 'booking' ) ).'\' href=\'' . $visitorbookingpayurl . '\' ><i class=\'glyphicon glyphicon-credit-card\'></i></a>';
|
2649 |
}
|
2650 |
}
|
@@ -2715,7 +2766,7 @@ if(0)
|
|
2715 |
if ( ! $this->is_frontend ) {
|
2716 |
// Trash
|
2717 |
$content_text .= '<div class=\'flex-label flex-label-trash' . ( ( ! $bookings[$bk_id]->trash ) ? ' hidden_items ' : '' ) . '\'>';
|
2718 |
-
$content_text .= '<span class=\'\'>' . esc_js( __('Trash' ,'booking') ) . '</span>'; //FixIn: 6.1.1.10 //FixIn: 7.1.1.3
|
2719 |
$content_text .= '</div>';
|
2720 |
}
|
2721 |
|
1052 |
// Fil specific times based on start and end times
|
1053 |
foreach ( $time_array_new as $ddate => $ttime_round_array ) {
|
1054 |
foreach ( $ttime_round_array as $ttime_round => $bk_id_array ) { // [3600] => Array( [0] => Array ( [id] => 214 [resource] => 9 ), [1] => Array ( [id] => 154 [resource] => 7
|
1055 |
+
|
1056 |
+
//if ('2019-11-27' == $ddate ) {
|
1057 |
+
//debuge( ' $fill_this_date', $dates_array[ $ddate ], $fill_this_date );
|
1058 |
+
//}
|
1059 |
+
|
1060 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1061 |
+
/**
|
1062 |
+
* Search for situation, when at some previous date was started some booking at specific start time, like:
|
1063 |
+
* Booking #77: "October 30 18:00; December 4; December 25 20:00"
|
1064 |
+
* This booking exist in $fill_this_date - array ( [0] => array( [id] => 77, [resource] => 1 ) )
|
1065 |
+
*
|
1066 |
+
* but at current date "November 6" (where start other Booking #76: November 6 18:00; November 13; November 27 20:00"
|
1067 |
+
* this booking #77 does not exist at all !!!
|
1068 |
+
* so we nee to remove this booking(s) from array $fill_this_date
|
1069 |
+
*/
|
1070 |
+
//FixIn: 8.7.1.1
|
1071 |
+
if(1){
|
1072 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1073 |
+
// Search to remove
|
1074 |
+
$remove_arr_keys = array();
|
1075 |
+
foreach ( $fill_this_date as $is_remove_key => $is_remove_value ) {
|
1076 |
+
/**
|
1077 |
+
* Remove elements from $fill_this_date
|
1078 |
+
* if such elements does not exist in $dates_array[$ddate]
|
1079 |
+
*/
|
1080 |
+
if ( ! in_array( $is_remove_value, $dates_array[ $ddate ] ) ) {
|
1081 |
+
$remove_arr_keys[] = $is_remove_key;
|
1082 |
+
//if ($is_remove_value['id']==76) {
|
1083 |
+
//debuge('$ddate,$ttime_round_array',$ddate);
|
1084 |
//}
|
1085 |
+
}
|
1086 |
+
}
|
1087 |
+
// Removing
|
1088 |
+
foreach ( $remove_arr_keys as $is_remove_key ) {
|
1089 |
+
unset($fill_this_date[$is_remove_key]); // Remove item at index 1 which is 'for'
|
1090 |
+
}
|
1091 |
+
$fill_this_date = array_values($fill_this_date); // Re-index the array elements
|
1092 |
+
}
|
1093 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1094 |
+
|
1095 |
+
//if ('2019-11-27' == $ddate ) {
|
1096 |
+
//debuge( 'updated $fill_this_date', $fill_this_date );
|
1097 |
+
//}
|
1098 |
+
|
1099 |
+
|
1100 |
if ( isset( $time_array[$ddate] ) ) {
|
1101 |
|
1102 |
if ( isset( $time_array[$ddate]['start'][$ttime_round] ) ) // array
|
1103 |
$fill_this_date = array_merge( $fill_this_date, array_values( $time_array[$ddate]['start'][$ttime_round] ) );
|
1104 |
+
|
1105 |
//debuge($fill_this_date);
|
1106 |
+
|
1107 |
$time_array_new[$ddate][$ttime_round] = array_merge( $time_array_new[$ddate][$ttime_round], $fill_this_date );
|
1108 |
//debuge('$ttime_round',$ttime_round);
|
1109 |
//debuge($ddate, $ttime_round, $time_array_new[$ddate][$ttime_round]);
|
1137 |
// was booked for entire day, and last day booking, have the end time.
|
1138 |
// So in this case at day with end time we need to fill all "round times" with End time data
|
1139 |
*/
|
1140 |
+
//FixIn: 8.7.1.1
|
1141 |
+
if(1)
|
1142 |
if ( empty( $fill_this_date_keys_to_delete ) ) {
|
1143 |
// Fill the date by data $toDelete
|
1144 |
foreach ( $time_array_new[ $ddate ] as $time_round_refill => $time_array_new_value_refill ) {
|
1172 |
}
|
1173 |
}
|
1174 |
}
|
1175 |
+
//debuge( '$dates_array, $time_array_new',$dates_array, $time_array_new );
|
1176 |
return array( $dates_array, $time_array_new );
|
1177 |
}
|
1178 |
|
1709 |
*/
|
1710 |
private function show_booking_title_for_pipeline_bar( $booking_id, $row_settings ){
|
1711 |
|
1712 |
+
//FixIn: 8.7.1.4
|
1713 |
+
$bk_title = '';
|
1714 |
+
|
1715 |
+
$is_date = wpbc_get_date_in_correct_format( date_i18n( "Y-m-d", $row_settings['real_date'] ) );
|
1716 |
+
if ( ( is_array( $is_date ) ) && ( ! empty( $is_date ) ) ) {
|
1717 |
+
$bk_title = $is_date[0];
|
1718 |
+
}
|
1719 |
|
1720 |
$bk_title .= " \n" . $this->get_booking_title_for_timeline( $booking_id, $row_settings['bookings'] );
|
1721 |
|
2656 |
|
2657 |
// Trash
|
2658 |
$header_title .= '<a class=\'button button-secondary trash_bk_link'.(( $is_trash)?' hidden_items ':'').'\'
|
2659 |
+
title=\'' . esc_js( str_replace( "'", '', __( 'Trash / Reject', 'booking' ) ) ) . '\'
|
2660 |
href=\'javascript:;\' onclick=\'javascript:if ( wpbc_are_you_sure_popup() ) trash__restore_booking(1,' . $bk_id . ', ' . $this->current_user_id . ', "' . wpbc_get_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-trash\'></i></a>'; //FixIn: 8.4.7.14
|
2661 |
// Restore
|
2662 |
$header_title .= '<a class=\'button button-secondary restore_bk_link'.((!$is_trash)?' hidden_items ':'').'\'
|
2673 |
title=\'' . esc_js( str_replace( "'", '', __( 'Approve', 'booking' ) ) ) . '\'
|
2674 |
href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',1, ' . $this->current_user_id . ', "' . wpbc_get_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-ok-circle\'></i></a>';
|
2675 |
$header_title .= '<a class=\'button button-secondary pending_bk_link ' . ($is_approved ? '' : 'hidden_items') . '\'
|
2676 |
+
title=\'' . esc_js( str_replace( "'", '', __( 'Pending', 'booking' ) ) ) . '\'
|
2677 |
href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',0, ' . $this->current_user_id . ', "' . wpbc_get_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-ban-circle\'></i></a>';
|
2678 |
|
2679 |
|
2695 |
$visitorbookingpayurl = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingpayurl]', $bk_id );
|
2696 |
|
2697 |
$header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( 'Edit', 'booking' ) ).'\' href=\'' . $visitorbookingediturl . '\' ><i class=\'glyphicon glyphicon-edit\'></i></a>';
|
2698 |
+
$header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( 'Cancel', 'booking' ) ).'\' href=\'' . $visitorbookingcancelurl . '\' ><i class=\'glyphicon glyphicon-trash\'></i></a>';
|
2699 |
$header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( 'Pay', 'booking' ) ).'\' href=\'' . $visitorbookingpayurl . '\' ><i class=\'glyphicon glyphicon-credit-card\'></i></a>';
|
2700 |
}
|
2701 |
}
|
2766 |
if ( ! $this->is_frontend ) {
|
2767 |
// Trash
|
2768 |
$content_text .= '<div class=\'flex-label flex-label-trash' . ( ( ! $bookings[$bk_id]->trash ) ? ' hidden_items ' : '' ) . '\'>';
|
2769 |
+
$content_text .= '<span class=\'\'>' . esc_js( __('Trash / Reject' ,'booking') ) . '</span>'; //FixIn: 6.1.1.10 //FixIn: 7.1.1.3
|
2770 |
$content_text .= '</div>';
|
2771 |
}
|
2772 |
|
core/wpbc-constants.php
CHANGED
@@ -26,7 +26,7 @@ if ( ! defined( 'WP_BK_CHECK_OUT_MINUS_DAY_SEARCH' ) ) { define( 'WP_BK_C
|
|
26 |
////////////////////////////////////////////////////////////
|
27 |
// SYSTEM CONSTANTS //////////////
|
28 |
////////////////////////////////////////////////////////////
|
29 |
-
if ( ! defined( 'WP_BK_MINOR_UPDATE' ) ) { define( 'WP_BK_MINOR_UPDATE',
|
30 |
if ( ! defined( 'WP_BK_RESPONSE' ) ) { define( 'WP_BK_RESPONSE', false ); }
|
31 |
if ( ! defined( 'WP_BK_BETA_DATA_FILL' ) ) { define( 'WP_BK_BETA_DATA_FILL', 0 ); } // Set 0 for no filling or 2 for 241 bookings or more for more
|
32 |
|
26 |
////////////////////////////////////////////////////////////
|
27 |
// SYSTEM CONSTANTS //////////////
|
28 |
////////////////////////////////////////////////////////////
|
29 |
+
if ( ! defined( 'WP_BK_MINOR_UPDATE' ) ) { define( 'WP_BK_MINOR_UPDATE', true ); }
|
30 |
if ( ! defined( 'WP_BK_RESPONSE' ) ) { define( 'WP_BK_RESPONSE', false ); }
|
31 |
if ( ! defined( 'WP_BK_BETA_DATA_FILL' ) ) { define( 'WP_BK_BETA_DATA_FILL', 0 ); } // Set 0 for no filling or 2 for 241 bookings or more for more
|
32 |
|
core/wpbc-translation.php
CHANGED
@@ -231,8 +231,10 @@ function wpbc_get_booking_locale() {
|
|
231 |
|
232 |
// Exception for Polylang plugin. Its will force to load locale of Polylang plugin.
|
233 |
if( function_exists( 'pll_current_language' ) ) { //FixIn: 8.1.2.5
|
234 |
-
|
235 |
-
|
|
|
|
|
236 |
}
|
237 |
|
238 |
//debuge( get_locale(), get_user_locale() , WPBC_LOCALE_RELOAD ); //FixIn: 7.2.1.21
|
231 |
|
232 |
// Exception for Polylang plugin. Its will force to load locale of Polylang plugin.
|
233 |
if( function_exists( 'pll_current_language' ) ) { //FixIn: 8.1.2.5
|
234 |
+
if ( version_compare( POLYLANG_VERSION, '2.6.5', '<' ) ) { //FixIn: 8.7.1.3
|
235 |
+
$locale = pll_current_language( 'locale' );
|
236 |
+
return $locale;
|
237 |
+
}
|
238 |
}
|
239 |
|
240 |
//debuge( get_locale(), get_user_locale() , WPBC_LOCALE_RELOAD ); //FixIn: 7.2.1.21
|
languages/booking-ar_SA.mo
CHANGED
Binary file
|
languages/booking-be_BY.mo
CHANGED
Binary file
|
languages/booking-bg_BG.mo
CHANGED
Binary file
|
languages/booking-ca.mo
CHANGED
Binary file
|
languages/booking-cs_CZ.mo
CHANGED
Binary file
|
languages/booking-da_DK.mo
CHANGED
Binary file
|
languages/booking-de_DE.mo
CHANGED
Binary file
|
languages/booking-el.mo
CHANGED
Binary file
|
languages/booking-es_ES.mo
CHANGED
Binary file
|
languages/booking-fi.mo
CHANGED
Binary file
|
languages/booking-fr_FR.mo
CHANGED
Binary file
|
languages/booking-gl_ES.mo
CHANGED
Binary file
|
languages/booking-he_IL.mo
CHANGED
Binary file
|
languages/booking-hr.mo
CHANGED
Binary file
|
languages/booking-hu_HU.mo
CHANGED
Binary file
|
languages/booking-it_IT.mo
CHANGED
Binary file
|
languages/booking-nb_NO.mo
CHANGED
Binary file
|
languages/booking-nl_NL.mo
CHANGED
Binary file
|
languages/booking-pl_PL.mo
CHANGED
Binary file
|
languages/booking-pt_BR.mo
CHANGED
Binary file
|
languages/booking-pt_PT.mo
CHANGED
Binary file
|
languages/booking-ro_RO.mo
CHANGED
Binary file
|
languages/booking-ru_RU.mo
CHANGED
Binary file
|
languages/booking-sk_SK.mo
CHANGED
Binary file
|
languages/booking-sl_SI.mo
CHANGED
Binary file
|
languages/booking-sv_SE.mo
CHANGED
Binary file
|
languages/booking-th_TH.mo
CHANGED
Binary file
|
languages/booking-tr_TR.mo
CHANGED
Binary file
|
languages/booking-uk_UK.mo
CHANGED
Binary file
|
languages/booking-zh_CN.mo
CHANGED
Binary file
|
languages/booking-zh_TW.mo
CHANGED
Binary file
|
languages/booking.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: booking\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
-
"X-Generator: Poedit 2.
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
@@ -52,58 +52,58 @@ msgid "Select your start day of the week"
|
|
52 |
msgstr ""
|
53 |
|
54 |
#: core/admin/api-settings.php:109 core/admin/api-settings.php:192
|
55 |
-
#: core/
|
56 |
-
#:
|
57 |
-
#: inc/_bs/admin/api-settings-s.php:
|
58 |
-
#: inc/_ps/form/class-wpbc-form-help.php:
|
59 |
msgid "Sunday"
|
60 |
msgstr ""
|
61 |
|
62 |
#: core/admin/api-settings.php:110 core/admin/api-settings.php:195
|
63 |
-
#: core/
|
64 |
-
#:
|
65 |
-
#: inc/_bs/admin/api-settings-s.php:
|
66 |
-
#: inc/_ps/form/class-wpbc-form-help.php:
|
67 |
msgid "Monday"
|
68 |
msgstr ""
|
69 |
|
70 |
#: core/admin/api-settings.php:111 core/admin/api-settings.php:198
|
71 |
-
#: core/
|
72 |
-
#:
|
73 |
-
#: inc/_bs/admin/api-settings-s.php:
|
74 |
-
#: inc/_ps/form/class-wpbc-form-help.php:
|
75 |
msgid "Tuesday"
|
76 |
msgstr ""
|
77 |
|
78 |
#: core/admin/api-settings.php:112 core/admin/api-settings.php:201
|
79 |
-
#: core/
|
80 |
-
#:
|
81 |
-
#: inc/_bs/admin/api-settings-s.php:
|
82 |
-
#: inc/_ps/form/class-wpbc-form-help.php:
|
83 |
msgid "Wednesday"
|
84 |
msgstr ""
|
85 |
|
86 |
#: core/admin/api-settings.php:113 core/admin/api-settings.php:204
|
87 |
-
#: core/
|
88 |
-
#:
|
89 |
-
#: inc/_bs/admin/api-settings-s.php:
|
90 |
-
#: inc/_ps/form/class-wpbc-form-help.php:
|
91 |
msgid "Thursday"
|
92 |
msgstr ""
|
93 |
|
94 |
#: core/admin/api-settings.php:114 core/admin/api-settings.php:207
|
95 |
-
#: core/
|
96 |
-
#:
|
97 |
-
#: inc/_bs/admin/api-settings-s.php:
|
98 |
-
#: inc/_ps/form/class-wpbc-form-help.php:
|
99 |
msgid "Friday"
|
100 |
msgstr ""
|
101 |
|
102 |
#: core/admin/api-settings.php:115 core/admin/api-settings.php:210
|
103 |
-
#: core/
|
104 |
-
#:
|
105 |
-
#: inc/_bs/admin/api-settings-s.php:
|
106 |
-
#: inc/_ps/form/class-wpbc-form-help.php:
|
107 |
msgid "Saturday"
|
108 |
msgstr ""
|
109 |
|
@@ -131,13 +131,12 @@ msgid "Show partially booked days with same background as in legend item"
|
|
131 |
msgstr ""
|
132 |
|
133 |
#: core/admin/api-settings.php:164 core/admin/api-settings.php:314 core/admin/api-settings.php:474
|
134 |
-
#: core/admin/api-settings.php:509 core/admin/api-settings.php:
|
135 |
#: core/admin/page-form-free.php:189 core/admin/page-ics-export.php:467
|
136 |
-
#: core/
|
137 |
-
#:
|
138 |
-
#: inc/_bl/admin/api-settings-l.php:
|
139 |
-
#: inc/gateways/
|
140 |
-
#: js/wpbc-gutenberg.js:964
|
141 |
msgid "Note"
|
142 |
msgstr ""
|
143 |
|
@@ -162,7 +161,7 @@ msgstr ""
|
|
162 |
msgid "Select number of unavailable days in calendar start from today."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: core/admin/api-settings.php:275 core/lib/wpbc_all_translations.php:27 inc/_ps/lib_p.php:
|
166 |
msgid "Simple"
|
167 |
msgstr ""
|
168 |
|
@@ -170,11 +169,11 @@ msgstr ""
|
|
170 |
#: core/admin/wpbc-toolbar-tiny.php:698 core/admin/wpbc-toolbar-tiny.php:1199
|
171 |
#: core/admin/wpbc-toolbar-tiny.php:1615 core/lib/wpbc_all_translations.php:28
|
172 |
#: inc/_bm/m-toolbar.php:29 inc/_bm/m-toolbar.php:113 inc/_bm/m-toolbar.php:392
|
173 |
-
#: inc/_ps/lib_p.php:
|
174 |
msgid "Booking Form"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:29 inc/_ps/lib_p.php:
|
178 |
msgid ""
|
179 |
"Check the box, if you want to use simple booking form customization from Free plugin version at "
|
180 |
"Settings - Form page."
|
@@ -184,7 +183,7 @@ msgstr ""
|
|
184 |
msgid "Syntax highlighter"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: core/admin/api-settings.php:285
|
188 |
msgid "Check the box, if you want to use syntax highlighter during customization booking form."
|
189 |
msgstr ""
|
190 |
|
@@ -230,7 +229,7 @@ msgid "Available item"
|
|
230 |
msgstr ""
|
231 |
|
232 |
#: core/admin/api-settings.php:351 core/lib/wpbc_all_translations.php:42
|
233 |
-
#: core/wpbc-activation.php:
|
234 |
msgid "Available"
|
235 |
msgstr ""
|
236 |
|
@@ -244,10 +243,10 @@ msgid "Pending item"
|
|
244 |
msgstr ""
|
245 |
|
246 |
#: core/admin/api-settings.php:388 core/admin/page-email-deny.php:558
|
247 |
-
#: core/admin/wpbc-class-listing.php:
|
248 |
#: core/admin/wpbc-toolbars.php:549 core/admin/wpbc-toolbars.php:964
|
249 |
-
#: core/lib/wpbc_all_translations.php:45 core/timeline/v2/wpbc-class-timeline_v2.php:
|
250 |
-
#: core/wpbc-activation.php:
|
251 |
#: inc/_ps/wpbc-print.php:119
|
252 |
msgid "Pending"
|
253 |
msgstr ""
|
@@ -262,7 +261,7 @@ msgid "Approved item"
|
|
262 |
msgstr ""
|
263 |
|
264 |
#: core/admin/api-settings.php:425 core/lib/wpbc_all_translations.php:48
|
265 |
-
#: core/wpbc-activation.php:
|
266 |
msgid "Booked"
|
267 |
msgstr ""
|
268 |
|
@@ -276,7 +275,7 @@ msgid "Partially booked item"
|
|
276 |
msgstr ""
|
277 |
|
278 |
#: core/admin/api-settings.php:463 core/lib/wpbc_all_translations.php:51
|
279 |
-
#: core/wpbc-activation.php:
|
280 |
msgid "Partially booked"
|
281 |
msgstr ""
|
282 |
|
@@ -310,7 +309,7 @@ msgid "Action after booking is done"
|
|
310 |
msgstr ""
|
311 |
|
312 |
#: core/admin/api-settings.php:523 core/lib/wpbc_all_translations.php:59
|
313 |
-
#: core/wpbc-activation.php:
|
314 |
#, php-format
|
315 |
msgid ""
|
316 |
"Thank you for your online booking. %s We will send confirmation of your booking as soon as "
|
@@ -362,204 +361,188 @@ msgstr ""
|
|
362 |
msgid "Select your default view mode of bookings at the booking listing page"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: core/admin/api-settings.php:
|
366 |
-
msgid "Timeline type"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: core/admin/api-settings.php:615
|
370 |
-
msgid "Select type of timeline to load"
|
371 |
-
msgstr ""
|
372 |
-
|
373 |
-
#: core/admin/api-settings.php:617
|
374 |
-
msgid "Flex Timeline"
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: core/admin/api-settings.php:618
|
378 |
-
msgid "Old Timeline"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: core/admin/api-settings.php:626 core/admin/wpbc-toolbar-tiny.php:393
|
382 |
#: core/admin/wpbc-toolbars.php:1184 core/admin/wpbc-toolbars.php:1244
|
383 |
-
#: core/lib/wpbc_all_translations.php:
|
384 |
msgid "Day"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: core/admin/api-settings.php:
|
388 |
#: core/admin/wpbc-toolbars.php:1201 core/admin/wpbc-toolbars.php:1258
|
389 |
-
#: core/lib/wpbc_all_translations.php:
|
390 |
msgid "Week"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: core/admin/api-settings.php:
|
394 |
#: core/admin/wpbc-toolbar-tiny.php:396 core/admin/wpbc-toolbars.php:1218
|
395 |
-
#: core/admin/wpbc-toolbars.php:1272 core/lib/wpbc_all_translations.php:
|
396 |
#: inc/_bl/admin/page-coupons.php:525
|
397 |
msgid "Month"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: core/admin/api-settings.php:
|
401 |
-
#: core/admin/wpbc-toolbars.php:1286 core/lib/wpbc_all_translations.php:
|
402 |
msgid "2 Months"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: core/admin/api-settings.php:
|
406 |
-
#: core/admin/wpbc-toolbar-tiny.php:400 core/lib/wpbc_all_translations.php:
|
407 |
msgid "3 Months"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: core/admin/api-settings.php:
|
411 |
#: core/admin/wpbc-toolbar-tiny.php:401 core/admin/wpbc-toolbars.php:579
|
412 |
-
#: core/admin/wpbc-toolbars.php:813 core/lib/wpbc_all_translations.php:
|
413 |
#: inc/_bl/admin/page-coupons.php:524
|
414 |
msgid "Year"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: core/admin/api-settings.php:
|
418 |
msgid "Default calendar view mode"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: core/admin/api-settings.php:
|
422 |
msgid "Select your default calendar view mode at booking calendar overview page"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: core/admin/api-settings.php:
|
426 |
msgid "Filter tab"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: core/admin/api-settings.php:
|
430 |
msgid "Actions tab"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: core/admin/api-settings.php:
|
434 |
msgid "Default toolbar tab"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: core/admin/api-settings.php:
|
438 |
msgid "Select your default opened tab in toolbar at booking listing page"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: core/admin/api-settings.php:
|
442 |
msgid "Bookings number per page"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: core/admin/api-settings.php:
|
446 |
msgid "Select number of bookings per page in booking listing"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: core/admin/api-settings.php:
|
450 |
#: core/admin/wpbc-class-listing.php:122 core/admin/wpbc-toolbars.php:735
|
451 |
-
#: core/admin/wpbc-toolbars.php:738 core/lib/wpbc_all_translations.php:
|
452 |
-
#: core/sync/wpbc-gcal-class.php:
|
453 |
#: inc/_bl/admin/page-coupons.php:495 inc/_bm/admin/page-availability.php:491
|
454 |
#: inc/_bm/admin/page-availability.php:972 inc/_bm/admin/page-cost-rate.php:148
|
455 |
-
#: inc/_bm/admin/page-cost.php:
|
456 |
#: inc/_bs/lib_s.php:184 inc/_mu/admin/page-users.php:428
|
457 |
#: inc/_ps/admin/br-table-export-feeds.php:168 inc/_ps/admin/br-table-import-gcal-p.php:140
|
458 |
#: inc/_ps/admin/page-resources.php:455 inc/_ps/form/class-wpbc-field-help-text.php:211
|
459 |
#: inc/_ps/lib_p.php:124 inc/_ps/lib_p.php:128 inc/_ps/wpbc-print.php:82
|
460 |
-
#: inc/gateways/page-gateways.php:
|
461 |
msgid "ID"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: core/admin/api-settings.php:
|
465 |
-
#: core/admin/api-settings.php:
|
466 |
#: inc/_bl/admin/page-search.php:180 inc/_bl/admin/page-search.php:182
|
467 |
#: inc/_bl/admin/page-search.php:184 inc/_bl/admin/page-search.php:186
|
468 |
#: inc/_bl/admin/page-search.php:188
|
469 |
msgid "ASC"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: core/admin/api-settings.php:
|
473 |
-
#: core/admin/api-settings.php:
|
474 |
#: inc/_bl/admin/page-search.php:181 inc/_bl/admin/page-search.php:183
|
475 |
#: inc/_bl/admin/page-search.php:185 inc/_bl/admin/page-search.php:187
|
476 |
#: inc/_bl/admin/page-search.php:189
|
477 |
msgid "DESC"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: core/admin/api-settings.php:
|
481 |
-
#: core/admin/wpbc-class-timeline.php:69 core/admin/wpbc-toolbars.php:588
|
482 |
#: core/admin/wpbc-toolbars.php:650 core/admin/wpbc-toolbars.php:736
|
483 |
#: core/admin/wpbc-toolbars.php:739 core/admin/wpbc-toolbars.php:855
|
484 |
-
#: core/lib/wpbc_all_translations.php:
|
485 |
-
#: core/sync/wpbc-gcal-class.php:
|
486 |
#: inc/_bs/lib_s.php:180 inc/_bs/lib_s.php:185 inc/_ps/lib_p.php:125 inc/_ps/lib_p.php:129
|
487 |
#: inc/_ps/wpbc-form-templates.php:89 inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
|
488 |
msgid "Dates"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: core/admin/api-settings.php:
|
492 |
-
#: core/lib/wpbc_all_translations.php:
|
493 |
#: inc/_bm/admin/page-availability.php:876 inc/_bm/admin/page-cost-rate.php:106
|
494 |
#: inc/_bm/admin/page-cost-valuation.php:134 inc/_bs/lib_s.php:181 inc/_bs/lib_s.php:186
|
495 |
#: inc/_ps/lib_p.php:126 inc/_ps/lib_p.php:130
|
496 |
msgid "Resource"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: core/admin/api-settings.php:
|
500 |
-
#: core/admin/wpbc-toolbar-tiny.php:1803 core/lib/wpbc_all_translations.php:
|
501 |
#: inc/_bs/admin/api-settings-s.php:924 inc/_bs/lib_s.php:139 inc/_bs/lib_s.php:182
|
502 |
#: inc/_bs/lib_s.php:187 inc/_ps/wpbc-print.php:86
|
503 |
msgid "Cost"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: core/admin/api-settings.php:
|
507 |
msgid "Bookings default order"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: core/admin/api-settings.php:
|
511 |
msgid "Select your default order of bookings in the booking listing"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: core/admin/api-settings.php:
|
|
|
515 |
msgid "Date Format"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: core/admin/api-settings.php:
|
519 |
msgid "F j, Y"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: core/admin/api-settings.php:
|
523 |
-
#: core/lib/wpbc_all_translations.php:
|
524 |
#: inc/_bs/admin/api-settings-s.php:426 inc/_bs/lib_s.php:54
|
525 |
msgid "Custom"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: core/admin/api-settings.php:
|
529 |
#, php-format
|
530 |
msgid ""
|
531 |
"Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: core/admin/api-settings.php:
|
535 |
msgid "Short days view"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: core/admin/api-settings.php:
|
539 |
msgid "Wide days view"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: core/admin/api-settings.php:
|
543 |
msgid "Dates view"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: core/admin/api-settings.php:
|
547 |
msgid "Select the default view for dates on the booking tables"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: core/admin/api-settings.php:
|
551 |
msgid "Show / hide hints"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: core/admin/api-settings.php:
|
555 |
msgid "Check this box if you want to show help hints on the admin panel."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: core/admin/api-settings.php:
|
559 |
msgid "Allow unlimited bookings per same day(s)"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: core/admin/api-settings.php:
|
563 |
#, php-format
|
564 |
msgid ""
|
565 |
"Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
|
@@ -567,149 +550,148 @@ msgid ""
|
|
567 |
"date(s)%s of other visitors."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: core/admin/api-settings.php:
|
571 |
#: inc/_bl/admin/api-settings-l.php:101
|
572 |
msgid "Use pending days as available"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: core/admin/api-settings.php:
|
576 |
#: inc/_bl/admin/api-settings-l.php:102
|
577 |
msgid "Check this box if you want to show the pending days as available in calendars"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: core/admin/api-settings.php:
|
581 |
msgid "Checking to prevent double booking, during submitting booking"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: core/admin/api-settings.php:
|
585 |
#, php-format
|
586 |
msgid ""
|
587 |
"Check this box, if you want to %sre-check if the selected dates available during submitting "
|
588 |
"booking%s."
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: core/admin/api-settings.php:
|
592 |
msgid ""
|
593 |
"This feature useful to prevent double booking of the same date(s) or time(s), if several "
|
594 |
"visitors try to book the same date(s) in same calendar during the same time."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: core/admin/api-settings.php:
|
598 |
msgid "This feature does not work for booking resources with capacity higher than one."
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: core/admin/api-settings.php:
|
602 |
msgid "Show advanced settings of JavaScript loading"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: core/admin/api-settings.php:
|
606 |
msgid "Hide advanced settings of JavaScript loading"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: core/admin/api-settings.php:
|
610 |
msgid "Disable Bootstrap loading on Front-End"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: core/admin/api-settings.php:
|
614 |
-
#: core/lib/wpbc_all_translations.php:
|
615 |
msgid ""
|
616 |
" If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
|
617 |
"of this script by this plugin."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: core/admin/api-settings.php:
|
621 |
msgid "Disable Bootstrap loading on Back-End"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: core/admin/api-settings.php:
|
625 |
msgid "Load JS and CSS files only on specific pages"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: core/admin/api-settings.php:
|
629 |
msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: core/admin/api-settings.php:
|
633 |
msgid "Relative URLs of pages, where to load plugin CSS and JS files"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: core/admin/api-settings.php:
|
637 |
#, php-format
|
638 |
msgid ""
|
639 |
"Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
|
640 |
"availability calendars). Please enter one URL per line. Example: %s"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: core/admin/api-settings.php:
|
644 |
msgid "Show system debugging log for beta features"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: core/admin/api-settings.php:
|
648 |
msgid "Activate this option only for testing beta features"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: core/admin/api-settings.php:
|
652 |
msgid "Show settings of powered by notice"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: core/admin/api-settings.php:
|
656 |
msgid "Hide settings of powered by notice"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: core/admin/api-settings.php:
|
660 |
msgid "Powered by notice"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: core/admin/api-settings.php:
|
664 |
msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: core/admin/api-settings.php:
|
668 |
msgid "Help and info notices"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: core/admin/api-settings.php:
|
672 |
msgid " Turn On/Off version notice and help info links at booking admin panel."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: core/admin/api-settings.php:
|
676 |
msgid "Plugin menu position"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: core/admin/api-settings.php:
|
680 |
msgid "Top"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: core/admin/api-settings.php:
|
684 |
msgid "Middle"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: core/admin/api-settings.php:
|
688 |
msgid "Bottom"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: core/admin/api-settings.php:
|
692 |
msgid "User permissions for plugin menu pages"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: core/admin/api-settings.php:
|
696 |
-
#: core/admin/wpbc-toolbars.php:
|
697 |
-
#: core/
|
698 |
-
#: core/wpbc.php:136
|
699 |
msgid "Bookings"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: core/admin/api-settings.php:
|
703 |
#: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1847
|
704 |
-
#: core/lib/wpbc_all_translations.php:
|
705 |
#: core/wpbc.php:166 core/wpbc.php:167
|
706 |
msgid "Add booking"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: core/admin/api-settings.php:
|
710 |
-
#: core/
|
711 |
-
#: core/
|
712 |
-
#:
|
713 |
#: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
|
714 |
#: inc/_bm/admin/page-cost-valuation.php:133 inc/_mu/admin/page-users.php:446
|
715 |
#: inc/_ps/admin/br-table-export-feeds.php:172 inc/_ps/admin/br-table-import-gcal-p.php:144
|
@@ -717,118 +699,118 @@ msgstr ""
|
|
717 |
msgid "Resources"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: core/admin/api-settings.php:
|
721 |
#: core/wpbc-functions.php:1967 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
|
722 |
#: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
|
723 |
msgid "Settings"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: core/admin/api-settings.php:
|
727 |
msgid "Select user access level for the menu pages of plugin"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: core/admin/api-settings.php:
|
731 |
msgid "Premium"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: core/admin/api-settings.php:
|
735 |
msgid "Show / hide menu"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: core/admin/api-settings.php:
|
739 |
#: core/admin/wpbc-toolbar-tiny.php:1810 core/admin/wpbc-toolbars.php:790
|
740 |
-
#: core/lib/wpbc_all_translations.php:
|
741 |
#: js/wpbc-gutenberg.js:1264
|
742 |
msgid "Show"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: core/admin/api-settings.php:
|
746 |
-
#: core/lib/wpbc_all_translations.php:
|
747 |
#: core/wpbc-functions.php:2371
|
748 |
msgid "Hide"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: core/admin/api-settings.php:
|
752 |
msgid "Delete booking data, when plugin deactivated"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: core/admin/api-settings.php:
|
756 |
msgid "Check this box to delete all booking data when you uninstal this plugin."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: core/admin/api-settings.php:
|
760 |
-
#: core/lib/wpbc_all_translations.php:
|
761 |
-
#: core/sync/wpbc-gcal-class.php:
|
762 |
#: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
|
763 |
#: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
|
764 |
#: inc/_ps/admin/br-table-export-feeds.php:179 inc/_ps/admin/br-table-import-gcal-p.php:151
|
765 |
msgid "Info"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: core/admin/api-settings.php:
|
769 |
-
#: core/lib/wpbc_all_translations.php:
|
770 |
msgid "Restore all dismissed windows"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: core/admin/api-settings.php:
|
774 |
-
#: core/admin/api-settings.php:
|
775 |
-
#: core/admin/api-settings.php:
|
776 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:559
|
777 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
778 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
|
779 |
-
#: inc/gateways/
|
780 |
msgid "Warning"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: core/admin/api-settings.php:
|
784 |
msgid ""
|
785 |
"You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
|
786 |
"the same date. Do you really want to do this?"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: core/admin/api-settings.php:
|
790 |
msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: core/admin/api-settings.php:
|
794 |
-
#: core/lib/wpbc_all_translations.php:
|
795 |
msgid ""
|
796 |
"You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
|
797 |
"really want to do this?"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: core/admin/api-settings.php:
|
801 |
msgid ""
|
802 |
"If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
|
803 |
"you really want to do this?"
|
804 |
msgstr ""
|
805 |
|
806 |
#: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
|
807 |
-
#: core/admin/wpbc-toolbars.php:467 core/lib/wpbc_all_translations.php:
|
808 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:
|
809 |
msgid "Booking Listing"
|
810 |
msgstr ""
|
811 |
|
812 |
#: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
|
813 |
#: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
|
814 |
#: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
|
815 |
-
#: core/lib/wpbc_all_translations.php:
|
816 |
#: inc/_bm/admin/page-cost-early-late-booking.php:138
|
817 |
#: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
|
818 |
#: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:292
|
819 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
|
820 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:377 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
821 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:343
|
822 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:681 inc/gateways/paypal/wpbc-gw-paypal.php:704
|
823 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:727 inc/gateways/sage/wpbc-gw-sage.php:384
|
824 |
-
#: inc/gateways/
|
825 |
msgid "Enable / Disable"
|
826 |
msgstr ""
|
827 |
|
828 |
#: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
|
829 |
#: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
|
830 |
#: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
|
831 |
-
#: core/lib/wpbc_all_translations.php:
|
832 |
#: inc/_ps/admin/page-email-edit.php:179
|
833 |
msgid "Enable this email notification"
|
834 |
msgstr ""
|
@@ -837,7 +819,7 @@ msgstr ""
|
|
837 |
#: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
|
838 |
#: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
|
839 |
#: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
|
840 |
-
#: core/lib/wpbc_all_translations.php:
|
841 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
|
842 |
#: inc/_ps/admin/page-email-edit.php:205
|
843 |
msgid "Copy(ies)"
|
@@ -845,14 +827,14 @@ msgstr ""
|
|
845 |
|
846 |
#: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
|
847 |
#: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
|
848 |
-
#: core/lib/wpbc_all_translations.php:
|
849 |
#: inc/_ps/admin/page-email-edit.php:191
|
850 |
msgid "Enable / disable sending email(s) to additional addresses"
|
851 |
msgstr ""
|
852 |
|
853 |
#: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
|
854 |
#: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
|
855 |
-
#: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:
|
856 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
857 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
|
858 |
msgid "To"
|
@@ -863,7 +845,7 @@ msgstr ""
|
|
863 |
#: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
|
864 |
#: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
|
865 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
|
866 |
-
#: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:
|
867 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
868 |
#: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
|
869 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
|
@@ -880,27 +862,25 @@ msgstr ""
|
|
880 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
|
881 |
#: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
|
882 |
#: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1147
|
883 |
-
#: core/admin/page-form-free.php:2071 core/lib/wpbc_all_translations.php:
|
884 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
885 |
#: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
|
886 |
#: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
|
887 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:304
|
888 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:338 inc/gateways/ideal/wpbc-gw-ideal.php:389
|
889 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:404 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
890 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
891 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:392 inc/gateways/sage/wpbc-gw-sage.php:396
|
892 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:411 inc/gateways/
|
893 |
-
#: inc/gateways/
|
894 |
-
#: inc/gateways/
|
895 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
896 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:537
|
897 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:552
|
898 |
msgid "Required"
|
899 |
msgstr ""
|
900 |
|
901 |
#: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
|
902 |
#: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
|
903 |
-
#: core/lib/wpbc_all_translations.php:
|
904 |
#: inc/_ps/admin/page-email-edit.php:216
|
905 |
msgid "You can put multiple emails separated by"
|
906 |
msgstr ""
|
@@ -912,8 +892,8 @@ msgstr ""
|
|
912 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
913 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
|
914 |
#: core/admin/wpbc-toolbar-tiny.php:430 core/admin/wpbc-toolbar-tiny.php:1801
|
915 |
-
#: core/lib/wpbc_all_translations.php:
|
916 |
-
#: core/sync/wpbc-gcal-class.php:
|
917 |
#: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
|
918 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
919 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
@@ -927,7 +907,7 @@ msgstr ""
|
|
927 |
#: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
|
928 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
929 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
|
930 |
-
#: core/admin/wpbc-toolbar-tiny.php:430 core/lib/wpbc_all_translations.php:
|
931 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
932 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
933 |
#: inc/_ps/form/class-wpbc-field-help-button.php:73
|
@@ -939,7 +919,7 @@ msgstr ""
|
|
939 |
#: inc/_ps/form/class-wpbc-field-help-text.php:228 inc/_ps/form/class-wpbc-field-help-text.php:247
|
940 |
#: inc/_ps/form/class-wpbc-field-help-text.php:264 inc/_ps/form/class-wpbc-field-help-text.php:281
|
941 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
942 |
-
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111 inc/gateways/page-gateways.php:
|
943 |
msgid "optional"
|
944 |
msgstr ""
|
945 |
|
@@ -947,26 +927,26 @@ msgstr ""
|
|
947 |
#: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
|
948 |
#: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
|
949 |
#: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:594
|
950 |
-
#: core/lib/wpbc_all_translations.php:
|
951 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
952 |
#: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
|
953 |
#: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
|
954 |
msgid "From"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:
|
958 |
msgid "Email Address will be used in the FROM field of response to Visitor."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:
|
962 |
-
#: core/wpbc-activation.php:
|
963 |
msgid "Your booking has been approved"
|
964 |
msgstr ""
|
965 |
|
966 |
#: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
|
967 |
#: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
|
968 |
#: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
|
969 |
-
#: core/lib/wpbc_all_translations.php:
|
970 |
#: inc/_ps/admin/page-email-edit.php:312
|
971 |
msgid "Subject"
|
972 |
msgstr ""
|
@@ -974,22 +954,22 @@ msgstr ""
|
|
974 |
#: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
|
975 |
#: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
|
976 |
#: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
|
977 |
-
#: core/lib/wpbc_all_translations.php:
|
978 |
#: inc/_ps/admin/page-email-edit.php:313
|
979 |
#, php-format
|
980 |
msgid "Type your email %ssubject%s for the booking confimation message."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:
|
984 |
-
#: core/wpbc-activation.php:
|
985 |
#, php-format
|
986 |
msgid ""
|
987 |
"Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
|
988 |
"you, %s"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:
|
992 |
-
#: core/wpbc-activation.php:
|
993 |
#, php-format
|
994 |
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
995 |
msgstr ""
|
@@ -997,7 +977,7 @@ msgstr ""
|
|
997 |
#: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
|
998 |
#: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
|
999 |
#: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
|
1000 |
-
#: core/lib/wpbc_all_translations.php:
|
1001 |
#: inc/_ps/admin/page-email-edit.php:330
|
1002 |
msgid "Content"
|
1003 |
msgstr ""
|
@@ -1005,7 +985,7 @@ msgstr ""
|
|
1005 |
#: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
|
1006 |
#: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
|
1007 |
#: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
|
1008 |
-
#: core/lib/wpbc_all_translations.php:
|
1009 |
#: inc/_ps/admin/page-email-edit.php:331
|
1010 |
msgid "Type your email message content. "
|
1011 |
msgstr ""
|
@@ -1013,7 +993,7 @@ msgstr ""
|
|
1013 |
#: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
|
1014 |
#: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
|
1015 |
#: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
|
1016 |
-
#: core/lib/wpbc_all_translations.php:
|
1017 |
#: inc/_ps/admin/page-email-edit.php:352
|
1018 |
msgid "Email Heading"
|
1019 |
msgstr ""
|
@@ -1021,7 +1001,7 @@ msgstr ""
|
|
1021 |
#: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
|
1022 |
#: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
|
1023 |
#: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
|
1024 |
-
#: core/lib/wpbc_all_translations.php:
|
1025 |
#: inc/_ps/admin/page-email-edit.php:353
|
1026 |
msgid "Enter main heading contained within the email notification."
|
1027 |
msgstr ""
|
@@ -1029,7 +1009,7 @@ msgstr ""
|
|
1029 |
#: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
|
1030 |
#: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
|
1031 |
#: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
|
1032 |
-
#: core/lib/wpbc_all_translations.php:
|
1033 |
#: inc/_ps/admin/page-email-edit.php:362
|
1034 |
msgid "Email Footer Text"
|
1035 |
msgstr ""
|
@@ -1037,7 +1017,7 @@ msgstr ""
|
|
1037 |
#: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
|
1038 |
#: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
|
1039 |
#: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
|
1040 |
-
#: core/lib/wpbc_all_translations.php:
|
1041 |
#: inc/_ps/admin/page-email-edit.php:363
|
1042 |
msgid "Enter text contained within footer of the email notification"
|
1043 |
msgstr ""
|
@@ -1045,7 +1025,7 @@ msgstr ""
|
|
1045 |
#: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
|
1046 |
#: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
|
1047 |
#: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
|
1048 |
-
#: core/lib/wpbc_all_translations.php:
|
1049 |
#: inc/_ps/admin/page-email-edit.php:373
|
1050 |
msgid "Email template"
|
1051 |
msgstr ""
|
@@ -1053,7 +1033,7 @@ msgstr ""
|
|
1053 |
#: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
|
1054 |
#: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
|
1055 |
#: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
|
1056 |
-
#: core/lib/wpbc_all_translations.php:
|
1057 |
#: inc/_ps/admin/page-email-edit.php:374
|
1058 |
msgid "Choose email template."
|
1059 |
msgstr ""
|
@@ -1061,7 +1041,7 @@ msgstr ""
|
|
1061 |
#: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
|
1062 |
#: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
|
1063 |
#: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
|
1064 |
-
#: core/lib/wpbc_all_translations.php:
|
1065 |
#: inc/_ps/admin/page-email-edit.php:378
|
1066 |
msgid "Plain (without styles)"
|
1067 |
msgstr ""
|
@@ -1069,7 +1049,7 @@ msgstr ""
|
|
1069 |
#: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
|
1070 |
#: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
|
1071 |
#: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
|
1072 |
-
#: core/lib/wpbc_all_translations.php:
|
1073 |
#: inc/_ps/admin/page-email-edit.php:379
|
1074 |
msgid "Standard 1 column"
|
1075 |
msgstr ""
|
@@ -1077,7 +1057,7 @@ msgstr ""
|
|
1077 |
#: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
|
1078 |
#: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
|
1079 |
#: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
|
1080 |
-
#: core/lib/wpbc_all_translations.php:
|
1081 |
#: inc/_ps/admin/page-email-edit.php:386
|
1082 |
#, php-format
|
1083 |
msgid "You can override this email template in this folder %s"
|
@@ -1086,7 +1066,7 @@ msgstr ""
|
|
1086 |
#: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
|
1087 |
#: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
|
1088 |
#: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
|
1089 |
-
#: core/lib/wpbc_all_translations.php:
|
1090 |
#: inc/_ps/admin/page-email-edit.php:396
|
1091 |
msgid "Base Color"
|
1092 |
msgstr ""
|
@@ -1094,7 +1074,7 @@ msgstr ""
|
|
1094 |
#: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
|
1095 |
#: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
|
1096 |
#: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
|
1097 |
-
#: core/lib/wpbc_all_translations.php:
|
1098 |
#: inc/_ps/admin/page-email-edit.php:397
|
1099 |
msgid "The base color for email templates."
|
1100 |
msgstr ""
|
@@ -1111,7 +1091,7 @@ msgstr ""
|
|
1111 |
#: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
|
1112 |
#: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
|
1113 |
#: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
|
1114 |
-
#: core/lib/wpbc_all_translations.php:
|
1115 |
#: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
|
1116 |
#: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
|
1117 |
#: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
|
@@ -1122,7 +1102,7 @@ msgstr ""
|
|
1122 |
#: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
|
1123 |
#: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
|
1124 |
#: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
|
1125 |
-
#: core/lib/wpbc_all_translations.php:
|
1126 |
#: inc/_ps/admin/page-email-edit.php:405
|
1127 |
msgid "Background Color"
|
1128 |
msgstr ""
|
@@ -1130,7 +1110,7 @@ msgstr ""
|
|
1130 |
#: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
|
1131 |
#: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
|
1132 |
#: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
|
1133 |
-
#: core/lib/wpbc_all_translations.php:
|
1134 |
#: inc/_ps/admin/page-email-edit.php:406
|
1135 |
msgid "The background color for email templates."
|
1136 |
msgstr ""
|
@@ -1138,7 +1118,7 @@ msgstr ""
|
|
1138 |
#: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
|
1139 |
#: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
|
1140 |
#: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
|
1141 |
-
#: core/lib/wpbc_all_translations.php:
|
1142 |
#: inc/_ps/admin/page-email-edit.php:414
|
1143 |
msgid "Email Body Background Color"
|
1144 |
msgstr ""
|
@@ -1146,7 +1126,7 @@ msgstr ""
|
|
1146 |
#: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
|
1147 |
#: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
|
1148 |
#: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
|
1149 |
-
#: core/lib/wpbc_all_translations.php:
|
1150 |
#: inc/_ps/admin/page-email-edit.php:415
|
1151 |
msgid "The main body background color for email templates."
|
1152 |
msgstr ""
|
@@ -1154,7 +1134,7 @@ msgstr ""
|
|
1154 |
#: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
|
1155 |
#: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
|
1156 |
#: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
|
1157 |
-
#: core/lib/wpbc_all_translations.php:
|
1158 |
#: inc/_ps/admin/page-email-edit.php:423
|
1159 |
msgid "Email Body Text Colour"
|
1160 |
msgstr ""
|
@@ -1162,7 +1142,7 @@ msgstr ""
|
|
1162 |
#: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
|
1163 |
#: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
|
1164 |
#: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
|
1165 |
-
#: core/lib/wpbc_all_translations.php:
|
1166 |
#: inc/_ps/admin/page-email-edit.php:424
|
1167 |
msgid "The main body text color for email templates."
|
1168 |
msgstr ""
|
@@ -1170,7 +1150,7 @@ msgstr ""
|
|
1170 |
#: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
|
1171 |
#: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
|
1172 |
#: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
|
1173 |
-
#: core/lib/wpbc_all_translations.php:
|
1174 |
#: inc/_ps/admin/page-email-edit.php:439
|
1175 |
msgid "Email format"
|
1176 |
msgstr ""
|
@@ -1178,7 +1158,7 @@ msgstr ""
|
|
1178 |
#: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
|
1179 |
#: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
|
1180 |
#: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
|
1181 |
-
#: core/lib/wpbc_all_translations.php:
|
1182 |
#: inc/_ps/admin/page-email-edit.php:440
|
1183 |
msgid "Choose which format of email to send."
|
1184 |
msgstr ""
|
@@ -1186,7 +1166,7 @@ msgstr ""
|
|
1186 |
#: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
|
1187 |
#: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
|
1188 |
#: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
|
1189 |
-
#: core/lib/wpbc_all_translations.php:
|
1190 |
#: inc/_ps/admin/page-email-edit.php:444
|
1191 |
msgid "Plain text"
|
1192 |
msgstr ""
|
@@ -1194,16 +1174,16 @@ msgstr ""
|
|
1194 |
#: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
|
1195 |
#: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
|
1196 |
#: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
|
1197 |
-
#: core/lib/wpbc_all_translations.php:
|
1198 |
#: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:667
|
1199 |
-
#: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:
|
1200 |
msgid "HTML"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
#: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
|
1204 |
#: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
|
1205 |
#: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
|
1206 |
-
#: core/lib/wpbc_all_translations.php:
|
1207 |
#: inc/_ps/admin/page-email-edit.php:452
|
1208 |
msgid "Multipart"
|
1209 |
msgstr ""
|
@@ -1211,7 +1191,7 @@ msgstr ""
|
|
1211 |
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1212 |
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1213 |
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1214 |
-
#: core/lib/wpbc_all_translations.php:
|
1215 |
#: inc/_ps/admin/page-email-edit.php:479
|
1216 |
#, php-format
|
1217 |
msgid ""
|
@@ -1222,14 +1202,14 @@ msgstr ""
|
|
1222 |
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1223 |
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1224 |
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1225 |
-
#: core/lib/wpbc_all_translations.php:
|
1226 |
#: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
|
1227 |
msgid "here"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:
|
1231 |
-
#: core/admin/wpbc-toolbars.php:550 core/lib/wpbc_all_translations.php:
|
1232 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:
|
1233 |
#: inc/_ps/wpbc-print.php:118
|
1234 |
msgid "Approved"
|
1235 |
msgstr ""
|
@@ -1238,23 +1218,23 @@ msgstr ""
|
|
1238 |
#: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:513
|
1239 |
#: core/admin/page-email-new-admin.php:514 core/admin/page-email-new-admin.php:538
|
1240 |
#: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
|
1241 |
-
#: core/lib/wpbc_all_translations.php:
|
1242 |
#: inc/_ps/admin/page-email-edit.php:557
|
1243 |
msgid "Emails Settings"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:
|
1247 |
msgid "Customization of email template, which is sent to Visitor after approval of booking"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:
|
1251 |
msgid "Email is sent to Visitor after Approval of booking."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
#: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
|
1255 |
#: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:686
|
1256 |
#: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
|
1257 |
-
#: core/lib/wpbc_all_translations.php:
|
1258 |
#: inc/_ps/admin/page-email-edit.php:701
|
1259 |
msgid "Header / Footer"
|
1260 |
msgstr ""
|
@@ -1262,7 +1242,7 @@ msgstr ""
|
|
1262 |
#: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
|
1263 |
#: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:693
|
1264 |
#: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
|
1265 |
-
#: core/lib/wpbc_all_translations.php:
|
1266 |
#: inc/_ps/admin/page-email-edit.php:708
|
1267 |
msgid "Email Styles"
|
1268 |
msgstr ""
|
@@ -1273,7 +1253,7 @@ msgstr ""
|
|
1273 |
#: core/admin/page-form-free.php:1149 core/admin/page-form-timeslots.php:768
|
1274 |
#: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
|
1275 |
#: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:178
|
1276 |
-
#: core/lib/wpbc_all_translations.php:
|
1277 |
#: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
|
1278 |
#: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
|
1279 |
#: inc/_ps/admin/page-email-edit.php:720
|
@@ -1283,7 +1263,7 @@ msgstr ""
|
|
1283 |
#: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
|
1284 |
#: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:709
|
1285 |
#: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
|
1286 |
-
#: core/lib/wpbc_all_translations.php:
|
1287 |
#: inc/_ps/admin/page-email-edit.php:724
|
1288 |
msgid "Send Test Email"
|
1289 |
msgstr ""
|
@@ -1299,9 +1279,9 @@ msgstr ""
|
|
1299 |
#: core/admin/page-ics-general.php:416 core/admin/page-ics-import.php:203
|
1300 |
#: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:142
|
1301 |
#: core/admin/page-settings.php:290 core/admin/wpbc-toolbars.php:1826
|
1302 |
-
#: core/lib/wpbc_all_translations.php:
|
1303 |
-
#: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:
|
1304 |
-
#: inc/_bl/admin/page-search.php:
|
1305 |
#: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
|
1306 |
#: inc/_bm/admin/page-cost-deposit.php:362 inc/_bm/admin/page-cost-early-late-booking.php:544
|
1307 |
#: inc/_bm/admin/page-cost-rate.php:231 inc/_bm/admin/page-cost-valuation.php:257
|
@@ -1313,10 +1293,10 @@ msgstr ""
|
|
1313 |
#: inc/_ps/admin/page-settings-form.php:125 inc/_ps/admin/page-settings-form.php:187
|
1314 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:916
|
1315 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:489
|
1316 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:923 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
1317 |
-
#: inc/gateways/page-gateways.php:
|
1318 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1085 inc/gateways/sage/wpbc-gw-sage.php:913
|
1319 |
-
#: inc/gateways/
|
1320 |
msgid "Save Changes"
|
1321 |
msgstr ""
|
1322 |
|
@@ -1324,7 +1304,7 @@ msgstr ""
|
|
1324 |
#: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:729
|
1325 |
#: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
|
1326 |
#: core/admin/page-form-free.php:1148 core/admin/wpbc-dashboard.php:471
|
1327 |
-
#: core/lib/wpbc_all_translations.php:
|
1328 |
#: inc/_ps/admin/page-email-edit.php:744
|
1329 |
msgid "Type"
|
1330 |
msgstr ""
|
@@ -1335,11 +1315,11 @@ msgstr ""
|
|
1335 |
#: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
|
1336 |
#: core/admin/page-settings.php:136 core/admin/page-settings.php:282
|
1337 |
#: core/admin/wpbc-toolbars.php:434 core/admin/wpbc-toolbars.php:440
|
1338 |
-
#: core/lib/wpbc_all_translations.php:
|
1339 |
-
#: inc/_bl/admin/page-search.php:
|
1340 |
#: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
|
1341 |
#: inc/_ps/admin/page-settings-form.php:181
|
1342 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:452 inc/gateways/page-gateways.php:
|
1343 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:393 inc/gateways/paypal/wpbc-gw-paypal.php:1059
|
1344 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1076
|
1345 |
msgid "Help"
|
@@ -1348,7 +1328,7 @@ msgstr ""
|
|
1348 |
#: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
|
1349 |
#: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:826
|
1350 |
#: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
|
1351 |
-
#: core/lib/wpbc_all_translations.php:
|
1352 |
#: inc/_ps/admin/page-email-edit.php:833
|
1353 |
msgid "Email sent to "
|
1354 |
msgstr ""
|
@@ -1356,7 +1336,7 @@ msgstr ""
|
|
1356 |
#: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
|
1357 |
#: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:828
|
1358 |
#: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
|
1359 |
-
#: core/lib/wpbc_all_translations.php:
|
1360 |
#: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
|
1361 |
msgid "Email had not sent. Some error occuered."
|
1362 |
msgstr ""
|
@@ -1364,13 +1344,12 @@ msgstr ""
|
|
1364 |
#: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
|
1365 |
#: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:912
|
1366 |
#: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
|
1367 |
-
#: core/lib/wpbc_all_translations.php:
|
1368 |
#: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:937
|
1369 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
|
1370 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
1371 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1106
|
1372 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:934 inc/gateways/
|
1373 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1161
|
1374 |
msgid "Settings saved."
|
1375 |
msgstr ""
|
1376 |
|
@@ -1380,7 +1359,7 @@ msgstr ""
|
|
1380 |
#: core/admin/page-email-new-admin.php:974 core/admin/page-email-new-admin.php:977
|
1381 |
#: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
|
1382 |
#: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
|
1383 |
-
#: core/lib/wpbc_all_translations.php:
|
1384 |
#: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
|
1385 |
#: inc/_ps/admin/page-email-edit.php:914
|
1386 |
msgid "If empty then title defined as WordPress"
|
@@ -1389,7 +1368,7 @@ msgstr ""
|
|
1389 |
#: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
|
1390 |
#: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:994
|
1391 |
#: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
|
1392 |
-
#: core/lib/wpbc_all_translations.php:
|
1393 |
#: inc/_ps/admin/page-email-edit.php:931
|
1394 |
msgid ""
|
1395 |
"Email different from website DNS, its can be a reason of not delivery emails. Please use the "
|
@@ -1397,20 +1376,20 @@ msgid ""
|
|
1397 |
msgstr ""
|
1398 |
|
1399 |
#: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
|
1400 |
-
#: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:
|
1401 |
-
#: core/wpbc-activation.php:
|
1402 |
msgid "Your booking has been declined"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
#: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
|
1406 |
-
#: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:
|
1407 |
-
#: core/wpbc-activation.php:
|
1408 |
#, php-format
|
1409 |
msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:
|
1413 |
-
#: core/lib/wpbc_all_translations.php:
|
1414 |
#: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
|
1415 |
#: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
|
1416 |
#: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:547
|
@@ -1418,129 +1397,131 @@ msgstr ""
|
|
1418 |
msgid "Deleted"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: core/admin/page-email-deleted.php:560 core/
|
1422 |
-
#: core/lib/wpbc_all_translations.php:214
|
1423 |
msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:
|
1427 |
msgid "Email is sent to Visitor after Deleting of booking."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:
|
1431 |
msgid ""
|
1432 |
"Customization of email template, which is sent to Visitor, when booking status is set to Pending"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:
|
1436 |
msgid "Email is sent to Visitor after booking set as Pending."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
#: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
|
1440 |
-
#: core/admin/wpbc-class-listing.php:302 core/lib/wpbc_all_translations.php:
|
1441 |
-
#: core/wpbc-activation.php:
|
1442 |
msgid "New booking"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:
|
1446 |
-
#: core/wpbc-activation.php:
|
1447 |
#, php-format
|
1448 |
msgid ""
|
1449 |
"You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
|
1450 |
"booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: core/admin/page-email-new-admin.php:512 core/lib/wpbc_all_translations.php:
|
1454 |
#: core/wpbc-functions.php:1984
|
1455 |
msgid "Emails"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: core/admin/page-email-new-admin.php:537 core/admin/page-email-new-visitor.php:537
|
1459 |
-
#: core/lib/wpbc_all_translations.php:
|
1460 |
msgid "New"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:
|
1464 |
msgid "admin"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:
|
1468 |
msgid "Customization of email template, which is sending to Admin after new booking"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: core/admin/page-email-new-admin.php:679 core/lib/wpbc_all_translations.php:
|
1472 |
msgid "Email is sending to Admin after creation of booking."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:
|
1476 |
-
#: core/wpbc-activation.php:
|
1477 |
#, php-format
|
1478 |
msgid ""
|
1479 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
|
1480 |
"edit this booking at this page: %s Thank you, %s"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:
|
1484 |
-
#: core/wpbc-activation.php:
|
1485 |
#, php-format
|
1486 |
msgid ""
|
1487 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
|
1488 |
"%s"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:
|
1492 |
msgid "visitor"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:
|
1496 |
msgid "Customization of email template, which is sending to Visitor after new booking"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:
|
1500 |
msgid "Email is sending to Visitor after creation of booking."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: core/admin/page-email-trash.php:563 core/admin/wpbc-class-listing.php:
|
1504 |
-
#: core/admin/wpbc-
|
1505 |
-
#: core/
|
1506 |
-
|
1507 |
-
|
|
|
|
|
|
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:
|
1511 |
msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
#: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
|
1515 |
-
#: core/admin/page-settings.php:217 core/lib/wpbc_all_translations.php:
|
1516 |
#: core/wpbc-functions.php:1976 inc/_ps/admin/page-settings-form.php:46
|
1517 |
msgid "Form"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:
|
1521 |
#: inc/_ps/admin/page-settings-form.php:47
|
1522 |
msgid "Fields Settings"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:
|
1526 |
#: inc/_ps/admin/page-settings-form.php:48
|
1527 |
msgid "Customizaton of Form Fields"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
#: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
|
1531 |
-
#: core/lib/wpbc_all_translations.php:
|
1532 |
msgid "Check Premium Features"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:
|
1536 |
msgid "Upgrade to higher versions"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:
|
1540 |
msgid "Form Field Configuration"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: core/admin/page-form-free.php:190
|
1544 |
#, php-format
|
1545 |
msgid ""
|
1546 |
"You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in "
|
@@ -1548,63 +1529,63 @@ msgid ""
|
|
1548 |
msgstr ""
|
1549 |
|
1550 |
#: core/admin/page-form-free.php:298 core/admin/page-form-free.php:421
|
1551 |
-
#: core/admin/page-form-free.php:579 core/lib/wpbc_all_translations.php:
|
1552 |
-
#: inc/_ps/personal.php:
|
1553 |
#: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
|
1554 |
#: inc/_ps/wpbc-form-templates.php:127
|
1555 |
msgid "Send"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: core/admin/page-form-free.php:852 core/lib/wpbc_all_translations.php:
|
1559 |
msgid "Reset to default form"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
#: core/admin/page-form-free.php:856 core/admin/page-form-free.php:1466
|
1563 |
-
#: core/admin/wpbc-class-listing.php:
|
1564 |
#: core/admin/wpbc-toolbars.php:997 core/admin/wpbc-toolbars.php:1014
|
1565 |
-
#: core/admin/wpbc-toolbars.php:1078 core/lib/wpbc_all_translations.php:
|
1566 |
#: inc/_bl/admin/page-coupons.php:236 inc/_bl/admin/page-coupons.php:808
|
1567 |
#: inc/_bm/admin/page-availability.php:274 inc/_bm/admin/page-cost-valuation.php:354
|
1568 |
-
#: inc/_bm/admin/page-cost.php:
|
1569 |
#: inc/_bm/admin/page-seasons.php:602 inc/_ps/admin/page-resources.php:222
|
1570 |
-
#: inc/_ps/personal.php:
|
1571 |
msgid "Do you really want to do this ?"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
#: core/admin/page-form-free.php:884 core/admin/page-form-free.php:2177
|
1575 |
-
#: core/lib/wpbc_all_translations.php:
|
1576 |
msgid "Add New Field"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
#: core/admin/page-form-free.php:901 core/admin/page-form-free.php:936
|
1580 |
-
#: core/lib/wpbc_all_translations.php:
|
1581 |
msgid "Select"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: core/admin/page-form-free.php:901 core/lib/wpbc_all_translations.php:
|
1585 |
msgid "Form Field"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: core/admin/page-form-free.php:923 core/lib/wpbc_all_translations.php:
|
1589 |
#: inc/_ps/form/class-wpbc-form-help.php:141
|
1590 |
msgid "Standard Fields"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: core/admin/page-form-free.php:926 core/lib/wpbc_all_translations.php:
|
1594 |
#: inc/_ps/form/class-wpbc-form-help.php:147
|
1595 |
msgid "Text"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: core/admin/page-form-free.php:946 core/lib/wpbc_all_translations.php:
|
1599 |
#: inc/_ps/form/class-wpbc-form-help.php:156
|
1600 |
msgid "Textarea"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: core/admin/page-form-free.php:956 core/lib/wpbc_all_translations.php:
|
1604 |
msgid "Checkbox"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: core/admin/page-form-free.php:971 core/lib/wpbc_all_translations.php:
|
1608 |
#: inc/_ps/form/class-wpbc-form-help.php:486
|
1609 |
msgid "Advanced Fields"
|
1610 |
msgstr ""
|
@@ -1612,54 +1593,54 @@ msgstr ""
|
|
1612 |
#: core/admin/page-form-free.php:975 core/admin/page-form-free.php:1991
|
1613 |
#: core/admin/page-form-free.php:1992 core/admin/page-form-timeslots.php:106
|
1614 |
#: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
|
1615 |
-
#: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:
|
1616 |
#: inc/_ps/admin/page-settings-form.php:373 inc/_ps/admin/page-settings-form.php:383
|
1617 |
#: inc/_ps/admin/page-settings-form.php:393
|
1618 |
msgid "Time Slots"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: core/admin/page-form-free.php:1033 core/lib/wpbc_all_translations.php:
|
1622 |
msgid "View"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: core/admin/page-form-free.php:1052 core/lib/wpbc_all_translations.php:
|
1626 |
msgid "Standard Forms"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: core/admin/page-form-free.php:1055 core/lib/wpbc_all_translations.php:
|
1630 |
msgid "Form under calendar"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: core/admin/page-form-free.php:1065 core/lib/wpbc_all_translations.php:
|
1634 |
msgid "Form at right side of calendar"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: core/admin/page-form-free.php:1075 core/lib/wpbc_all_translations.php:
|
1638 |
msgid "Form and calendar are centered"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: core/admin/page-form-free.php:1085 core/lib/wpbc_all_translations.php:
|
1642 |
msgid "Form for dark background"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
#: core/admin/page-form-free.php:1145 core/admin/page-form-free.php:2050
|
1646 |
-
#: core/lib/wpbc_all_translations.php:
|
1647 |
msgid "Active"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: core/admin/page-form-free.php:1146 core/lib/wpbc_all_translations.php:
|
1651 |
msgid "Field Label"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
#: core/admin/page-form-free.php:1148 core/admin/page-form-free.php:2116
|
1655 |
-
#: core/lib/wpbc_all_translations.php:
|
1656 |
msgid "Name"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
#: core/admin/page-form-free.php:1225 core/admin/page-form-free.php:1663
|
1660 |
-
#: core/admin/page-form-free.php:1724 core/
|
1661 |
-
#: core/
|
1662 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:
|
1663 |
#: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
|
1664 |
#: inc/_bm/admin/page-cost.php:218 inc/_bm/admin/page-seasons.php:200
|
1665 |
#: inc/_bm/admin/page-seasons.php:598 inc/_bm/admin/page-seasons.php:815
|
@@ -1668,34 +1649,34 @@ msgid "Edit"
|
|
1668 |
msgstr ""
|
1669 |
|
1670 |
#: core/admin/page-form-free.php:1226 core/admin/page-form-free.php:1664
|
1671 |
-
#: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:
|
1672 |
msgid "Remove"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: core/admin/page-form-free.php:1894 core/lib/wpbc_all_translations.php:
|
1676 |
#: inc/_ps/form/class-wpbc-form-help.php:88
|
1677 |
msgid "Shortcodes"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: core/admin/page-form-free.php:1895 core/lib/wpbc_all_translations.php:
|
1681 |
#: inc/_ps/form/class-wpbc-form-help.php:89
|
1682 |
msgid ""
|
1683 |
"You can generate the form fields for your form (at the left side) by selection specific field in "
|
1684 |
"the above selectbox."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: core/admin/page-form-free.php:1896 core/lib/wpbc_all_translations.php:
|
1688 |
#: inc/_ps/form/class-wpbc-form-help.php:90
|
1689 |
#, php-format
|
1690 |
msgid "Please read more about the booking form fields configuration %shere%s."
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: core/admin/page-form-free.php:1898 core/lib/wpbc_all_translations.php:
|
1694 |
#: inc/_ps/form/class-wpbc-form-help.php:99
|
1695 |
msgid "Default Form Templates"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: core/admin/page-form-free.php:1899 core/lib/wpbc_all_translations.php:
|
1699 |
#: inc/_ps/form/class-wpbc-form-help.php:100
|
1700 |
#, php-format
|
1701 |
msgid ""
|
@@ -1705,92 +1686,92 @@ msgid ""
|
|
1705 |
"reset both forms: Booking Form and Content of Booking Fields form."
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: core/admin/page-form-free.php:2029 core/lib/wpbc_all_translations.php:
|
1709 |
#: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
|
1710 |
#: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
|
1711 |
msgid "First Name"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: core/admin/page-form-free.php:2051 core/lib/wpbc_all_translations.php:
|
1715 |
msgid "Show / hide field in booking form"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: core/admin/page-form-free.php:2072 core/lib/wpbc_all_translations.php:
|
1719 |
msgid "Set field as required"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
#: core/admin/page-form-free.php:2092 core/admin/page-form-timeslots.php:784
|
1723 |
#: core/admin/wpbc-toolbar-tiny.php:428 core/admin/wpbc-toolbar-tiny.php:1219
|
1724 |
-
#: core/lib/wpbc_all_translations.php:
|
1725 |
#: js/wpbc-gutenberg.js:816
|
1726 |
msgid "Label"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: core/admin/page-form-free.php:2121 core/lib/wpbc_all_translations.php:
|
1730 |
#, php-format
|
1731 |
msgid "Type only %sunique field name%s, that is not using in form"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: core/admin/page-form-free.php:2142 core/lib/wpbc_all_translations.php:
|
1735 |
msgid "Values"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: core/admin/page-form-free.php:2147 core/lib/wpbc_all_translations.php:
|
1739 |
msgid "Enter dropdown options. One option per line."
|
1740 |
msgstr ""
|
1741 |
|
1742 |
#: core/admin/page-form-free.php:2182 core/admin/wpbc-toolbar-tiny.php:298
|
1743 |
#: core/admin/wpbc-toolbars.php:710 core/admin/wpbc-toolbars.php:915
|
1744 |
-
#: core/admin/wpbc-toolbars.php:1536 core/lib/wpbc_all_translations.php:
|
1745 |
#: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:104 inc/_bs/s-toolbar.php:209
|
1746 |
#: inc/_ps/p-toolbar.php:508 inc/_ps/p-toolbar.php:553
|
1747 |
msgid "Close"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: core/admin/page-form-free.php:2196 core/lib/wpbc_all_translations.php:
|
1751 |
#: inc/_bm/m-toolbar.php:367 inc/_bm/m-toolbar.php:368 inc/_ps/p-toolbar.php:387
|
1752 |
#: inc/_ps/p-toolbar.php:439 inc/_ps/p-toolbar.php:472
|
1753 |
msgid "Cancel"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:
|
1757 |
msgid "in 24 hour format"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:
|
1761 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
|
1762 |
#: inc/_ps/form/class-wpbc-field-help-select.php:119
|
1763 |
msgid "One option per line"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:
|
1767 |
msgid "Titles"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:
|
1771 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
|
1772 |
#: inc/_ps/form/class-wpbc-field-help-select.php:137
|
1773 |
msgid "One title per line"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:
|
1777 |
msgid "Visible options in selectbox"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:
|
1781 |
msgid "Reset times by"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
#: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
|
1785 |
#: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
|
1786 |
-
#: core/admin/wpbc-toolbar-tiny.php:634 core/lib/wpbc_all_translations.php:
|
1787 |
#: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
|
1788 |
#: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
|
1789 |
msgid "hours"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
#: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
|
1793 |
-
#: core/lib/wpbc_all_translations.php:
|
1794 |
#: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
|
1795 |
#: inc/_bs/admin/api-settings-s.php:901
|
1796 |
msgid "hour"
|
@@ -1798,7 +1779,7 @@ msgstr ""
|
|
1798 |
|
1799 |
#: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
|
1800 |
#: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
|
1801 |
-
#: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:
|
1802 |
#: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
|
1803 |
#: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
|
1804 |
#: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
|
@@ -1811,12 +1792,12 @@ msgstr ""
|
|
1811 |
#: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
|
1812 |
#: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
|
1813 |
#: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
|
1814 |
-
#: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:
|
1815 |
#: core/wpbc-js.php:131 inc/_ps/personal.php:268
|
1816 |
msgid "Processing"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:
|
1820 |
msgid "+ Add Time Slot"
|
1821 |
msgstr ""
|
1822 |
|
@@ -1825,7 +1806,7 @@ msgstr ""
|
|
1825 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1826 |
#: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
|
1827 |
#: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
|
1828 |
-
#: core/lib/wpbc_all_translations.php:
|
1829 |
msgid "Sync"
|
1830 |
msgstr ""
|
1831 |
|
@@ -1833,8 +1814,8 @@ msgstr ""
|
|
1833 |
#: core/admin/page-ics-general.php:397 core/admin/page-ics-general.php:406
|
1834 |
#: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
|
1835 |
#: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
|
1836 |
-
#: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:
|
1837 |
-
#: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:
|
1838 |
#: core/sync/wpbc-gcal.php:465
|
1839 |
msgid "Import"
|
1840 |
msgstr ""
|
@@ -1843,28 +1824,28 @@ msgstr ""
|
|
1843 |
#: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
|
1844 |
#: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:264
|
1845 |
#: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
|
1846 |
-
#: core/lib/wpbc_all_translations.php:
|
1847 |
msgid "Export"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
#: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
|
1851 |
-
#: core/lib/wpbc_all_translations.php:
|
1852 |
msgid "feed"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
#: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
|
1856 |
-
#: core/lib/wpbc_all_translations.php:
|
1857 |
#: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:767
|
1858 |
msgid "Warning!"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:
|
1862 |
#, php-format
|
1863 |
msgid "This feature require %s"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
#: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
|
1867 |
-
#: core/lib/wpbc_all_translations.php:
|
1868 |
#: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
|
1869 |
#: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
|
1870 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
|
@@ -1876,121 +1857,121 @@ msgstr ""
|
|
1876 |
#: inc/_ps/form/class-wpbc-form-help.php:515 inc/_ps/form/class-wpbc-form-help.php:645
|
1877 |
#: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:455
|
1878 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:878
|
1879 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
1880 |
-
#: inc/gateways/
|
1881 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
1882 |
#: js/wpbc-gutenberg.js:1188
|
1883 |
msgid "Important!"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
#: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
|
1887 |
-
#: core/lib/wpbc_all_translations.php:
|
1888 |
#, php-format
|
1889 |
msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
|
1890 |
msgstr ""
|
1891 |
|
1892 |
#: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
|
1893 |
-
#: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:
|
1894 |
msgid "How it works"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
#: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
|
1898 |
-
#: core/lib/wpbc_all_translations.php:
|
1899 |
msgid ".ics feed URL"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:
|
1903 |
#: inc/_ps/admin/br-table-export-feeds.php:69
|
1904 |
msgid "Open in new window"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:
|
1908 |
msgid "Please enter URL for generating .ics feed"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:
|
1912 |
msgid "This .ics feed of bookings starting from today for 1 year"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:875
|
1916 |
#: core/admin/wpbc-toolbar-tiny.php:1090 core/admin/wpbc-toolbar-tiny.php:1171
|
1917 |
-
#: core/lib/wpbc_all_translations.php:
|
1918 |
#: inc/_ps/wpbc-booking-select-widget.php:188
|
1919 |
msgid "None"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:
|
1923 |
msgid "Event Title"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
#: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
|
1927 |
-
#: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:
|
1928 |
#, php-format
|
1929 |
msgid "Select field for assigning to %sevent property%s"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:
|
1933 |
msgid "Event Description (optional field)"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:
|
1937 |
msgid "Location"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
#: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:206
|
1941 |
-
#: core/lib/wpbc_all_translations.php:
|
1942 |
#: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:628 inc/_ps/admin/activation-p.php:45
|
1943 |
msgid "Default"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:
|
1947 |
#: core/sync/wpbc-gcal.php:309
|
1948 |
msgid "Timezone"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:
|
1952 |
#: core/sync/wpbc-gcal.php:343
|
1953 |
msgid "Select a city in your required timezone, if you are having problems with dates and times."
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:
|
1957 |
#: inc/_bs/admin/api-settings-s.php:314
|
1958 |
msgid "Use check in/out time"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:
|
1962 |
msgid "Use check in/out time of plugin, during import .ics feeds"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:
|
1966 |
msgid "Append check out day"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:
|
1970 |
msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: core/admin/page-ics-general.php:188
|
1974 |
msgid "Export only approved bookings"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: core/admin/page-ics-general.php:189
|
1978 |
msgid "Enable of export only approved bookings in .ics feeds"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: core/admin/page-ics-general.php:201 core/lib/wpbc_all_translations.php:
|
1982 |
msgid "Force import"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: core/admin/page-ics-general.php:202 core/lib/wpbc_all_translations.php:
|
1986 |
msgid "Import bookings without checking, if such bookings already have been imported."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: core/admin/page-ics-general.php:210 core/lib/wpbc_all_translations.php:
|
1990 |
msgid "Trash all imported bookings before new import"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: core/admin/page-ics-general.php:211 core/lib/wpbc_all_translations.php:
|
1994 |
msgid ""
|
1995 |
"Move all previously imported bookings to trash before new import bookings. Its can resolve "
|
1996 |
"issue of updating deleted and edited events in external sources. Its work only, if you are using "
|
@@ -1998,73 +1979,73 @@ msgid ""
|
|
1998 |
msgstr ""
|
1999 |
|
2000 |
#: core/admin/page-ics-general.php:281 core/admin/page-settings.php:74
|
2001 |
-
#: core/lib/wpbc_all_translations.php:
|
2002 |
msgid "General"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
2006 |
#: core/admin/page-ics-general.php:390 core/admin/page-import-gcal.php:485
|
2007 |
#: core/admin/page-settings.php:75 core/admin/page-settings.php:76
|
2008 |
-
#: core/lib/wpbc_all_translations.php:
|
2009 |
msgid "General Settings"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: core/admin/page-ics-general.php:397 core/lib/wpbc_all_translations.php:
|
2013 |
msgid "Assign events fields to specific booking form field"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
#: core/admin/page-ics-general.php:406 core/admin/page-settings.php:121
|
2017 |
-
#: core/admin/page-settings.php:252 core/lib/wpbc_all_translations.php:
|
2018 |
-
#: inc/_bl/admin/page-search.php:
|
2019 |
-
#: inc/_bl/admin/page-search.php:
|
2020 |
-
#: inc/_bl/wpbc-search-availability.php:
|
2021 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:914 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
2022 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1052 inc/gateways/sage/wpbc-gw-sage.php:904
|
2023 |
-
#: inc/gateways/
|
2024 |
msgid "Advanced"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:
|
2028 |
msgid "feeds"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: core/admin/page-ics-import.php:
|
2032 |
-
#: core/admin/wpbc-toolbar-tiny.php:331 core/lib/wpbc_all_translations.php:
|
2033 |
#: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:965 inc/_ps/p-toolbar.php:996
|
2034 |
msgid "parent resource"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: core/admin/page-ics-import.php:
|
2038 |
msgid "Enter URL to .ics feed"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: core/admin/page-ics-import.php:
|
2042 |
msgid "Choose file"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: core/admin/page-ics-import.php:
|
2046 |
msgid "Insert file URL"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: core/admin/page-ics-import.php:
|
2050 |
msgid "Upload / Select "
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: core/admin/page-ics-import.php:
|
2054 |
msgid "What does .ics feeds import/export mean?"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: core/admin/page-ics-import.php:
|
2058 |
#, php-format
|
2059 |
msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: core/admin/page-ics-import.php:
|
2063 |
msgid "and any other calendar that uses .ics format"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: core/admin/page-ics-import.php:
|
2067 |
-
#: core/lib/wpbc_all_translations.php:
|
2068 |
#, php-format
|
2069 |
msgid ""
|
2070 |
".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
|
@@ -2072,34 +2053,34 @@ msgid ""
|
|
2072 |
"calendars updated and synchronized."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: core/admin/page-ics-import.php:
|
2076 |
msgid "Is it automatic process?"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: core/admin/page-ics-import.php:
|
2080 |
msgid ""
|
2081 |
"By default .ics import is not automatic process. You need to set up CRON script on your server "
|
2082 |
"to periodically access front-end page(s) with import .ics feeds shortcodes."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: core/admin/page-ics-import.php:
|
2086 |
msgid "How to start import of .ics feeds (files)?"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: core/admin/page-ics-import.php:
|
2090 |
-
#: core/lib/wpbc_all_translations.php:
|
2091 |
#, php-format
|
2092 |
msgid "Install %s plugin."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: core/admin/page-ics-import.php:
|
2096 |
#, php-format
|
2097 |
msgid ""
|
2098 |
"Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
|
2099 |
"configuration%s"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: core/admin/page-ics-import.php:
|
2103 |
#, php-format
|
2104 |
msgid ""
|
2105 |
"Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
|
@@ -2107,26 +2088,26 @@ msgid ""
|
|
2107 |
"accessing such different pages with different time intervals."
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: core/admin/page-ics-import.php:
|
2111 |
msgid "Or you can import .ics feed or file directly at current page."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: core/admin/page-ics-import.php:
|
2115 |
#, php-format
|
2116 |
msgid ""
|
2117 |
"If you have inserted import shortcodes from %s, then you can configure your CRON for "
|
2118 |
"periodically access these pages and import .ics feeds."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: core/admin/page-ics-import.php:
|
2122 |
msgid "How to start export of .ics feeds (files)?"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: core/admin/page-ics-import.php:
|
2126 |
msgid "Configure ULR feed(s) at this settings page."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: core/admin/page-ics-import.php:
|
2130 |
#, php-format
|
2131 |
msgid ""
|
2132 |
"Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
|
@@ -2134,26 +2115,26 @@ msgid ""
|
|
2134 |
"website."
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: core/admin/page-ics-import.php:
|
2138 |
msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#: core/admin/page-ics-import.php:
|
2142 |
-
#: core/sync/wpbc-gcal-class.php:
|
2143 |
msgid "Done"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:
|
2147 |
msgid "Activate auto import"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:
|
2151 |
#, php-format
|
2152 |
msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
#: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:567
|
2156 |
-
#: core/admin/wpbc-toolbars.php:801 core/lib/wpbc_all_translations.php:
|
2157 |
#: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
|
2158 |
#: inc/_bm/admin/page-cost-early-late-booking.php:230
|
2159 |
#: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
|
@@ -2168,7 +2149,7 @@ msgstr ""
|
|
2168 |
#: core/admin/wpbc-toolbars.php:571 core/admin/wpbc-toolbars.php:572
|
2169 |
#: core/admin/wpbc-toolbars.php:802 core/admin/wpbc-toolbars.php:803
|
2170 |
#: core/admin/wpbc-toolbars.php:804 core/admin/wpbc-toolbars.php:805
|
2171 |
-
#: core/admin/wpbc-toolbars.php:806 core/lib/wpbc_all_translations.php:
|
2172 |
#: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:94
|
2173 |
#: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
|
2174 |
#: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
|
@@ -2178,203 +2159,202 @@ msgstr ""
|
|
2178 |
msgid "days"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:
|
2182 |
msgid "Import events every"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:
|
2186 |
msgid "Select time duration of import requests."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:
|
2190 |
msgid "Google API Key"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:
|
2194 |
msgid "Please enter your Google API key. This field required to import events."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:
|
2198 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:364
|
2199 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:402
|
2200 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:433 inc/gateways/ideal/wpbc-gw-ideal.php:422
|
2201 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:477 inc/gateways/ideal/wpbc-gw-ideal.php:481
|
2202 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
2203 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:508 inc/gateways/
|
2204 |
-
#: inc/gateways/
|
2205 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:721
|
2206 |
msgid "Note:"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:
|
2210 |
#, php-format
|
2211 |
msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:
|
2215 |
#: inc/_ps/admin/br-table-import-gcal-p.php:148
|
2216 |
msgid "Google Calendar ID"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:
|
2220 |
#: core/sync/wpbc-gcal.php:295
|
2221 |
msgid "Maximum number"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:
|
2225 |
#: core/sync/wpbc-gcal.php:298
|
2226 |
msgid "You can specify the maximum number of events to import during one session."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
#: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
|
2230 |
-
#: core/lib/wpbc_all_translations.php:
|
2231 |
msgid "Now"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
#: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
|
2235 |
-
#: core/lib/wpbc_all_translations.php:
|
2236 |
msgid "00:00 today"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
#: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
|
2240 |
-
#: core/lib/wpbc_all_translations.php:
|
2241 |
msgid "Start of current week"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
#: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
|
2245 |
-
#: core/lib/wpbc_all_translations.php:
|
2246 |
msgid "Start of current month"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
#: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
|
2250 |
-
#: core/lib/wpbc_all_translations.php:
|
2251 |
msgid "End of current month"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:
|
2255 |
#: core/sync/wpbc-gcal.php:189
|
2256 |
msgid "The start of time"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
#: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
|
2260 |
-
#: core/lib/wpbc_all_translations.php:
|
2261 |
msgid "Specific date / time"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:
|
2265 |
#: core/sync/wpbc-gcal.php:197
|
2266 |
msgid "Select option, when to start retrieving events."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
#: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
|
2270 |
-
#: core/lib/wpbc_all_translations.php:
|
2271 |
msgid "Offset"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
#: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
|
2275 |
-
#: core/lib/wpbc_all_translations.php:
|
2276 |
msgid "Enter date / time"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
#: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
|
2280 |
-
#: core/lib/wpbc_all_translations.php:
|
2281 |
msgid "seconds"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
#: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
|
2285 |
-
#: core/lib/wpbc_all_translations.php:
|
2286 |
msgid ""
|
2287 |
"You can specify an additional offset from you chosen start point. The offset can be negative."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
#: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
|
2291 |
-
#: core/lib/wpbc_all_translations.php:
|
2292 |
#, php-format
|
2293 |
msgid "Type your date in format %s. Example: %s"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:
|
2297 |
#: core/sync/wpbc-gcal.php:253
|
2298 |
msgid "The end of time"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
#: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:614
|
2302 |
-
#: core/lib/wpbc_all_translations.php:
|
2303 |
msgid "Until"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:
|
2307 |
#: core/sync/wpbc-gcal.php:261
|
2308 |
msgid "Select option, when to stop retrieving events."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:
|
2312 |
msgid "To get Google Calendar API key please follow this instruction"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:
|
2316 |
#, php-format
|
2317 |
msgid "Go to Google Developer Console: %s."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:
|
2321 |
msgid "Give your project a name and click \"Create\"."
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:
|
2325 |
msgid "In the sidebar click on \"APIs & auth\"."
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:
|
2329 |
msgid "Click APIs and make sure \"Calendar API\" is set to ON."
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:
|
2333 |
msgid "Now click on \"Credentials\" in the sidebar."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:
|
2337 |
msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:
|
2341 |
msgid "On the popup click the button \"Server Key\" and click \"Create\"."
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:
|
2345 |
#, php-format
|
2346 |
msgid ""
|
2347 |
"You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
|
2348 |
"%sGoogle API Key%s field at this page."
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:
|
2352 |
msgid "Set Your Calendar to Public"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
#: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
|
2356 |
-
#: core/lib/wpbc_all_translations.php:
|
2357 |
msgid "Navigate to your Google calendars."
|
2358 |
msgstr ""
|
2359 |
|
2360 |
#: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
|
2361 |
-
#: core/lib/wpbc_all_translations.php:
|
2362 |
msgid "Open the settings for the calendar."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:
|
2366 |
msgid "Click the \"Share this Calendar\" link."
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:
|
2370 |
msgid "Click the checkbox to make calendar public. Do not check the other option."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:
|
2374 |
msgid "Find Your Calendar ID"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:
|
2378 |
#, php-format
|
2379 |
msgid ""
|
2380 |
"Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
|
@@ -2382,33 +2362,33 @@ msgid ""
|
|
2382 |
msgstr ""
|
2383 |
|
2384 |
#: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
|
2385 |
-
#: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:
|
2386 |
#: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
|
2387 |
msgid "Import Google Calendar Events"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
#: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
|
2391 |
-
#: core/lib/wpbc_all_translations.php:
|
2392 |
msgid "Auto import events"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
#: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
|
2396 |
-
#: core/lib/wpbc_all_translations.php:
|
2397 |
msgid "Default settings for retrieving events"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:
|
2401 |
msgid "Google Calendar - General Settings"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
#: core/admin/page-settings.php:88 core/admin/page-settings.php:203
|
2405 |
-
#: core/admin/wpbc-toolbar-tiny.php:242 core/lib/wpbc_all_translations.php:
|
2406 |
#: inc/_ps/form/class-wpbc-form-help.php:115
|
2407 |
msgid "Calendar"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
#: core/admin/page-settings.php:93 core/admin/page-settings.php:210
|
2411 |
-
#: core/lib/wpbc_all_translations.php:
|
2412 |
#: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
|
2413 |
#: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
|
2414 |
#: inc/_ps/wpbc-form-templates.php:307 inc/_ps/wpbc-form-templates.php:333
|
@@ -2417,49 +2397,49 @@ msgid "Availability"
|
|
2417 |
msgstr ""
|
2418 |
|
2419 |
#: core/admin/page-settings.php:103 core/admin/page-settings.php:224
|
2420 |
-
#: core/lib/wpbc_all_translations.php:
|
2421 |
msgid "Booking Admin Panel"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
#: core/admin/page-settings.php:108 core/admin/page-settings.php:231
|
2425 |
-
#: core/lib/wpbc_all_translations.php:
|
2426 |
msgid "Timeline"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: core/admin/page-settings.php:116 core/lib/wpbc_all_translations.php:
|
2430 |
msgid "Auto cancellation / approval"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
#: core/admin/page-settings.php:126 core/admin/page-settings.php:268
|
2434 |
-
#: core/lib/wpbc_all_translations.php:
|
2435 |
msgid "Plugin Menu"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: core/admin/page-settings.php:131 core/lib/wpbc_all_translations.php:
|
2439 |
msgid "Uninstall"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: core/admin/page-settings.php:243 core/lib/wpbc_all_translations.php:
|
2443 |
msgid "Auto cancellation / auto approval of bookings"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:
|
2447 |
msgid "Information"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: core/admin/page-settings.php:275 core/lib/wpbc_all_translations.php:
|
2451 |
msgid "Uninstall / deactivation"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
#: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
|
2455 |
-
#: core/lib/wpbc_all_translations.php:
|
2456 |
msgid "Upgrade"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
#: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1520
|
2460 |
-
#: core/admin/wpbc-toolbar-tiny.php:1529 core/lib/wpbc_all_translations.php:
|
2461 |
#: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
|
2462 |
-
#: inc/_bl/wpbc-search-availability.php:
|
2463 |
#: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
|
2464 |
#: inc/_bm/admin/page-cost-early-late-booking.php:82 inc/_bm/admin/page-cost-rate.php:77
|
2465 |
#: inc/_bm/admin/page-cost-valuation.php:103 inc/_bm/admin/page-seasons.php:826
|
@@ -2467,324 +2447,257 @@ msgstr ""
|
|
2467 |
msgid "Nothing Found"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:
|
2471 |
#: inc/_ps/wpbc-print.php:83
|
2472 |
msgid "Labels"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:
|
2476 |
msgid "Booking Data"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:
|
2480 |
msgid "Booking Dates"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:
|
2484 |
msgid "Show ALL dates of booking"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:
|
2488 |
msgid "Show only check in/out dates"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: core/admin/wpbc-class-listing.php:221 core/lib/wpbc_all_translations.php:
|
2492 |
msgid "Resource not exist"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:
|
2496 |
#: inc/_bs/lib_s.php:294 inc/_bs/lib_s.php:309
|
2497 |
msgid "Unknown"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: core/admin/wpbc-class-listing.php:
|
2501 |
msgid "Imported"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: core/admin/wpbc-class-listing.php:
|
2505 |
-
msgid "
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: core/admin/wpbc-class-listing.php:
|
2509 |
-
#: core/lib/wpbc_all_translations.php:
|
2510 |
msgid "Restore"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: core/admin/wpbc-class-listing.php:
|
2514 |
msgid "Do you really want to delete this booking ?"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: core/admin/wpbc-class-listing.php:
|
2518 |
#: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
|
2519 |
msgid "Completely Delete"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: core/admin/wpbc-class-listing.php:
|
2523 |
-
#: core/lib/wpbc_all_translations.php:
|
2524 |
msgid "Approve"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: core/admin/wpbc-class-listing.php:
|
2528 |
-
#: core/lib/wpbc_all_translations.php:
|
2529 |
msgid "Do you really want to set booking as pending ?"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: core/admin/wpbc-class-listing.php:
|
2533 |
#: inc/_bs/lib_s.php:337
|
2534 |
msgid "Created"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: core/admin/wpbc-class-timeline.php:85 core/admin/wpbc-class-timeline.php:94
|
2538 |
-
#: core/lib/wpbc_all_translations.php:417 core/timeline/v2/wpbc-class-timeline_v2.php:89
|
2539 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:98 core/timeline/v2/wpbc-class-timeline_v2.php:107
|
2540 |
-
msgid "Mon"
|
2541 |
-
msgstr ""
|
2542 |
-
|
2543 |
-
#: core/admin/wpbc-class-timeline.php:86 core/admin/wpbc-class-timeline.php:95
|
2544 |
-
#: core/lib/wpbc_all_translations.php:418 core/timeline/v2/wpbc-class-timeline_v2.php:90
|
2545 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:99 core/timeline/v2/wpbc-class-timeline_v2.php:108
|
2546 |
-
msgid "Tue"
|
2547 |
-
msgstr ""
|
2548 |
-
|
2549 |
-
#: core/admin/wpbc-class-timeline.php:87 core/admin/wpbc-class-timeline.php:96
|
2550 |
-
#: core/lib/wpbc_all_translations.php:419 core/timeline/v2/wpbc-class-timeline_v2.php:91
|
2551 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:100 core/timeline/v2/wpbc-class-timeline_v2.php:109
|
2552 |
-
msgid "Wed"
|
2553 |
-
msgstr ""
|
2554 |
-
|
2555 |
-
#: core/admin/wpbc-class-timeline.php:88 core/admin/wpbc-class-timeline.php:97
|
2556 |
-
#: core/lib/wpbc_all_translations.php:420 core/timeline/v2/wpbc-class-timeline_v2.php:92
|
2557 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:101 core/timeline/v2/wpbc-class-timeline_v2.php:110
|
2558 |
-
msgid "Thu"
|
2559 |
-
msgstr ""
|
2560 |
-
|
2561 |
-
#: core/admin/wpbc-class-timeline.php:89 core/admin/wpbc-class-timeline.php:98
|
2562 |
-
#: core/lib/wpbc_all_translations.php:421 core/timeline/v2/wpbc-class-timeline_v2.php:93
|
2563 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:102 core/timeline/v2/wpbc-class-timeline_v2.php:111
|
2564 |
-
msgid "Fri"
|
2565 |
-
msgstr ""
|
2566 |
-
|
2567 |
-
#: core/admin/wpbc-class-timeline.php:90 core/admin/wpbc-class-timeline.php:99
|
2568 |
-
#: core/lib/wpbc_all_translations.php:422 core/timeline/v2/wpbc-class-timeline_v2.php:94
|
2569 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:103 core/timeline/v2/wpbc-class-timeline_v2.php:112
|
2570 |
-
msgid "Sat"
|
2571 |
-
msgstr ""
|
2572 |
-
|
2573 |
-
#: core/admin/wpbc-class-timeline.php:91 core/admin/wpbc-class-timeline.php:100
|
2574 |
-
#: core/lib/wpbc_all_translations.php:423 core/timeline/v2/wpbc-class-timeline_v2.php:95
|
2575 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:104 core/timeline/v2/wpbc-class-timeline_v2.php:113
|
2576 |
-
msgid "Sun"
|
2577 |
-
msgstr ""
|
2578 |
-
|
2579 |
-
#: core/admin/wpbc-class-timeline.php:1208 core/admin/wpbc-class-timeline.php:1453
|
2580 |
-
#: core/lib/wpbc_all_translations.php:424 core/timeline/v2/wpbc-class-timeline_v2.php:1383
|
2581 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:1396 inc/_ps/wpbc-form-templates.php:155
|
2582 |
-
msgid "Times"
|
2583 |
-
msgstr ""
|
2584 |
-
|
2585 |
-
#: core/admin/wpbc-class-timeline.php:2231 core/lib/wpbc_all_translations.php:425
|
2586 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2625
|
2587 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2646
|
2588 |
-
msgid "Decline"
|
2589 |
-
msgstr ""
|
2590 |
-
|
2591 |
-
#: core/admin/wpbc-class-timeline.php:2232 core/lib/wpbc_all_translations.php:426
|
2592 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2647
|
2593 |
-
msgid "Pay"
|
2594 |
-
msgstr ""
|
2595 |
-
|
2596 |
-
#: core/admin/wpbc-class-timeline.php:2285 core/admin/wpbc-class-timeline.php:2288
|
2597 |
-
#: core/lib/wpbc_all_translations.php:427 core/timeline/v2/wpbc-class-timeline_v2.php:2706
|
2598 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2708 core/wpbc-functions.php:1993
|
2599 |
-
#: inc/_bs/lib_s.php:42 inc/_bs/lib_s.php:271 inc/_bs/lib_s.php:273
|
2600 |
-
#: inc/_ps/admin/page-settings-form.php:352 inc/_ps/admin/page-settings-form.php:363
|
2601 |
-
msgid "Payment"
|
2602 |
-
msgstr ""
|
2603 |
-
|
2604 |
#: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:227
|
2605 |
-
#: core/lib/wpbc_all_translations.php:
|
2606 |
#: core/wpbc-functions.php:1844 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
|
2607 |
#: core/wpbc.php:189
|
2608 |
msgid "Booking Calendar"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
#: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
|
2612 |
-
#: core/lib/wpbc_all_translations.php:
|
2613 |
msgid "Video guide"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:
|
2617 |
msgid "Support"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:
|
2621 |
msgid "Getting Started"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:
|
2625 |
msgid "Help Info"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
#: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:441
|
2629 |
-
#: core/lib/wpbc_all_translations.php:
|
2630 |
msgid "FAQ"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:
|
2634 |
msgid "Contact email"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:
|
2638 |
msgid "Rate plugin (thanks:)"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:
|
2642 |
msgid "Current version"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:
|
2646 |
msgid "Demo"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:
|
2650 |
msgid "Version"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:
|
2654 |
msgid "Used for"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:
|
2658 |
msgid "websites"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:
|
2662 |
msgid "website"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:
|
2666 |
msgid "Release date"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:
|
2670 |
msgid "Explore Premium Features"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:
|
2674 |
msgid "Statistic"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:
|
2678 |
msgid "New (unverified) booking(s)"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:
|
2682 |
msgid "Pending booking(s)"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:
|
2686 |
msgid "Agenda"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:
|
2690 |
msgid "New booking(s) made today"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:
|
2694 |
msgid "Bookings for today"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
#: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2463
|
2698 |
-
#: core/lib/wpbc_all_translations.php:
|
2699 |
msgid "Insert booking calendar"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
#: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2464
|
2703 |
-
#: core/lib/wpbc_all_translations.php:
|
2704 |
msgid "Booking calendar"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: core/admin/wpbc-toolbar-tiny.php:225 core/lib/wpbc_all_translations.php:
|
2708 |
msgid "Insert Shortcode"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:
|
2712 |
#: inc/_ps/admin/api-settings-p.php:197
|
2713 |
msgid "TimeLine"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: core/admin/wpbc-toolbar-tiny.php:244 core/lib/wpbc_all_translations.php:
|
2717 |
msgid "Resources Selection"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:
|
2721 |
-
#: core/wpbc-functions.php:2011 inc/_bl/admin/page-search.php:
|
2722 |
-
#: inc/_bl/biz_l.php:
|
2723 |
msgid "Search"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:
|
2727 |
msgid "Only Form"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:
|
2731 |
#: inc/_ps/form/class-wpbc-form-help.php:754
|
2732 |
msgid "Other"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: core/admin/wpbc-toolbar-tiny.php:298 core/lib/wpbc_all_translations.php:
|
2736 |
msgid "Insert into page"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
#: core/admin/wpbc-toolbar-tiny.php:371 core/admin/wpbc-toolbar-tiny.php:1151
|
2740 |
-
#: core/lib/wpbc_all_translations.php:
|
2741 |
#: inc/_ps/p-toolbar.php:736
|
2742 |
msgid "Booking resources"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: core/admin/wpbc-toolbar-tiny.php:372 core/lib/wpbc_all_translations.php:
|
2746 |
msgid "Select booking resources. Please use CTRL to select multiple booking resources."
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:
|
2750 |
#: js/wpbc-gutenberg.js:734
|
2751 |
msgid "View mode"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: core/admin/wpbc-toolbar-tiny.php:407 core/lib/wpbc_all_translations.php:
|
2755 |
msgid "Select type of view format"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
#: core/admin/wpbc-toolbar-tiny.php:429 core/admin/wpbc-toolbar-tiny.php:438
|
2759 |
-
#: core/admin/wpbc-toolbars.php:785 core/lib/wpbc_all_translations.php:
|
2760 |
msgid "All bookings"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#: core/admin/wpbc-toolbar-tiny.php:461 core/lib/wpbc_all_translations.php:
|
2764 |
msgid "Select number of months to scroll after loading"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: core/admin/wpbc-toolbar-tiny.php:482 core/lib/wpbc_all_translations.php:
|
2768 |
#: js/wpbc-gutenberg.js:740
|
2769 |
msgid "Number of days to scroll"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: core/admin/wpbc-toolbar-tiny.php:483 core/lib/wpbc_all_translations.php:
|
2773 |
msgid "Select number of days to scroll after loading"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
#: core/admin/wpbc-toolbar-tiny.php:503 core/admin/wpbc-toolbars.php:1503
|
2777 |
-
#: core/lib/wpbc_all_translations.php:
|
2778 |
msgid "Start Date"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: core/admin/wpbc-toolbar-tiny.php:581 core/lib/wpbc_all_translations.php:
|
2782 |
msgid "Select start date"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
#: core/admin/wpbc-toolbar-tiny.php:674 core/admin/wpbc-toolbar-tiny.php:917
|
2786 |
#: core/admin/wpbc-toolbar-tiny.php:1591 core/admin/wpbc-toolbar-tiny.php:1783
|
2787 |
-
#: core/lib/wpbc_all_translations.php:
|
2788 |
#: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:937
|
2789 |
#: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:562 js/wpbc-gutenberg.js:638
|
2790 |
#: js/wpbc-gutenberg.js:896 js/wpbc-gutenberg.js:1261
|
@@ -2793,82 +2706,82 @@ msgstr ""
|
|
2793 |
|
2794 |
#: core/admin/wpbc-toolbar-tiny.php:675 core/admin/wpbc-toolbar-tiny.php:918
|
2795 |
#: core/admin/wpbc-toolbar-tiny.php:1592 core/admin/wpbc-toolbar-tiny.php:1784
|
2796 |
-
#: core/lib/wpbc_all_translations.php:
|
2797 |
msgid "Select booking resource"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: core/admin/wpbc-toolbar-tiny.php:699 core/admin/wpbc-toolbar-tiny.php:1200
|
2801 |
-
#: core/admin/wpbc-toolbar-tiny.php:1616 core/lib/wpbc_all_translations.php:
|
2802 |
#: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
|
2803 |
msgid "Select default custom booking form"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
#: core/admin/wpbc-toolbar-tiny.php:710 core/admin/wpbc-toolbar-tiny.php:940
|
2807 |
#: core/admin/wpbc-toolbar-tiny.php:1288 core/admin/wpbc-toolbars.php:1618
|
2808 |
-
#: core/lib/wpbc_all_translations.php:
|
2809 |
#: inc/_ps/wpbc-booking-select-widget.php:201
|
2810 |
msgid "Visible months"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
#: core/admin/wpbc-toolbar-tiny.php:711 core/admin/wpbc-toolbar-tiny.php:941
|
2814 |
-
#: core/admin/wpbc-toolbar-tiny.php:1289 core/lib/wpbc_all_translations.php:
|
2815 |
msgid "Select number of month to show for calendar."
|
2816 |
msgstr ""
|
2817 |
|
2818 |
#: core/admin/wpbc-toolbar-tiny.php:731 core/admin/wpbc-toolbar-tiny.php:961
|
2819 |
-
#: core/admin/wpbc-toolbar-tiny.php:1307 core/lib/wpbc_all_translations.php:
|
2820 |
msgid "Start month:"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
#: core/admin/wpbc-toolbar-tiny.php:789 core/admin/wpbc-toolbar-tiny.php:1019
|
2824 |
-
#: core/admin/wpbc-toolbar-tiny.php:1365 core/lib/wpbc_all_translations.php:
|
2825 |
msgid "Select start month of calendar"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
#: core/admin/wpbc-toolbar-tiny.php:796 core/admin/wpbc-toolbar-tiny.php:1026
|
2829 |
-
#: core/admin/wpbc-toolbar-tiny.php:1258 core/lib/wpbc_all_translations.php:
|
2830 |
msgid "Show advanced settings"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
#: core/admin/wpbc-toolbar-tiny.php:797 core/admin/wpbc-toolbar-tiny.php:1027
|
2834 |
-
#: core/admin/wpbc-toolbar-tiny.php:1259 core/lib/wpbc_all_translations.php:
|
2835 |
msgid "Hide advanced settings"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
#: core/admin/wpbc-toolbar-tiny.php:807 core/admin/wpbc-toolbar-tiny.php:1037
|
2839 |
-
#: core/admin/wpbc-toolbar-tiny.php:1269 core/lib/wpbc_all_translations.php:
|
2840 |
#, php-format
|
2841 |
msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
#: core/admin/wpbc-toolbar-tiny.php:808 core/admin/wpbc-toolbar-tiny.php:1038
|
2845 |
-
#: core/lib/wpbc_all_translations.php:
|
2846 |
#, php-format
|
2847 |
msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
#: core/admin/wpbc-toolbar-tiny.php:818 core/admin/wpbc-toolbar-tiny.php:1048
|
2851 |
#: core/admin/wpbc-toolbar-tiny.php:1372 core/admin/wpbc-toolbars.php:242
|
2852 |
-
#: core/lib/wpbc_all_translations.php:
|
2853 |
#: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:577
|
2854 |
#: js/wpbc-gutenberg.js:650 js/wpbc-gutenberg.js:837
|
2855 |
msgid "Options"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
#: core/admin/wpbc-toolbar-tiny.php:839 core/admin/wpbc-toolbar-tiny.php:1069
|
2859 |
-
#: core/admin/wpbc-toolbar-tiny.php:1393 core/lib/wpbc_all_translations.php:
|
2860 |
#, php-format
|
2861 |
msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
#: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:1073
|
2865 |
-
#: core/admin/wpbc-toolbar-tiny.php:1397 core/lib/wpbc_all_translations.php:
|
2866 |
msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
|
2867 |
msgstr ""
|
2868 |
|
2869 |
#: core/admin/wpbc-toolbar-tiny.php:844 core/admin/wpbc-toolbar-tiny.php:852
|
2870 |
#: core/admin/wpbc-toolbar-tiny.php:1074 core/admin/wpbc-toolbar-tiny.php:1398
|
2871 |
-
#: core/lib/wpbc_all_translations.php:
|
2872 |
#: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
|
2873 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
|
2874 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
|
@@ -2876,7 +2789,7 @@ msgid "Description"
|
|
2876 |
msgstr ""
|
2877 |
|
2878 |
#: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:1075
|
2879 |
-
#: core/admin/wpbc-toolbar-tiny.php:1399 core/lib/wpbc_all_translations.php:
|
2880 |
msgid ""
|
2881 |
"Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
|
2882 |
"to use percentage for width: 100%)"
|
@@ -2884,22 +2797,22 @@ msgstr ""
|
|
2884 |
|
2885 |
#: core/admin/wpbc-toolbar-tiny.php:846 core/admin/wpbc-toolbar-tiny.php:854
|
2886 |
#: core/admin/wpbc-toolbar-tiny.php:1076 core/admin/wpbc-toolbar-tiny.php:1400
|
2887 |
-
#: core/lib/wpbc_all_translations.php:
|
2888 |
msgid "Code Example"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: core/admin/wpbc-toolbar-tiny.php:851 core/lib/wpbc_all_translations.php:
|
2892 |
msgid ""
|
2893 |
"Specify that during certain seasons (or days of week), the specific minimum number of days must "
|
2894 |
"be booked. "
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: core/admin/wpbc-toolbar-tiny.php:853 core/lib/wpbc_all_translations.php:
|
2898 |
msgid ""
|
2899 |
"Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: core/admin/wpbc-toolbar-tiny.php:860 core/lib/wpbc_all_translations.php:
|
2903 |
#, php-format
|
2904 |
msgid ""
|
2905 |
"Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
|
@@ -2907,19 +2820,19 @@ msgid ""
|
|
2907 |
msgstr ""
|
2908 |
|
2909 |
#: core/admin/wpbc-toolbar-tiny.php:883 core/admin/wpbc-toolbar-tiny.php:1098
|
2910 |
-
#: core/lib/wpbc_all_translations.php:
|
2911 |
msgid "Aggregate booking dates from other resources"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
#: core/admin/wpbc-toolbar-tiny.php:884 core/admin/wpbc-toolbar-tiny.php:1099
|
2915 |
-
#: core/lib/wpbc_all_translations.php:
|
2916 |
msgid ""
|
2917 |
"Select booking resources, for getting booking dates from them and set such dates as unavailable "
|
2918 |
"in destination calendar."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: core/admin/wpbc-toolbar-tiny.php:1130 core/lib/wpbc_all_translations.php:
|
2922 |
-
#: inc/_bl/admin/page-search.php:
|
2923 |
#: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
|
2924 |
#: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
|
2925 |
#: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
|
@@ -2928,11 +2841,11 @@ msgstr ""
|
|
2928 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
|
2929 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
|
2930 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:875
|
2931 |
-
#: inc/gateways/
|
2932 |
msgid "Note!"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: core/admin/wpbc-toolbar-tiny.php:1131 core/lib/wpbc_all_translations.php:
|
2936 |
#, php-format
|
2937 |
msgid ""
|
2938 |
"This shortcode %s is using for selection of the booking form of specific booking resources in "
|
@@ -2940,159 +2853,159 @@ msgid ""
|
|
2940 |
msgstr ""
|
2941 |
|
2942 |
#: core/admin/wpbc-toolbar-tiny.php:1144 core/admin/wpbc-toolbars.php:1666
|
2943 |
-
#: core/lib/wpbc_all_translations.php:
|
2944 |
#: inc/_ps/wpbc-booking-select-widget.php:163
|
2945 |
msgid "All"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: core/admin/wpbc-toolbar-tiny.php:1153 core/lib/wpbc_all_translations.php:
|
2949 |
#: inc/_ps/wpbc-booking-select-widget.php:175
|
2950 |
msgid ""
|
2951 |
"Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
|
2952 |
"resources."
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: core/admin/wpbc-toolbar-tiny.php:1178 core/lib/wpbc_all_translations.php:
|
2956 |
#: inc/_ps/wpbc-booking-select-widget.php:181
|
2957 |
msgid "Preselected resource"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: core/admin/wpbc-toolbar-tiny.php:1179 core/lib/wpbc_all_translations.php:
|
2961 |
msgid "Define preselected resource."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: core/admin/wpbc-toolbar-tiny.php:1204 core/lib/wpbc_all_translations.php:
|
2965 |
#: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1222
|
2966 |
msgid "Default Form"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
#: core/admin/wpbc-toolbar-tiny.php:1220 core/admin/wpbc-toolbar-tiny.php:1229
|
2970 |
-
#: core/lib/wpbc_all_translations.php:
|
2971 |
msgid "Please select the resource:"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: core/admin/wpbc-toolbar-tiny.php:1221 core/lib/wpbc_all_translations.php:
|
2975 |
msgid "Title near your select box."
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:
|
2979 |
#: inc/_ps/wpbc-booking-select-widget.php:247
|
2980 |
msgid "First option title"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:
|
2984 |
#: inc/_ps/personal.php:535 js/wpbc-gutenberg.js:771
|
2985 |
msgid "Please Select"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:
|
2989 |
#: inc/_ps/wpbc-booking-select-widget.php:254
|
2990 |
msgid "First option in dropdown list."
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:
|
2994 |
#: inc/_ps/wpbc-booking-select-widget.php:256
|
2995 |
msgid "Please leave it empty if you want to skip it."
|
2996 |
msgstr ""
|
2997 |
|
2998 |
#: core/admin/wpbc-toolbar-tiny.php:1430 core/admin/wpbc-toolbar-tiny.php:1710
|
2999 |
-
#: core/lib/wpbc_all_translations.php:
|
3000 |
msgid "Select shortcode to insert"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:
|
3004 |
msgid "Search form"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: core/admin/wpbc-toolbar-tiny.php:1445 core/lib/wpbc_all_translations.php:
|
3008 |
-
#: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:
|
3009 |
-
#: inc/_bl/wpbc-search-availability.php:
|
3010 |
msgid "Search results"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: core/admin/wpbc-toolbar-tiny.php:1464 core/lib/wpbc_all_translations.php:
|
3014 |
msgid "Check this box to show search results on other page"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: core/admin/wpbc-toolbar-tiny.php:1481 core/lib/wpbc_all_translations.php:
|
3018 |
msgid "URL of search results:"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: core/admin/wpbc-toolbar-tiny.php:1483 core/lib/wpbc_all_translations.php:
|
3022 |
msgid "Type the URL of search results page."
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: core/admin/wpbc-toolbar-tiny.php:1500 core/lib/wpbc_all_translations.php:
|
3026 |
msgid "Title of Search results:"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
#: core/admin/wpbc-toolbar-tiny.php:1501 core/admin/wpbc-toolbar-tiny.php:1510
|
3030 |
-
#: core/lib/wpbc_all_translations.php:
|
3031 |
msgid "Result(s) Found"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:
|
3035 |
msgid "Type the title of Search results."
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:
|
3039 |
msgid "show number of search results"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: core/admin/wpbc-toolbar-tiny.php:1519 core/lib/wpbc_all_translations.php:
|
3043 |
msgid "Nothing Found Message:"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: core/admin/wpbc-toolbar-tiny.php:1521 core/lib/wpbc_all_translations.php:
|
3047 |
msgid "Type the message, when nothing found."
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: core/admin/wpbc-toolbar-tiny.php:1541 core/lib/wpbc_all_translations.php:
|
3051 |
msgid "Search only for users:"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: core/admin/wpbc-toolbar-tiny.php:1543 core/lib/wpbc_all_translations.php:
|
3055 |
msgid ""
|
3056 |
"Type IDs of the users (separated by comma \",\") for searching availability only for these "
|
3057 |
"users, or leave it blank for searching for all users."
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: core/admin/wpbc-toolbar-tiny.php:1563 core/lib/wpbc_all_translations.php:
|
3061 |
#, php-format
|
3062 |
msgid ""
|
3063 |
"This shortcode %s is using for showing the search results at specific page, if the search form "
|
3064 |
"is submit showing the search results at different page"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#: core/admin/wpbc-toolbar-tiny.php:1625 core/lib/wpbc_all_translations.php:
|
3068 |
msgid "date"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#: core/admin/wpbc-toolbar-tiny.php:1685 core/lib/wpbc_all_translations.php:
|
3072 |
msgid "Define date for booking"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
-
#: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:
|
3076 |
#: inc/_ps/p-toolbar.php:237
|
3077 |
msgid "Edit Booking"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: core/admin/wpbc-toolbar-tiny.php:1726 core/lib/wpbc_all_translations.php:
|
3081 |
msgid "Show listing of customer bookings"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
-
#: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:
|
3085 |
msgid "Show info about Booking Resource"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:
|
3089 |
#, php-format
|
3090 |
msgid ""
|
3091 |
"This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
|
3092 |
"%s or make %spayment%s after receiving an admin email payment request"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
-
#: core/admin/wpbc-toolbar-tiny.php:1746 core/lib/wpbc_all_translations.php:
|
3096 |
#, php-format
|
3097 |
msgid ""
|
3098 |
"The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
|
@@ -3100,220 +3013,220 @@ msgid ""
|
|
3100 |
msgstr ""
|
3101 |
|
3102 |
#: core/admin/wpbc-toolbar-tiny.php:1747 core/admin/wpbc-toolbar-tiny.php:1763
|
3103 |
-
#: core/lib/wpbc_all_translations.php:
|
3104 |
#, php-format
|
3105 |
msgid "Email templates, which use shortcodes: %s, will be linked to this page"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
-
#: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:
|
3109 |
#, php-format
|
3110 |
msgid ""
|
3111 |
"This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: core/admin/wpbc-toolbar-tiny.php:1762 core/lib/wpbc_all_translations.php:
|
3115 |
#, php-format
|
3116 |
msgid ""
|
3117 |
"The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
|
3118 |
"settings page%s must link to this page"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:
|
3122 |
#, php-format
|
3123 |
msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:
|
3127 |
msgid "Trick"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: core/admin/wpbc-toolbar-tiny.php:1805 core/lib/wpbc_all_translations.php:
|
3131 |
#: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
|
3132 |
#: inc/_ps/admin/br-table-import-gcal-p.php:63
|
3133 |
msgid "Capacity"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: core/admin/wpbc-toolbar-tiny.php:1811 core/lib/wpbc_all_translations.php:
|
3137 |
msgid "Select type of info to show."
|
3138 |
msgstr ""
|
3139 |
|
3140 |
#: core/admin/wpbc-toolbar-tiny.php:2121 core/admin/wpbc-toolbar-tiny.php:2164
|
3141 |
#: core/admin/wpbc-toolbar-tiny.php:2248 core/admin/wpbc-toolbar-tiny.php:2337
|
3142 |
-
#: core/lib/wpbc_all_translations.php:
|
3143 |
msgid "No booking resources"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:
|
3147 |
msgid "Filters"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: core/admin/wpbc-toolbars.php:350 core/lib/wpbc_all_translations.php:
|
3151 |
msgid "Expand Advanced Toolbar"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: core/admin/wpbc-toolbars.php:357 core/lib/wpbc_all_translations.php:
|
3155 |
msgid "Collapse Advanced Toolbar"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: core/admin/wpbc-toolbars.php:379 core/lib/wpbc_all_translations.php:
|
3159 |
msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: core/admin/wpbc-toolbars.php:380 core/lib/wpbc_all_translations.php:
|
3163 |
msgid "Emails sending"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: core/admin/wpbc-toolbars.php:405 core/lib/wpbc_all_translations.php:
|
3167 |
msgid "Booking ID"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
#: core/admin/wpbc-toolbars.php:408 core/admin/wpbc-toolbars.php:2241
|
3171 |
-
#: core/lib/wpbc_all_translations.php:
|
3172 |
msgid "Go"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: core/admin/wpbc-toolbars.php:442 core/lib/wpbc_all_translations.php:
|
3176 |
msgid "Technical Support"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: core/admin/wpbc-toolbars.php:444 core/lib/wpbc_all_translations.php:
|
3180 |
msgid "About Booking Calendar"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
#: core/admin/wpbc-toolbars.php:511 core/admin/wpbc-toolbars.php:691
|
3184 |
#: core/admin/wpbc-toolbars.php:896 core/admin/wpbc-toolbars.php:1516
|
3185 |
-
#: core/lib/wpbc_all_translations.php:
|
3186 |
msgid "Apply"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: core/admin/wpbc-toolbars.php:512 core/lib/wpbc_all_translations.php:
|
3190 |
msgid "Refresh booking listing"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: core/admin/wpbc-toolbars.php:526 core/lib/wpbc_all_translations.php:
|
3194 |
msgid "Reset filter to default values"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
#: core/admin/wpbc-toolbars.php:552 core/admin/wpbc-toolbars.php:767
|
3198 |
-
#: core/lib/wpbc_all_translations.php:
|
3199 |
msgid "Any"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
#: core/admin/wpbc-toolbars.php:573 core/admin/wpbc-toolbars.php:807
|
3203 |
-
#: core/lib/wpbc_all_translations.php:
|
3204 |
msgid "week"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
#: core/admin/wpbc-toolbars.php:574 core/admin/wpbc-toolbars.php:808
|
3208 |
-
#: core/lib/wpbc_all_translations.php:
|
3209 |
msgid "weeks"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
#: core/admin/wpbc-toolbars.php:575 core/admin/wpbc-toolbars.php:809
|
3213 |
-
#: core/lib/wpbc_all_translations.php:
|
3214 |
msgid "month"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
#: core/admin/wpbc-toolbars.php:576 core/admin/wpbc-toolbars.php:577
|
3218 |
#: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:810
|
3219 |
#: core/admin/wpbc-toolbars.php:811 core/admin/wpbc-toolbars.php:812
|
3220 |
-
#: core/lib/wpbc_all_translations.php:
|
3221 |
msgid "months"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
#: core/admin/wpbc-toolbars.php:586 core/admin/wpbc-toolbars.php:821
|
3225 |
-
#: core/lib/wpbc_all_translations.php:
|
3226 |
msgid "Filter bookings by booking dates"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: core/admin/wpbc-toolbars.php:590 core/lib/wpbc_all_translations.php:
|
3230 |
msgid "Current dates"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
#: core/admin/wpbc-toolbars.php:591 core/admin/wpbc-toolbars.php:825
|
3234 |
-
#: core/lib/wpbc_all_translations.php:
|
3235 |
msgid "Today"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:
|
3239 |
msgid "Previous dates"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
#: core/admin/wpbc-toolbars.php:593 core/admin/wpbc-toolbars.php:826
|
3243 |
-
#: core/lib/wpbc_all_translations.php:
|
3244 |
msgid "All dates"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
-
#: core/admin/wpbc-toolbars.php:595 core/lib/wpbc_all_translations.php:
|
3248 |
msgid "Today check in/out"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
-
#: core/admin/wpbc-toolbars.php:596 core/lib/wpbc_all_translations.php:
|
3252 |
msgid "Check In - Tomorrow"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: core/admin/wpbc-toolbars.php:597 core/lib/wpbc_all_translations.php:
|
3256 |
msgid "Check Out - Tomorrow"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
-
#: core/admin/wpbc-toolbars.php:602 core/lib/wpbc_all_translations.php:
|
3260 |
#: core/wpbc-functions.php:2521
|
3261 |
msgid "Next"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
#: core/admin/wpbc-toolbars.php:626 core/admin/wpbc-toolbars.php:831
|
3265 |
-
#: core/lib/wpbc_all_translations.php:
|
3266 |
msgid "Prior"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
#: core/admin/wpbc-toolbars.php:666 core/admin/wpbc-toolbars.php:871
|
3270 |
-
#: core/lib/wpbc_all_translations.php:
|
3271 |
msgid "Check-in"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
#: core/admin/wpbc-toolbars.php:678 core/admin/wpbc-toolbars.php:883
|
3275 |
-
#: core/lib/wpbc_all_translations.php:
|
3276 |
msgid "Check-out"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
-
#: core/admin/wpbc-toolbars.php:750 core/lib/wpbc_all_translations.php:
|
3280 |
msgid "Order by"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#: core/admin/wpbc-toolbars.php:764 core/lib/wpbc_all_translations.php:
|
3284 |
msgid "Exist"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
-
#: core/admin/wpbc-toolbars.php:765
|
3288 |
-
msgid "In Trash"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
-
#: core/admin/wpbc-toolbars.php:786 core/lib/wpbc_all_translations.php:
|
3292 |
msgid "New bookings"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: core/admin/wpbc-toolbars.php:823 core/lib/wpbc_all_translations.php:
|
3296 |
msgid "Creation"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: core/admin/wpbc-toolbars.php:950 core/lib/wpbc_all_translations.php:
|
3300 |
msgid "Approve selected bookings"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: core/admin/wpbc-toolbars.php:965 core/lib/wpbc_all_translations.php:
|
3304 |
msgid "Set selected bookings as pending"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: core/admin/wpbc-toolbars.php:995
|
3308 |
-
msgid "
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#: core/admin/wpbc-toolbars.php:1012 core/lib/wpbc_all_translations.php:
|
3312 |
msgid "Restore selected bookings"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: core/admin/wpbc-toolbars.php:1028 core/lib/wpbc_all_translations.php:
|
3316 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:
|
3317 |
#: inc/_bl/admin/page-coupons.php:222 inc/_bm/admin/page-availability.php:240
|
3318 |
#: inc/_bm/admin/page-availability.php:246 inc/_bm/admin/page-cost-valuation.php:567
|
3319 |
#: inc/_bm/admin/page-cost.php:223 inc/_bm/admin/page-cost.php:233
|
@@ -3322,365 +3235,462 @@ msgstr ""
|
|
3322 |
msgid "Delete"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: core/admin/wpbc-toolbars.php:1029 core/lib/wpbc_all_translations.php:
|
3326 |
msgid "Delete selected bookings"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: core/admin/wpbc-toolbars.php:1031 core/lib/wpbc_all_translations.php:
|
3330 |
-
#: core/sync/wpbc-gcal-class.php:
|
3331 |
msgid "Do you really want to delete selected booking(s) ?"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: core/admin/wpbc-toolbars.php:1047 core/lib/wpbc_all_translations.php:
|
3335 |
msgid "Reason of cancellation"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: core/admin/wpbc-toolbars.php:1075 core/admin/wpbc-toolbars.php:1076 core/lib/wpbc-ajax.php:
|
|
|
3339 |
msgid "Empty Trash"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: core/admin/wpbc-toolbars.php:1106 core/lib/wpbc_all_translations.php:
|
3343 |
msgid "Read All"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: core/admin/wpbc-toolbars.php:1107 core/lib/wpbc_all_translations.php:
|
3347 |
msgid "Mark as read all bookings"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: core/admin/wpbc-toolbars.php:1120 core/lib/wpbc_all_translations.php:
|
3351 |
msgid "Read"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: core/admin/wpbc-toolbars.php:1121 core/lib/wpbc_all_translations.php:
|
3355 |
msgid "Mark as read selected bookings"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: core/admin/wpbc-toolbars.php:1135 core/lib/wpbc_all_translations.php:
|
3359 |
msgid "Unread"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: core/admin/wpbc-toolbars.php:1136 core/lib/wpbc_all_translations.php:
|
3363 |
msgid "Mark as Unread selected bookings"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
#: core/admin/wpbc-toolbars.php:1185 core/admin/wpbc-toolbars.php:1245
|
3367 |
-
#: core/lib/wpbc_all_translations.php:
|
3368 |
msgid "Show day"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
#: core/admin/wpbc-toolbars.php:1202 core/admin/wpbc-toolbars.php:1259
|
3372 |
-
#: core/lib/wpbc_all_translations.php:
|
3373 |
msgid "Show week"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
#: core/admin/wpbc-toolbars.php:1219 core/admin/wpbc-toolbars.php:1273
|
3377 |
-
#: core/lib/wpbc_all_translations.php:
|
3378 |
msgid "Show month"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: core/admin/wpbc-toolbars.php:1287 core/lib/wpbc_all_translations.php:
|
3382 |
msgid "Show 2 months"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
#: core/admin/wpbc-toolbars.php:1344 core/admin/wpbc-toolbars.php:1358
|
3386 |
-
#: core/admin/wpbc-toolbars.php:1405 core/lib/wpbc_all_translations.php:
|
3387 |
msgid "Previous 4 weeks"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
#: core/admin/wpbc-toolbars.php:1345 core/admin/wpbc-toolbars.php:1359
|
3391 |
-
#: core/admin/wpbc-toolbars.php:1406 core/lib/wpbc_all_translations.php:
|
3392 |
msgid "Previous week"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
#: core/admin/wpbc-toolbars.php:1346 core/admin/wpbc-toolbars.php:1360
|
3396 |
-
#: core/admin/wpbc-toolbars.php:1407 core/lib/wpbc_all_translations.php:
|
3397 |
msgid "Current week"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
#: core/admin/wpbc-toolbars.php:1347 core/admin/wpbc-toolbars.php:1361
|
3401 |
-
#: core/admin/wpbc-toolbars.php:1408 core/lib/wpbc_all_translations.php:
|
3402 |
msgid "Next week"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
#: core/admin/wpbc-toolbars.php:1348 core/admin/wpbc-toolbars.php:1362
|
3406 |
-
#: core/admin/wpbc-toolbars.php:1409 core/lib/wpbc_all_translations.php:
|
3407 |
msgid "Next 4 weeks"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
#: core/admin/wpbc-toolbars.php:1372 core/admin/wpbc-toolbars.php:1422
|
3411 |
-
#: core/admin/wpbc-toolbars.php:1437 core/lib/wpbc_all_translations.php:
|
3412 |
msgid "Previous 3 months"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
#: core/admin/wpbc-toolbars.php:1373 core/admin/wpbc-toolbars.php:1423
|
3416 |
-
#: core/admin/wpbc-toolbars.php:1438 core/lib/wpbc_all_translations.php:
|
3417 |
msgid "Previous month"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
#: core/admin/wpbc-toolbars.php:1374 core/admin/wpbc-toolbars.php:1424
|
3421 |
-
#: core/admin/wpbc-toolbars.php:1439 core/lib/wpbc_all_translations.php:
|
3422 |
msgid "Current month"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
#: core/admin/wpbc-toolbars.php:1375 core/admin/wpbc-toolbars.php:1425
|
3426 |
-
#: core/admin/wpbc-toolbars.php:1440 core/lib/wpbc_all_translations.php:
|
3427 |
msgid "Next month"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
#: core/admin/wpbc-toolbars.php:1376 core/admin/wpbc-toolbars.php:1426
|
3431 |
-
#: core/admin/wpbc-toolbars.php:1441 core/lib/wpbc_all_translations.php:
|
3432 |
msgid "Next 3 months"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:
|
3436 |
msgid "Previous 7 days"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:
|
3440 |
msgid "Previous day"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
-
#: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:
|
3444 |
msgid "Current day"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
-
#: core/admin/wpbc-toolbars.php:1393 core/lib/wpbc_all_translations.php:
|
3448 |
msgid "Next day"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
-
#: core/admin/wpbc-toolbars.php:1394 core/lib/wpbc_all_translations.php:
|
3452 |
msgid "Next 7 days"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: core/admin/wpbc-toolbars.php:1665 core/lib/wpbc_all_translations.php:
|
3456 |
msgid "Number of months in one row"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: core/admin/wpbc-toolbars.php:1710 core/lib/wpbc_all_translations.php:
|
3460 |
msgid "Calendar width"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: core/admin/wpbc-toolbars.php:1758 core/lib/wpbc_all_translations.php:
|
3464 |
msgid "Calendar cell height"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
#: core/admin/wpbc-toolbars.php:1867 core/admin/wpbc-toolbars.php:1868
|
3468 |
-
#: core/lib/wpbc_all_translations.php:
|
3469 |
msgid "Send email notification to customer about this operation"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
#: core/admin/wpbc-toolbars.php:1910 core/admin/wpbc-toolbars.php:1911
|
3473 |
-
#: core/lib/wpbc_all_translations.php:
|
3474 |
msgid "Add to Google Calendar"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
#: core/admin/wpbc-toolbars.php:2101 core/lib/wpbc_all_translations.php:
|
3478 |
-
#: inc/gateways/page-gateways.php:
|
3479 |
msgid "Total"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: core/admin/wpbc-toolbars.php:2237 core/lib/wpbc_all_translations.php:
|
3483 |
msgid "ID or Title"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: core/any/api-emails.php:507 core/lib/wpbc_all_translations.php:
|
3487 |
msgid "Email copy to"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
#: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
|
3491 |
-
#: core/lib/wpbc_all_translations.php:
|
3492 |
msgid "Dismiss"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:
|
3496 |
#, php-format
|
3497 |
msgid ""
|
3498 |
"Probably you updated your paid version of Booking Calendar by free version or update process "
|
3499 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: core/class/wpbc-class-welcome.php:
|
3503 |
-
#: core/lib/wpbc_all_translations.php:
|
3504 |
msgid "Purchase"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
#: core/class/wpbc-class-welcome.php:
|
3508 |
-
#: core/lib/wpbc_all_translations.php:
|
3509 |
msgid "Upgrade Now"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
#: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:67
|
3513 |
-
#: core/lib/wpbc-ajax.php:82 core/lib/wpbc_all_translations.php:
|
3514 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:1113
|
3515 |
#, php-format
|
3516 |
msgid ""
|
3517 |
"%sError!%s Request do not pass security check! Please refresh the page and try one more time."
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: core/lib/wpbc-ajax.php:138 core/lib/wpbc_all_translations.php:
|
3521 |
msgid "Set as Unread"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:
|
3525 |
msgid "Set as Read"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: core/lib/wpbc-ajax.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3529 |
msgid "Set as Approved"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: core/lib/wpbc-ajax.php:
|
3533 |
msgid "Set as Pending"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: core/lib/wpbc-ajax.php:
|
3537 |
msgid "Reason for cancellation here"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: core/lib/wpbc-ajax.php:
|
3541 |
msgid "Reason of cancellation here"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: core/lib/wpbc-ajax.php:
|
3545 |
msgid "Moved to trash"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#: core/lib/wpbc-ajax.php:
|
3549 |
msgid "Restored"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: core/lib/wpbc-ajax.php:
|
3553 |
#, php-format
|
3554 |
msgid "Deleted %d bookings from trash"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
-
#: core/lib/wpbc-ajax.php:
|
3558 |
msgid "Saved"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
-
#: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:
|
3562 |
msgid "The code you entered is incorrect"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
-
#: core/lib/wpbc-booking-new.php:
|
3566 |
msgid "Updating..."
|
3567 |
msgstr ""
|
3568 |
|
3569 |
-
#: core/lib/wpbc-booking-new.php:
|
3570 |
-
#: inc/_ps/personal.php:
|
3571 |
msgid "Updated successfully"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: core/lib/wpbc-booking-new.php:
|
3575 |
msgid "Error!"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: core/lib/wpbc-booking-new.php:
|
3579 |
msgid ""
|
3580 |
"Probably these date(s) just was booking by other visitor. Please reload this page and make "
|
3581 |
"booking again."
|
3582 |
msgstr ""
|
3583 |
|
3584 |
-
#: core/lib/wpbc_all_translations.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3585 |
msgid ""
|
3586 |
"Check the box, if you want to use syntax highlighter during customization booking form at "
|
3587 |
"Settings - Form page."
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: core/lib/wpbc_all_translations.php:
|
3591 |
msgid "Show 3 months"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: core/lib/wpbc_all_translations.php:
|
3595 |
msgid "Show year"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: core/lib/wpbc_all_translations.php:
|
3599 |
msgid "Number of months"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: core/lib/wpbc_all_translations.php:
|
3603 |
msgid "Paid OK"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: core/lib/wpbc_all_translations.php:
|
3607 |
msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: core/lib/wpbc_all_translations.php:
|
3611 |
#, php-format
|
3612 |
msgid ""
|
3613 |
"Probabaly you updated your paid version of Booking Calendar by free version or update process "
|
3614 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: core/lib/wpbc_all_translations.php:
|
3618 |
msgid "Copy to admin"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
-
#: core/lib/wpbc_all_translations.php:
|
3622 |
msgid "Enable / disable sending copy of this email notification to admin"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
-
#: core/lib/wpbc_all_translations.php:
|
3626 |
msgid "Customization of email template, which is sending to Visitor after approval of booking"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
-
#: core/lib/wpbc_all_translations.php:
|
3630 |
msgid "Email is sending to Visitor after Approval of booking."
|
3631 |
msgstr ""
|
3632 |
|
3633 |
-
#: core/lib/wpbc_all_translations.php:
|
3634 |
msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
-
#: core/lib/wpbc_all_translations.php:
|
3638 |
msgid "Email is sending to Visitor after Deleting of booking."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#: core/lib/wpbc_all_translations.php:
|
3642 |
msgid ""
|
3643 |
"Customization of email template, which is sending to Visitor, when booking status is set to "
|
3644 |
"Pending"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
-
#: core/lib/wpbc_all_translations.php:
|
3648 |
msgid "Email is sending to Visitor after booking set as Pending."
|
3649 |
msgstr ""
|
3650 |
|
3651 |
-
#: core/lib/wpbc_all_translations.php:
|
3652 |
msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
|
3653 |
msgstr ""
|
3654 |
|
3655 |
-
#: core/lib/wpbc_all_translations.php:
|
3656 |
msgid "Confgure ULR feed(s) at this settings page."
|
3657 |
msgstr ""
|
3658 |
|
3659 |
-
#: core/lib/wpbc_all_translations.php:
|
3660 |
msgid "Reject"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
-
#: core/lib/wpbc_all_translations.php:
|
3664 |
msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
|
3665 |
msgstr ""
|
3666 |
|
3667 |
-
#: core/lib/wpbc_all_translations.php:
|
3668 |
msgid "Google Calendar"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
-
#: core/lib/wpbc_all_translations.php:
|
3672 |
msgid "Events Import"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: core/lib/wpbc_all_translations.php:
|
3676 |
msgid "Import Settings"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#: core/lib/wpbc_all_translations.php:
|
3680 |
msgid "Customization of synchronization with Google Calendar"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#: core/lib/wpbc_all_translations.php:
|
3684 |
#: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
|
3685 |
#: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
|
3686 |
#: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
|
@@ -3688,79 +3698,78 @@ msgstr ""
|
|
3688 |
#: inc/_bm/admin/page-seasons.php:826 inc/_bm/admin/page-seasons.php:828 inc/_bs/lib_s.php:344
|
3689 |
#: inc/_ps/hash/wpbc-hash-functions.php:67 inc/_ps/hash/wpbc-hash-functions.php:106
|
3690 |
#: inc/_ps/hash/wpbc-hash-functions.php:134 inc/_ps/hash/wpbc-hash-functions.php:162
|
3691 |
-
#: inc/gateways/
|
3692 |
-
#: inc/gateways/
|
3693 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
3694 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
3695 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1093
|
3696 |
msgid "Error"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: core/lib/wpbc_all_translations.php:
|
3700 |
msgid "does not exist"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: core/lib/wpbc_all_translations.php:
|
3704 |
msgid "Calendar is loading..."
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: core/lib/wpbc_all_translations.php:
|
3708 |
-
#: core/lib/wpdev-booking-class.php:745 inc/_ps/personal.php:
|
3709 |
msgid "Wrong booking hash in URL (probably expired)"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: core/lib/wpbc_all_translations.php:
|
3713 |
msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: core/lib/wpbc_all_translations.php:
|
3717 |
#, php-format
|
3718 |
msgid ""
|
3719 |
"%sWarning! Booking calendar for this booking resource are already at the page, please check more "
|
3720 |
"about this issue at %sthis page%s"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: core/lib/wpbc_all_translations.php:
|
3724 |
#: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
|
3725 |
msgid "You need to use special shortcode [bookingedit] for booking editing."
|
3726 |
msgstr ""
|
3727 |
|
3728 |
-
#: core/lib/wpbc_all_translations.php:
|
3729 |
-
#: core/lib/wpdev-booking-class.php:
|
3730 |
#: inc/_ps/hash/wpbc-hash-functions.php:106 inc/_ps/hash/wpbc-hash-functions.php:134
|
3731 |
-
#: inc/_ps/hash/wpbc-hash-functions.php:162 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
3732 |
msgid "Wrong booking hash in URL. Probably hash is expired."
|
3733 |
msgstr ""
|
3734 |
|
3735 |
-
#: core/lib/wpbc_all_translations.php:
|
3736 |
-
#: core/lib/wpdev-booking-class.php:
|
3737 |
msgid "You do not set any parameters for booking editing"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
-
#: core/lib/wpbc_all_translations.php:
|
3741 |
-
#: core/lib/wpdev-booking-class.php:
|
3742 |
#, php-format
|
3743 |
msgid "Please check more about configuration at %sthis page%s"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: core/lib/wpbc_all_translations.php:
|
3747 |
msgid "Booking form with calendar"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: core/lib/wpbc_all_translations.php:
|
3751 |
msgid "Only availability calendar"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: core/lib/wpbc_all_translations.php:
|
3755 |
msgid "Footer"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: core/lib/wpbc_all_translations.php:
|
3759 |
#, php-format
|
3760 |
msgid "Example: %sMake booking here%s"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: core/lib/wpbc_all_translations.php:
|
3764 |
#: inc/_ps/wpbc-booking-select-widget.php:263
|
3765 |
#, php-format
|
3766 |
msgid ""
|
@@ -3768,103 +3777,103 @@ msgid ""
|
|
3768 |
"at the same page, then the last will not be visible."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: core/lib/wpbc_all_translations.php:
|
3772 |
#, php-format
|
3773 |
msgid "%sSeveral widgets are supported at %spaid versions%s."
|
3774 |
msgstr ""
|
3775 |
|
3776 |
-
#: core/lib/wpbc_all_translations.php:
|
3777 |
msgid "Importing Feed"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: core/lib/wpbc_all_translations.php:
|
3781 |
msgid "Data Parsing"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: core/lib/wpbc_all_translations.php:
|
3785 |
msgid ""
|
3786 |
"Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
|
3787 |
"correct."
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: core/lib/wpbc_all_translations.php:
|
3791 |
msgid "The feed could not be found (404). Please ensure your feed URL is correct."
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: core/lib/wpbc_all_translations.php:
|
3795 |
msgid ""
|
3796 |
"Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
|
3797 |
"calendar."
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: core/lib/wpbc_all_translations.php:
|
3801 |
#, php-format
|
3802 |
msgid ""
|
3803 |
"The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: core/lib/wpbc_all_translations.php:
|
3807 |
-
#: core/sync/wpbc-gcal-class.php:
|
3808 |
msgid "GID"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: core/lib/wpbc_all_translations.php:
|
3812 |
msgid "Selection"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: core/lib/wpbc_all_translations.php:
|
3816 |
msgid "Location:"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: core/lib/wpbc_all_translations.php:
|
3820 |
msgid "Reload page"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: core/lib/wpbc_all_translations.php:
|
3824 |
msgid "Delete selected booking(s)"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: core/lib/wpbc_all_translations.php:
|
3828 |
msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: core/lib/wpbc_all_translations.php:
|
3832 |
msgid "Retrieve Google Calendar Events "
|
3833 |
msgstr ""
|
3834 |
|
3835 |
-
#: core/lib/wpbc_all_translations.php:
|
3836 |
msgid "Please configure settings for import Google Calendar events"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
-
#: core/lib/wpbc_all_translations.php:
|
3840 |
msgid "Configure"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: core/lib/wpbc_all_translations.php:
|
3844 |
#, php-format
|
3845 |
msgid "%s Found %s not indexed bookings %s"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: core/lib/wpbc_all_translations.php:
|
3849 |
#, php-format
|
3850 |
msgid "%s Finish getting sort dates. %s"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: core/lib/wpbc_all_translations.php:
|
3854 |
#, php-format
|
3855 |
msgid "Updated booking: %s"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: core/lib/wpbc_all_translations.php:
|
3859 |
msgid "Booking form"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: core/lib/wpbc_all_translations.php:
|
3863 |
#: inc/_ps/admin/page-email-edit.php:310
|
3864 |
msgid "The reservation has been modified"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
-
#: core/lib/wpbc_all_translations.php:
|
3868 |
#: inc/_ps/admin/page-email-edit.php:324
|
3869 |
#, php-format
|
3870 |
msgid ""
|
@@ -3872,23 +3881,23 @@ msgid ""
|
|
3872 |
"Thank you, %s"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
-
#: core/lib/wpbc_all_translations.php:
|
3876 |
#: inc/_bs/admin/api-settings-s.php:376
|
3877 |
msgid "Booked Times:"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: core/lib/wpbc_all_translations.php:
|
3881 |
msgid ""
|
3882 |
"This booking canceled because we did not receive payment and the administrator did not approve "
|
3883 |
"it."
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: core/lib/wpbc_all_translations.php:
|
3887 |
#: inc/_bs/admin/page-email-payment.php:314
|
3888 |
msgid "You need to make payment for this reservation"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#: core/lib/wpbc_all_translations.php:
|
3892 |
#: inc/_bs/admin/page-email-payment.php:328
|
3893 |
#, php-format
|
3894 |
msgid ""
|
@@ -3896,426 +3905,426 @@ msgid ""
|
|
3896 |
"Thank you, %s"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: core/lib/wpbc_all_translations.php:
|
3900 |
#: inc/_bm/admin/api-settings-m.php:247
|
3901 |
msgid "Cost: "
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: core/lib/wpbc_all_translations.php:
|
3905 |
#: inc/_bl/admin/api-settings-l.php:75
|
3906 |
msgid "Available: "
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: core/lib/wpbc_all_translations.php:
|
3910 |
msgid "Booking system"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: core/lib/wpbc_all_translations.php:
|
3914 |
msgid ""
|
3915 |
"You can use (in subject and content of email template) any shortcodes, which you used in the "
|
3916 |
"booking form. Use the shortcodes in the same way as you used them in the content form at "
|
3917 |
"Settings Fields page."
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: core/lib/wpbc_all_translations.php:
|
3921 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
|
3922 |
msgid "You can use following shortcodes in content of this template"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: core/lib/wpbc_all_translations.php:
|
3926 |
-
#: inc/gateways/page-gateways.php:
|
3927 |
#, php-format
|
3928 |
msgid ""
|
3929 |
"%s - inserting data info about the booking, which you configured in the content form at Settings "
|
3930 |
"Fields page"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: core/lib/wpbc_all_translations.php:
|
3934 |
#, php-format
|
3935 |
msgid "%s - inserting data info about the booking"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: core/lib/wpbc_all_translations.php:
|
3939 |
#, php-format
|
3940 |
msgid "%s - inserting the dates of booking"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: core/lib/wpbc_all_translations.php:
|
3944 |
#, php-format
|
3945 |
msgid "%s - inserting check-in date (first day of reservation),"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: core/lib/wpbc_all_translations.php:
|
3949 |
#, php-format
|
3950 |
msgid "%s - inserting check-out date (last day of reservation),"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: core/lib/wpbc_all_translations.php:
|
3954 |
#, php-format
|
3955 |
msgid "%s - inserting the number of booking dates "
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: core/lib/wpbc_all_translations.php:
|
3959 |
#, php-format
|
3960 |
msgid "%s - inserting ID of booking "
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: core/lib/wpbc_all_translations.php:
|
3964 |
#, php-format
|
3965 |
msgid "%s or %s - inserting the title of the booking resource "
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: core/lib/wpbc_all_translations.php:
|
3969 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
|
3970 |
#, php-format
|
3971 |
msgid "%s - inserting the cost of booking "
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: core/lib/wpbc_all_translations.php:
|
3975 |
#, php-format
|
3976 |
msgid "%s - inserting your site URL "
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: core/lib/wpbc_all_translations.php:
|
3980 |
#, php-format
|
3981 |
msgid "%s - inserting IP address of the user who made this action "
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#: core/lib/wpbc_all_translations.php:
|
3985 |
#, php-format
|
3986 |
msgid ""
|
3987 |
"%s - inserting contents of the User-Agent: header from the current request, if there is one "
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: core/lib/wpbc_all_translations.php:
|
3991 |
#, php-format
|
3992 |
msgid "%s - inserting address of the page (if any), where visitor make this action "
|
3993 |
msgstr ""
|
3994 |
|
3995 |
-
#: core/lib/wpbc_all_translations.php:
|
3996 |
#, php-format
|
3997 |
msgid "%s - inserting date of this action "
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: core/lib/wpbc_all_translations.php:
|
4001 |
#, php-format
|
4002 |
msgid "%s - inserting time of this action "
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: core/lib/wpbc_all_translations.php:
|
4006 |
#, php-format
|
4007 |
msgid "%s - inserting moderate link of new booking "
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: core/lib/wpbc_all_translations.php:
|
4011 |
#, php-format
|
4012 |
msgid ""
|
4013 |
"%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
|
4014 |
"parameter for setting different %s of this page. Example: %s )"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: core/lib/wpbc_all_translations.php:
|
4018 |
#, php-format
|
4019 |
msgid ""
|
4020 |
"%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
|
4021 |
"%s parameter for setting different %s of this page. Example: %s )"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: core/lib/wpbc_all_translations.php:
|
4025 |
#, php-format
|
4026 |
msgid ""
|
4027 |
"%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
|
4028 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: core/lib/wpbc_all_translations.php:
|
4032 |
#, php-format
|
4033 |
msgid "%s - add the reason for booking payment, you can enter it before sending email, "
|
4034 |
msgstr ""
|
4035 |
|
4036 |
-
#: core/lib/wpbc_all_translations.php:
|
4037 |
#, php-format
|
4038 |
msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
|
4039 |
msgstr ""
|
4040 |
|
4041 |
-
#: core/lib/wpbc_all_translations.php:
|
4042 |
msgid "Configuration in several languages"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: core/lib/wpbc_all_translations.php:
|
4046 |
#, php-format
|
4047 |
msgid "%s - start new translation section, where %s - locale of translation"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: core/lib/wpbc_all_translations.php:
|
4051 |
#, php-format
|
4052 |
msgid "Example #1: %s - start French translation section"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: core/lib/wpbc_all_translations.php:
|
4056 |
#, php-format
|
4057 |
msgid "Example #2: \"%s\" - English and French translation of some message"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: core/lib/wpbc_all_translations.php:
|
4061 |
msgid "yes"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: core/lib/wpbc_all_translations.php:
|
4065 |
msgid "no"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: core/lib/wpbc_all_translations.php:
|
4069 |
-
#: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:
|
4070 |
msgid "Costs and Rates"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#: core/lib/wpbc_all_translations.php:
|
4074 |
#: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
|
4075 |
#: inc/gateways/page-gateways.php:92
|
4076 |
msgid "Advanced Cost"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: core/lib/wpbc_all_translations.php:
|
4080 |
#: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
|
4081 |
msgid "Coupons"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: core/lib/wpbc_all_translations.php:
|
4085 |
#: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
|
4086 |
msgid "Season Filters"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#: core/lib/wpbc_all_translations.php:
|
4090 |
msgid "Warning! Some error occur, during sending registration request."
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: core/lib/wpbc_all_translations.php:
|
4094 |
msgid ""
|
4095 |
"Please refresh this page and if the same error appear again contact support by email (with info "
|
4096 |
"about order number and website) for finishing the registrations"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
-
#: core/lib/wpbc_all_translations.php:
|
4100 |
#, php-format
|
4101 |
msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: core/lib/wpbc_all_translations.php:
|
4105 |
msgid "Changes saved."
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: core/lib/wpbc_all_translations.php:
|
4109 |
msgid "Click to toggle"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: core/lib/wpbc_all_translations.php:
|
4113 |
msgid "Prev"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: core/lib/wpbc_all_translations.php:
|
4117 |
msgid "We’ve assembled some links to get you started:"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: core/lib/wpbc_all_translations.php:
|
4121 |
msgid "Get Started"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: core/lib/wpbc_all_translations.php:
|
4125 |
#, php-format
|
4126 |
msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: core/lib/wpbc_all_translations.php:
|
4130 |
#, php-format
|
4131 |
msgid "or add booking calendar %sWidget%s to your sidebar."
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: core/lib/wpbc_all_translations.php:
|
4135 |
#, php-format
|
4136 |
msgid "Check %show todo%s that and what %sshortcodes%s are available."
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: core/lib/wpbc_all_translations.php:
|
4140 |
#, php-format
|
4141 |
msgid "Add new booking from your post/page or from %sAdmin Panel%s."
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: core/lib/wpbc_all_translations.php:
|
4145 |
msgid "Next Steps"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: core/lib/wpbc_all_translations.php:
|
4149 |
#, php-format
|
4150 |
msgid "Check %sBooking Listing%s page for new bookings."
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: core/lib/wpbc_all_translations.php:
|
4154 |
#, php-format
|
4155 |
msgid "Configure booking %sSettings%s."
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: core/lib/wpbc_all_translations.php:
|
4159 |
#, php-format
|
4160 |
msgid "Configure predefined set of your %sForm Fields%s."
|
4161 |
msgstr ""
|
4162 |
|
4163 |
-
#: core/lib/wpbc_all_translations.php:
|
4164 |
#, php-format
|
4165 |
msgid "Configure your predefined %sEmail Templates%s."
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: core/lib/wpbc_all_translations.php:
|
4169 |
msgid "Have a questions?"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: core/lib/wpbc_all_translations.php:
|
4173 |
#, php-format
|
4174 |
msgid "Check out our %sHelp%s"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
-
#: core/lib/wpbc_all_translations.php:
|
4178 |
#, php-format
|
4179 |
msgid "See %sFAQ%s."
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: core/lib/wpbc_all_translations.php:
|
4183 |
#, php-format
|
4184 |
msgid "Still having questions? Contact %sSupport%s."
|
4185 |
msgstr ""
|
4186 |
|
4187 |
-
#: core/lib/wpbc_all_translations.php:
|
4188 |
#, php-format
|
4189 |
msgid "Need even more functionality? Check %s higher versions %s"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: core/lib/wpbc_all_translations.php:
|
4193 |
msgid "This field is required"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: core/lib/wpbc_all_translations.php:
|
4197 |
msgid "This checkbox must be checked"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: core/lib/wpbc_all_translations.php:
|
4201 |
msgid "At least one option must be selected"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: core/lib/wpbc_all_translations.php:
|
4205 |
msgid "Incorrect email field"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: core/lib/wpbc_all_translations.php:
|
4209 |
msgid "Your emails do not match"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: core/lib/wpbc_all_translations.php:
|
4213 |
msgid "Please, select booking date(s) at Calendar."
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: core/lib/wpbc_all_translations.php:
|
4217 |
msgid "Deleting"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: core/lib/wpbc_all_translations.php:
|
4221 |
msgid "Updating"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
-
#: core/lib/wpbc_all_translations.php:
|
4225 |
msgid "Saving"
|
4226 |
msgstr ""
|
4227 |
|
4228 |
-
#: core/lib/wpbc_all_translations.php:
|
4229 |
msgid "Booking"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
-
#: core/lib/wpbc_all_translations.php:
|
4233 |
msgid "Action is not allowed!"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
-
#: core/lib/wpbc_all_translations.php:
|
4237 |
#: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
|
4238 |
-
#: inc/_bl/admin/page-search.php:
|
4239 |
#: inc/_bm/m-toolbar.php:404 inc/_ps/admin/page-settings-form.php:328
|
4240 |
#: inc/_ps/wpbc-booking-select-widget.php:230
|
4241 |
msgid "Standard"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: core/lib/wpbc_all_translations.php:
|
4245 |
#: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
|
4246 |
#: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
|
4247 |
msgid "Superior"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: core/lib/wpbc_all_translations.php:
|
4251 |
#: inc/_bs/admin/activation-s.php:93
|
4252 |
msgid "Resource #1"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#: core/lib/wpbc_all_translations.php:
|
4256 |
#: inc/_bl/admin/activation-l.php:125
|
4257 |
msgid "Presidential Suite"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
-
#: core/lib/wpbc_all_translations.php:
|
4261 |
#: inc/_bs/admin/activation-s.php:94
|
4262 |
msgid "Resource #2"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: core/lib/wpbc_all_translations.php:
|
4266 |
#: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
|
4267 |
msgid "Royal Villa"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: core/lib/wpbc_all_translations.php:
|
4271 |
#: inc/_bs/admin/activation-s.php:95
|
4272 |
msgid "Resource #3"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
-
#: core/lib/wpbc_all_translations.php:
|
4276 |
msgid ""
|
4277 |
"Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
|
4278 |
"for search results"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: core/lib/wpbc_all_translations.php:
|
4282 |
msgid ""
|
4283 |
"Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
|
4284 |
"1 search results"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#: core/lib/wpbc_all_translations.php:
|
4288 |
msgid "Show availability in tooltip"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#: core/lib/wpbc_all_translations.php:
|
4292 |
msgid ""
|
4293 |
"Check this box to display the available number of booking resources with a tooltip, when mouse "
|
4294 |
"hovers over each day on the calendar(s)."
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: core/lib/wpbc_all_translations.php:
|
4298 |
msgid "Availability Title"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: core/lib/wpbc_all_translations.php:
|
4302 |
#, php-format
|
4303 |
msgid "Type your %savailability%s description"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: core/lib/wpbc_all_translations.php:
|
4307 |
#: inc/_bs/admin/api-settings-s.php:516
|
4308 |
msgid "Auto-cancel bookings"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
-
#: core/lib/wpbc_all_translations.php:
|
4312 |
#: inc/_bl/admin/api-settings-l.php:131
|
4313 |
msgid ""
|
4314 |
"Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
|
4315 |
"date(s)"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: core/lib/wpbc_all_translations.php:
|
4319 |
#: inc/_bl/admin/api-settings-l.php:289
|
4320 |
msgid ""
|
4321 |
"Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
|
@@ -4323,415 +4332,415 @@ msgid ""
|
|
4323 |
"approved booking, will be automatically canceled!"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: core/lib/wpbc_all_translations.php:
|
4327 |
msgid "Set capacity based on number of visitors"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: core/lib/wpbc_all_translations.php:
|
4331 |
msgid ""
|
4332 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
4333 |
"selected visitors."
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: core/lib/wpbc_all_translations.php:
|
4337 |
-
#: inc/_ps/admin/api-settings-p.php:
|
4338 |
#, php-format
|
4339 |
msgid "Please read more info about configuration of this parameter %shere%s"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: core/lib/wpbc_all_translations.php:
|
4343 |
msgid ""
|
4344 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
4345 |
"resource items remaining for each day."
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: core/lib/wpbc_all_translations.php:
|
4349 |
#, php-format
|
4350 |
msgid ""
|
4351 |
"Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
|
4352 |
"of visitors specified on the booking form."
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: core/lib/wpbc_all_translations.php:
|
4356 |
msgid ""
|
4357 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
4358 |
"for the resource, which can be at free booking resource items."
|
4359 |
msgstr ""
|
4360 |
|
4361 |
-
#: core/lib/wpbc_all_translations.php:
|
4362 |
#, php-format
|
4363 |
msgid ""
|
4364 |
"Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
|
4365 |
"visitors specified on the booking form."
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: core/lib/wpbc_all_translations.php:
|
4369 |
msgid "Disable bookings in different booking resources"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
-
#: core/lib/wpbc_all_translations.php:
|
4373 |
msgid ""
|
4374 |
"Check this box to dissable reservations, which can be stored in different booking resources."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
#: core/lib/wpbc_all_translations.php:
|
4378 |
msgid ""
|
4379 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
4380 |
"show."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: core/lib/wpbc_all_translations.php:
|
4384 |
#: inc/_ps/p-toolbar.php:1213
|
4385 |
msgid "Parent"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
-
#: core/lib/wpbc_all_translations.php:
|
4389 |
#: inc/_ps/p-toolbar.php:1231
|
4390 |
msgid "Priority"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: core/lib/wpbc_all_translations.php:
|
4394 |
msgid "Max visitors"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: core/lib/wpbc_all_translations.php:
|
4398 |
msgid "Single"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
#: core/lib/wpbc_all_translations.php:
|
4402 |
msgid "Child"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: core/lib/wpbc_all_translations.php:
|
4406 |
msgid "Setting coupons for discount"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
-
#: core/lib/wpbc_all_translations.php:
|
4410 |
#: inc/_bm/m-toolbar.php:590 inc/_bm/m-toolbar.php:592
|
4411 |
msgid "Create dates filter"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: core/lib/wpbc_all_translations.php:
|
4415 |
#: inc/_bl/admin/page-coupons.php:871
|
4416 |
msgid "Add New Discount Coupon"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: core/lib/wpbc_all_translations.php:
|
4420 |
#: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
|
4421 |
#: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
|
4422 |
msgid "Bulk Actions"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: core/lib/wpbc_all_translations.php:
|
4426 |
#: inc/_bl/admin/page-coupons.php:1170
|
4427 |
msgid "Coupon Code"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: core/lib/wpbc_all_translations.php:
|
4431 |
#: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
|
4432 |
msgid "Savings"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#: core/lib/wpbc_all_translations.php:
|
4436 |
msgid "Minimum Cost"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: core/lib/wpbc_all_translations.php:
|
4440 |
msgid "Expiration"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: core/lib/wpbc_all_translations.php:
|
4444 |
msgid "Number of usage"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: core/lib/wpbc_all_translations.php:
|
4448 |
#: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
|
4449 |
#: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
|
4450 |
-
#: inc/_bm/admin/page-cost.php:
|
4451 |
#: inc/_mu/admin/page-users.php:500 inc/_ps/admin/br-table-export-feeds.php:32
|
4452 |
#: inc/_ps/admin/br-table-import-gcal-p.php:30 inc/_ps/admin/page-resources.php:514
|
4453 |
msgid "Select Booking Resource"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
-
#: core/lib/wpbc_all_translations.php:
|
4457 |
#: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
|
4458 |
#: inc/_ps/p-toolbar.php:722
|
4459 |
msgid "All resources"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: core/lib/wpbc_all_translations.php:
|
4463 |
#: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
|
4464 |
msgid "Coupon"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#: core/lib/wpbc_all_translations.php:
|
4468 |
msgid "Enter coupon code."
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: core/lib/wpbc_all_translations.php:
|
4472 |
msgid "Enter number of fixed or percentage savings."
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#: core/lib/wpbc_all_translations.php:
|
4476 |
msgid "Expiration Date"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
-
#: core/lib/wpbc_all_translations.php:
|
4480 |
msgid "Select Expiration Date of the coupon."
|
4481 |
msgstr ""
|
4482 |
|
4483 |
-
#: core/lib/wpbc_all_translations.php:
|
4484 |
msgid "Minimum Booking Cost"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#: core/lib/wpbc_all_translations.php:
|
4488 |
msgid "Enter minimum booking cost, when coupon is applicable."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: core/lib/wpbc_all_translations.php:
|
4492 |
msgid "Maximum number of usage"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: core/lib/wpbc_all_translations.php:
|
4496 |
msgid "Enter maximum number of times, when coupon is applicable."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: core/lib/wpbc_all_translations.php:
|
4500 |
msgid "Select booking resources, where is possible to apply this coupon code."
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: core/lib/wpbc_all_translations.php:
|
4504 |
#: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
|
4505 |
#: inc/_ps/p-toolbar.php:1157
|
4506 |
msgid "Add New"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
-
#: core/lib/wpbc_all_translations.php:
|
4510 |
#: inc/_bl/admin/page-search.php:126 inc/_ps/admin/page-settings-form.php:662
|
4511 |
-
#: inc/gateways/page-gateways.php:
|
4512 |
msgid "Use these shortcodes for customization: "
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#: core/lib/wpbc_all_translations.php:
|
4516 |
#, php-format
|
4517 |
msgid "%s - search inside posts/pages which are part of this category, "
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: core/lib/wpbc_all_translations.php:
|
4521 |
#, php-format
|
4522 |
msgid "%s - search inside posts/pages which have this tag, "
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: core/lib/wpbc_all_translations.php:
|
4526 |
#: inc/_bl/admin/page-search.php:142
|
4527 |
#, php-format
|
4528 |
msgid "%s - check-in date, "
|
4529 |
msgstr ""
|
4530 |
|
4531 |
-
#: core/lib/wpbc_all_translations.php:
|
4532 |
#: inc/_bl/admin/page-search.php:143
|
4533 |
#, php-format
|
4534 |
msgid "%s - check-out date, "
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: core/lib/wpbc_all_translations.php:
|
4538 |
#, php-format
|
4539 |
msgid "%s - default selection number of visitors, "
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: core/lib/wpbc_all_translations.php:
|
4543 |
#, php-format
|
4544 |
msgid "Example: %s - custom number of visitor selections\""
|
4545 |
msgstr ""
|
4546 |
|
4547 |
-
#: core/lib/wpbc_all_translations.php:
|
4548 |
#, php-format
|
4549 |
msgid "%s - search button, "
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: core/lib/wpbc_all_translations.php:
|
4553 |
#: inc/_bl/admin/page-search.php:148
|
4554 |
msgid "HTML tags is accepted."
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#: core/lib/wpbc_all_translations.php:
|
4558 |
#, php-format
|
4559 |
msgid "%s - resource title, "
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: core/lib/wpbc_all_translations.php:
|
4563 |
#: inc/_bl/admin/page-search.php:129
|
4564 |
#, php-format
|
4565 |
msgid "%s - link to the page with booking form, "
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: core/lib/wpbc_all_translations.php:
|
4569 |
#, php-format
|
4570 |
msgid "%s - availability of booking resource, "
|
4571 |
msgstr ""
|
4572 |
|
4573 |
-
#: core/lib/wpbc_all_translations.php:
|
4574 |
#, php-format
|
4575 |
msgid "%s - maximum number of visitors for the booking resource, "
|
4576 |
msgstr ""
|
4577 |
|
4578 |
-
#: core/lib/wpbc_all_translations.php:
|
4579 |
#, php-format
|
4580 |
msgid "%s - cost of booking the resource, "
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
#: core/lib/wpbc_all_translations.php:
|
4584 |
#, php-format
|
4585 |
msgid "%s - featured image, taken from the featured image associated with the post, "
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: core/lib/wpbc_all_translations.php:
|
4589 |
#, php-format
|
4590 |
msgid "%s - booking info, taken from the excerpt associated with the post, "
|
4591 |
msgstr ""
|
4592 |
|
4593 |
-
#: core/lib/wpbc_all_translations.php:
|
4594 |
#: inc/_ps/form/class-wpbc-form-help.php:677
|
4595 |
msgid "Full cost of the booking."
|
4596 |
msgstr ""
|
4597 |
|
4598 |
-
#: core/lib/wpbc_all_translations.php:
|
4599 |
#: inc/_ps/form/class-wpbc-form-help.php:679
|
4600 |
msgid "Cost of the booking for the selected dates only."
|
4601 |
msgstr ""
|
4602 |
|
4603 |
-
#: core/lib/wpbc_all_translations.php:
|
4604 |
#: inc/_ps/form/class-wpbc-form-help.php:681
|
4605 |
msgid "Additional cost, which depends on the fields selection in the form."
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: core/lib/wpbc_all_translations.php:
|
4609 |
#: inc/_ps/form/class-wpbc-form-help.php:683
|
4610 |
msgid "The deposit cost of the booking."
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: core/lib/wpbc_all_translations.php:
|
4614 |
#: inc/_ps/form/class-wpbc-form-help.php:685
|
4615 |
msgid "Balance cost of the booking - difference between deposit and full cost."
|
4616 |
msgstr ""
|
4617 |
|
4618 |
-
#: core/lib/wpbc_all_translations.php:
|
4619 |
msgid "hour(s)"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: core/lib/wpbc_all_translations.php:
|
4623 |
#: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
|
4624 |
msgid "day(s)"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
-
#: core/lib/wpbc_all_translations.php:
|
4628 |
msgid "Cache expiration"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
-
#: core/lib/wpbc_all_translations.php:
|
4632 |
msgid "Select time of cache expiration"
|
4633 |
msgstr ""
|
4634 |
|
4635 |
-
#: core/lib/wpbc_all_translations.php:
|
4636 |
-
#: inc/_bl/admin/page-search.php:
|
4637 |
msgid "Search Settings"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
-
#: core/lib/wpbc_all_translations.php:
|
4641 |
msgid "Cache Updated"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#: core/lib/wpbc_all_translations.php:
|
4645 |
-
#: inc/_bl/admin/page-search.php:
|
4646 |
msgid "Search Availability Form"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: core/lib/wpbc_all_translations.php:
|
4650 |
-
#: inc/_bl/admin/page-search.php:
|
4651 |
msgid "Search Results"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: core/lib/wpbc_all_translations.php:
|
4655 |
-
#: inc/_bl/admin/page-search.php:
|
4656 |
msgid "Search Cache"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
-
#: core/lib/wpbc_all_translations.php:
|
4660 |
#, php-format
|
4661 |
msgid ""
|
4662 |
"If you do not see search results at front-end side of your website, please check troubleshooting "
|
4663 |
"instruction %shere%s"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: core/lib/wpbc_all_translations.php:
|
4667 |
msgid "CSS customization of search form and search results you can make at this file"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: core/lib/wpbc_all_translations.php:
|
4671 |
-
#: inc/_bl/admin/page-search.php:
|
4672 |
msgid "Select Template"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: core/lib/wpbc_all_translations.php:
|
4676 |
msgid "Inlinee Search Form Template"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: core/lib/wpbc_all_translations.php:
|
4680 |
msgid "Horizontal Search Form Template"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: core/lib/wpbc_all_translations.php:
|
4684 |
msgid "Standard Search Form Template"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: core/lib/wpbc_all_translations.php:
|
4688 |
#: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
|
4689 |
#: inc/_ps/admin/page-settings-form.php:496
|
4690 |
msgid "Reset"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: core/lib/wpbc_all_translations.php:
|
4694 |
#: inc/_ps/admin/page-settings-form.php:497
|
4695 |
msgid "Reset current Form"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
-
#: core/lib/wpbc_all_translations.php:
|
4699 |
msgid "Cache will expire:"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: core/lib/wpbc_all_translations.php:
|
4703 |
#, php-format
|
4704 |
msgid "Found: %s booking forms inside of posts or pages "
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#: core/lib/wpbc_all_translations.php:
|
4708 |
msgid "Page"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#: core/lib/wpbc_all_translations.php:
|
4712 |
msgid "Reset Search Cache"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
-
#: core/lib/wpbc_all_translations.php:
|
4716 |
msgid ""
|
4717 |
"Try selecting fewer visitors. The number of visitors may be more than the number of available "
|
4718 |
"units on selected day(s)!"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: core/lib/wpbc_all_translations.php:
|
4722 |
msgid "coupon"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: core/lib/wpbc_all_translations.php:
|
4726 |
msgid "discount"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#: core/lib/wpbc_all_translations.php:
|
4730 |
msgid "Please select check-in and check-out days!"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#: core/lib/wpbc_all_translations.php:
|
4734 |
-
#: inc/_bl/biz_l.php:
|
4735 |
#, php-format
|
4736 |
msgid ""
|
4737 |
"Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
|
@@ -4739,173 +4748,173 @@ msgid ""
|
|
4739 |
"page and try other days."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: core/lib/wpbc_all_translations.php:
|
4743 |
#, php-format
|
4744 |
msgid "The folowing pending booking(s): %s deleted."
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#: core/lib/wpbc_all_translations.php:
|
4748 |
msgid "Book now"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: core/lib/wpbc_all_translations.php:
|
4752 |
#: inc/_bl/wpdev-booking-search-widget.php:67
|
4753 |
msgid "Search availability"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
-
#: core/lib/wpbc_all_translations.php:
|
4757 |
msgid "Search results."
|
4758 |
msgstr ""
|
4759 |
|
4760 |
-
#: core/lib/wpbc_all_translations.php:
|
4761 |
msgid "Nothing found."
|
4762 |
msgstr ""
|
4763 |
|
4764 |
-
#: core/lib/wpbc_all_translations.php:
|
4765 |
msgid "Title of search widget"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
-
#: core/lib/wpbc_all_translations.php:
|
4769 |
msgid "Title of search results"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
-
#: core/lib/wpbc_all_translations.php:
|
4773 |
#, php-format
|
4774 |
msgid "Please type the %sTitle of search results%s."
|
4775 |
msgstr ""
|
4776 |
|
4777 |
-
#: core/lib/wpbc_all_translations.php:
|
4778 |
msgid "Nothing found message"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: core/lib/wpbc_all_translations.php:
|
4782 |
#, php-format
|
4783 |
msgid "Please type the %smessage ,what is showing, when nothing found%s."
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: core/lib/wpbc_all_translations.php:
|
4787 |
msgid "URL of Search Results"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: core/lib/wpbc_all_translations.php:
|
4791 |
#, php-format
|
4792 |
msgid ""
|
4793 |
"Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
|
4794 |
"show."
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: core/lib/wpbc_all_translations.php:
|
4798 |
#: inc/_mu/multiuser.php:634
|
4799 |
msgid "Weekend"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
-
#: core/lib/wpbc_all_translations.php:
|
4803 |
#: inc/_mu/multiuser.php:636
|
4804 |
msgid "High season"
|
4805 |
msgstr ""
|
4806 |
|
4807 |
-
#: core/lib/wpbc_all_translations.php:
|
4808 |
msgid "Limit available days from today"
|
4809 |
msgstr ""
|
4810 |
|
4811 |
-
#: core/lib/wpbc_all_translations.php:
|
4812 |
msgid "Select number of available days in calendar start from today."
|
4813 |
msgstr ""
|
4814 |
|
4815 |
-
#: core/lib/wpbc_all_translations.php:
|
4816 |
msgid "Unavailable time before / after booking"
|
4817 |
msgstr ""
|
4818 |
|
4819 |
-
#: core/lib/wpbc_all_translations.php:
|
4820 |
msgid ""
|
4821 |
"This feature is applying only for bookings for specific timeslots, or if activated check in/out "
|
4822 |
"time option."
|
4823 |
msgstr ""
|
4824 |
|
4825 |
-
#: core/lib/wpbc_all_translations.php:
|
4826 |
#: inc/_bm/admin/api-settings-m.php:134
|
4827 |
msgid "Before booking"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: core/lib/wpbc_all_translations.php:
|
4831 |
#: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
|
4832 |
#: inc/_bm/admin/api-settings-m.php:144
|
4833 |
msgid "Select unavailable time interval."
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: core/lib/wpbc_all_translations.php:
|
4837 |
#: inc/_bm/admin/api-settings-m.php:143
|
4838 |
msgid "After booking"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: core/lib/wpbc_all_translations.php:
|
4842 |
msgid "Showing cost in date cell"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
-
#: core/lib/wpbc_all_translations.php:
|
4846 |
#, php-format
|
4847 |
msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: core/lib/wpbc_all_translations.php:
|
4851 |
msgid "Currency symbol"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
-
#: core/lib/wpbc_all_translations.php:
|
4855 |
#, php-format
|
4856 |
msgid ""
|
4857 |
"Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
|
4858 |
"currency symbols%s"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
-
#: core/lib/wpbc_all_translations.php:
|
4862 |
msgid "Showing cost in tooltip"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
-
#: core/lib/wpbc_all_translations.php:
|
4866 |
msgid ""
|
4867 |
" Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
|
4868 |
"calendar(s)."
|
4869 |
msgstr ""
|
4870 |
|
4871 |
-
#: core/lib/wpbc_all_translations.php:
|
4872 |
msgid "Cost Title"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
-
#: core/lib/wpbc_all_translations.php:
|
4876 |
#, php-format
|
4877 |
msgid "Type your %scost%s description"
|
4878 |
msgstr ""
|
4879 |
|
4880 |
-
#: core/lib/wpbc_all_translations.php:
|
4881 |
#: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:414
|
4882 |
msgid "Custom Forms"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
-
#: core/lib/wpbc_all_translations.php:
|
4886 |
msgid "Configuration of availability for booking resources"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
-
#: core/lib/wpbc_all_translations.php:
|
4890 |
msgid "Availability Settings"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: core/lib/wpbc_all_translations.php:
|
4894 |
#: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1186
|
4895 |
msgid "Show Children Resources"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
-
#: core/lib/wpbc_all_translations.php:
|
4899 |
#: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1188
|
4900 |
msgid "Hide Children Resources"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
-
#: core/lib/wpbc_all_translations.php:
|
4904 |
#: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
|
4905 |
msgid "Set Availability"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: core/lib/wpbc_all_translations.php:
|
4909 |
#: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
|
4910 |
#, php-format
|
4911 |
msgid ""
|
@@ -4913,681 +4922,681 @@ msgid ""
|
|
4913 |
"booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: core/lib/wpbc_all_translations.php:
|
4917 |
-
#: inc/_bm/admin/page-cost.php:
|
4918 |
msgid "Resource Name"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
-
#: core/lib/wpbc_all_translations.php:
|
4922 |
#: inc/_bm/admin/page-availability.php:895
|
4923 |
msgid "All days"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
-
#: core/lib/wpbc_all_translations.php:
|
4927 |
#: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
|
4928 |
#: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
|
4929 |
#: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
|
4930 |
msgid "available"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
-
#: core/lib/wpbc_all_translations.php:
|
4934 |
#: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
|
4935 |
#: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
|
4936 |
#: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
|
4937 |
msgid "unavailable"
|
4938 |
msgstr ""
|
4939 |
|
4940 |
-
#: core/lib/wpbc_all_translations.php:
|
4941 |
#, php-format
|
4942 |
msgid "and %s on seasons:"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
-
#: core/lib/wpbc_all_translations.php:
|
4946 |
#, php-format
|
4947 |
msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
-
#: core/lib/wpbc_all_translations.php:
|
4951 |
#: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
|
4952 |
#: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
|
4953 |
#: inc/_bm/admin/page-cost-valuation.php:148
|
4954 |
msgid "Hide season filters"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: core/lib/wpbc_all_translations.php:
|
4958 |
#: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
|
4959 |
#: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
|
4960 |
#: inc/_bm/admin/page-cost-valuation.php:153
|
4961 |
msgid "Show all exist season filters"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: core/lib/wpbc_all_translations.php:
|
4965 |
-
#: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:
|
4966 |
msgid "Enabled"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
-
#: core/lib/wpbc_all_translations.php:
|
4970 |
msgid "Customization of additional cost, which depend from form fields"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: core/lib/wpbc_all_translations.php:
|
4974 |
msgid "Advanced Cost Settings"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
-
#: core/lib/wpbc_all_translations.php:
|
4978 |
msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#: core/lib/wpbc_all_translations.php:
|
4982 |
#, php-format
|
4983 |
msgid ""
|
4984 |
"Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
|
4985 |
"%sbooking form%s."
|
4986 |
msgstr ""
|
4987 |
|
4988 |
-
#: core/lib/wpbc_all_translations.php:
|
4989 |
#: inc/_bm/admin/page-cost-deposit.php:181
|
4990 |
msgid "Deposit type"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
-
#: core/lib/wpbc_all_translations.php:
|
4994 |
msgid "of total cost"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: core/lib/wpbc_all_translations.php:
|
4998 |
#: inc/_bs/admin/api-settings-s.php:898
|
4999 |
msgid "night"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
-
#: core/lib/wpbc_all_translations.php:
|
5003 |
msgid "as additional sum"
|
5004 |
msgstr ""
|
5005 |
|
5006 |
-
#: core/lib/wpbc_all_translations.php:
|
5007 |
msgid "Enter additional cost in formats:"
|
5008 |
msgstr ""
|
5009 |
|
5010 |
-
#: core/lib/wpbc_all_translations.php:
|
5011 |
#, php-format
|
5012 |
msgid ""
|
5013 |
"For example, if the original cost of the booking is %s, then after applying additional costs the "
|
5014 |
"total cost will be folowing"
|
5015 |
msgstr ""
|
5016 |
|
5017 |
-
#: core/lib/wpbc_all_translations.php:
|
5018 |
msgid "Enter fixed cost"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
-
#: core/lib/wpbc_all_translations.php:
|
5022 |
#: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
|
5023 |
#: inc/_bm/admin/page-cost-advanced.php:681
|
5024 |
#, php-format
|
5025 |
msgid "%s, then total cost will be %s"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
-
#: core/lib/wpbc_all_translations.php:
|
5029 |
msgid "Enter percentage of the entire booking"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
-
#: core/lib/wpbc_all_translations.php:
|
5033 |
msgid "Enter fixed amount for each selected day"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
-
#: core/lib/wpbc_all_translations.php:
|
5037 |
#, php-format
|
5038 |
msgid "%s, then total cost will be (if selected 3 days) %s"
|
5039 |
msgstr ""
|
5040 |
|
5041 |
-
#: core/lib/wpbc_all_translations.php:
|
5042 |
#: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
|
5043 |
#: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
|
5044 |
msgid "or"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
-
#: core/lib/wpbc_all_translations.php:
|
5048 |
msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#: core/lib/wpbc_all_translations.php:
|
5052 |
#: inc/_bm/admin/page-cost-advanced.php:686
|
5053 |
#, php-format
|
5054 |
msgid "Please check more info about configuration of this cost settings on this %spage%s."
|
5055 |
msgstr ""
|
5056 |
|
5057 |
-
#: core/lib/wpbc_all_translations.php:
|
5058 |
msgid "Set Deposit"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
-
#: core/lib/wpbc_all_translations.php:
|
5062 |
msgid "deposit payment for booking resource"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
-
#: core/lib/wpbc_all_translations.php:
|
5066 |
#: inc/_bm/admin/page-cost-deposit.php:162
|
5067 |
msgid "Deposit amount"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: core/lib/wpbc_all_translations.php:
|
5071 |
#: inc/_bm/admin/page-cost-early-late-booking.php:203
|
5072 |
#: inc/_bm/admin/page-cost-early-late-booking.php:404
|
5073 |
msgid "fixed total in"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
-
#: core/lib/wpbc_all_translations.php:
|
5077 |
#: inc/_bm/admin/page-cost-early-late-booking.php:204
|
5078 |
#: inc/_bm/admin/page-cost-early-late-booking.php:405
|
5079 |
msgid "of payment"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
-
#: core/lib/wpbc_all_translations.php:
|
5083 |
#: inc/_bm/admin/page-cost-early-late-booking.php:213
|
5084 |
#: inc/_bm/admin/page-cost-early-late-booking.php:414
|
5085 |
msgid "Conditions"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
-
#: core/lib/wpbc_all_translations.php:
|
5089 |
#, php-format
|
5090 |
msgid ""
|
5091 |
"Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
-
#: core/lib/wpbc_all_translations.php:
|
5095 |
#, php-format
|
5096 |
msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: core/lib/wpbc_all_translations.php:
|
5100 |
#: inc/_bm/admin/page-cost-early-late-booking.php:280
|
5101 |
#: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
|
5102 |
msgid "Any days"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: core/lib/wpbc_all_translations.php:
|
5106 |
msgid "Deposit payment total"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#: core/lib/wpbc_all_translations.php:
|
5110 |
msgid "Set Rates"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
-
#: core/lib/wpbc_all_translations.php:
|
5114 |
-
#: inc/_bm/admin/page-cost.php:
|
5115 |
msgid "Rates"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
-
#: core/lib/wpbc_all_translations.php:
|
5119 |
msgid "Seasonal price"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: core/lib/wpbc_all_translations.php:
|
5123 |
#: inc/_bm/admin/page-cost-valuation.php:198
|
5124 |
msgid "Season"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
-
#: core/lib/wpbc_all_translations.php:
|
5128 |
#, php-format
|
5129 |
msgid ""
|
5130 |
"Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
|
5131 |
"booking resource (%s) or %sAdd a new seasonal filter%s"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: core/lib/wpbc_all_translations.php:
|
5135 |
#: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
|
5136 |
msgid "Set Valuation Days"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#: core/lib/wpbc_all_translations.php:
|
5140 |
#: inc/_mu/admin/page-users.php:437
|
5141 |
msgid "Status"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
-
#: core/lib/wpbc_all_translations.php:
|
5145 |
msgid "Costs"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
-
#: core/lib/wpbc_all_translations.php:
|
5149 |
msgid "Add new cost"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
-
#: core/lib/wpbc_all_translations.php:
|
5153 |
#, php-format
|
5154 |
msgid ""
|
5155 |
"Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
|
5156 |
"the list."
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
#: core/lib/wpbc_all_translations.php:
|
5160 |
#, php-format
|
5161 |
msgid ""
|
5162 |
"Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
|
5163 |
"terms %s"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: core/lib/wpbc_all_translations.php:
|
5167 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
|
5168 |
msgid "Together"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: core/lib/wpbc_all_translations.php:
|
5172 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
|
5173 |
#: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
|
5174 |
msgid "For"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
-
#: core/lib/wpbc_all_translations.php:
|
5178 |
#, php-format
|
5179 |
msgid "%s and %s terms have higher priority than a range %s days."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: core/lib/wpbc_all_translations.php:
|
5183 |
#, php-format
|
5184 |
msgid "%s - definition of check-out date."
|
5185 |
msgstr ""
|
5186 |
|
5187 |
-
#: core/lib/wpbc_all_translations.php:
|
5188 |
#: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
|
5189 |
#: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
|
5190 |
#: inc/_ps/form/class-wpbc-form-help.php:535
|
5191 |
msgid "Example"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: core/lib/wpbc_all_translations.php:
|
5195 |
msgid ""
|
5196 |
"Specific cost will take affect, only if it active (the box at the left side is checked) and if "
|
5197 |
"\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
|
5198 |
msgstr ""
|
5199 |
|
5200 |
-
#: core/lib/wpbc_all_translations.php:
|
5201 |
#: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
|
5202 |
#: inc/_bm/biz_m.php:252
|
5203 |
msgid " for all days!"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: core/lib/wpbc_all_translations.php:
|
5207 |
#: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
|
5208 |
msgid "from the cost of 1 day "
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
#: core/lib/wpbc_all_translations.php:
|
5212 |
#: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
|
5213 |
msgid "per 1 day"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
-
#: core/lib/wpbc_all_translations.php:
|
5217 |
#: inc/_bm/admin/page-seasons.php:1564
|
5218 |
msgid "to"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#: core/lib/wpbc_all_translations.php:
|
5222 |
#: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
|
5223 |
#, php-format
|
5224 |
msgid "Additional cost in %s per 1 day"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#: core/lib/wpbc_all_translations.php:
|
5228 |
msgid "Customization of rates, valuation days cost and deposit amount "
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#: core/lib/wpbc_all_translations.php:
|
5232 |
msgid "Costs and Rates Settings"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: core/lib/wpbc_all_translations.php:
|
5236 |
#: inc/_bm/admin/page-cost.php:228
|
5237 |
msgid "Set Rate"
|
5238 |
msgstr ""
|
5239 |
|
5240 |
-
#: core/lib/wpbc_all_translations.php:
|
5241 |
#: inc/_bm/admin/page-cost.php:230
|
5242 |
msgid "Set Deposit Amount"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: core/lib/wpbc_all_translations.php:
|
5246 |
-
#: inc/_bm/admin/page-cost.php:
|
5247 |
msgid "Valuation days"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: core/lib/wpbc_all_translations.php:
|
5251 |
-
#: inc/_bm/admin/page-cost.php:
|
5252 |
msgid "Deposit"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
-
#: core/lib/wpbc_all_translations.php:
|
5256 |
msgid "Customizaton of Season Filters"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: core/lib/wpbc_all_translations.php:
|
5260 |
#: inc/_bm/admin/page-seasons.php:815
|
5261 |
msgid "Specific Dates Filter"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: core/lib/wpbc_all_translations.php:
|
5265 |
#: inc/_bm/admin/page-seasons.php:821
|
5266 |
msgid "Conditional Dates Filter"
|
5267 |
msgstr ""
|
5268 |
|
5269 |
-
#: core/lib/wpbc_all_translations.php:
|
5270 |
#: inc/_bm/admin/page-seasons.php:1257
|
5271 |
msgid "Filter Name"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: core/lib/wpbc_all_translations.php:
|
5275 |
#: inc/_bm/admin/page-seasons.php:1258
|
5276 |
msgid "Type filter name"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: core/lib/wpbc_all_translations.php:
|
5280 |
msgid "Weekdays"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: core/lib/wpbc_all_translations.php:
|
5284 |
msgid "Months"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: core/lib/wpbc_all_translations.php:
|
5288 |
#: inc/_bm/admin/page-seasons.php:1283
|
5289 |
msgid "January"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: core/lib/wpbc_all_translations.php:
|
5293 |
#: inc/_bm/admin/page-seasons.php:1284
|
5294 |
msgid "February"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
-
#: core/lib/wpbc_all_translations.php:
|
5298 |
#: inc/_bm/admin/page-seasons.php:1285
|
5299 |
msgid "March"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: core/lib/wpbc_all_translations.php:
|
5303 |
#: inc/_bm/admin/page-seasons.php:1286
|
5304 |
msgid "April"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#: core/lib/wpbc_all_translations.php:
|
5308 |
#: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
|
5309 |
msgid "May"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: core/lib/wpbc_all_translations.php:
|
5313 |
#: inc/_bm/admin/page-seasons.php:1288
|
5314 |
msgid "June"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: core/lib/wpbc_all_translations.php:
|
5318 |
#: inc/_bm/admin/page-seasons.php:1289
|
5319 |
msgid "July"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#: core/lib/wpbc_all_translations.php:
|
5323 |
#: inc/_bm/admin/page-seasons.php:1290
|
5324 |
msgid "August"
|
5325 |
msgstr ""
|
5326 |
|
5327 |
-
#: core/lib/wpbc_all_translations.php:
|
5328 |
#: inc/_bm/admin/page-seasons.php:1291
|
5329 |
msgid "September"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
-
#: core/lib/wpbc_all_translations.php:
|
5333 |
#: inc/_bm/admin/page-seasons.php:1292
|
5334 |
msgid "October"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: core/lib/wpbc_all_translations.php:
|
5338 |
#: inc/_bm/admin/page-seasons.php:1293
|
5339 |
msgid "November"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
-
#: core/lib/wpbc_all_translations.php:
|
5343 |
#: inc/_bm/admin/page-seasons.php:1294
|
5344 |
msgid "December"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: core/lib/wpbc_all_translations.php:
|
5348 |
msgid "Years"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
-
#: core/lib/wpbc_all_translations.php:
|
5352 |
#: inc/_bm/admin/page-seasons.php:1487
|
5353 |
msgid "Mo"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: core/lib/wpbc_all_translations.php:
|
5357 |
#: inc/_bm/admin/page-seasons.php:1487
|
5358 |
msgid "Tu"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#: core/lib/wpbc_all_translations.php:
|
5362 |
#: inc/_bm/admin/page-seasons.php:1487
|
5363 |
msgid "We"
|
5364 |
msgstr ""
|
5365 |
|
5366 |
-
#: core/lib/wpbc_all_translations.php:
|
5367 |
#: inc/_bm/admin/page-seasons.php:1487
|
5368 |
msgid "Th"
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#: core/lib/wpbc_all_translations.php:
|
5372 |
#: inc/_bm/admin/page-seasons.php:1487
|
5373 |
msgid "Fr"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: core/lib/wpbc_all_translations.php:
|
5377 |
#: inc/_bm/admin/page-seasons.php:1487
|
5378 |
msgid "Sa"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
-
#: core/lib/wpbc_all_translations.php:
|
5382 |
#: inc/_bm/admin/page-seasons.php:1487
|
5383 |
msgid "Su"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: core/lib/wpbc_all_translations.php:
|
5387 |
msgid "Jan"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: core/lib/wpbc_all_translations.php:
|
5391 |
msgid "Feb"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#: core/lib/wpbc_all_translations.php:
|
5395 |
msgid "Mar"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
-
#: core/lib/wpbc_all_translations.php:
|
5399 |
msgid "Apr"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
-
#: core/lib/wpbc_all_translations.php:
|
5403 |
msgid "Jun"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: core/lib/wpbc_all_translations.php:
|
5407 |
msgid "Jul"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#: core/lib/wpbc_all_translations.php:
|
5411 |
msgid "Aug"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
-
#: core/lib/wpbc_all_translations.php:
|
5415 |
msgid "Sep"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: core/lib/wpbc_all_translations.php:
|
5419 |
msgid "Oct"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: core/lib/wpbc_all_translations.php:
|
5423 |
msgid "Nov"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#: core/lib/wpbc_all_translations.php:
|
5427 |
msgid "Dec"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
-
#: core/lib/wpbc_all_translations.php:
|
5431 |
#: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
|
5432 |
#: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
|
5433 |
msgid "No days"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: core/lib/wpbc_all_translations.php:
|
5437 |
msgid "time"
|
5438 |
msgstr ""
|
5439 |
|
5440 |
-
#: core/lib/wpbc_all_translations.php:
|
5441 |
msgid "Every"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#: core/lib/wpbc_all_translations.php:
|
5445 |
msgid "Each day "
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: core/lib/wpbc_all_translations.php:
|
5449 |
msgid "on each day "
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: core/lib/wpbc_all_translations.php:
|
5453 |
msgid "On each "
|
5454 |
msgstr ""
|
5455 |
|
5456 |
-
#: core/lib/wpbc_all_translations.php:
|
5457 |
msgid "on each "
|
5458 |
msgstr ""
|
5459 |
|
5460 |
-
#: core/lib/wpbc_all_translations.php:
|
5461 |
msgid "of every month "
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: core/lib/wpbc_all_translations.php:
|
5465 |
msgid "of"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: core/lib/wpbc_all_translations.php:
|
5469 |
msgid "for all days!"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: core/lib/wpbc_all_translations.php:
|
5473 |
msgid "Standard booking resource cost"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: core/lib/wpbc_all_translations.php:
|
5477 |
msgid "Total booking resource cost"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#: core/lib/wpbc_all_translations.php:
|
5481 |
msgid "Delete selected booking form"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
-
#: core/lib/wpbc_all_translations.php:
|
5485 |
msgid "Do you really want to delete selected booking form ?"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
-
#: core/lib/wpbc_all_translations.php:
|
5489 |
msgid "Add New Custom Form"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: core/lib/wpbc_all_translations.php:
|
5493 |
msgid "Type the name of booking form"
|
5494 |
msgstr ""
|
5495 |
|
5496 |
-
#: core/lib/wpbc_all_translations.php:
|
5497 |
msgid "Create"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
-
#: core/lib/wpbc_all_translations.php:
|
5501 |
msgid "Create new form"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: core/lib/wpbc_all_translations.php:
|
5505 |
msgid "There are no extended booking forms"
|
5506 |
msgstr ""
|
5507 |
|
5508 |
-
#: core/lib/wpbc_all_translations.php:
|
5509 |
msgid "Create conditional days filter"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
-
#: core/lib/wpbc_all_translations.php:
|
5513 |
#: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
|
5514 |
msgid "Apartment#1"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#: core/lib/wpbc_all_translations.php:
|
5518 |
#: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
|
5519 |
msgid "Apartment#2"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: core/lib/wpbc_all_translations.php:
|
5523 |
#: inc/_ps/admin/activation-p.php:48
|
5524 |
msgid "Apartment#3"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: core/lib/wpbc_all_translations.php:
|
5528 |
msgid "Range days"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: core/lib/wpbc_all_translations.php:
|
5532 |
#, php-format
|
5533 |
msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#: core/lib/wpbc_all_translations.php:
|
5537 |
#, php-format
|
5538 |
msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: core/lib/wpbc_all_translations.php:
|
5542 |
#: inc/_bs/admin/api-settings-s.php:138
|
5543 |
msgid "Days selection number"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: core/lib/wpbc_all_translations.php:
|
5547 |
#, php-format
|
5548 |
msgid "Type your %snumber of days for range selection%s"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: core/lib/wpbc_all_translations.php:
|
5552 |
#: inc/_bs/admin/api-settings-s.php:211
|
5553 |
msgid "Specific day(s) of week"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
-
#: core/lib/wpbc_all_translations.php:
|
5557 |
#: inc/_bs/admin/api-settings-s.php:215
|
5558 |
msgid "Any day of week"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
-
#: core/lib/wpbc_all_translations.php:
|
5562 |
#: inc/_bs/admin/api-settings-s.php:223
|
5563 |
msgid "Start day of range"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: core/lib/wpbc_all_translations.php:
|
5567 |
#: inc/_bs/admin/api-settings-s.php:252
|
5568 |
msgid "Select your start day of range selection at week"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: core/lib/wpbc_all_translations.php:
|
5572 |
#: inc/_bs/admin/api-settings-s.php:157
|
5573 |
msgid "Min"
|
5574 |
msgstr ""
|
5575 |
|
5576 |
-
#: core/lib/wpbc_all_translations.php:
|
5577 |
#: inc/_bs/admin/api-settings-s.php:175
|
5578 |
msgid "Max"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: core/lib/wpbc_all_translations.php:
|
5582 |
#, php-format
|
5583 |
msgid "Select your %sminimum and maximum number of days for range selection%s"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: core/lib/wpbc_all_translations.php:
|
5587 |
msgid "Specific days selections"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: core/lib/wpbc_all_translations.php:
|
5591 |
#, php-format
|
5592 |
msgid ""
|
5593 |
"Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
|
@@ -5595,771 +5604,771 @@ msgid ""
|
|
5595 |
"this: %s) or combination (example:%s, its the same like this: %s)"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
-
#: core/lib/wpbc_all_translations.php:
|
5599 |
msgid "Use time selections as recurrent time slots"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: core/lib/wpbc_all_translations.php:
|
5603 |
msgid ""
|
5604 |
"Check this box if you want to use recurrent time to reserve several days. This means that middle "
|
5605 |
"days will be partially booked by actual times, otherwise the time in the booking form will be "
|
5606 |
"used as check-in/check-out time for the first and last day of the reservation."
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: core/lib/wpbc_all_translations.php:
|
5610 |
msgid "Check this option, to use check in/out time during booking process. "
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: core/lib/wpbc_all_translations.php:
|
5614 |
#, php-format
|
5615 |
msgid "%s Important!%s This will overwrite any times selection in your booking form."
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: core/lib/wpbc_all_translations.php:
|
5619 |
msgid "Check-in time"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: core/lib/wpbc_all_translations.php:
|
5623 |
#, php-format
|
5624 |
msgid "Type your %sCheck-in%s time of booking"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: core/lib/wpbc_all_translations.php:
|
5628 |
msgid "Check-Out time"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: core/lib/wpbc_all_translations.php:
|
5632 |
#, php-format
|
5633 |
msgid "Type your %sCheck-Out%s time of booking"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#: core/lib/wpbc_all_translations.php:
|
5637 |
msgid "Change over days as triangles"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
-
#: core/lib/wpbc_all_translations.php:
|
5641 |
msgid "Check this option, to show change over days as triangles. "
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: core/lib/wpbc_all_translations.php:
|
5645 |
msgid "Title of booked timeslot(s)"
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: core/lib/wpbc_all_translations.php:
|
5649 |
#, php-format
|
5650 |
msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
-
#: core/lib/wpbc_all_translations.php:
|
5654 |
msgid "Time Format"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
-
#: core/lib/wpbc_all_translations.php:
|
5658 |
#, php-format
|
5659 |
msgid ""
|
5660 |
"Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#: core/lib/wpbc_all_translations.php:
|
5664 |
msgid "Auto approve all new bookings"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
-
#: core/lib/wpbc_all_translations.php:
|
5668 |
#, php-format
|
5669 |
msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#: core/lib/wpbc_all_translations.php:
|
5673 |
#, php-format
|
5674 |
msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
|
5675 |
msgstr ""
|
5676 |
|
5677 |
-
#: core/lib/wpbc_all_translations.php:
|
5678 |
msgid "Cancel bookings older"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: core/lib/wpbc_all_translations.php:
|
5682 |
msgid "Cancel only pending, unpaid bookings, which are older than this selection."
|
5683 |
msgstr ""
|
5684 |
|
5685 |
-
#: core/lib/wpbc_all_translations.php:
|
5686 |
msgid "Cancellation email sent"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: core/lib/wpbc_all_translations.php:
|
5690 |
#, php-format
|
5691 |
msgid "Check this box to %ssend%s cancellation email for this resource."
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: core/lib/wpbc_all_translations.php:
|
5695 |
#: inc/_bs/admin/api-settings-s.php:560
|
5696 |
msgid "Reason for cancellation"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#: core/lib/wpbc_all_translations.php:
|
5700 |
#, php-format
|
5701 |
msgid "Type the reason for %scancellation%s for the email template."
|
5702 |
msgstr ""
|
5703 |
|
5704 |
-
#: core/lib/wpbc_all_translations.php:
|
5705 |
msgid "Payment request"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: core/lib/wpbc_all_translations.php:
|
5709 |
msgid "Customization of email template, which is sending to Visitor after payment request"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: core/lib/wpbc_all_translations.php:
|
5713 |
msgid "Email with Payment Request which is sending to Visitor."
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: core/lib/wpbc_all_translations.php:
|
5717 |
msgid "Error! Please reset your check-in/check-out dates above."
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#: core/lib/wpbc_all_translations.php:
|
5721 |
msgid ""
|
5722 |
"Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
|
5723 |
"another date or time."
|
5724 |
msgstr ""
|
5725 |
|
5726 |
-
#: core/lib/wpbc_all_translations.php:
|
5727 |
msgid ""
|
5728 |
"End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
|
5729 |
"also be earlier that the start time, if only 1 day was selected! Please choose another date or "
|
5730 |
"time."
|
5731 |
msgstr ""
|
5732 |
|
5733 |
-
#: core/lib/wpbc_all_translations.php:
|
5734 |
msgid "The time(s) may be booked, or already in the past!"
|
5735 |
msgstr ""
|
5736 |
|
5737 |
-
#: core/lib/wpbc_all_translations.php:
|
5738 |
msgid "Cost saved successfully"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: core/lib/wpbc_all_translations.php:
|
5742 |
msgid "Cost is not correct. It must be greater than 0"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: core/lib/wpbc_all_translations.php:
|
5746 |
msgid "Request has been sent"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: core/lib/wpbc_all_translations.php:
|
5750 |
msgid "Request has failed"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
-
#: core/lib/wpbc_all_translations.php:
|
5754 |
msgid "The payment status is changed successfully"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
-
#: core/lib/wpbc_all_translations.php:
|
5758 |
msgid "The changing of payment status is failed"
|
5759 |
msgstr ""
|
5760 |
|
5761 |
-
#: core/lib/wpbc_all_translations.php:
|
5762 |
msgid "deposit"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
-
#: core/lib/wpbc_all_translations.php:
|
5766 |
msgid "Total cost"
|
5767 |
msgstr ""
|
5768 |
|
5769 |
-
#: core/lib/wpbc_all_translations.php:
|
5770 |
msgid "balance"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: core/lib/wpbc_all_translations.php:
|
5774 |
#: inc/_bs/s-toolbar.php:94
|
5775 |
msgid "Payment status"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: core/lib/wpbc_all_translations.php:
|
5779 |
msgid "Any Status"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
-
#: core/lib/wpbc_all_translations.php:
|
5783 |
msgid "Unknown Status"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: core/lib/wpbc_all_translations.php:
|
5787 |
msgid "Not Completed"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: core/lib/wpbc_all_translations.php:
|
5791 |
#: inc/_bs/lib_s.php:332
|
5792 |
msgid "Failed"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: core/lib/wpbc_all_translations.php:
|
5796 |
msgid "min"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: core/lib/wpbc_all_translations.php:
|
5800 |
msgid "max"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: core/lib/wpbc_all_translations.php:
|
5804 |
#: inc/_bs/lib_s.php:325
|
5805 |
msgid "Completed"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
-
#: core/lib/wpbc_all_translations.php:
|
5809 |
msgid "In-Progress"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
-
#: core/lib/wpbc_all_translations.php:
|
5813 |
msgid "Partially paid"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
-
#: core/lib/wpbc_all_translations.php:
|
5817 |
msgid "Cancelled"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
-
#: core/lib/wpbc_all_translations.php:
|
5821 |
msgid "Refunded"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
-
#: core/lib/wpbc_all_translations.php:
|
5825 |
msgid "Fraud"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
#: core/lib/wpbc_all_translations.php:
|
5829 |
msgid "!Paid OK"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
-
#: core/lib/wpbc_all_translations.php:
|
5833 |
msgid "Unknown status"
|
5834 |
msgstr ""
|
5835 |
|
5836 |
-
#: core/lib/wpbc_all_translations.php:
|
5837 |
msgid "Processed"
|
5838 |
msgstr ""
|
5839 |
|
5840 |
-
#: core/lib/wpbc_all_translations.php:
|
5841 |
msgid "Canceled_Reversal"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
-
#: core/lib/wpbc_all_translations.php:
|
5845 |
msgid "Denied"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#: core/lib/wpbc_all_translations.php:
|
5849 |
msgid "Expired"
|
5850 |
msgstr ""
|
5851 |
|
5852 |
-
#: core/lib/wpbc_all_translations.php:
|
5853 |
msgid "Partially_Refunded"
|
5854 |
msgstr ""
|
5855 |
|
5856 |
-
#: core/lib/wpbc_all_translations.php:
|
5857 |
msgid "Reversed"
|
5858 |
msgstr ""
|
5859 |
|
5860 |
-
#: core/lib/wpbc_all_translations.php:
|
5861 |
msgid "Voided"
|
5862 |
msgstr ""
|
5863 |
|
5864 |
-
#: core/lib/wpbc_all_translations.php:
|
5865 |
msgid "Not authed"
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#: core/lib/wpbc_all_translations.php:
|
5869 |
msgid "Malformed"
|
5870 |
msgstr ""
|
5871 |
|
5872 |
-
#: core/lib/wpbc_all_translations.php:
|
5873 |
msgid "Invalid"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
-
#: core/lib/wpbc_all_translations.php:
|
5877 |
msgid "Abort"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#: core/lib/wpbc_all_translations.php:
|
5881 |
msgid "Rejected"
|
5882 |
msgstr ""
|
5883 |
|
5884 |
-
#: core/lib/wpbc_all_translations.php:
|
5885 |
msgid "Suspended"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
-
#: core/lib/wpbc_all_translations.php:
|
5889 |
msgid "Send payment request to visitor"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
-
#: core/lib/wpbc_all_translations.php:
|
5893 |
#: inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:131 inc/_ps/p-toolbar.php:507
|
5894 |
msgid "Print"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: core/lib/wpbc_all_translations.php:
|
5898 |
msgid "Save cost"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
-
#: core/lib/wpbc_all_translations.php:
|
5902 |
msgid "Change status"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
-
#: core/lib/wpbc_all_translations.php:
|
5906 |
msgid "Send payment request to customer"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
#: core/lib/wpbc_all_translations.php:
|
5910 |
#, php-format
|
5911 |
msgid "Type your %sreason for payment%s request"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#: core/lib/wpbc_all_translations.php:
|
5915 |
msgid "Send Request"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: core/lib/wpbc_all_translations.php:
|
5919 |
msgid "Auto-fill form"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
-
#: core/lib/wpbc_all_translations.php:
|
5923 |
msgid "Suite"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
-
#: core/lib/wpbc_all_translations.php:
|
5927 |
#: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
|
5928 |
msgid "User"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: core/lib/wpbc_all_translations.php:
|
5932 |
#: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
|
5933 |
#: inc/_mu/admin/page-users.php:599
|
5934 |
msgid "Super Admin"
|
5935 |
msgstr ""
|
5936 |
|
5937 |
-
#: core/lib/wpbc_all_translations.php:
|
5938 |
#: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
|
5939 |
#: inc/_mu/admin/page-users.php:607
|
5940 |
msgid "Regular User"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#: core/lib/wpbc_all_translations.php:
|
5944 |
msgid "Inactive User"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#: core/lib/wpbc_all_translations.php:
|
5948 |
#: inc/_mu/admin/page-users.php:433
|
5949 |
msgid "Users"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
-
#: core/lib/wpbc_all_translations.php:
|
5953 |
msgid "Manage Users"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
-
#: core/lib/wpbc_all_translations.php:
|
5957 |
msgid "Users Settings"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
-
#: core/lib/wpbc_all_translations.php:
|
5961 |
#: inc/_mu/multiuser.php:649
|
5962 |
msgid "User is Activated"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
-
#: core/lib/wpbc_all_translations.php:
|
5966 |
#: inc/_mu/multiuser.php:699
|
5967 |
msgid "User is Deactivated"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
-
#: core/lib/wpbc_all_translations.php:
|
5971 |
msgid "User Role"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
-
#: core/lib/wpbc_all_translations.php:
|
5975 |
#: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
|
5976 |
msgid "Set user as"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: core/lib/wpbc_all_translations.php:
|
5980 |
msgid "Unlimited"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: core/lib/wpbc_all_translations.php:
|
5984 |
#: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
|
5985 |
#: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
|
5986 |
#: inc/_mu/admin/page-users.php:602
|
5987 |
msgid "Do you really want"
|
5988 |
msgstr ""
|
5989 |
|
5990 |
-
#: core/lib/wpbc_all_translations.php:
|
5991 |
msgid "make user active"
|
5992 |
msgstr ""
|
5993 |
|
5994 |
-
#: core/lib/wpbc_all_translations.php:
|
5995 |
msgid "Activate"
|
5996 |
msgstr ""
|
5997 |
|
5998 |
-
#: core/lib/wpbc_all_translations.php:
|
5999 |
msgid "make user inactive"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
-
#: core/lib/wpbc_all_translations.php:
|
6003 |
msgid "Deactivate"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
-
#: core/lib/wpbc_all_translations.php:
|
6007 |
msgid "delete configuration"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
-
#: core/lib/wpbc_all_translations.php:
|
6011 |
msgid "Delete settings"
|
6012 |
msgstr ""
|
6013 |
|
6014 |
-
#: core/lib/wpbc_all_translations.php:
|
6015 |
msgid "delete all booking data"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
-
#: core/lib/wpbc_all_translations.php:
|
6019 |
msgid "Delete data"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
-
#: core/lib/wpbc_all_translations.php:
|
6023 |
msgid "Work days"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
-
#: core/lib/wpbc_all_translations.php:
|
6027 |
#, php-format
|
6028 |
msgid ""
|
6029 |
"%sYou do not have permissions for this page.%s Your account is not active, please contact "
|
6030 |
"administrator.%s"
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#: core/lib/wpbc_all_translations.php:
|
6034 |
#, php-format
|
6035 |
msgid "%sYou do not have permissions for this booking resources.%s"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
-
#: core/lib/wpbc_all_translations.php:
|
6039 |
#, php-format
|
6040 |
msgid "%sNo this booking resources.%s"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: core/lib/wpbc_all_translations.php:
|
6044 |
msgid "Please, reserve an apartment with fresh flowers."
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: core/lib/wpbc_all_translations.php:
|
6048 |
msgid "Default booking resource"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: core/lib/wpbc_all_translations.php:
|
6052 |
msgid "Select your default booking resource."
|
6053 |
msgstr ""
|
6054 |
|
6055 |
-
#: core/lib/wpbc_all_translations.php:
|
6056 |
msgid "Resources number per page"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#: core/lib/wpbc_all_translations.php:
|
6060 |
msgid "Select number of booking resources (single or parent) per page at Resource menu page"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: core/lib/wpbc_all_translations.php:
|
6064 |
#: inc/_ps/admin/api-settings-p.php:197
|
6065 |
msgid "Booking title"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: core/lib/wpbc_all_translations.php:
|
6069 |
msgid "admin panel"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
-
#: core/lib/wpbc_all_translations.php:
|
6073 |
#, php-format
|
6074 |
msgid ""
|
6075 |
"Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
|
6076 |
"the shortcodes from the bottom form of Settings Fields page)."
|
6077 |
msgstr ""
|
6078 |
|
6079 |
-
#: core/lib/wpbc_all_translations.php:
|
6080 |
msgid "front panel"
|
6081 |
msgstr ""
|
6082 |
|
6083 |
-
#: core/lib/wpbc_all_translations.php:
|
6084 |
#, php-format
|
6085 |
msgid ""
|
6086 |
"Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
|
6087 |
"from the bottom form of Settings Fields page."
|
6088 |
msgstr ""
|
6089 |
|
6090 |
-
#: core/lib/wpbc_all_translations.php:
|
6091 |
msgid "Booking details in popover"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#: core/lib/wpbc_all_translations.php:
|
6095 |
#, php-format
|
6096 |
msgid ""
|
6097 |
"Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
|
6098 |
"side."
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: core/lib/wpbc_all_translations.php:
|
6102 |
msgid "semicolon"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: core/lib/wpbc_all_translations.php:
|
6106 |
msgid "comma"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: core/lib/wpbc_all_translations.php:
|
6110 |
msgid "CSV data separator"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: core/lib/wpbc_all_translations.php:
|
6114 |
msgid "Select separator of data for export bookings to CSV."
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: core/lib/wpbc_all_translations.php:
|
6118 |
#: js/wpbc-gutenberg.js:1096
|
6119 |
msgid "URL to edit bookings"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
-
#: core/lib/wpbc_all_translations.php:
|
6123 |
#, php-format
|
6124 |
msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
|
6125 |
msgstr ""
|
6126 |
|
6127 |
-
#: core/lib/wpbc_all_translations.php:
|
6128 |
msgid "Change hash after the booking is approved"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
-
#: core/lib/wpbc_all_translations.php:
|
6132 |
msgid ""
|
6133 |
"Check this box if you want to change the booking hash after approval. When checked, visitor will "
|
6134 |
"not be able to edit or cancel the booking."
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: core/lib/wpbc_all_translations.php:
|
6138 |
msgid "Modified"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: core/lib/wpbc_all_translations.php:
|
6142 |
msgid "Customization of email template, which is sending after modification of booking"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: core/lib/wpbc_all_translations.php:
|
6146 |
msgid "Email is sending to Visitor after Editing of booking."
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: core/lib/wpbc_all_translations.php:
|
6150 |
msgid "Customizaton of booking resources"
|
6151 |
msgstr ""
|
6152 |
|
6153 |
-
#: core/lib/wpbc_all_translations.php:
|
6154 |
#: inc/_ps/admin/page-settings-form.php:157
|
6155 |
msgid "Form fields"
|
6156 |
msgstr ""
|
6157 |
|
6158 |
-
#: core/lib/wpbc_all_translations.php:
|
6159 |
msgid "Content of Booking Fields"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
-
#: core/lib/wpbc_all_translations.php:
|
6163 |
msgid "Generate tag"
|
6164 |
msgstr ""
|
6165 |
|
6166 |
-
#: core/lib/wpbc_all_translations.php:
|
6167 |
#, php-format
|
6168 |
msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
-
#: core/lib/wpbc_all_translations.php:
|
6172 |
msgid "Form Template"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
-
#: core/lib/wpbc_all_translations.php:
|
6176 |
msgid "Standard Templates"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
-
#: core/lib/wpbc_all_translations.php:
|
6180 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111
|
6181 |
msgid "Columns"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
-
#: core/lib/wpbc_all_translations.php:
|
6185 |
msgid "Advanced Templates"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
-
#: core/lib/wpbc_all_translations.php:
|
6189 |
msgid "Wizard (several steps)"
|
6190 |
msgstr ""
|
6191 |
|
6192 |
-
#: core/lib/wpbc_all_translations.php:
|
6193 |
msgid "Time slots for different weekdays"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
-
#: core/lib/wpbc_all_translations.php:
|
6197 |
msgid "Hints"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
-
#: core/lib/wpbc_all_translations.php:
|
6201 |
msgid "Reset Form"
|
6202 |
msgstr ""
|
6203 |
|
6204 |
-
#: core/lib/wpbc_all_translations.php:
|
6205 |
msgid "Both"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
-
#: core/lib/wpbc_all_translations.php:
|
6209 |
msgid "Reset Booking Form and Content of Booking Fields Form"
|
6210 |
msgstr ""
|
6211 |
|
6212 |
-
#: core/lib/wpbc_all_translations.php:
|
6213 |
-
#: inc/gateways/page-gateways.php:
|
6214 |
#, php-format
|
6215 |
msgid "%s - inserting data from fields of booking form"
|
6216 |
msgstr ""
|
6217 |
|
6218 |
-
#: core/lib/wpbc_all_translations.php:
|
6219 |
#, php-format
|
6220 |
msgid "%s - inserting new line"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
-
#: core/lib/wpbc_all_translations.php:
|
6224 |
-
#: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:
|
6225 |
#, php-format
|
6226 |
msgid ""
|
6227 |
"You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
|
6228 |
"that all \"open\" tags (like %s) are closed (like this %s)."
|
6229 |
msgstr ""
|
6230 |
|
6231 |
-
#: core/lib/wpbc_all_translations.php:
|
6232 |
msgid "Upgrade to higher version"
|
6233 |
msgstr ""
|
6234 |
|
6235 |
-
#: core/lib/wpbc_all_translations.php:
|
6236 |
msgid "No results found."
|
6237 |
msgstr ""
|
6238 |
|
6239 |
-
#: core/lib/wpbc_all_translations.php:
|
6240 |
#, php-format
|
6241 |
msgid "Wrap each item with %s tag"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
-
#: core/lib/wpbc_all_translations.php:
|
6245 |
msgid "Put a label before field"
|
6246 |
msgstr ""
|
6247 |
|
6248 |
-
#: core/lib/wpbc_all_translations.php:
|
6249 |
#, php-format
|
6250 |
msgid "Make it %sexclusive%s"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
-
#: core/lib/wpbc_all_translations.php:
|
6254 |
#: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
|
6255 |
#: inc/_ps/form/class-wpbc-field-help-text.php:194
|
6256 |
msgid "Default value"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
-
#: core/lib/wpbc_all_translations.php:
|
6260 |
#, php-format
|
6261 |
msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
|
6262 |
msgstr ""
|
6263 |
|
6264 |
-
#: core/lib/wpbc_all_translations.php:
|
6265 |
#: inc/_ps/form/class-wpbc-field-help-select.php:111
|
6266 |
#: inc/_ps/form/class-wpbc-field-help-text.php:177
|
6267 |
msgid "required"
|
6268 |
msgstr ""
|
6269 |
|
6270 |
-
#: core/lib/wpbc_all_translations.php:
|
6271 |
#: inc/_ps/form/class-wpbc-field-help-select.php:129
|
6272 |
msgid "Titles of options"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
-
#: core/lib/wpbc_all_translations.php:
|
6276 |
#: inc/_ps/form/class-wpbc-field-help-select.php:86
|
6277 |
#, php-format
|
6278 |
msgid "One Value from %sOptions%s list"
|
6279 |
msgstr ""
|
6280 |
|
6281 |
-
#: core/lib/wpbc_all_translations.php:
|
6282 |
#, php-format
|
6283 |
msgid "Allow %smultiple%s selections"
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#: core/lib/wpbc_all_translations.php:
|
6287 |
#, php-format
|
6288 |
msgid "Set as %srequired%s"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
-
#: core/lib/wpbc_all_translations.php:
|
6292 |
msgid "Placeholder"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#: core/lib/wpbc_all_translations.php:
|
6296 |
msgid "Class"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
#: core/lib/wpbc_all_translations.php:
|
6300 |
msgid "Size"
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#: core/lib/wpbc_all_translations.php:
|
6304 |
msgid "Maxlength"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#: core/lib/wpbc_all_translations.php:
|
6308 |
msgid "Copy and paste this shortcode into the form at left side"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
-
#: core/lib/wpbc_all_translations.php:
|
6312 |
#, php-format
|
6313 |
msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
|
6314 |
msgstr ""
|
6315 |
|
6316 |
-
#: core/lib/wpbc_all_translations.php:
|
6317 |
msgid "Rows"
|
6318 |
msgstr ""
|
6319 |
|
6320 |
-
#: core/lib/wpbc_all_translations.php:
|
6321 |
msgid "General Information"
|
6322 |
msgstr ""
|
6323 |
|
6324 |
-
#: core/lib/wpbc_all_translations.php:
|
6325 |
msgid "Required Fields in Booking Form"
|
6326 |
msgstr ""
|
6327 |
|
6328 |
-
#: core/lib/wpbc_all_translations.php:
|
6329 |
#, php-format
|
6330 |
msgid "You must to have this shortcode:%s in the form."
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: core/lib/wpbc_all_translations.php:
|
6334 |
msgid ""
|
6335 |
"You can insert several calendars of different resources into the form allowing you to book "
|
6336 |
"several resources during one booking process."
|
6337 |
msgstr ""
|
6338 |
|
6339 |
-
#: core/lib/wpbc_all_translations.php:
|
6340 |
#, php-format
|
6341 |
msgid "Example: %s."
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: core/lib/wpbc_all_translations.php:
|
6345 |
#, php-format
|
6346 |
msgid ""
|
6347 |
"where %s – default calendar %s (you can select desired resource of calendar by inserting "
|
6348 |
"shortcode into page)%s"
|
6349 |
msgstr ""
|
6350 |
|
6351 |
-
#: core/lib/wpbc_all_translations.php:
|
6352 |
#: inc/_ps/form/class-wpbc-form-help.php:123
|
6353 |
#, php-format
|
6354 |
msgid "%s – calendar of booking resource with %s"
|
6355 |
msgstr ""
|
6356 |
|
6357 |
-
#: core/lib/wpbc_all_translations.php:
|
6358 |
#, php-format
|
6359 |
msgid "Please check more about this feature %shere%s."
|
6360 |
msgstr ""
|
6361 |
|
6362 |
-
#: core/lib/wpbc_all_translations.php:
|
6363 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
|
6364 |
#: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
|
6365 |
#: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
|
@@ -6369,82 +6378,82 @@ msgstr ""
|
|
6369 |
msgid "You can %suse this shortcode only once%s in the form."
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: core/lib/wpbc_all_translations.php:
|
6373 |
msgid "Email Field"
|
6374 |
msgstr ""
|
6375 |
|
6376 |
-
#: core/lib/wpbc_all_translations.php:
|
6377 |
#, php-format
|
6378 |
msgid "You must have this shortcode:%s in the booking form."
|
6379 |
msgstr ""
|
6380 |
|
6381 |
-
#: core/lib/wpbc_all_translations.php:
|
6382 |
msgid "This is the primary email field, which is used for sending emails to visitors."
|
6383 |
msgstr ""
|
6384 |
|
6385 |
-
#: core/lib/wpbc_all_translations.php:
|
6386 |
msgid "Drop Down"
|
6387 |
msgstr ""
|
6388 |
|
6389 |
-
#: core/lib/wpbc_all_translations.php:
|
6390 |
msgid "Checkbox(es)"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: core/lib/wpbc_all_translations.php:
|
6394 |
msgid "Radio Button(s)"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
-
#: core/lib/wpbc_all_translations.php:
|
6398 |
#, php-format
|
6399 |
msgid "Insert %s shortcode to prevent SPAM bookings."
|
6400 |
msgstr ""
|
6401 |
|
6402 |
-
#: core/lib/wpbc_all_translations.php:
|
6403 |
msgid "Submit Button"
|
6404 |
msgstr ""
|
6405 |
|
6406 |
-
#: core/lib/wpbc_all_translations.php:
|
6407 |
msgid "Times Fields"
|
6408 |
msgstr ""
|
6409 |
|
6410 |
-
#: core/lib/wpbc_all_translations.php:
|
6411 |
msgid "Time Slot List"
|
6412 |
msgstr ""
|
6413 |
|
6414 |
-
#: core/lib/wpbc_all_translations.php:
|
6415 |
#: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
|
6416 |
#: inc/_ps/form/class-wpbc-form-help.php:379
|
6417 |
#, php-format
|
6418 |
msgid "Select the %s using the predefined %sTime List%s."
|
6419 |
msgstr ""
|
6420 |
|
6421 |
-
#: core/lib/wpbc_all_translations.php:
|
6422 |
msgid "Time Slot"
|
6423 |
msgstr ""
|
6424 |
|
6425 |
-
#: core/lib/wpbc_all_translations.php:
|
6426 |
#, php-format
|
6427 |
msgid ""
|
6428 |
"Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
|
6429 |
"slots, this time field will %sdisable booked times slots%s (set them as grayed)."
|
6430 |
msgstr ""
|
6431 |
|
6432 |
-
#: core/lib/wpbc_all_translations.php:
|
6433 |
#, php-format
|
6434 |
msgid "It works only in %ssingle day selection%s mode."
|
6435 |
msgstr ""
|
6436 |
|
6437 |
-
#: core/lib/wpbc_all_translations.php:
|
6438 |
msgid ""
|
6439 |
"Also some early versions of the IE do not support disabling of the options in the selectboxes."
|
6440 |
msgstr ""
|
6441 |
|
6442 |
-
#: core/lib/wpbc_all_translations.php:
|
6443 |
msgid ""
|
6444 |
"Even if visitor selects the booked timeslot, system will not allow them to make the booking."
|
6445 |
msgstr ""
|
6446 |
|
6447 |
-
#: core/lib/wpbc_all_translations.php:
|
6448 |
#: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
|
6449 |
#, php-format
|
6450 |
msgid ""
|
@@ -6452,117 +6461,117 @@ msgid ""
|
|
6452 |
"Time)%s only."
|
6453 |
msgstr ""
|
6454 |
|
6455 |
-
#: core/lib/wpbc_all_translations.php:
|
6456 |
#, php-format
|
6457 |
msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
|
6458 |
msgstr ""
|
6459 |
|
6460 |
-
#: core/lib/wpbc_all_translations.php:
|
6461 |
msgid "Start Time - Text field"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
-
#: core/lib/wpbc_all_translations.php:
|
6465 |
#: inc/_ps/form/class-wpbc-form-help.php:288
|
6466 |
#, php-format
|
6467 |
msgid "Enter %s in text field."
|
6468 |
msgstr ""
|
6469 |
|
6470 |
-
#: core/lib/wpbc_all_translations.php:
|
6471 |
#: inc/_ps/admin/api-settings-p.php:115 inc/_ps/form/class-wpbc-form-help.php:275
|
6472 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
|
6473 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6474 |
msgid "Start Time"
|
6475 |
msgstr ""
|
6476 |
|
6477 |
-
#: core/lib/wpbc_all_translations.php:
|
6478 |
#: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
|
6479 |
#, php-format
|
6480 |
msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
|
6481 |
msgstr ""
|
6482 |
|
6483 |
-
#: core/lib/wpbc_all_translations.php:
|
6484 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6485 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6486 |
#, php-format
|
6487 |
msgid "You can also use the %s in the form."
|
6488 |
msgstr ""
|
6489 |
|
6490 |
-
#: core/lib/wpbc_all_translations.php:
|
6491 |
#: inc/_ps/admin/api-settings-p.php:134 inc/_ps/form/class-wpbc-form-help.php:279
|
6492 |
#: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
|
6493 |
#: inc/_ps/form/class-wpbc-form-help.php:340
|
6494 |
msgid "End Time"
|
6495 |
msgstr ""
|
6496 |
|
6497 |
-
#: core/lib/wpbc_all_translations.php:
|
6498 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6499 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
|
6500 |
msgid "Duration Time"
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#: core/lib/wpbc_all_translations.php:
|
6504 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6505 |
#: inc/_ps/form/class-wpbc-form-help.php:344
|
6506 |
msgid "fields"
|
6507 |
msgstr ""
|
6508 |
|
6509 |
-
#: core/lib/wpbc_all_translations.php:
|
6510 |
msgid "End Time - Text field"
|
6511 |
msgstr ""
|
6512 |
|
6513 |
-
#: core/lib/wpbc_all_translations.php:
|
6514 |
msgid "Start Time - Drop Down list"
|
6515 |
msgstr ""
|
6516 |
|
6517 |
-
#: core/lib/wpbc_all_translations.php:
|
6518 |
#, php-format
|
6519 |
msgid ""
|
6520 |
"Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
|
6521 |
"Time)%s only."
|
6522 |
msgstr ""
|
6523 |
|
6524 |
-
#: core/lib/wpbc_all_translations.php:
|
6525 |
msgid "End Time - Drop Down list"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
-
#: core/lib/wpbc_all_translations.php:
|
6529 |
msgid "Duration Time - Drop Down list"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
-
#: core/lib/wpbc_all_translations.php:
|
6533 |
msgid "field"
|
6534 |
msgstr ""
|
6535 |
|
6536 |
-
#: core/lib/wpbc_all_translations.php:
|
6537 |
msgid "Different time slots, for the different week days"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
-
#: core/lib/wpbc_all_translations.php:
|
6541 |
msgid ""
|
6542 |
"This feature provides the possibility to use the different time slot selections in the booking "
|
6543 |
"form for the different week days or different days - which are assigned to the specific season "
|
6544 |
"filters. So each week day (day of specific season filter) can have a different time slots list."
|
6545 |
msgstr ""
|
6546 |
|
6547 |
-
#: core/lib/wpbc_all_translations.php:
|
6548 |
#: inc/_ps/form/class-wpbc-form-help.php:568
|
6549 |
msgid "Configuration"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
-
#: core/lib/wpbc_all_translations.php:
|
6553 |
#: inc/_ps/form/class-wpbc-form-help.php:569
|
6554 |
#, php-format
|
6555 |
msgid "The general structure of the configuration %scondition rule%s is as follows"
|
6556 |
msgstr ""
|
6557 |
|
6558 |
-
#: core/lib/wpbc_all_translations.php:
|
6559 |
#: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
|
6560 |
#: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
|
6561 |
#: inc/_ps/form/class-wpbc-form-help.php:619
|
6562 |
msgid "Parameters"
|
6563 |
msgstr ""
|
6564 |
|
6565 |
-
#: core/lib/wpbc_all_translations.php:
|
6566 |
#: inc/_ps/form/class-wpbc-form-help.php:576
|
6567 |
#, php-format
|
6568 |
msgid ""
|
@@ -6572,7 +6581,7 @@ msgid ""
|
|
6572 |
"conditions. Please check more about it, in the examples."
|
6573 |
msgstr ""
|
6574 |
|
6575 |
-
#: core/lib/wpbc_all_translations.php:
|
6576 |
#: inc/_ps/form/class-wpbc-form-help.php:577
|
6577 |
#, php-format
|
6578 |
msgid ""
|
@@ -6583,7 +6592,7 @@ msgid ""
|
|
6583 |
"filter in the Season Filters page."
|
6584 |
msgstr ""
|
6585 |
|
6586 |
-
#: core/lib/wpbc_all_translations.php:
|
6587 |
#, php-format
|
6588 |
msgid ""
|
6589 |
"%svalue%s – value of the specific conditions. If the value is true, the content of the "
|
@@ -6592,47 +6601,47 @@ msgid ""
|
|
6592 |
"at initial stage, when the date in calendar is not yet selected."
|
6593 |
msgstr ""
|
6594 |
|
6595 |
-
#: core/lib/wpbc_all_translations.php:
|
6596 |
#: inc/_ps/form/class-wpbc-form-help.php:580
|
6597 |
msgid "Examples"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
-
#: core/lib/wpbc_all_translations.php:
|
6601 |
#: inc/_ps/form/class-wpbc-form-help.php:581
|
6602 |
msgid "Week days conditions."
|
6603 |
msgstr ""
|
6604 |
|
6605 |
-
#: core/lib/wpbc_all_translations.php:
|
6606 |
#: inc/_ps/form/class-wpbc-form-help.php:597
|
6607 |
msgid "default value, if no dates are selected, or none exist conditions are true."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: core/lib/wpbc_all_translations.php:
|
6611 |
#: inc/_ps/form/class-wpbc-form-help.php:475
|
6612 |
msgid "You can use the several values, separated by comma."
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: core/lib/wpbc_all_translations.php:
|
6616 |
#: inc/_ps/form/class-wpbc-form-help.php:607
|
6617 |
msgid "Season filters conditions."
|
6618 |
msgstr ""
|
6619 |
|
6620 |
-
#: core/lib/wpbc_all_translations.php:
|
6621 |
#: inc/_ps/form/class-wpbc-form-help.php:620
|
6622 |
msgid "Season filter on the Season Filters page,"
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: core/lib/wpbc_all_translations.php:
|
6626 |
#: inc/_ps/form/class-wpbc-form-help.php:621
|
6627 |
msgid "Season filter on the Season Filters page"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
-
#: core/lib/wpbc_all_translations.php:
|
6631 |
#: inc/_ps/form/class-wpbc-form-help.php:624
|
6632 |
msgid "Additional info"
|
6633 |
msgstr ""
|
6634 |
|
6635 |
-
#: core/lib/wpbc_all_translations.php:
|
6636 |
#: inc/_ps/form/class-wpbc-form-help.php:625
|
6637 |
#, php-format
|
6638 |
msgid ""
|
@@ -6640,103 +6649,103 @@ msgid ""
|
|
6640 |
"section."
|
6641 |
msgstr ""
|
6642 |
|
6643 |
-
#: core/lib/wpbc_all_translations.php:
|
6644 |
#: inc/_ps/form/class-wpbc-form-help.php:626
|
6645 |
#, php-format
|
6646 |
msgid "Please check more about this feature at %sthis page%s"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: core/lib/wpbc_all_translations.php:
|
6650 |
msgid "Time Field"
|
6651 |
msgstr ""
|
6652 |
|
6653 |
-
#: core/lib/wpbc_all_translations.php:
|
6654 |
#, php-format
|
6655 |
msgid "Enter the %sTime%s using the text field."
|
6656 |
msgstr ""
|
6657 |
|
6658 |
-
#: core/lib/wpbc_all_translations.php:
|
6659 |
msgid "This field does not impact to availability (booking for the specific time) ."
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: core/lib/wpbc_all_translations.php:
|
6663 |
msgid "The value of this field is just saved into DB."
|
6664 |
msgstr ""
|
6665 |
|
6666 |
-
#: core/lib/wpbc_all_translations.php:
|
6667 |
msgid "Country List"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
-
#: core/lib/wpbc_all_translations.php:
|
6671 |
msgid "Select the country from the predefined country list."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
-
#: core/lib/wpbc_all_translations.php:
|
6675 |
#, php-format
|
6676 |
msgid "You can customize the country list at this file: %s"
|
6677 |
msgstr ""
|
6678 |
|
6679 |
-
#: core/lib/wpbc_all_translations.php:
|
6680 |
msgid "You can insert this field with default selected value."
|
6681 |
msgstr ""
|
6682 |
|
6683 |
-
#: core/lib/wpbc_all_translations.php:
|
6684 |
#, php-format
|
6685 |
msgid "Example: %s - %s\"United States\"%s is selected by default."
|
6686 |
msgstr ""
|
6687 |
|
6688 |
-
#: core/lib/wpbc_all_translations.php:
|
6689 |
msgid "Language Sections"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: core/lib/wpbc_all_translations.php:
|
6693 |
msgid "Plugin support configurations of the booking form are available in different languages."
|
6694 |
msgstr ""
|
6695 |
|
6696 |
-
#: core/lib/wpbc_all_translations.php:
|
6697 |
msgid "The active language of the booking form depends on the active locale of the site."
|
6698 |
msgstr ""
|
6699 |
|
6700 |
-
#: core/lib/wpbc_all_translations.php:
|
6701 |
msgid ""
|
6702 |
"Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
|
6703 |
msgstr ""
|
6704 |
|
6705 |
-
#: core/lib/wpbc_all_translations.php:
|
6706 |
msgid "Usage"
|
6707 |
msgstr ""
|
6708 |
|
6709 |
-
#: core/lib/wpbc_all_translations.php:
|
6710 |
#, php-format
|
6711 |
msgid "start new translation section in specific language, where %s - locale of the translation."
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#: core/lib/wpbc_all_translations.php:
|
6715 |
msgid "English and French translation"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#: core/lib/wpbc_all_translations.php:
|
6719 |
msgid "of configuration booking form in English and French languages"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
-
#: core/lib/wpbc_all_translations.php:
|
6723 |
msgid ""
|
6724 |
"Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
|
6725 |
"translation\" page. Required WPML 3.2 with String Translation plugin."
|
6726 |
msgstr ""
|
6727 |
|
6728 |
-
#: core/lib/wpbc_all_translations.php:
|
6729 |
msgid "Different form fields, for the different week days"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
-
#: core/lib/wpbc_all_translations.php:
|
6733 |
msgid ""
|
6734 |
"This feature provides the possibility to show the different form fields or any other HTML "
|
6735 |
"content in the booking form, depending on the selection of specific week day in calendar or "
|
6736 |
"different days, which are assigned to the specific season filters"
|
6737 |
msgstr ""
|
6738 |
|
6739 |
-
#: core/lib/wpbc_all_translations.php:
|
6740 |
#, php-format
|
6741 |
msgid ""
|
6742 |
"%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
|
@@ -6745,54 +6754,54 @@ msgid ""
|
|
6745 |
"at initial stage, when the date in calendar is not yet selected."
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: core/lib/wpbc_all_translations.php:
|
6749 |
msgid "You can use several values, separated by comma."
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: core/lib/wpbc_all_translations.php:
|
6753 |
msgid "You can use several values, separated by a comma."
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: core/lib/wpbc_all_translations.php:
|
6757 |
msgid "Cost Fields"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
-
#: core/lib/wpbc_all_translations.php:
|
6761 |
msgid "Cost Correction Field"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: core/lib/wpbc_all_translations.php:
|
6765 |
#, php-format
|
6766 |
msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
|
6767 |
msgstr ""
|
6768 |
|
6769 |
-
#: core/lib/wpbc_all_translations.php:
|
6770 |
#, php-format
|
6771 |
msgid "Use this field for %scorrecting the cost%s during adding new booking."
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#: core/lib/wpbc_all_translations.php:
|
6775 |
msgid "Discount Coupon field"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#: core/lib/wpbc_all_translations.php:
|
6779 |
msgid "Please use this field for possibility to use coupon discounts by your visitors."
|
6780 |
msgstr ""
|
6781 |
|
6782 |
-
#: core/lib/wpbc_all_translations.php:
|
6783 |
#, php-format
|
6784 |
msgid "You can configure the discount coupon codes at this %spage%s."
|
6785 |
msgstr ""
|
6786 |
|
6787 |
-
#: core/lib/wpbc_all_translations.php:
|
6788 |
msgid "Hints for your form"
|
6789 |
msgstr ""
|
6790 |
|
6791 |
-
#: core/lib/wpbc_all_translations.php:
|
6792 |
msgid "Cost Hints"
|
6793 |
msgstr ""
|
6794 |
|
6795 |
-
#: core/lib/wpbc_all_translations.php:
|
6796 |
#: inc/_ps/form/class-wpbc-form-help.php:697
|
6797 |
#, php-format
|
6798 |
msgid ""
|
@@ -6800,114 +6809,114 @@ msgid ""
|
|
6800 |
"calendar or options in checkboxes or selectboxes)%s."
|
6801 |
msgstr ""
|
6802 |
|
6803 |
-
#: core/lib/wpbc_all_translations.php:
|
6804 |
msgid "Dates and Times Hints"
|
6805 |
msgstr ""
|
6806 |
|
6807 |
-
#: core/lib/wpbc_all_translations.php:
|
6808 |
-
#: inc/gateways/page-gateways.php:
|
6809 |
msgid "Selected Check In date."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: core/lib/wpbc_all_translations.php:
|
6813 |
#: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
|
6814 |
#: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
|
6815 |
#: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
|
6816 |
#: inc/_ps/form/class-wpbc-form-help.php:721 inc/_ps/form/class-wpbc-form-help.php:724
|
6817 |
#: inc/_ps/form/class-wpbc-form-help.php:727 inc/_ps/form/class-wpbc-form-help.php:730
|
6818 |
-
#: inc/gateways/page-gateways.php:
|
6819 |
-
#: inc/gateways/page-gateways.php:
|
6820 |
-
#: inc/gateways/page-gateways.php:
|
6821 |
-
#: inc/gateways/page-gateways.php:
|
6822 |
-
#: inc/gateways/page-gateways.php:
|
6823 |
msgid "Example:"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
-
#: core/lib/wpbc_all_translations.php:
|
6827 |
-
#: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:
|
6828 |
msgid "Selected Check Out date."
|
6829 |
msgstr ""
|
6830 |
|
6831 |
-
#: core/lib/wpbc_all_translations.php:
|
6832 |
-
#: inc/gateways/page-gateways.php:
|
6833 |
msgid "Selected Start Time."
|
6834 |
msgstr ""
|
6835 |
|
6836 |
-
#: core/lib/wpbc_all_translations.php:
|
6837 |
-
#: inc/gateways/page-gateways.php:
|
6838 |
msgid "Selected End Time."
|
6839 |
msgstr ""
|
6840 |
|
6841 |
-
#: core/lib/wpbc_all_translations.php:
|
6842 |
-
#: inc/gateways/page-gateways.php:
|
6843 |
msgid "All selected dates."
|
6844 |
msgstr ""
|
6845 |
|
6846 |
-
#: core/lib/wpbc_all_translations.php:
|
6847 |
-
#: inc/gateways/page-gateways.php:
|
6848 |
msgid "All selected dates with times."
|
6849 |
msgstr ""
|
6850 |
|
6851 |
-
#: core/lib/wpbc_all_translations.php:
|
6852 |
-
#: inc/gateways/page-gateways.php:
|
6853 |
msgid "All selected dates in \"short\" format."
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#: core/lib/wpbc_all_translations.php:
|
6857 |
-
#: inc/gateways/page-gateways.php:
|
6858 |
msgid "All selected dates with times in \"short\" format.."
|
6859 |
msgstr ""
|
6860 |
|
6861 |
-
#: core/lib/wpbc_all_translations.php:
|
6862 |
-
#: inc/gateways/page-gateways.php:
|
6863 |
msgid "Number of selected days."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: core/lib/wpbc_all_translations.php:
|
6867 |
-
#: inc/gateways/page-gateways.php:
|
6868 |
msgid "Number of selected nights."
|
6869 |
msgstr ""
|
6870 |
|
6871 |
-
#: core/lib/wpbc_all_translations.php:
|
6872 |
msgid "Other Hints"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
-
#: core/lib/wpbc_all_translations.php:
|
6876 |
-
#: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:
|
6877 |
msgid "title of booking resource"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: core/lib/wpbc_all_translations.php:
|
6881 |
msgid "ID of booking resource."
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: core/lib/wpbc_all_translations.php:
|
6885 |
msgid "cost of booking resource."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: core/lib/wpbc_all_translations.php:
|
6889 |
msgid "capacity of booking resource."
|
6890 |
msgstr ""
|
6891 |
|
6892 |
-
#: core/lib/wpbc_all_translations.php:
|
6893 |
msgid "maximum number of visitors per booking resource."
|
6894 |
msgstr ""
|
6895 |
|
6896 |
-
#: core/lib/wpbc_all_translations.php:
|
6897 |
msgid "Tips and Tricks"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
-
#: core/lib/wpbc_all_translations.php:
|
6901 |
#, php-format
|
6902 |
msgid "%sEmail verification field%s."
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#: core/lib/wpbc_all_translations.php:
|
6906 |
#, php-format
|
6907 |
msgid "%sDescription of usage%s."
|
6908 |
msgstr ""
|
6909 |
|
6910 |
-
#: core/lib/wpbc_all_translations.php:
|
6911 |
#, php-format
|
6912 |
msgid ""
|
6913 |
"To create verification email, you need to use special CSS class in other email field. This CSS "
|
@@ -6915,280 +6924,280 @@ msgid ""
|
|
6915 |
"field: %s"
|
6916 |
msgstr ""
|
6917 |
|
6918 |
-
#: core/lib/wpbc_all_translations.php:
|
6919 |
#, php-format
|
6920 |
msgid "%sExample%s."
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#: core/lib/wpbc_all_translations.php:
|
6924 |
msgid "confirmation email field of the primary email field"
|
6925 |
msgstr ""
|
6926 |
|
6927 |
-
#: core/lib/wpbc_all_translations.php:
|
6928 |
msgid "Generate Tag"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
-
#: core/lib/wpbc_all_translations.php:
|
6932 |
msgid "Select option to configure or show help info about tags"
|
6933 |
msgstr ""
|
6934 |
|
6935 |
-
#: core/lib/wpbc_all_translations.php:
|
6936 |
msgid "Keyword"
|
6937 |
msgstr ""
|
6938 |
|
6939 |
-
#: core/lib/wpbc_all_translations.php:
|
6940 |
msgid "Enter Keyword here"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
-
#: core/lib/wpbc_all_translations.php:
|
6944 |
msgid ""
|
6945 |
"Save filter settings as default template (Please, click Apply filter button, before saving!)"
|
6946 |
msgstr ""
|
6947 |
|
6948 |
-
#: core/lib/wpbc_all_translations.php:
|
6949 |
msgid "Save as Default"
|
6950 |
msgstr ""
|
6951 |
|
6952 |
-
#: core/lib/wpbc_all_translations.php:
|
6953 |
msgid "Delete your previously saved default filer template!"
|
6954 |
msgstr ""
|
6955 |
|
6956 |
-
#: core/lib/wpbc_all_translations.php:
|
6957 |
msgid "Delete template"
|
6958 |
msgstr ""
|
6959 |
|
6960 |
-
#: core/lib/wpbc_all_translations.php:
|
6961 |
msgid "Print bookings listing"
|
6962 |
msgstr ""
|
6963 |
|
6964 |
-
#: core/lib/wpbc_all_translations.php:
|
6965 |
msgid "Export only current page of bookings to CSV format"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
-
#: core/lib/wpbc_all_translations.php:
|
6969 |
msgid "Export All"
|
6970 |
msgstr ""
|
6971 |
|
6972 |
-
#: core/lib/wpbc_all_translations.php:
|
6973 |
msgid "Export All bookings to CSV format"
|
6974 |
msgstr ""
|
6975 |
|
6976 |
-
#: core/lib/wpbc_all_translations.php:
|
6977 |
msgid "Edit Note"
|
6978 |
msgstr ""
|
6979 |
|
6980 |
-
#: core/lib/wpbc_all_translations.php:
|
6981 |
msgid "Change Language"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: core/lib/wpbc_all_translations.php:
|
6985 |
msgid "Default Locale"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: core/lib/wpbc_all_translations.php:
|
6989 |
msgid "Change Resource"
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#: core/lib/wpbc_all_translations.php:
|
6993 |
-
#: inc/_ps/personal.php:
|
6994 |
msgid "Duplicate Booking"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
-
#: core/lib/wpbc_all_translations.php:
|
6998 |
msgid "Save"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
-
#: core/lib/wpbc_all_translations.php:
|
7002 |
msgid "Change"
|
7003 |
msgstr ""
|
7004 |
|
7005 |
-
#: core/lib/wpbc_all_translations.php:
|
7006 |
msgid "Print bookings"
|
7007 |
msgstr ""
|
7008 |
|
7009 |
-
#: core/lib/wpbc_all_translations.php:
|
7010 |
msgid "Export bookings"
|
7011 |
msgstr ""
|
7012 |
|
7013 |
-
#: core/lib/wpbc_all_translations.php:
|
7014 |
msgid "Download the CSV file of exported booking data"
|
7015 |
msgstr ""
|
7016 |
|
7017 |
-
#: core/lib/wpbc_all_translations.php:
|
7018 |
msgid "Download"
|
7019 |
msgstr ""
|
7020 |
|
7021 |
-
#: core/lib/wpbc_all_translations.php:
|
7022 |
msgid "Clear booking resources selection"
|
7023 |
msgstr ""
|
7024 |
|
7025 |
-
#: core/lib/wpbc_all_translations.php:
|
7026 |
msgid "Apply booking resources selection"
|
7027 |
msgstr ""
|
7028 |
|
7029 |
-
#: core/lib/wpbc_all_translations.php:
|
7030 |
msgid ""
|
7031 |
"Please note, its not possible to add new resources, if \"All resources\" option is selected. "
|
7032 |
"Please clear the selection, then add new resources."
|
7033 |
msgstr ""
|
7034 |
|
7035 |
-
#: core/lib/wpbc_all_translations.php:
|
7036 |
msgid "Add New Booking Resource(s)"
|
7037 |
msgstr ""
|
7038 |
|
7039 |
-
#: core/lib/wpbc_all_translations.php:
|
7040 |
msgid "Enter name of booking resource"
|
7041 |
msgstr ""
|
7042 |
|
7043 |
-
#: core/lib/wpbc_all_translations.php:
|
7044 |
msgid "Resources count"
|
7045 |
msgstr ""
|
7046 |
|
7047 |
-
#: core/lib/wpbc_all_translations.php:
|
7048 |
msgid "This booking resources does not exist"
|
7049 |
msgstr ""
|
7050 |
|
7051 |
-
#: core/lib/wpbc_all_translations.php:
|
7052 |
msgid "Generating columns"
|
7053 |
msgstr ""
|
7054 |
|
7055 |
-
#: core/lib/wpbc_all_translations.php:
|
7056 |
msgid "Exporting booking data"
|
7057 |
msgstr ""
|
7058 |
|
7059 |
-
#: core/lib/wpbc_all_translations.php:
|
7060 |
msgid "Generating content of file"
|
7061 |
msgstr ""
|
7062 |
|
7063 |
-
#: core/lib/wpbc_all_translations.php:
|
7064 |
msgid "Saving to file"
|
7065 |
msgstr ""
|
7066 |
|
7067 |
-
#: core/lib/wpbc_all_translations.php:
|
7068 |
msgid "The booking was canceled by the visitor."
|
7069 |
msgstr ""
|
7070 |
|
7071 |
-
#: core/lib/wpbc_all_translations.php:
|
7072 |
msgid "The booking has been canceled successfully"
|
7073 |
msgstr ""
|
7074 |
|
7075 |
-
#: core/lib/wpbc_all_translations.php:
|
7076 |
msgid "Incorrect date format"
|
7077 |
msgstr ""
|
7078 |
|
7079 |
-
#: core/lib/wpbc_all_translations.php:
|
7080 |
msgid "Change your Booking"
|
7081 |
msgstr ""
|
7082 |
|
7083 |
-
#: core/lib/wpbc_all_translations.php:
|
7084 |
msgid "Cancel Booking"
|
7085 |
msgstr ""
|
7086 |
|
7087 |
-
#: core/lib/wpbc_all_translations.php:
|
7088 |
msgid "Warning! The resource was not changed. Current dates are already booked there."
|
7089 |
msgstr ""
|
7090 |
|
7091 |
-
#: core/lib/wpbc_all_translations.php:
|
7092 |
msgid "The booking has been duplicated successfully"
|
7093 |
msgstr ""
|
7094 |
|
7095 |
-
#: core/lib/wpbc_all_translations.php:
|
7096 |
msgid "Warning! Operation failed. Current dates are already booked there."
|
7097 |
msgstr ""
|
7098 |
|
7099 |
-
#: core/lib/wpbc_all_translations.php:
|
7100 |
msgid "Sending request..."
|
7101 |
msgstr ""
|
7102 |
|
7103 |
-
#: core/lib/wpbc_all_translations.php:
|
7104 |
msgid "Order number"
|
7105 |
msgstr ""
|
7106 |
|
7107 |
-
#: core/lib/wpbc_all_translations.php:
|
7108 |
msgid "Register"
|
7109 |
msgstr ""
|
7110 |
|
7111 |
-
#: core/lib/wpbc_all_translations.php:
|
7112 |
msgid ""
|
7113 |
"Please, enter order number of your purchased version, which you received to your billing email."
|
7114 |
msgstr ""
|
7115 |
|
7116 |
-
#: core/lib/wpbc_all_translations.php:
|
7117 |
#, php-format
|
7118 |
msgid "If you will get any difficulties or have a questions, please contact by email %s"
|
7119 |
msgstr ""
|
7120 |
|
7121 |
-
#: core/lib/wpbc_all_translations.php:
|
7122 |
msgid "Default form"
|
7123 |
msgstr ""
|
7124 |
|
7125 |
-
#: core/lib/wpbc_all_translations.php:
|
7126 |
#, php-format
|
7127 |
msgid ""
|
7128 |
"There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
|
7129 |
"version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
|
7130 |
msgstr ""
|
7131 |
|
7132 |
-
#: core/lib/wpbc_all_translations.php:
|
7133 |
#, php-format
|
7134 |
msgid "You can request the new update of plugin on %1$sthis page%2$s."
|
7135 |
msgstr ""
|
7136 |
|
7137 |
-
#: core/lib/wpbc_all_translations.php:
|
7138 |
msgid "Upgrade Notice"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
-
#: core/lib/wpbc_all_translations.php:
|
7142 |
#, php-format
|
7143 |
msgid "Version %s By %s"
|
7144 |
msgstr ""
|
7145 |
|
7146 |
-
#: core/lib/wpbc_all_translations.php:
|
7147 |
msgid "View details"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
-
#: core/lib/wpbc_all_translations.php:
|
7151 |
#: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
|
7152 |
#: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
|
7153 |
msgid "First Name (required)"
|
7154 |
msgstr ""
|
7155 |
|
7156 |
-
#: core/lib/wpbc_all_translations.php:
|
7157 |
#: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
|
7158 |
#: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
|
7159 |
msgid "Last Name (required)"
|
7160 |
msgstr ""
|
7161 |
|
7162 |
-
#: core/lib/wpbc_all_translations.php:
|
7163 |
#: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
|
7164 |
#: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
|
7165 |
msgid "Email (required)"
|
7166 |
msgstr ""
|
7167 |
|
7168 |
-
#: core/lib/wpbc_all_translations.php:
|
7169 |
#: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
|
7170 |
#: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
|
7171 |
#: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
|
7172 |
#: inc/_ps/wpbc-form-templates.php:174 inc/_ps/wpbc-form-templates.php:189
|
7173 |
-
#: inc/gateways/page-gateways.php:
|
7174 |
msgid "Phone"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
-
#: core/lib/wpbc_all_translations.php:
|
7178 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7179 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
|
7180 |
#: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
|
7181 |
msgid "Adults"
|
7182 |
msgstr ""
|
7183 |
|
7184 |
-
#: core/lib/wpbc_all_translations.php:
|
7185 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7186 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
|
7187 |
#: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
|
7188 |
msgid "Children"
|
7189 |
msgstr ""
|
7190 |
|
7191 |
-
#: core/lib/wpbc_all_translations.php:
|
7192 |
#: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
|
7193 |
#: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
|
7194 |
#: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
|
@@ -7196,450 +7205,437 @@ msgstr ""
|
|
7196 |
msgid "Details"
|
7197 |
msgstr ""
|
7198 |
|
7199 |
-
#: core/lib/wpbc_all_translations.php:
|
7200 |
#: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
|
7201 |
#: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
|
7202 |
msgid "I Accept term and conditions"
|
7203 |
msgstr ""
|
7204 |
|
7205 |
-
#: core/lib/wpbc_all_translations.php:
|
7206 |
#: inc/_ps/wpbc-form-templates.php:68
|
7207 |
msgid "Select Times"
|
7208 |
msgstr ""
|
7209 |
|
7210 |
-
#: core/lib/wpbc_all_translations.php:
|
7211 |
#: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
|
7212 |
#: inc/_ps/wpbc-form-templates.php:118
|
7213 |
msgid "Address (required)"
|
7214 |
msgstr ""
|
7215 |
|
7216 |
-
#: core/lib/wpbc_all_translations.php:
|
7217 |
#: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
|
7218 |
#: inc/_ps/wpbc-form-templates.php:119
|
7219 |
msgid "City (required)"
|
7220 |
msgstr ""
|
7221 |
|
7222 |
-
#: core/lib/wpbc_all_translations.php:
|
7223 |
#: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
|
7224 |
#: inc/_ps/wpbc-form-templates.php:120
|
7225 |
msgid "Post code (required)"
|
7226 |
msgstr ""
|
7227 |
|
7228 |
-
#: core/lib/wpbc_all_translations.php:
|
7229 |
#: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
|
7230 |
#: inc/_ps/wpbc-form-templates.php:121
|
7231 |
msgid "Country (required)"
|
7232 |
msgstr ""
|
7233 |
|
7234 |
-
#: core/lib/wpbc_all_translations.php:
|
7235 |
msgid "night(s)"
|
7236 |
msgstr ""
|
7237 |
|
7238 |
-
#: core/lib/wpbc_all_translations.php:
|
7239 |
#: inc/_ps/wpbc-form-templates.php:112
|
7240 |
msgid "Full cost of the booking"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
-
#: core/lib/wpbc_all_translations.php:
|
7244 |
#: inc/_ps/wpbc-form-templates.php:194
|
7245 |
msgid "Visitors"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: core/lib/wpbc_all_translations.php:
|
7249 |
#: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
|
7250 |
#: inc/_ps/wpbc-form-templates.php:187
|
7251 |
msgid "Last Name"
|
7252 |
msgstr ""
|
7253 |
|
7254 |
-
#: core/lib/wpbc_all_translations.php:
|
7255 |
#: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
|
7256 |
#: inc/_ps/wpbc-form-templates.php:188
|
7257 |
msgid "Email"
|
7258 |
msgstr ""
|
7259 |
|
7260 |
-
#: core/lib/wpbc_all_translations.php:
|
7261 |
#: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
|
7262 |
msgid "Address"
|
7263 |
msgstr ""
|
7264 |
|
7265 |
-
#: core/lib/wpbc_all_translations.php:
|
7266 |
#: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
|
7267 |
msgid "City"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
-
#: core/lib/wpbc_all_translations.php:
|
7271 |
#: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
|
7272 |
msgid "Post code"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
-
#: core/lib/wpbc_all_translations.php:
|
7276 |
#: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
|
7277 |
-
#: inc/gateways/page-gateways.php:
|
7278 |
msgid "Country"
|
7279 |
msgstr ""
|
7280 |
|
7281 |
-
#: core/lib/wpbc_all_translations.php:
|
7282 |
#: inc/_ps/wpbc-form-templates.php:242 inc/_ps/wpbc-form-templates.php:252
|
7283 |
#: inc/_ps/wpbc-form-templates.php:262 inc/_ps/wpbc-form-templates.php:272
|
7284 |
msgid "Check in"
|
7285 |
msgstr ""
|
7286 |
|
7287 |
-
#: core/lib/wpbc_all_translations.php:
|
7288 |
#: inc/_ps/wpbc-form-templates.php:243 inc/_ps/wpbc-form-templates.php:253
|
7289 |
#: inc/_ps/wpbc-form-templates.php:263 inc/_ps/wpbc-form-templates.php:273
|
7290 |
msgid "Check out"
|
7291 |
msgstr ""
|
7292 |
|
7293 |
-
#: core/lib/wpbc_all_translations.php:
|
7294 |
#: inc/_ps/wpbc-form-templates.php:244 inc/_ps/wpbc-form-templates.php:254
|
7295 |
#: inc/_ps/wpbc-form-templates.php:264 inc/_ps/wpbc-form-templates.php:274
|
7296 |
msgid "Guests"
|
7297 |
msgstr ""
|
7298 |
|
7299 |
-
#: core/lib/wpbc_all_translations.php:
|
7300 |
#: inc/_ps/wpbc-form-templates.php:334 inc/_ps/wpbc-form-templates.php:351
|
7301 |
msgid "Max. persons"
|
7302 |
msgstr ""
|
7303 |
|
7304 |
-
#: core/lib/wpbc_all_translations.php:
|
7305 |
msgid "Data"
|
7306 |
msgstr ""
|
7307 |
|
7308 |
-
#: core/lib/wpbc_all_translations.php:
|
7309 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
|
7310 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7311 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
|
7312 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:385 inc/gateways/
|
7313 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:478
|
7314 |
msgid "Enable this payment gateway"
|
7315 |
msgstr ""
|
7316 |
|
7317 |
-
#: core/lib/wpbc_all_translations.php:
|
7318 |
msgid "API Login ID"
|
7319 |
msgstr ""
|
7320 |
|
7321 |
-
#: core/lib/wpbc_all_translations.php:
|
7322 |
#, php-format
|
7323 |
msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
|
7324 |
msgstr ""
|
7325 |
|
7326 |
-
#: core/lib/wpbc_all_translations.php:
|
7327 |
msgid "Transaction Key"
|
7328 |
msgstr ""
|
7329 |
|
7330 |
-
#: core/lib/wpbc_all_translations.php:
|
7331 |
-
#: inc/gateways/
|
7332 |
-
#: inc/gateways/
|
7333 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
7334 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:538
|
7335 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:553
|
7336 |
#, php-format
|
7337 |
msgid "This parameter have to assigned to you by %s"
|
7338 |
msgstr ""
|
7339 |
|
7340 |
-
#: core/lib/wpbc_all_translations.php:
|
7341 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
|
7342 |
#: inc/gateways/sage/wpbc-gw-sage.php:424
|
7343 |
msgid "Chose payment mode"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
-
#: core/lib/wpbc_all_translations.php:
|
7347 |
msgid ""
|
7348 |
"Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
|
7349 |
"for using Developer account."
|
7350 |
msgstr ""
|
7351 |
|
7352 |
-
#: core/lib/wpbc_all_translations.php:
|
7353 |
msgid ""
|
7354 |
"Transactions posted against live merchant accounts using either of the above testing methods are "
|
7355 |
"not submitted to financial institutions for authorization and are not stored in the Merchant "
|
7356 |
"Interface."
|
7357 |
msgstr ""
|
7358 |
|
7359 |
-
#: core/lib/wpbc_all_translations.php:
|
7360 |
msgid "Developer Test"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
-
#: core/lib/wpbc_all_translations.php:
|
7364 |
msgid "Live Test"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: core/lib/wpbc_all_translations.php:
|
7368 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:429
|
7369 |
msgid "Live"
|
7370 |
msgstr ""
|
7371 |
|
7372 |
-
#: core/lib/wpbc_all_translations.php:
|
7373 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
|
7374 |
msgid "Transaction type"
|
7375 |
msgstr ""
|
7376 |
|
7377 |
-
#: core/lib/wpbc_all_translations.php:
|
7378 |
msgid "Select transaction type, which supported by the payment gateway."
|
7379 |
msgstr ""
|
7380 |
|
7381 |
-
#: core/lib/wpbc_all_translations.php:
|
7382 |
msgid "Authorization and Capture"
|
7383 |
msgstr ""
|
7384 |
|
7385 |
-
#: core/lib/wpbc_all_translations.php:
|
7386 |
msgid "Authorization Only"
|
7387 |
msgstr ""
|
7388 |
|
7389 |
-
#: core/lib/wpbc_all_translations.php:
|
7390 |
-
#: inc/gateways/
|
7391 |
-
#: inc/gateways/
|
7392 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:574
|
7393 |
msgid "U.S. Dollars"
|
7394 |
msgstr ""
|
7395 |
|
7396 |
-
#: core/lib/wpbc_all_translations.php:
|
7397 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/
|
7398 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:575
|
7399 |
msgid "Pounds Sterling"
|
7400 |
msgstr ""
|
7401 |
|
7402 |
-
#: core/lib/wpbc_all_translations.php:
|
7403 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
|
7404 |
-
#: inc/gateways/
|
7405 |
msgid "Euros"
|
7406 |
msgstr ""
|
7407 |
|
7408 |
-
#: core/lib/wpbc_all_translations.php:
|
7409 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
|
7410 |
-
#: inc/gateways/
|
7411 |
msgid "Canadian Dollars"
|
7412 |
msgstr ""
|
7413 |
|
7414 |
-
#: core/lib/wpbc_all_translations.php:
|
7415 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7416 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/
|
7417 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:718
|
7418 |
msgid "Accepted Currency"
|
7419 |
msgstr ""
|
7420 |
|
7421 |
-
#: core/lib/wpbc_all_translations.php:
|
7422 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7423 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/
|
7424 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:719
|
7425 |
msgid "The currency code that gateway will process the payment in."
|
7426 |
msgstr ""
|
7427 |
|
7428 |
-
#: core/lib/wpbc_all_translations.php:
|
7429 |
-
#: inc/gateways/
|
7430 |
msgid ""
|
7431 |
"Setting the currency that is not supported by the payment processor will result in an error."
|
7432 |
msgstr ""
|
7433 |
|
7434 |
-
#: core/lib/wpbc_all_translations.php:
|
7435 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:414
|
7436 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1038 inc/gateways/ideal/wpbc-gw-ideal.php:309
|
7437 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
|
7438 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:1046 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7439 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7440 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:495 inc/gateways/paypal/wpbc-gw-paypal.php:496
|
7441 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1327 inc/gateways/sage/wpbc-gw-sage.php:488
|
7442 |
#: inc/gateways/sage/wpbc-gw-sage.php:489 inc/gateways/sage/wpbc-gw-sage.php:1042
|
7443 |
-
#: inc/gateways/
|
7444 |
-
#: inc/gateways/
|
7445 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
7446 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1295
|
7447 |
msgid "Pay via"
|
7448 |
msgstr ""
|
7449 |
|
7450 |
-
#: core/lib/wpbc_all_translations.php:
|
7451 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7452 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
|
7453 |
-
#: inc/gateways/
|
7454 |
msgid "Payment button title"
|
7455 |
msgstr ""
|
7456 |
|
7457 |
-
#: core/lib/wpbc_all_translations.php:
|
7458 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7459 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
|
7460 |
-
#: inc/gateways/
|
7461 |
msgid "Enter the title of the payment button"
|
7462 |
msgstr ""
|
7463 |
|
7464 |
-
#: core/lib/wpbc_all_translations.php:
|
7465 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:428
|
7466 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1034 inc/gateways/ideal/wpbc-gw-ideal.php:471
|
7467 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
|
7468 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7469 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7470 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:524 inc/gateways/paypal/wpbc-gw-paypal.php:1329
|
7471 |
#: inc/gateways/sage/wpbc-gw-sage.php:502 inc/gateways/sage/wpbc-gw-sage.php:503
|
7472 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:1038 inc/gateways/
|
7473 |
-
#: inc/gateways/
|
7474 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
7475 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:755
|
7476 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1296
|
7477 |
#, php-format
|
7478 |
msgid "Payment for booking %s on these day(s): %s"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
-
#: core/lib/wpbc_all_translations.php:
|
7482 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7483 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
|
7484 |
-
#: inc/gateways/
|
7485 |
msgid "Payment description at gateway website"
|
7486 |
msgstr ""
|
7487 |
|
7488 |
-
#: core/lib/wpbc_all_translations.php:
|
7489 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7490 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
|
7491 |
-
#: inc/gateways/
|
7492 |
msgid "Enter the service name or the reason for the payment here."
|
7493 |
msgstr ""
|
7494 |
|
7495 |
-
#: core/lib/wpbc_all_translations.php:
|
7496 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7497 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
|
7498 |
-
#: inc/gateways/
|
7499 |
msgid "You can use any shortcodes, which you have used in content of booking fields data form."
|
7500 |
msgstr ""
|
7501 |
|
7502 |
-
#: core/lib/wpbc_all_translations.php:
|
7503 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7504 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
|
7505 |
#, php-format
|
7506 |
msgid "This field support only up to %s characters by payment system."
|
7507 |
msgstr ""
|
7508 |
|
7509 |
-
#: core/lib/wpbc_all_translations.php:
|
7510 |
msgid "Activate Relay Response"
|
7511 |
msgstr ""
|
7512 |
|
7513 |
-
#: core/lib/wpbc_all_translations.php:
|
7514 |
msgid ""
|
7515 |
"Indicate to the payment gateway that you would like to receive the transaction response to your "
|
7516 |
"site."
|
7517 |
msgstr ""
|
7518 |
|
7519 |
-
#: core/lib/wpbc_all_translations.php:
|
7520 |
msgid ""
|
7521 |
"You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
|
7522 |
"Interface, if a Relay Response is activated here."
|
7523 |
msgstr ""
|
7524 |
|
7525 |
-
#: core/lib/wpbc_all_translations.php:
|
7526 |
msgid "MD5 Hash value"
|
7527 |
msgstr ""
|
7528 |
|
7529 |
-
#: core/lib/wpbc_all_translations.php:
|
7530 |
msgid ""
|
7531 |
"Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
|
7532 |
msgstr ""
|
7533 |
|
7534 |
-
#: core/lib/wpbc_all_translations.php:
|
7535 |
msgid "To configure MD5 Hash value in Relay Response for your transactions"
|
7536 |
msgstr ""
|
7537 |
|
7538 |
-
#: core/lib/wpbc_all_translations.php:
|
7539 |
msgid "Log on to the Merchant Interface"
|
7540 |
msgstr ""
|
7541 |
|
7542 |
-
#: core/lib/wpbc_all_translations.php:
|
7543 |
msgid "Click Settings under Account in the main menu on the left"
|
7544 |
msgstr ""
|
7545 |
|
7546 |
-
#: core/lib/wpbc_all_translations.php:
|
7547 |
msgid "Click MD5-Hash in the Security Settings section"
|
7548 |
msgstr ""
|
7549 |
|
7550 |
-
#: core/lib/wpbc_all_translations.php:
|
7551 |
msgid "Enter this value"
|
7552 |
msgstr ""
|
7553 |
|
7554 |
-
#: core/lib/wpbc_all_translations.php:
|
7555 |
msgid "Click Submit"
|
7556 |
msgstr ""
|
7557 |
|
7558 |
-
#: core/lib/wpbc_all_translations.php:
|
7559 |
#, php-format
|
7560 |
msgid ""
|
7561 |
"For more information about configuring Relay Response in the Merchant Interface, please see the "
|
7562 |
"%sMerchant Integration Guide%s"
|
7563 |
msgstr ""
|
7564 |
|
7565 |
-
#: core/lib/wpbc_all_translations.php:
|
7566 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7567 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/
|
7568 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:782
|
7569 |
msgid "Return URL after Successful order"
|
7570 |
msgstr ""
|
7571 |
|
7572 |
-
#: core/lib/wpbc_all_translations.php:
|
7573 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7574 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
|
7575 |
-
#: inc/gateways/
|
7576 |
msgid "The URL where visitor will be redirected after completing payment."
|
7577 |
msgstr ""
|
7578 |
|
7579 |
-
#: core/lib/wpbc_all_translations.php:
|
7580 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7581 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
|
7582 |
-
#: inc/gateways/
|
7583 |
#, php-format
|
7584 |
msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
|
7585 |
msgstr ""
|
7586 |
|
7587 |
-
#: core/lib/wpbc_all_translations.php:
|
7588 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7589 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/
|
7590 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:816
|
7591 |
msgid "Return URL after Failed order"
|
7592 |
msgstr ""
|
7593 |
|
7594 |
-
#: core/lib/wpbc_all_translations.php:
|
7595 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7596 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
|
7597 |
-
#: inc/gateways/
|
7598 |
msgid "The URL where the visitor will be redirected after completing payment."
|
7599 |
msgstr ""
|
7600 |
|
7601 |
-
#: core/lib/wpbc_all_translations.php:
|
7602 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7603 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
|
7604 |
-
#: inc/gateways/
|
7605 |
#, php-format
|
7606 |
msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
|
7607 |
msgstr ""
|
7608 |
|
7609 |
-
#: core/lib/wpbc_all_translations.php:
|
7610 |
msgid "Automatically approve booking"
|
7611 |
msgstr ""
|
7612 |
|
7613 |
-
#: core/lib/wpbc_all_translations.php:
|
7614 |
msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
|
7615 |
msgstr ""
|
7616 |
|
7617 |
-
#: core/lib/wpbc_all_translations.php:
|
7618 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7619 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/
|
7620 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:849
|
7621 |
msgid "This will not work, if the visitor leaves the payment page."
|
7622 |
msgstr ""
|
7623 |
|
7624 |
-
#: core/lib/wpbc_all_translations.php:
|
7625 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7626 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7627 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
|
7628 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:801 inc/gateways/ideal/wpbc-gw-ideal.php:904
|
7629 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7630 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:388
|
7631 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:947 inc/gateways/paypal/wpbc-gw-paypal.php:1042
|
7632 |
#: inc/gateways/sage/wpbc-gw-sage.php:783 inc/gateways/sage/wpbc-gw-sage.php:894
|
7633 |
-
#: inc/gateways/
|
7634 |
#, php-format
|
7635 |
msgid "%s Settings"
|
7636 |
msgstr ""
|
7637 |
|
7638 |
-
#: core/lib/wpbc_all_translations.php:
|
7639 |
msgid "Integration of authorizenet payment system"
|
7640 |
msgstr ""
|
7641 |
|
7642 |
-
#: core/lib/wpbc_all_translations.php:
|
7643 |
#, php-format
|
7644 |
msgid ""
|
7645 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
@@ -7647,986 +7643,981 @@ msgid ""
|
|
7647 |
"gateway."
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: core/lib/wpbc_all_translations.php:
|
7651 |
msgid ""
|
7652 |
"Please configure all fields inside the Billing form fields tab at this page, when using a "
|
7653 |
"European payment processor"
|
7654 |
msgstr ""
|
7655 |
|
7656 |
-
#: core/lib/wpbc_all_translations.php:
|
7657 |
msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
|
7658 |
msgstr ""
|
7659 |
|
7660 |
-
#: core/lib/wpbc_all_translations.php:
|
7661 |
#, php-format
|
7662 |
msgid "%s - Server Integration Method (SIM)"
|
7663 |
msgstr ""
|
7664 |
|
7665 |
-
#: core/lib/wpbc_all_translations.php:
|
7666 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
|
7667 |
msgid "Payment method description that the customer will see on your payment page."
|
7668 |
msgstr ""
|
7669 |
|
7670 |
-
#: core/lib/wpbc_all_translations.php:
|
7671 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
|
7672 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7673 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7674 |
msgid "Bank Transfer"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
-
#: core/lib/wpbc_all_translations.php:
|
7678 |
msgid "Integration of Bank Transfer payment system"
|
7679 |
msgstr ""
|
7680 |
|
7681 |
-
#: core/lib/wpbc_all_translations.php:
|
7682 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
|
7683 |
msgid "Account details"
|
7684 |
msgstr ""
|
7685 |
|
7686 |
-
#: core/lib/wpbc_all_translations.php:
|
7687 |
#, php-format
|
7688 |
msgid "Allow payments by %sdirect bank / wire transfer%s"
|
7689 |
msgstr ""
|
7690 |
|
7691 |
-
#: core/lib/wpbc_all_translations.php:
|
7692 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
|
7693 |
msgid "Its only show fixed payment details."
|
7694 |
msgstr ""
|
7695 |
|
7696 |
-
#: core/lib/wpbc_all_translations.php:
|
7697 |
msgid "Sort Code"
|
7698 |
msgstr ""
|
7699 |
|
7700 |
-
#: core/lib/wpbc_all_translations.php:
|
7701 |
#, php-format
|
7702 |
msgid ""
|
7703 |
"Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
|
7704 |
"the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
|
7705 |
msgstr ""
|
7706 |
|
7707 |
-
#: core/lib/wpbc_all_translations.php:
|
7708 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
|
7709 |
msgid "Account Number"
|
7710 |
msgstr ""
|
7711 |
|
7712 |
-
#: core/lib/wpbc_all_translations.php:
|
7713 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
|
7714 |
msgid "IBAN"
|
7715 |
msgstr ""
|
7716 |
|
7717 |
-
#: core/lib/wpbc_all_translations.php:
|
7718 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
|
7719 |
msgid "BIC / Swift"
|
7720 |
msgstr ""
|
7721 |
|
7722 |
-
#: core/lib/wpbc_all_translations.php:
|
7723 |
msgid "Account Name"
|
7724 |
msgstr ""
|
7725 |
|
7726 |
-
#: core/lib/wpbc_all_translations.php:
|
7727 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:324
|
7728 |
msgid "Bank Name"
|
7729 |
msgstr ""
|
7730 |
|
7731 |
-
#: core/lib/wpbc_all_translations.php:
|
7732 |
msgid "BSB"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
-
#: core/lib/wpbc_all_translations.php:
|
7736 |
msgid "Bank Transit Number"
|
7737 |
msgstr ""
|
7738 |
|
7739 |
-
#: core/lib/wpbc_all_translations.php:
|
7740 |
msgid "IFSC"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
-
#: core/lib/wpbc_all_translations.php:
|
7744 |
msgid "Branch Sort"
|
7745 |
msgstr ""
|
7746 |
|
7747 |
-
#: core/lib/wpbc_all_translations.php:
|
7748 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
|
7749 |
msgid "Bank Code"
|
7750 |
msgstr ""
|
7751 |
|
7752 |
-
#: core/lib/wpbc_all_translations.php:
|
7753 |
msgid "Routing Number"
|
7754 |
msgstr ""
|
7755 |
|
7756 |
-
#: core/lib/wpbc_all_translations.php:
|
7757 |
msgid "Branch Code"
|
7758 |
msgstr ""
|
7759 |
|
7760 |
-
#: core/lib/wpbc_all_translations.php:
|
7761 |
#, php-format
|
7762 |
msgid "%s - inserting all bank accounts details"
|
7763 |
msgstr ""
|
7764 |
|
7765 |
-
#: core/lib/wpbc_all_translations.php:
|
7766 |
#, php-format
|
7767 |
msgid "%s - inserting account name"
|
7768 |
msgstr ""
|
7769 |
|
7770 |
-
#: core/lib/wpbc_all_translations.php:
|
7771 |
#, php-format
|
7772 |
msgid "%s - inserting account number"
|
7773 |
msgstr ""
|
7774 |
|
7775 |
-
#: core/lib/wpbc_all_translations.php:
|
7776 |
#, php-format
|
7777 |
msgid "%s - inserting bank name "
|
7778 |
msgstr ""
|
7779 |
|
7780 |
-
#: core/lib/wpbc_all_translations.php:
|
7781 |
#, php-format
|
7782 |
msgid "%s - inserting sort code "
|
7783 |
msgstr ""
|
7784 |
|
7785 |
-
#: core/lib/wpbc_all_translations.php:
|
7786 |
#, php-format
|
7787 |
msgid "%s - inserting IBAN "
|
7788 |
msgstr ""
|
7789 |
|
7790 |
-
#: core/lib/wpbc_all_translations.php:
|
7791 |
#, php-format
|
7792 |
msgid "%s - inserting BIC "
|
7793 |
msgstr ""
|
7794 |
|
7795 |
-
#: core/lib/wpbc_all_translations.php:
|
7796 |
msgid ""
|
7797 |
"You can use any shortcodes, that you can use in payment description form at Settings Payment "
|
7798 |
"General page"
|
7799 |
msgstr ""
|
7800 |
|
7801 |
-
#: core/lib/wpbc_all_translations.php:
|
7802 |
msgid "+ Add Account"
|
7803 |
msgstr ""
|
7804 |
|
7805 |
-
#: core/lib/wpbc_all_translations.php:
|
7806 |
msgid "Remove selected account(s)"
|
7807 |
msgstr ""
|
7808 |
|
7809 |
-
#: core/lib/wpbc_all_translations.php:
|
7810 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7811 |
msgid "Successful payment"
|
7812 |
msgstr ""
|
7813 |
|
7814 |
-
#: core/lib/wpbc_all_translations.php:
|
7815 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7816 |
msgid " Parameters are incorrect,"
|
7817 |
msgstr ""
|
7818 |
|
7819 |
-
#: core/lib/wpbc_all_translations.php:
|
7820 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7821 |
msgid "Cannot find the record"
|
7822 |
msgstr ""
|
7823 |
|
7824 |
-
#: core/lib/wpbc_all_translations.php:
|
7825 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7826 |
msgid "Amount different"
|
7827 |
msgstr ""
|
7828 |
|
7829 |
-
#: core/lib/wpbc_all_translations.php:
|
7830 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7831 |
msgid "Payment failed"
|
7832 |
msgstr ""
|
7833 |
|
7834 |
-
#: core/lib/wpbc_all_translations.php:
|
7835 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7836 |
msgid "Payment status updated by Mobile88 Admin(Fail)"
|
7837 |
msgstr ""
|
7838 |
|
7839 |
-
#: core/lib/wpbc_all_translations.php:
|
7840 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7841 |
msgid "Connection Error"
|
7842 |
msgstr ""
|
7843 |
|
7844 |
-
#: core/lib/wpbc_all_translations.php:
|
7845 |
msgid "Merchant Code"
|
7846 |
msgstr ""
|
7847 |
|
7848 |
-
#: core/lib/wpbc_all_translations.php:
|
7849 |
msgid "Enter your iPay88 Merchant Code."
|
7850 |
msgstr ""
|
7851 |
|
7852 |
-
#: core/lib/wpbc_all_translations.php:
|
7853 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7854 |
msgid "Merchant Key"
|
7855 |
msgstr ""
|
7856 |
|
7857 |
-
#: core/lib/wpbc_all_translations.php:
|
7858 |
msgid "Enter your iPay88 Merchant Key."
|
7859 |
msgstr ""
|
7860 |
|
7861 |
-
#: core/lib/wpbc_all_translations.php:
|
7862 |
msgid "Malaysian Ringgit"
|
7863 |
msgstr ""
|
7864 |
|
7865 |
-
#: core/lib/wpbc_all_translations.php:
|
7866 |
-
#: inc/gateways/
|
7867 |
msgid "Philippine Pesos"
|
7868 |
msgstr ""
|
7869 |
|
7870 |
-
#: core/lib/wpbc_all_translations.php:
|
7871 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7872 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/
|
7873 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:846
|
7874 |
msgid "Automatically approve/cancel booking"
|
7875 |
msgstr ""
|
7876 |
|
7877 |
-
#: core/lib/wpbc_all_translations.php:
|
7878 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7879 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/
|
7880 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:847
|
7881 |
msgid ""
|
7882 |
"Check this box to automatically approve bookings, when visitor makes a successful payment, or "
|
7883 |
"automatically cancel the booking, when visitor makes a payment cancellation."
|
7884 |
msgstr ""
|
7885 |
|
7886 |
-
#: core/lib/wpbc_all_translations.php:
|
7887 |
msgid "Integration of iPay88 payment system"
|
7888 |
msgstr ""
|
7889 |
|
7890 |
-
#: core/lib/wpbc_all_translations.php:
|
7891 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:
|
7892 |
-
#: inc/gateways/
|
7893 |
#, php-format
|
7894 |
msgid ""
|
7895 |
"Please configure all fields inside the %sBilling form fields%s section at %sPayments General%s "
|
7896 |
"tab."
|
7897 |
msgstr ""
|
7898 |
|
7899 |
-
#: core/lib/wpbc_all_translations.php:
|
7900 |
msgid "for 1 day"
|
7901 |
msgstr ""
|
7902 |
|
7903 |
-
#: core/lib/wpbc_all_translations.php:
|
7904 |
msgid "for 1 night"
|
7905 |
msgstr ""
|
7906 |
|
7907 |
-
#: core/lib/wpbc_all_translations.php:
|
7908 |
msgid "fixed sum"
|
7909 |
msgstr ""
|
7910 |
|
7911 |
-
#: core/lib/wpbc_all_translations.php:
|
7912 |
msgid "for 1 hour"
|
7913 |
msgstr ""
|
7914 |
|
7915 |
-
#: core/lib/wpbc_all_translations.php:
|
7916 |
msgid "Set the cost"
|
7917 |
msgstr ""
|
7918 |
|
7919 |
-
#: core/lib/wpbc_all_translations.php:
|
7920 |
msgid " Select your cost configuration."
|
7921 |
msgstr ""
|
7922 |
|
7923 |
-
#: core/lib/wpbc_all_translations.php:
|
7924 |
msgid "Time impact to cost"
|
7925 |
msgstr ""
|
7926 |
|
7927 |
-
#: core/lib/wpbc_all_translations.php:
|
7928 |
#, php-format
|
7929 |
msgid ""
|
7930 |
"Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
|
7931 |
"calculation%s."
|
7932 |
msgstr ""
|
7933 |
|
7934 |
-
#: core/lib/wpbc_all_translations.php:
|
7935 |
msgid ""
|
7936 |
"Check this box if you want that specific additional cost, which configured as percentage for "
|
7937 |
"some option, apply to other additional fixed costs and not only to original booking cost."
|
7938 |
msgstr ""
|
7939 |
|
7940 |
-
#: core/lib/wpbc_all_translations.php:
|
7941 |
-
#: inc/gateways/page-gateways.php:
|
7942 |
msgid "Currency"
|
7943 |
msgstr ""
|
7944 |
|
7945 |
-
#: core/lib/wpbc_all_translations.php:
|
7946 |
msgid ""
|
7947 |
"This is default currency that showing at your website. Specific payment gateway(s) can support "
|
7948 |
"or does not suport it."
|
7949 |
msgstr ""
|
7950 |
|
7951 |
-
#: core/lib/wpbc_all_translations.php:
|
7952 |
-
#: inc/gateways/page-gateways.php:
|
7953 |
msgid "Important"
|
7954 |
msgstr ""
|
7955 |
|
7956 |
-
#: core/lib/wpbc_all_translations.php:
|
7957 |
msgid "Check and configure currency at each activated payment gateway."
|
7958 |
msgstr ""
|
7959 |
|
7960 |
-
#: core/lib/wpbc_all_translations.php:
|
7961 |
msgid "Currency Position"
|
7962 |
msgstr ""
|
7963 |
|
7964 |
-
#: core/lib/wpbc_all_translations.php:
|
7965 |
msgid "Set position of the currency symbol."
|
7966 |
msgstr ""
|
7967 |
|
7968 |
-
#: core/lib/wpbc_all_translations.php:
|
7969 |
msgid "Left"
|
7970 |
msgstr ""
|
7971 |
|
7972 |
-
#: core/lib/wpbc_all_translations.php:
|
7973 |
msgid "Right"
|
7974 |
msgstr ""
|
7975 |
|
7976 |
-
#: core/lib/wpbc_all_translations.php:
|
7977 |
msgid "Left with space"
|
7978 |
msgstr ""
|
7979 |
|
7980 |
-
#: core/lib/wpbc_all_translations.php:
|
7981 |
msgid "Right with space"
|
7982 |
msgstr ""
|
7983 |
|
7984 |
-
#: core/lib/wpbc_all_translations.php:
|
7985 |
msgid "Currency format"
|
7986 |
msgstr ""
|
7987 |
|
7988 |
-
#: core/lib/wpbc_all_translations.php:
|
7989 |
msgid "Number of decimal points"
|
7990 |
msgstr ""
|
7991 |
|
7992 |
-
#: core/lib/wpbc_all_translations.php:
|
7993 |
-
#: inc/gateways/page-gateways.php:
|
7994 |
msgid "No separator"
|
7995 |
msgstr ""
|
7996 |
|
7997 |
-
#: core/lib/wpbc_all_translations.php:
|
7998 |
-
#: inc/gateways/page-gateways.php:
|
7999 |
msgid "Space"
|
8000 |
msgstr ""
|
8001 |
|
8002 |
-
#: core/lib/wpbc_all_translations.php:
|
8003 |
-
#: inc/gateways/page-gateways.php:
|
8004 |
msgid "Dot"
|
8005 |
msgstr ""
|
8006 |
|
8007 |
-
#: core/lib/wpbc_all_translations.php:
|
8008 |
-
#: inc/gateways/page-gateways.php:
|
8009 |
msgid "Comma"
|
8010 |
msgstr ""
|
8011 |
|
8012 |
-
#: core/lib/wpbc_all_translations.php:
|
8013 |
msgid "Separator for the decimal point"
|
8014 |
msgstr ""
|
8015 |
|
8016 |
-
#: core/lib/wpbc_all_translations.php:
|
8017 |
msgid "Thousands separator"
|
8018 |
msgstr ""
|
8019 |
|
8020 |
-
#: core/lib/wpbc_all_translations.php:
|
8021 |
msgid "Please select"
|
8022 |
msgstr ""
|
8023 |
|
8024 |
-
#: core/lib/wpbc_all_translations.php:
|
8025 |
msgid ""
|
8026 |
"Please select a field from your booking form. This field will be automatically assigned to the "
|
8027 |
"current field in the billing form."
|
8028 |
msgstr ""
|
8029 |
|
8030 |
-
#: core/lib/wpbc_all_translations.php:
|
8031 |
msgid "Customer Email"
|
8032 |
msgstr ""
|
8033 |
|
8034 |
-
#: core/lib/wpbc_all_translations.php:
|
8035 |
msgid "First Name(s)"
|
8036 |
msgstr ""
|
8037 |
|
8038 |
-
#: core/lib/wpbc_all_translations.php:
|
8039 |
msgid "Last name"
|
8040 |
msgstr ""
|
8041 |
|
8042 |
-
#: core/lib/wpbc_all_translations.php:
|
8043 |
msgid "Billing Address"
|
8044 |
msgstr ""
|
8045 |
|
8046 |
-
#: core/lib/wpbc_all_translations.php:
|
8047 |
msgid "Billing City"
|
8048 |
msgstr ""
|
8049 |
|
8050 |
-
#: core/lib/wpbc_all_translations.php:
|
8051 |
msgid "Post Code"
|
8052 |
msgstr ""
|
8053 |
|
8054 |
-
#: core/lib/wpbc_all_translations.php:
|
8055 |
msgid "State"
|
8056 |
msgstr ""
|
8057 |
|
8058 |
-
#: core/lib/wpbc_all_translations.php:
|
8059 |
msgid "Show booking details in payment form"
|
8060 |
msgstr ""
|
8061 |
|
8062 |
-
#: core/lib/wpbc_all_translations.php:
|
8063 |
#, php-format
|
8064 |
msgid ""
|
8065 |
" Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
|
8066 |
msgstr ""
|
8067 |
|
8068 |
-
#: core/lib/wpbc_all_translations.php:
|
8069 |
msgid "Configure booking details summary above the payment form"
|
8070 |
msgstr ""
|
8071 |
|
8072 |
-
#: core/lib/wpbc_all_translations.php:
|
8073 |
msgid "Payments"
|
8074 |
msgstr ""
|
8075 |
|
8076 |
-
#: core/lib/wpbc_all_translations.php:
|
8077 |
msgid "Customizaton of Payment"
|
8078 |
msgstr ""
|
8079 |
|
8080 |
-
#: core/lib/wpbc_all_translations.php:
|
8081 |
msgid "Payment Gateways"
|
8082 |
msgstr ""
|
8083 |
|
8084 |
-
#: core/lib/wpbc_all_translations.php:
|
8085 |
-
#: inc/gateways/page-gateways.php:
|
8086 |
msgid "Payment Settings"
|
8087 |
msgstr ""
|
8088 |
|
8089 |
-
#: core/lib/wpbc_all_translations.php:
|
8090 |
msgid "Payment Gateways - General Settings"
|
8091 |
msgstr ""
|
8092 |
|
8093 |
-
#: core/lib/wpbc_all_translations.php:
|
8094 |
-
#: inc/gateways/page-gateways.php:
|
8095 |
msgid "Active Payment Gateways"
|
8096 |
msgstr ""
|
8097 |
|
8098 |
-
#: core/lib/wpbc_all_translations.php:
|
8099 |
-
#: inc/gateways/page-gateways.php:
|
8100 |
msgid "Billing form fields"
|
8101 |
msgstr ""
|
8102 |
|
8103 |
-
#: core/lib/wpbc_all_translations.php:
|
8104 |
-
#: inc/gateways/page-gateways.php:
|
8105 |
msgid "Payment Description"
|
8106 |
msgstr ""
|
8107 |
|
8108 |
-
#: core/lib/wpbc_all_translations.php:
|
8109 |
msgid "Gateway"
|
8110 |
msgstr ""
|
8111 |
|
8112 |
-
#: core/lib/wpbc_all_translations.php:
|
8113 |
#, php-format
|
8114 |
msgid "Some currencies at payment gateways are different from main currency %s"
|
8115 |
msgstr ""
|
8116 |
|
8117 |
-
#: core/lib/wpbc_all_translations.php:
|
8118 |
#, php-format
|
8119 |
msgid ""
|
8120 |
"Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
|
8121 |
"payment form without currency exchange! Its can be reason of wrong cost."
|
8122 |
msgstr ""
|
8123 |
|
8124 |
-
#: core/lib/wpbc_all_translations.php:
|
8125 |
msgid "ID of booking"
|
8126 |
msgstr ""
|
8127 |
|
8128 |
-
#: core/lib/wpbc_all_translations.php:
|
8129 |
msgid "ID of booking resources"
|
8130 |
msgstr ""
|
8131 |
|
8132 |
-
#: core/lib/wpbc_all_translations.php:
|
8133 |
msgid "current date"
|
8134 |
msgstr ""
|
8135 |
|
8136 |
-
#: core/lib/wpbc_all_translations.php:
|
8137 |
msgid "current time"
|
8138 |
msgstr ""
|
8139 |
|
8140 |
-
#: core/lib/wpbc_all_translations.php:
|
8141 |
msgid "content data of this booking"
|
8142 |
msgstr ""
|
8143 |
|
8144 |
-
#: core/lib/wpbc_all_translations.php:
|
8145 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
|
8146 |
msgid "show amount to pay"
|
8147 |
msgstr ""
|
8148 |
|
8149 |
-
#: core/lib/wpbc_all_translations.php:
|
8150 |
msgid "total booking cost"
|
8151 |
msgstr ""
|
8152 |
|
8153 |
-
#: core/lib/wpbc_all_translations.php:
|
8154 |
msgid "deposit cost"
|
8155 |
msgstr ""
|
8156 |
|
8157 |
-
#: core/lib/wpbc_all_translations.php:
|
8158 |
msgid "balance cost"
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#: core/lib/wpbc_all_translations.php:
|
8162 |
msgid "original booking cost"
|
8163 |
msgstr ""
|
8164 |
|
8165 |
-
#: core/lib/wpbc_all_translations.php:
|
8166 |
msgid "additional booking cost"
|
8167 |
msgstr ""
|
8168 |
|
8169 |
-
#: core/lib/wpbc_all_translations.php:
|
8170 |
msgid "Amount to pay"
|
8171 |
msgstr ""
|
8172 |
|
8173 |
-
#: core/lib/wpbc_all_translations.php:
|
8174 |
#, php-format
|
8175 |
msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
-
#: core/lib/wpbc_all_translations.php:
|
8179 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
|
8180 |
msgid "Pay in Cash"
|
8181 |
msgstr ""
|
8182 |
|
8183 |
-
#: core/lib/wpbc_all_translations.php:
|
8184 |
msgid "Integration of Pay in Cash payment system"
|
8185 |
msgstr ""
|
8186 |
|
8187 |
-
#: core/lib/wpbc_all_translations.php:
|
8188 |
#, php-format
|
8189 |
msgid "If you accept %scash payment%s, you can write details about it here"
|
8190 |
msgstr ""
|
8191 |
|
8192 |
-
#: core/lib/wpbc_all_translations.php:
|
8193 |
#, php-format
|
8194 |
msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
|
8195 |
msgstr ""
|
8196 |
|
8197 |
-
#: core/lib/wpbc_all_translations.php:
|
8198 |
msgid "Error IPN"
|
8199 |
msgstr ""
|
8200 |
|
8201 |
-
#: core/lib/wpbc_all_translations.php:
|
8202 |
msgid "Verified IPN"
|
8203 |
msgstr ""
|
8204 |
|
8205 |
-
#: core/lib/wpbc_all_translations.php:
|
8206 |
msgid "Invalid IPN"
|
8207 |
msgstr ""
|
8208 |
|
8209 |
-
#: core/lib/wpbc_all_translations.php:
|
8210 |
msgid "Make payments with payPal - its fast, free and secure!"
|
8211 |
msgstr ""
|
8212 |
|
8213 |
-
#: core/lib/wpbc_all_translations.php:
|
8214 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8215 |
msgid "Paypal Standard"
|
8216 |
msgstr ""
|
8217 |
|
8218 |
-
#: core/lib/wpbc_all_translations.php:
|
8219 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8220 |
msgid "Paypal Pro Hosted Solution"
|
8221 |
msgstr ""
|
8222 |
|
8223 |
-
#: core/lib/wpbc_all_translations.php:
|
8224 |
msgid "Account Type"
|
8225 |
msgstr ""
|
8226 |
|
8227 |
-
#: core/lib/wpbc_all_translations.php:
|
8228 |
msgid "Paypal Email address to receive payments"
|
8229 |
msgstr ""
|
8230 |
|
8231 |
-
#: core/lib/wpbc_all_translations.php:
|
8232 |
msgid "This is the Paypal Email address where payments will be sent"
|
8233 |
msgstr ""
|
8234 |
|
8235 |
-
#: core/lib/wpbc_all_translations.php:
|
8236 |
msgid "Secure Merchant ID"
|
8237 |
msgstr ""
|
8238 |
|
8239 |
-
#: core/lib/wpbc_all_translations.php:
|
8240 |
msgid "This is the Secure Merchant ID, which can be found on the profile page"
|
8241 |
msgstr ""
|
8242 |
|
8243 |
-
#: core/lib/wpbc_all_translations.php:
|
8244 |
msgid ""
|
8245 |
" Indicates whether the transaction is payment on a final sale or an authorization for a final "
|
8246 |
"sale, to be captured later. "
|
8247 |
msgstr ""
|
8248 |
|
8249 |
-
#: core/lib/wpbc_all_translations.php:
|
8250 |
msgid "Sale"
|
8251 |
msgstr ""
|
8252 |
|
8253 |
-
#: core/lib/wpbc_all_translations.php:
|
8254 |
msgid "Authorization"
|
8255 |
msgstr ""
|
8256 |
|
8257 |
-
#: core/lib/wpbc_all_translations.php:
|
8258 |
msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
|
8259 |
msgstr ""
|
8260 |
|
8261 |
-
#: core/lib/wpbc_all_translations.php:
|
8262 |
msgid "Sandbox"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
-
#: core/lib/wpbc_all_translations.php:
|
8266 |
msgid "British Pound"
|
8267 |
msgstr ""
|
8268 |
|
8269 |
-
#: core/lib/wpbc_all_translations.php:
|
8270 |
msgid "Japanese Yen"
|
8271 |
msgstr ""
|
8272 |
|
8273 |
-
#: core/lib/wpbc_all_translations.php:
|
8274 |
#: inc/gateways/sage/wpbc-gw-sage.php:455
|
8275 |
msgid "Australian Dollars"
|
8276 |
msgstr ""
|
8277 |
|
8278 |
-
#: core/lib/wpbc_all_translations.php:
|
8279 |
#: inc/gateways/sage/wpbc-gw-sage.php:457
|
8280 |
msgid "New Zealand Dollar"
|
8281 |
msgstr ""
|
8282 |
|
8283 |
-
#: core/lib/wpbc_all_translations.php:
|
8284 |
#: inc/gateways/sage/wpbc-gw-sage.php:458
|
8285 |
msgid "Swiss Franc"
|
8286 |
msgstr ""
|
8287 |
|
8288 |
-
#: core/lib/wpbc_all_translations.php:
|
8289 |
#: inc/gateways/sage/wpbc-gw-sage.php:459
|
8290 |
msgid "Hong Kong Dollar"
|
8291 |
msgstr ""
|
8292 |
|
8293 |
-
#: core/lib/wpbc_all_translations.php:
|
8294 |
#: inc/gateways/sage/wpbc-gw-sage.php:460
|
8295 |
msgid "Singapore Dollar"
|
8296 |
msgstr ""
|
8297 |
|
8298 |
-
#: core/lib/wpbc_all_translations.php:
|
8299 |
#: inc/gateways/sage/wpbc-gw-sage.php:461
|
8300 |
msgid "Swedish Krona"
|
8301 |
msgstr ""
|
8302 |
|
8303 |
-
#: core/lib/wpbc_all_translations.php:
|
8304 |
#: inc/gateways/sage/wpbc-gw-sage.php:462
|
8305 |
msgid "Danish Krone"
|
8306 |
msgstr ""
|
8307 |
|
8308 |
-
#: core/lib/wpbc_all_translations.php:
|
8309 |
#: inc/gateways/sage/wpbc-gw-sage.php:463
|
8310 |
msgid "Polish Zloty"
|
8311 |
msgstr ""
|
8312 |
|
8313 |
-
#: core/lib/wpbc_all_translations.php:
|
8314 |
#: inc/gateways/sage/wpbc-gw-sage.php:464
|
8315 |
msgid "Norwegian Krone"
|
8316 |
msgstr ""
|
8317 |
|
8318 |
-
#: core/lib/wpbc_all_translations.php:
|
8319 |
#: inc/gateways/sage/wpbc-gw-sage.php:465
|
8320 |
msgid "Hungarian Forint"
|
8321 |
msgstr ""
|
8322 |
|
8323 |
-
#: core/lib/wpbc_all_translations.php:
|
8324 |
#: inc/gateways/sage/wpbc-gw-sage.php:466
|
8325 |
msgid "Czech Koruna"
|
8326 |
msgstr ""
|
8327 |
|
8328 |
-
#: core/lib/wpbc_all_translations.php:
|
8329 |
msgid "Israeli New Shekel"
|
8330 |
msgstr ""
|
8331 |
|
8332 |
-
#: core/lib/wpbc_all_translations.php:
|
8333 |
#: inc/gateways/sage/wpbc-gw-sage.php:468
|
8334 |
msgid "Mexican Peso"
|
8335 |
msgstr ""
|
8336 |
|
8337 |
-
#: core/lib/wpbc_all_translations.php:
|
8338 |
#: inc/gateways/sage/wpbc-gw-sage.php:469
|
8339 |
msgid "Brazilian Real (only for Brazilian users)"
|
8340 |
msgstr ""
|
8341 |
|
8342 |
-
#: core/lib/wpbc_all_translations.php:
|
8343 |
#: inc/gateways/sage/wpbc-gw-sage.php:470
|
8344 |
msgid "Malaysian Ringgits (only for Malaysian users)"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
-
#: core/lib/wpbc_all_translations.php:
|
8348 |
#: inc/gateways/sage/wpbc-gw-sage.php:472
|
8349 |
msgid "Taiwan New Dollars"
|
8350 |
msgstr ""
|
8351 |
|
8352 |
-
#: core/lib/wpbc_all_translations.php:
|
8353 |
#: inc/gateways/sage/wpbc-gw-sage.php:473
|
8354 |
msgid "Thai Baht"
|
8355 |
msgstr ""
|
8356 |
|
8357 |
-
#: core/lib/wpbc_all_translations.php:
|
8358 |
msgid "Turkish Lira (only for Turkish members)"
|
8359 |
msgstr ""
|
8360 |
|
8361 |
-
#: core/lib/wpbc_all_translations.php:
|
8362 |
msgid "Custom button title"
|
8363 |
msgstr ""
|
8364 |
|
8365 |
-
#: core/lib/wpbc_all_translations.php:
|
8366 |
msgid "Payment Button type"
|
8367 |
msgstr ""
|
8368 |
|
8369 |
-
#: core/lib/wpbc_all_translations.php:
|
8370 |
msgid "Show Reference Text Box"
|
8371 |
msgstr ""
|
8372 |
|
8373 |
-
#: core/lib/wpbc_all_translations.php:
|
8374 |
msgid "Check this box to show Reference Text Box"
|
8375 |
msgstr ""
|
8376 |
|
8377 |
-
#: core/lib/wpbc_all_translations.php:
|
8378 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
|
8379 |
msgid "Enter your phone number"
|
8380 |
msgstr ""
|
8381 |
|
8382 |
-
#: core/lib/wpbc_all_translations.php:
|
8383 |
msgid "Reference Text Box Title"
|
8384 |
msgstr ""
|
8385 |
|
8386 |
-
#: core/lib/wpbc_all_translations.php:
|
8387 |
msgid ""
|
8388 |
"Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
|
8389 |
msgstr ""
|
8390 |
|
8391 |
-
#: core/lib/wpbc_all_translations.php:
|
8392 |
msgid "Return URL from PayPal"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
-
#: core/lib/wpbc_all_translations.php:
|
8396 |
msgid "Cancel Return URL from PayPal"
|
8397 |
msgstr ""
|
8398 |
|
8399 |
-
#: core/lib/wpbc_all_translations.php:
|
8400 |
#, php-format
|
8401 |
msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
|
8402 |
msgstr ""
|
8403 |
|
8404 |
-
#: core/lib/wpbc_all_translations.php:
|
8405 |
msgid "Follow these steps to configure it:"
|
8406 |
msgstr ""
|
8407 |
|
8408 |
-
#: core/lib/wpbc_all_translations.php:
|
8409 |
msgid "Log in to your PayPal account."
|
8410 |
msgstr ""
|
8411 |
|
8412 |
-
#: core/lib/wpbc_all_translations.php:
|
8413 |
msgid "Click the Profile subtab."
|
8414 |
msgstr ""
|
8415 |
|
8416 |
-
#: core/lib/wpbc_all_translations.php:
|
8417 |
msgid "Click Website Payment Preferences in the Seller Preferences column."
|
8418 |
msgstr ""
|
8419 |
|
8420 |
-
#: core/lib/wpbc_all_translations.php:
|
8421 |
msgid "Under Auto Return for Website Payments, click the On radio button."
|
8422 |
msgstr ""
|
8423 |
|
8424 |
-
#: core/lib/wpbc_all_translations.php:
|
8425 |
msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
|
8426 |
msgstr ""
|
8427 |
|
8428 |
-
#: core/lib/wpbc_all_translations.php:
|
8429 |
msgid ""
|
8430 |
"Instant Payment Notification (IPN) is a message service that notifies you of events related to "
|
8431 |
"PayPal transactions"
|
8432 |
msgstr ""
|
8433 |
|
8434 |
-
#: core/lib/wpbc_all_translations.php:
|
8435 |
msgid "Sending email for verified transaction"
|
8436 |
msgstr ""
|
8437 |
|
8438 |
-
#: core/lib/wpbc_all_translations.php:
|
8439 |
#, php-format
|
8440 |
msgid "Email for getting report for %sverified%s transactions."
|
8441 |
msgstr ""
|
8442 |
|
8443 |
-
#: core/lib/wpbc_all_translations.php:
|
8444 |
msgid "Sending email for invalid transaction"
|
8445 |
msgstr ""
|
8446 |
|
8447 |
-
#: core/lib/wpbc_all_translations.php:
|
8448 |
#, php-format
|
8449 |
msgid "Email for getting report for %sinvalid%s transactions."
|
8450 |
msgstr ""
|
8451 |
|
8452 |
-
#: core/lib/wpbc_all_translations.php:
|
8453 |
msgid "Sending email if error occur during verification"
|
8454 |
msgstr ""
|
8455 |
|
8456 |
-
#: core/lib/wpbc_all_translations.php:
|
8457 |
#, php-format
|
8458 |
msgid "Email for getting report for %ssome errors in verification process%s."
|
8459 |
msgstr ""
|
8460 |
|
8461 |
-
#: core/lib/wpbc_all_translations.php:
|
8462 |
msgid "Use SSL connection"
|
8463 |
msgstr ""
|
8464 |
|
8465 |
-
#: core/lib/wpbc_all_translations.php:
|
8466 |
msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
|
8467 |
msgstr ""
|
8468 |
|
8469 |
-
#: core/lib/wpbc_all_translations.php:
|
8470 |
msgid "Use cURL posting"
|
8471 |
msgstr ""
|
8472 |
|
8473 |
-
#: core/lib/wpbc_all_translations.php:
|
8474 |
msgid "Use the cURL for posting data, instead of fsockopen() function"
|
8475 |
msgstr ""
|
8476 |
|
8477 |
-
#: core/lib/wpbc_all_translations.php:
|
8478 |
msgid " Follow these instructions to set up your listener at your PayPal account:"
|
8479 |
msgstr ""
|
8480 |
|
8481 |
-
#: core/lib/wpbc_all_translations.php:
|
8482 |
msgid "Click Profile on the My Account tab."
|
8483 |
msgstr ""
|
8484 |
|
8485 |
-
#: core/lib/wpbc_all_translations.php:
|
8486 |
msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
|
8487 |
msgstr ""
|
8488 |
|
8489 |
-
#: core/lib/wpbc_all_translations.php:
|
8490 |
msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
|
8491 |
msgstr ""
|
8492 |
|
8493 |
-
#: core/lib/wpbc_all_translations.php:
|
8494 |
msgid "Specify the URL for your listener in the Notification URL field as:"
|
8495 |
msgstr ""
|
8496 |
|
8497 |
-
#: core/lib/wpbc_all_translations.php:
|
8498 |
msgid "Click Receive IPN messages (Enabled) to enable your listener."
|
8499 |
msgstr ""
|
8500 |
|
8501 |
-
#: core/lib/wpbc_all_translations.php:
|
8502 |
msgid "Click Save."
|
8503 |
msgstr ""
|
8504 |
|
8505 |
-
#: core/lib/wpbc_all_translations.php:
|
8506 |
msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
|
8507 |
msgstr ""
|
8508 |
|
8509 |
-
#: core/lib/wpbc_all_translations.php:
|
8510 |
msgid "PayPal"
|
8511 |
msgstr ""
|
8512 |
|
8513 |
-
#: core/lib/wpbc_all_translations.php:
|
8514 |
msgid "Integration of Paypal payment system"
|
8515 |
msgstr ""
|
8516 |
|
8517 |
-
#: core/lib/wpbc_all_translations.php:
|
8518 |
msgid "PayPal IPN"
|
8519 |
msgstr ""
|
8520 |
|
8521 |
-
#: core/lib/wpbc_all_translations.php:
|
8522 |
#, php-format
|
8523 |
msgid "Pay using %s payment service"
|
8524 |
msgstr ""
|
8525 |
|
8526 |
-
#: core/lib/wpbc_all_translations.php:
|
8527 |
msgid "Vendor Name"
|
8528 |
msgstr ""
|
8529 |
|
8530 |
-
#: core/lib/wpbc_all_translations.php:
|
8531 |
msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
|
8532 |
msgstr ""
|
8533 |
|
8534 |
-
#: core/lib/wpbc_all_translations.php:
|
8535 |
msgid "XOR Encryption password"
|
8536 |
msgstr ""
|
8537 |
|
8538 |
-
#: core/lib/wpbc_all_translations.php:
|
8539 |
msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
|
8540 |
msgstr ""
|
8541 |
|
8542 |
-
#: core/lib/wpbc_all_translations.php:
|
8543 |
#: inc/gateways/sage/wpbc-gw-sage.php:425
|
8544 |
msgid "Select TEST for the Test Server and LIVE in the live environment"
|
8545 |
msgstr ""
|
8546 |
|
8547 |
-
#: core/lib/wpbc_all_translations.php:
|
8548 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/
|
8549 |
-
#: inc/gateways/
|
8550 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
8551 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:536
|
8552 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:551
|
8553 |
msgid "TEST"
|
8554 |
msgstr ""
|
8555 |
|
8556 |
-
#: core/lib/wpbc_all_translations.php:
|
8557 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/
|
8558 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:494
|
8559 |
msgid "LIVE"
|
8560 |
msgstr ""
|
8561 |
|
8562 |
-
#: core/lib/wpbc_all_translations.php:
|
8563 |
msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
|
8564 |
msgstr ""
|
8565 |
|
8566 |
-
#: core/lib/wpbc_all_translations.php:
|
8567 |
msgid "PAYMENT"
|
8568 |
msgstr ""
|
8569 |
|
8570 |
-
#: core/lib/wpbc_all_translations.php:
|
8571 |
msgid "DEFERRED"
|
8572 |
msgstr ""
|
8573 |
|
8574 |
-
#: core/lib/wpbc_all_translations.php:
|
8575 |
msgid "AUTHENTICATE"
|
8576 |
msgstr ""
|
8577 |
|
8578 |
-
#: core/lib/wpbc_all_translations.php:
|
8579 |
msgid "Yen"
|
8580 |
msgstr ""
|
8581 |
|
8582 |
-
#: core/lib/wpbc_all_translations.php:
|
8583 |
msgid "Israeli Shekel"
|
8584 |
msgstr ""
|
8585 |
|
8586 |
-
#: core/lib/wpbc_all_translations.php:
|
8587 |
msgid "Sage"
|
8588 |
msgstr ""
|
8589 |
|
8590 |
-
#: core/lib/wpbc_all_translations.php:
|
8591 |
msgid "Integration of Sage payment system"
|
8592 |
msgstr ""
|
8593 |
|
8594 |
-
#: core/lib/wpbc_all_translations.php:
|
8595 |
-
#: inc/gateways/
|
8596 |
#, php-format
|
8597 |
msgid "If you have no account on this system, please visit %s to create one."
|
8598 |
msgstr ""
|
8599 |
|
8600 |
-
#: core/lib/wpbc_all_translations.php:
|
8601 |
msgid "Payment rejected"
|
8602 |
msgstr ""
|
8603 |
|
8604 |
-
#: core/lib/wpbc_all_translations.php:
|
8605 |
msgid "Merchant ID"
|
8606 |
msgstr ""
|
8607 |
|
8608 |
-
#: core/lib/wpbc_all_translations.php:
|
8609 |
msgid "Enter your iDEAL Merchant ID"
|
8610 |
msgstr ""
|
8611 |
|
8612 |
-
#: core/lib/wpbc_all_translations.php:
|
8613 |
msgid "Enter your iDEAL Merchant Key."
|
8614 |
msgstr ""
|
8615 |
|
8616 |
-
#: core/lib/wpbc_all_translations.php:
|
8617 |
#, php-format
|
8618 |
msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
|
8619 |
msgstr ""
|
8620 |
|
8621 |
-
#: core/lib/wpbc_all_translations.php:
|
8622 |
msgid "Test with Simulator"
|
8623 |
msgstr ""
|
8624 |
|
8625 |
-
#: core/lib/wpbc_all_translations.php:
|
8626 |
msgid "My Profile – Connection"
|
8627 |
msgstr ""
|
8628 |
|
8629 |
-
#: core/lib/wpbc_all_translations.php:
|
8630 |
#, php-format
|
8631 |
msgid ""
|
8632 |
"If not supplied then the description as configured in the administration/management portal "
|
@@ -8634,290 +8625,285 @@ msgid ""
|
|
8634 |
"be applied."
|
8635 |
msgstr ""
|
8636 |
|
8637 |
-
#: core/lib/wpbc_all_translations.php:
|
8638 |
msgid "Always use Description"
|
8639 |
msgstr ""
|
8640 |
|
8641 |
-
#: core/lib/wpbc_all_translations.php:
|
8642 |
-
#: inc/gateways/
|
8643 |
#, php-format
|
8644 |
msgid "Integration of %s payment system"
|
8645 |
msgstr ""
|
8646 |
|
8647 |
-
#: core/lib/wpbc_all_translations.php:
|
8648 |
#, php-format
|
8649 |
msgid "Processing your %s payments through %s"
|
8650 |
msgstr ""
|
8651 |
|
8652 |
-
#: core/lib/wpbc_all_translations.php:
|
8653 |
#, php-format
|
8654 |
msgid "%s - inserting link for export booking to"
|
8655 |
msgstr ""
|
8656 |
|
8657 |
-
#: core/lib/wpbc_all_translations.php:
|
8658 |
msgid ".ics Feed URL"
|
8659 |
msgstr ""
|
8660 |
|
8661 |
-
#: core/lib/wpbc_all_translations.php:
|
8662 |
#: core/wpbc-emails.php:247 core/wpbc-emails.php:248 core/wpbc-emails.php:249
|
8663 |
#: core/wpbc-emails.php:250 core/wpbc-emails.php:251
|
8664 |
#, php-format
|
8665 |
msgid "%s - inserting modification date of booking "
|
8666 |
msgstr ""
|
8667 |
|
8668 |
-
#: core/lib/wpbc_all_translations.php:
|
8669 |
msgid "Coupon discount value of the booking."
|
8670 |
msgstr ""
|
8671 |
|
8672 |
-
#: core/lib/wpbc_all_translations.php:
|
8673 |
msgid "Stripe. Ouch, something went wrong!"
|
8674 |
msgstr ""
|
8675 |
|
8676 |
-
#: core/lib/wpbc_all_translations.php:
|
8677 |
#, php-format
|
8678 |
msgid "Please pay %s"
|
8679 |
msgstr ""
|
8680 |
|
8681 |
-
#: core/lib/wpbc_all_translations.php:
|
8682 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:488
|
8683 |
msgid "Chose payment account"
|
8684 |
msgstr ""
|
8685 |
|
8686 |
-
#: core/lib/wpbc_all_translations.php:
|
8687 |
-
#: inc/gateways/
|
8688 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:536
|
8689 |
msgid "Publishable key"
|
8690 |
msgstr ""
|
8691 |
|
8692 |
-
#: core/lib/wpbc_all_translations.php:
|
8693 |
-
#: inc/gateways/
|
8694 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:551
|
8695 |
msgid "Secret key"
|
8696 |
msgstr ""
|
8697 |
|
8698 |
-
#: core/lib/wpbc_all_translations.php:
|
8699 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:723
|
8700 |
msgid "For more information:"
|
8701 |
msgstr ""
|
8702 |
|
8703 |
-
#: core/lib/wpbc_all_translations.php:
|
8704 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1084
|
8705 |
#, php-format
|
8706 |
msgid "require PHP version %s or newer!"
|
8707 |
msgstr ""
|
8708 |
|
8709 |
-
#: core/lib/wpbc_all_translations.php:
|
8710 |
#, php-format
|
8711 |
msgid "%s - ID of booking resource, "
|
8712 |
msgstr ""
|
8713 |
|
8714 |
-
#: core/lib/wpbc_all_translations.php:
|
8715 |
#, php-format
|
8716 |
msgid "%s - ID of page with booking form, "
|
8717 |
msgstr ""
|
8718 |
|
8719 |
-
#: core/lib/wpbc_all_translations.php:
|
8720 |
msgid "Email with Payment Request which is sent to Visitor."
|
8721 |
msgstr ""
|
8722 |
|
8723 |
-
#: core/lib/wpbc_all_translations.php:
|
8724 |
msgid "Customization of email template, which is sent after modification of booking"
|
8725 |
msgstr ""
|
8726 |
|
8727 |
-
#: core/lib/wpbc_all_translations.php:
|
8728 |
msgid "Email is sent to Visitor after Editing of booking."
|
8729 |
msgstr ""
|
8730 |
|
8731 |
-
#: core/lib/wpbc_all_translations.php:
|
8732 |
msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
|
8733 |
msgstr ""
|
8734 |
|
8735 |
-
#: core/lib/wpbc_all_translations.php:
|
8736 |
msgid "My bookings"
|
8737 |
msgstr ""
|
8738 |
|
8739 |
-
#: core/lib/wpbc_all_translations.php:
|
8740 |
#, php-format
|
8741 |
msgid ""
|
8742 |
"%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
|
8743 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
8744 |
msgstr ""
|
8745 |
|
8746 |
-
#: core/lib/wpbc_all_translations.php:
|
8747 |
msgid "Inline Search Form Template"
|
8748 |
msgstr ""
|
8749 |
|
8750 |
-
#: core/lib/wpbc_all_translations.php:
|
8751 |
msgid "Show booking details in tooltip"
|
8752 |
msgstr ""
|
8753 |
|
8754 |
-
#: core/lib/wpbc_all_translations.php:
|
8755 |
#, php-format
|
8756 |
msgid ""
|
8757 |
"Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
|
8758 |
"calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
|
8759 |
msgstr ""
|
8760 |
|
8761 |
-
#: core/lib/wpbc_all_translations.php:
|
8762 |
msgid "Booking details"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
-
#: core/lib/wpbc_all_translations.php:
|
8766 |
msgid "You can use the shortcodes from the bottom form of Settings Fields page."
|
8767 |
msgstr ""
|
8768 |
|
8769 |
-
#: core/lib/wpbc_all_translations.php:
|
8770 |
msgid "This option can impact to speed of page loading."
|
8771 |
msgstr ""
|
8772 |
|
8773 |
-
#: core/lib/wpbc_all_translations.php:
|
8774 |
msgid ""
|
8775 |
"Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
|
8776 |
"mathematics operations"
|
8777 |
msgstr ""
|
8778 |
|
8779 |
-
#: core/lib/wpbc_all_translations.php:
|
8780 |
#, php-format
|
8781 |
msgid "if selected %s"
|
8782 |
msgstr ""
|
8783 |
|
8784 |
-
#: core/lib/wpbc_all_translations.php:
|
8785 |
msgid "Set check out date as available"
|
8786 |
msgstr ""
|
8787 |
|
8788 |
-
#: core/lib/wpbc_all_translations.php:
|
8789 |
msgid "Check this option, to remove last selected day of saving to booking."
|
8790 |
msgstr ""
|
8791 |
|
8792 |
-
#: core/lib/wpbc_all_translations.php:
|
8793 |
msgid "Auto approve bookings during import"
|
8794 |
msgstr ""
|
8795 |
|
8796 |
-
#: core/lib/wpbc_all_translations.php:
|
8797 |
#, php-format
|
8798 |
msgid ""
|
8799 |
"Check this checkbox to activate auto approve of all bookings %sduring import from external "
|
8800 |
"source(s)%s."
|
8801 |
msgstr ""
|
8802 |
|
8803 |
-
#: core/lib/wpbc_all_translations.php:
|
8804 |
msgid "Auto approve booking, if booking cost is zero"
|
8805 |
msgstr ""
|
8806 |
|
8807 |
-
#: core/lib/wpbc_all_translations.php:
|
8808 |
#, php-format
|
8809 |
msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
|
8810 |
msgstr ""
|
8811 |
|
8812 |
-
#: core/lib/wpbc_all_translations.php:
|
8813 |
msgid "Auto approve bookings after creation booking in admin panel"
|
8814 |
msgstr ""
|
8815 |
|
8816 |
-
#: core/lib/wpbc_all_translations.php:
|
8817 |
#, php-format
|
8818 |
msgid ""
|
8819 |
"Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
|
8820 |
msgstr ""
|
8821 |
|
8822 |
-
#: core/lib/wpbc_all_translations.php:
|
8823 |
msgid "Activate custom booking forms for regular users"
|
8824 |
msgstr ""
|
8825 |
|
8826 |
-
#: core/lib/wpbc_all_translations.php:
|
8827 |
msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
|
8828 |
msgstr ""
|
8829 |
|
8830 |
-
#: core/lib/wpbc_all_translations.php:
|
8831 |
msgid "Start / End time for Calendar Overview"
|
8832 |
msgstr ""
|
8833 |
|
8834 |
-
#: core/lib/wpbc_all_translations.php:
|
8835 |
#, php-format
|
8836 |
msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
|
8837 |
msgstr ""
|
8838 |
|
8839 |
-
#: core/lib/wpbc_all_translations.php:
|
8840 |
msgid "Show / hide notes"
|
8841 |
msgstr ""
|
8842 |
|
8843 |
-
#: core/lib/wpbc_all_translations.php:
|
8844 |
msgid "Check this box if you want to open notes section by default in Booking Listing page."
|
8845 |
msgstr ""
|
8846 |
|
8847 |
-
#: core/lib/wpbc_all_translations.php:
|
8848 |
#: js/wpbc-gutenberg.js:1182
|
8849 |
msgid "URL of page for customer bookings listing"
|
8850 |
msgstr ""
|
8851 |
|
8852 |
-
#: core/lib/wpbc_all_translations.php:
|
8853 |
#, php-format
|
8854 |
msgid ""
|
8855 |
"Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
|
8856 |
msgstr ""
|
8857 |
|
8858 |
-
#: core/lib/wpbc_all_translations.php:
|
8859 |
msgid "Do not show payment form, after submit booking form"
|
8860 |
msgstr ""
|
8861 |
|
8862 |
-
#: core/lib/wpbc_all_translations.php:
|
8863 |
msgid "Check this box if you want to show payment form only after sending payment request by email"
|
8864 |
msgstr ""
|
8865 |
|
8866 |
-
#: core/lib/wpbc_all_translations.php:
|
8867 |
msgid "Auto send payment request after creation booking in admin panel"
|
8868 |
msgstr ""
|
8869 |
|
8870 |
-
#: core/lib/wpbc_all_translations.php:
|
8871 |
msgid ""
|
8872 |
"Check this box if you want automatically send payment request to visitor, if booking was made in "
|
8873 |
"admin panel"
|
8874 |
msgstr ""
|
8875 |
|
8876 |
-
#: core/lib/wpbc_all_translations.php:
|
8877 |
msgid "Show deposit and total booking cost together"
|
8878 |
msgstr ""
|
8879 |
|
8880 |
-
#: core/lib/wpbc_all_translations.php:
|
8881 |
msgid ""
|
8882 |
"Check this box if you want to show deposit amount and total booking cost, after submit of "
|
8883 |
"booking."
|
8884 |
msgstr ""
|
8885 |
|
8886 |
-
#: core/lib/wpbc_all_translations.php:
|
8887 |
msgid ""
|
8888 |
"Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
|
8889 |
"not depend from the visitor choice of this payment. You need to check each such payment manually!"
|
8890 |
msgstr ""
|
8891 |
|
8892 |
-
#: core/lib/wpbc_all_translations.php:
|
8893 |
msgid "Send email on cost changes"
|
8894 |
msgstr ""
|
8895 |
|
8896 |
-
#: core/lib/wpbc_all_translations.php:
|
8897 |
msgid ""
|
8898 |
"Check this box if you want to send booking modification email, if cost of booking was edited in "
|
8899 |
"booking listing page."
|
8900 |
msgstr ""
|
8901 |
|
8902 |
-
#: core/lib/wpbc_all_translations.php:
|
8903 |
-
#: inc/gateways/page-gateways.php:
|
8904 |
msgid "Payment Options"
|
8905 |
msgstr ""
|
8906 |
|
8907 |
-
#: core/lib/wpbc_all_translations.php:
|
8908 |
msgid "Times:"
|
8909 |
msgstr ""
|
8910 |
|
8911 |
-
#: core/lib/wpbc_all_translations.php:
|
8912 |
msgid "Set Early / Late Booking"
|
8913 |
msgstr ""
|
8914 |
|
8915 |
-
#: core/lib/wpbc_all_translations.php:
|
8916 |
#, php-format
|
8917 |
msgid "%sEarly booking discount%s for booking resource"
|
8918 |
msgstr ""
|
8919 |
|
8920 |
-
#: core/lib/wpbc_all_translations.php:
|
8921 |
#: inc/_bm/admin/page-cost-early-late-booking.php:166
|
8922 |
#: inc/_bm/admin/page-cost-early-late-booking.php:185
|
8923 |
#: inc/_bm/admin/page-cost-early-late-booking.php:358
|
@@ -8926,358 +8912,387 @@ msgstr ""
|
|
8926 |
msgid "Discount"
|
8927 |
msgstr ""
|
8928 |
|
8929 |
-
#: core/lib/wpbc_all_translations.php:
|
8930 |
#, php-format
|
8931 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
|
8932 |
msgstr ""
|
8933 |
|
8934 |
-
#: core/lib/wpbc_all_translations.php:
|
8935 |
#: inc/_bm/admin/page-cost-early-late-booking.php:476
|
8936 |
#, php-format
|
8937 |
msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
|
8938 |
msgstr ""
|
8939 |
|
8940 |
-
#: core/lib/wpbc_all_translations.php:
|
8941 |
#, php-format
|
8942 |
msgid "%sLast minute booking discount%s for booking resource"
|
8943 |
msgstr ""
|
8944 |
|
8945 |
-
#: core/lib/wpbc_all_translations.php:
|
8946 |
#, php-format
|
8947 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
|
8948 |
msgstr ""
|
8949 |
|
8950 |
-
#: core/lib/wpbc_all_translations.php:
|
8951 |
msgid "Early / Late Booking"
|
8952 |
msgstr ""
|
8953 |
|
8954 |
-
#: core/lib/wpbc_all_translations.php:
|
8955 |
msgid "Set Early / Late Booking Amount"
|
8956 |
msgstr ""
|
8957 |
|
8958 |
-
#: core/lib/wpbc_all_translations.php:
|
8959 |
msgid "Set Early / Late booking discount"
|
8960 |
msgstr ""
|
8961 |
|
8962 |
-
#: core/lib/wpbc_all_translations.php:
|
8963 |
msgid "Early / Late"
|
8964 |
msgstr ""
|
8965 |
|
8966 |
-
#: core/lib/wpbc_all_translations.php:
|
8967 |
msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
|
8968 |
msgstr ""
|
8969 |
|
8970 |
-
#: core/lib/wpbc_all_translations.php:
|
8971 |
msgid "Configure Booking Calendar Block"
|
8972 |
msgstr ""
|
8973 |
|
8974 |
-
#: core/lib/wpbc_all_translations.php:
|
8975 |
msgid "Click to Preview Block"
|
8976 |
msgstr ""
|
8977 |
|
8978 |
-
#: core/lib/wpbc_all_translations.php:
|
8979 |
#: js/wpbc-gutenberg.js:825
|
8980 |
msgid "Visible months number"
|
8981 |
msgstr ""
|
8982 |
|
8983 |
-
#: core/lib/wpbc_all_translations.php:
|
8984 |
#: js/wpbc-gutenberg.js:828
|
8985 |
msgid "Start month"
|
8986 |
msgstr ""
|
8987 |
|
8988 |
-
#: core/lib/wpbc_all_translations.php:
|
8989 |
msgid "Custom booking form"
|
8990 |
msgstr ""
|
8991 |
|
8992 |
-
#: core/lib/wpbc_all_translations.php:
|
8993 |
#: js/wpbc-gutenberg.js:834
|
8994 |
msgid "Unavailable dates from other booking resources"
|
8995 |
msgstr ""
|
8996 |
|
8997 |
-
#: core/lib/wpbc_all_translations.php:
|
8998 |
msgid "Availability Calendar"
|
8999 |
msgstr ""
|
9000 |
|
9001 |
-
#: core/lib/wpbc_all_translations.php:
|
9002 |
msgid "Booking resource(s)"
|
9003 |
msgstr ""
|
9004 |
|
9005 |
-
#: core/lib/wpbc_all_translations.php:
|
9006 |
msgid "Show from/to"
|
9007 |
msgstr ""
|
9008 |
|
9009 |
-
#: core/lib/wpbc_all_translations.php:
|
9010 |
msgid "All booking resources"
|
9011 |
msgstr ""
|
9012 |
|
9013 |
-
#: core/lib/wpbc_all_translations.php:
|
9014 |
msgid "Selection of Resources"
|
9015 |
msgstr ""
|
9016 |
|
9017 |
-
#: core/lib/wpbc_all_translations.php:
|
9018 |
msgid "Selected booking resource (by default)"
|
9019 |
msgstr ""
|
9020 |
|
9021 |
-
#: core/lib/wpbc_all_translations.php:
|
9022 |
msgid "Title of first option in list"
|
9023 |
msgstr ""
|
9024 |
|
9025 |
-
#: core/lib/wpbc_all_translations.php:
|
9026 |
msgid "Custom booking form for all booking resources"
|
9027 |
msgstr ""
|
9028 |
|
9029 |
-
#: core/lib/wpbc_all_translations.php:
|
9030 |
msgid "Booking Form (without calendar)"
|
9031 |
msgstr ""
|
9032 |
|
9033 |
-
#: core/lib/wpbc_all_translations.php:
|
9034 |
msgid "Date for submit booking"
|
9035 |
msgstr ""
|
9036 |
|
9037 |
-
#: core/lib/wpbc_all_translations.php:
|
9038 |
msgid "Search Availability form"
|
9039 |
msgstr ""
|
9040 |
|
9041 |
-
#: core/lib/wpbc_all_translations.php:
|
9042 |
msgid "Show search results on other page"
|
9043 |
msgstr ""
|
9044 |
|
9045 |
-
#: core/lib/wpbc_all_translations.php:
|
9046 |
msgid "Search results page must have this shortcode"
|
9047 |
msgstr ""
|
9048 |
|
9049 |
-
#: core/lib/wpbc_all_translations.php:
|
9050 |
msgid "Show search results in the same page"
|
9051 |
msgstr ""
|
9052 |
|
9053 |
-
#: core/lib/wpbc_all_translations.php:
|
9054 |
msgid "Search Results Title"
|
9055 |
msgstr ""
|
9056 |
|
9057 |
-
#: core/lib/wpbc_all_translations.php:
|
9058 |
msgid "Title, if no search results"
|
9059 |
msgstr ""
|
9060 |
|
9061 |
-
#: core/lib/wpbc_all_translations.php:
|
9062 |
msgid "Search in booking resources of WP users"
|
9063 |
msgstr ""
|
9064 |
|
9065 |
-
#: core/lib/wpbc_all_translations.php:
|
9066 |
msgid "Show search results on this page, after redirection from search form at other page."
|
9067 |
msgstr ""
|
9068 |
|
9069 |
-
#: core/lib/wpbc_all_translations.php:
|
9070 |
msgid "System Block"
|
9071 |
msgstr ""
|
9072 |
|
9073 |
-
#: core/lib/wpbc_all_translations.php:
|
9074 |
msgid "Booking Calendar Editing"
|
9075 |
msgstr ""
|
9076 |
|
9077 |
-
#: core/lib/wpbc_all_translations.php:
|
9078 |
msgid ""
|
9079 |
"This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
|
9080 |
"for ability to show payment form, after sending payment request."
|
9081 |
msgstr ""
|
9082 |
|
9083 |
-
#: core/lib/wpbc_all_translations.php:
|
9084 |
msgid "Link to this page must be defined"
|
9085 |
msgstr ""
|
9086 |
|
9087 |
-
#: core/lib/wpbc_all_translations.php:
|
9088 |
msgid "at this option"
|
9089 |
msgstr ""
|
9090 |
|
9091 |
-
#: core/lib/wpbc_all_translations.php:
|
9092 |
msgid "You can not open this page directly. Please, use links in "
|
9093 |
msgstr ""
|
9094 |
|
9095 |
-
#: core/lib/wpbc_all_translations.php:
|
9096 |
msgid "If you open this page directly, then you will see this error"
|
9097 |
msgstr ""
|
9098 |
|
9099 |
-
#: core/lib/wpbc_all_translations.php:
|
9100 |
msgid "Customer Bookings Listing"
|
9101 |
msgstr ""
|
9102 |
|
9103 |
-
#: core/lib/wpbc_all_translations.php:
|
9104 |
msgid ""
|
9105 |
"Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
|
9106 |
"which is sending after booking created."
|
9107 |
msgstr ""
|
9108 |
|
9109 |
-
#: core/lib/wpbc_all_translations.php:
|
9110 |
msgid "Show Info of Booking Resource"
|
9111 |
msgstr ""
|
9112 |
|
9113 |
-
#: core/lib/wpbc_all_translations.php:
|
9114 |
msgid "Click to edit"
|
9115 |
msgstr ""
|
9116 |
|
9117 |
-
#: core/lib/wpbc_all_translations.php:
|
9118 |
msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
|
9119 |
msgstr ""
|
9120 |
|
9121 |
-
#: core/lib/wpbc_all_translations.php:
|
9122 |
msgid "Sort search results by"
|
9123 |
msgstr ""
|
9124 |
|
9125 |
-
#: core/lib/wpbc_all_translations.php:
|
9126 |
msgid "Select type of sorting search results"
|
9127 |
msgstr ""
|
9128 |
|
9129 |
-
#: core/lib/wpbc_all_translations.php:
|
9130 |
#: inc/_bl/admin/page-search.php:181
|
9131 |
msgid "ID of booking resource"
|
9132 |
msgstr ""
|
9133 |
|
9134 |
-
#: core/lib/wpbc_all_translations.php:
|
9135 |
#: inc/_bl/admin/page-search.php:183
|
9136 |
msgid "Title of booking resource"
|
9137 |
msgstr ""
|
9138 |
|
9139 |
-
#: core/lib/wpbc_all_translations.php:
|
9140 |
#: inc/_bl/admin/page-search.php:185
|
9141 |
msgid "Priority field of booking resource"
|
9142 |
msgstr ""
|
9143 |
|
9144 |
-
#: core/lib/wpbc_all_translations.php:
|
9145 |
#: inc/_bl/admin/page-search.php:187
|
9146 |
msgid "Cost of booking resource"
|
9147 |
msgstr ""
|
9148 |
|
9149 |
-
#: core/lib/wpbc_all_translations.php:
|
9150 |
#: inc/_bl/admin/page-search.php:189
|
9151 |
msgid "Cost of booking"
|
9152 |
msgstr ""
|
9153 |
|
9154 |
-
#: core/lib/wpbc_all_translations.php:
|
9155 |
msgid "Deactivate send email option at Add Booking page"
|
9156 |
msgstr ""
|
9157 |
|
9158 |
-
#: core/lib/wpbc_all_translations.php:
|
9159 |
msgid ""
|
9160 |
"Check this box if you want to deactivate by default option \"Send email\" at Add Booking page."
|
9161 |
msgstr ""
|
9162 |
|
9163 |
-
#: core/lib/wpbc_all_translations.php:
|
9164 |
msgid "Deactivate send email option at Booking Listing page"
|
9165 |
msgstr ""
|
9166 |
|
9167 |
-
#: core/lib/wpbc_all_translations.php:
|
9168 |
msgid ""
|
9169 |
"Check this box if you want to deactivate by default option \"Send email\" at Booking Listing "
|
9170 |
"page."
|
9171 |
msgstr ""
|
9172 |
|
9173 |
-
#: core/lib/wpbc_all_translations.php:
|
9174 |
msgid "Force change booking resource for exist booking"
|
9175 |
msgstr ""
|
9176 |
|
9177 |
-
#: core/lib/wpbc_all_translations.php:
|
9178 |
msgid ""
|
9179 |
"Check this box if you want to skip checking availability of new booking resource during changing "
|
9180 |
"booking resource of exist booking at Booking Listing page."
|
9181 |
msgstr ""
|
9182 |
|
9183 |
-
#: core/lib/wpbc_all_translations.php:
|
9184 |
msgid "Signature Key"
|
9185 |
msgstr ""
|
9186 |
|
9187 |
-
#: core/lib/wpbc_all_translations.php:
|
9188 |
msgid "Please enter the Signature Key, which you generated in the settings of Merchant Interface."
|
9189 |
msgstr ""
|
9190 |
|
9191 |
-
#: core/lib/wpbc_all_translations.php:
|
9192 |
msgid "To generate new Signature Key"
|
9193 |
msgstr ""
|
9194 |
|
9195 |
-
#: core/lib/wpbc_all_translations.php:
|
9196 |
#, php-format
|
9197 |
msgid "Log on to the %sMerchant Interface%s"
|
9198 |
msgstr ""
|
9199 |
|
9200 |
-
#: core/lib/wpbc_all_translations.php:
|
9201 |
msgid ""
|
9202 |
"In the merchant interface, go to Account > Settings > Security Settings > General Security "
|
9203 |
"Settings > API Credential & Keys"
|
9204 |
msgstr ""
|
9205 |
|
9206 |
-
#: core/lib/wpbc_all_translations.php:
|
9207 |
msgid "Answer the secret question."
|
9208 |
msgstr ""
|
9209 |
|
9210 |
-
#: core/lib/wpbc_all_translations.php:
|
9211 |
msgid "Select New Signature Key. Your signature key is displayed as a string."
|
9212 |
msgstr ""
|
9213 |
|
9214 |
-
#: core/lib/wpbc_all_translations.php:
|
9215 |
msgid "Click Copy to Clipboard."
|
9216 |
msgstr ""
|
9217 |
|
9218 |
-
#: core/lib/wpbc_all_translations.php:
|
9219 |
#, php-format
|
9220 |
msgid "For more information, please check %shere%s"
|
9221 |
msgstr ""
|
9222 |
|
9223 |
-
#: core/lib/wpbc_all_translations.php:
|
9224 |
#, php-format
|
9225 |
msgid ""
|
9226 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
9227 |
"an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway."
|
9228 |
msgstr ""
|
9229 |
|
9230 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:
|
9231 |
msgid "Loading"
|
9232 |
msgstr ""
|
9233 |
|
9234 |
-
#: core/wpbc-emails.php:260
|
9235 |
#, php-format
|
9236 |
msgid "%s - inserting link to approve booking in 1 mouse click "
|
9237 |
msgstr ""
|
9238 |
|
9239 |
-
#: core/wpbc-emails.php:261
|
9240 |
#, php-format
|
9241 |
msgid "%s - inserting link to set booking as pending in 1 mouse click "
|
9242 |
msgstr ""
|
9243 |
|
9244 |
-
#: core/wpbc-emails.php:262
|
9245 |
#, php-format
|
9246 |
msgid "%s - inserting link for move booking to trash in 1 mouse click "
|
9247 |
msgstr ""
|
9248 |
|
9249 |
-
#: inc/_bl/admin/page-search.php:
|
9250 |
msgid "Flex Search Form Template"
|
9251 |
msgstr ""
|
9252 |
|
9253 |
-
#: inc/_bl/admin/page-search.php:
|
9254 |
msgid "Flex"
|
9255 |
msgstr ""
|
9256 |
|
9257 |
-
#: inc/_ps/hash/wpbc-hash-functions.php:101
|
9258 |
#, php-format
|
9259 |
msgid "Booking %s have been approved."
|
9260 |
msgstr ""
|
9261 |
|
9262 |
-
#: inc/_ps/hash/wpbc-hash-functions.php:129
|
9263 |
#, php-format
|
9264 |
msgid "Booking %s have been set as pending."
|
9265 |
msgstr ""
|
9266 |
|
9267 |
-
#: inc/_ps/hash/wpbc-hash-functions.php:157
|
9268 |
#, php-format
|
9269 |
msgid "Booking %s have been moved to trash."
|
9270 |
msgstr ""
|
9271 |
|
9272 |
-
#: inc/_ps/p-toolbar.php:70 inc/_ps/p-toolbar.php:71
|
9273 |
msgid "Find lost bookings"
|
9274 |
msgstr ""
|
9275 |
|
9276 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
9277 |
#, php-format
|
9278 |
msgid "require correct configuration of this option: %sURL to edit bookings%s"
|
9279 |
msgstr ""
|
9280 |
|
9281 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:
|
9282 |
msgid "You may test your integration over HTTP. However, live integrations must use HTTPS."
|
9283 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: booking\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2019-11-16 09:18+0200\n"
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Generator: Poedit 2.2.4\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
52 |
msgstr ""
|
53 |
|
54 |
#: core/admin/api-settings.php:109 core/admin/api-settings.php:192
|
55 |
+
#: core/lib/wpbc_all_translations.php:9 core/timeline/v2/wpbc-class-timeline_v2.php:86
|
56 |
+
#: inc/_bm/admin/page-seasons.php:991 inc/_bs/admin/api-settings-s.php:108
|
57 |
+
#: inc/_bs/admin/api-settings-s.php:241 inc/_ps/form/class-wpbc-form-help.php:451
|
58 |
+
#: inc/_ps/form/class-wpbc-form-help.php:598
|
59 |
msgid "Sunday"
|
60 |
msgstr ""
|
61 |
|
62 |
#: core/admin/api-settings.php:110 core/admin/api-settings.php:195
|
63 |
+
#: core/lib/wpbc_all_translations.php:10 core/timeline/v2/wpbc-class-timeline_v2.php:80
|
64 |
+
#: inc/_bm/admin/page-seasons.php:992 inc/_bs/admin/api-settings-s.php:109
|
65 |
+
#: inc/_bs/admin/api-settings-s.php:242 inc/_ps/form/class-wpbc-form-help.php:452
|
66 |
+
#: inc/_ps/form/class-wpbc-form-help.php:599
|
67 |
msgid "Monday"
|
68 |
msgstr ""
|
69 |
|
70 |
#: core/admin/api-settings.php:111 core/admin/api-settings.php:198
|
71 |
+
#: core/lib/wpbc_all_translations.php:11 core/timeline/v2/wpbc-class-timeline_v2.php:81
|
72 |
+
#: inc/_bm/admin/page-seasons.php:993 inc/_bs/admin/api-settings-s.php:110
|
73 |
+
#: inc/_bs/admin/api-settings-s.php:243 inc/_ps/form/class-wpbc-form-help.php:453
|
74 |
+
#: inc/_ps/form/class-wpbc-form-help.php:600
|
75 |
msgid "Tuesday"
|
76 |
msgstr ""
|
77 |
|
78 |
#: core/admin/api-settings.php:112 core/admin/api-settings.php:201
|
79 |
+
#: core/lib/wpbc_all_translations.php:12 core/timeline/v2/wpbc-class-timeline_v2.php:82
|
80 |
+
#: inc/_bm/admin/page-seasons.php:994 inc/_bs/admin/api-settings-s.php:111
|
81 |
+
#: inc/_bs/admin/api-settings-s.php:244 inc/_ps/form/class-wpbc-form-help.php:454
|
82 |
+
#: inc/_ps/form/class-wpbc-form-help.php:601
|
83 |
msgid "Wednesday"
|
84 |
msgstr ""
|
85 |
|
86 |
#: core/admin/api-settings.php:113 core/admin/api-settings.php:204
|
87 |
+
#: core/lib/wpbc_all_translations.php:13 core/timeline/v2/wpbc-class-timeline_v2.php:83
|
88 |
+
#: inc/_bm/admin/page-seasons.php:995 inc/_bs/admin/api-settings-s.php:112
|
89 |
+
#: inc/_bs/admin/api-settings-s.php:245 inc/_ps/form/class-wpbc-form-help.php:455
|
90 |
+
#: inc/_ps/form/class-wpbc-form-help.php:602
|
91 |
msgid "Thursday"
|
92 |
msgstr ""
|
93 |
|
94 |
#: core/admin/api-settings.php:114 core/admin/api-settings.php:207
|
95 |
+
#: core/lib/wpbc_all_translations.php:14 core/timeline/v2/wpbc-class-timeline_v2.php:84
|
96 |
+
#: inc/_bm/admin/page-seasons.php:996 inc/_bs/admin/api-settings-s.php:113
|
97 |
+
#: inc/_bs/admin/api-settings-s.php:246 inc/_ps/form/class-wpbc-form-help.php:456
|
98 |
+
#: inc/_ps/form/class-wpbc-form-help.php:603
|
99 |
msgid "Friday"
|
100 |
msgstr ""
|
101 |
|
102 |
#: core/admin/api-settings.php:115 core/admin/api-settings.php:210
|
103 |
+
#: core/lib/wpbc_all_translations.php:15 core/timeline/v2/wpbc-class-timeline_v2.php:85
|
104 |
+
#: inc/_bm/admin/page-seasons.php:997 inc/_bs/admin/api-settings-s.php:114
|
105 |
+
#: inc/_bs/admin/api-settings-s.php:247 inc/_ps/form/class-wpbc-form-help.php:457
|
106 |
+
#: inc/_ps/form/class-wpbc-form-help.php:604
|
107 |
msgid "Saturday"
|
108 |
msgstr ""
|
109 |
|
131 |
msgstr ""
|
132 |
|
133 |
#: core/admin/api-settings.php:164 core/admin/api-settings.php:314 core/admin/api-settings.php:474
|
134 |
+
#: core/admin/api-settings.php:509 core/admin/api-settings.php:819
|
135 |
#: core/admin/page-form-free.php:189 core/admin/page-ics-export.php:467
|
136 |
+
#: core/lib/wpbc_all_translations.php:21 core/timeline/v2/wpbc-class-timeline_v2.php:2817
|
137 |
+
#: inc/_bl/admin/api-settings-l.php:179 inc/_bl/admin/api-settings-l.php:185
|
138 |
+
#: inc/_bl/admin/api-settings-l.php:216 inc/gateways/page-gateways.php:187
|
139 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1076 js/wpbc-gutenberg.js:964
|
|
|
140 |
msgid "Note"
|
141 |
msgstr ""
|
142 |
|
161 |
msgid "Select number of unavailable days in calendar start from today."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: core/admin/api-settings.php:275 core/lib/wpbc_all_translations.php:27 inc/_ps/lib_p.php:268
|
165 |
msgid "Simple"
|
166 |
msgstr ""
|
167 |
|
169 |
#: core/admin/wpbc-toolbar-tiny.php:698 core/admin/wpbc-toolbar-tiny.php:1199
|
170 |
#: core/admin/wpbc-toolbar-tiny.php:1615 core/lib/wpbc_all_translations.php:28
|
171 |
#: inc/_bm/m-toolbar.php:29 inc/_bm/m-toolbar.php:113 inc/_bm/m-toolbar.php:392
|
172 |
+
#: inc/_ps/lib_p.php:268 js/wpbc-gutenberg.js:532
|
173 |
msgid "Booking Form"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:29 inc/_ps/lib_p.php:264
|
177 |
msgid ""
|
178 |
"Check the box, if you want to use simple booking form customization from Free plugin version at "
|
179 |
"Settings - Form page."
|
183 |
msgid "Syntax highlighter"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: core/admin/api-settings.php:285 core/lib/wpbc_all_translations.php:31
|
187 |
msgid "Check the box, if you want to use syntax highlighter during customization booking form."
|
188 |
msgstr ""
|
189 |
|
229 |
msgstr ""
|
230 |
|
231 |
#: core/admin/api-settings.php:351 core/lib/wpbc_all_translations.php:42
|
232 |
+
#: core/wpbc-activation.php:1027
|
233 |
msgid "Available"
|
234 |
msgstr ""
|
235 |
|
243 |
msgstr ""
|
244 |
|
245 |
#: core/admin/api-settings.php:388 core/admin/page-email-deny.php:558
|
246 |
+
#: core/admin/wpbc-class-listing.php:328 core/admin/wpbc-class-listing.php:426
|
247 |
#: core/admin/wpbc-toolbars.php:549 core/admin/wpbc-toolbars.php:964
|
248 |
+
#: core/lib/wpbc_all_translations.php:45 core/timeline/v2/wpbc-class-timeline_v2.php:2729
|
249 |
+
#: core/wpbc-activation.php:1031 inc/_bs/lib_s.php:326 inc/_ps/personal.php:357
|
250 |
#: inc/_ps/wpbc-print.php:119
|
251 |
msgid "Pending"
|
252 |
msgstr ""
|
261 |
msgstr ""
|
262 |
|
263 |
#: core/admin/api-settings.php:425 core/lib/wpbc_all_translations.php:48
|
264 |
+
#: core/wpbc-activation.php:1035
|
265 |
msgid "Booked"
|
266 |
msgstr ""
|
267 |
|
275 |
msgstr ""
|
276 |
|
277 |
#: core/admin/api-settings.php:463 core/lib/wpbc_all_translations.php:51
|
278 |
+
#: core/wpbc-activation.php:1041
|
279 |
msgid "Partially booked"
|
280 |
msgstr ""
|
281 |
|
309 |
msgstr ""
|
310 |
|
311 |
#: core/admin/api-settings.php:523 core/lib/wpbc_all_translations.php:59
|
312 |
+
#: core/wpbc-activation.php:868
|
313 |
#, php-format
|
314 |
msgid ""
|
315 |
"Thank you for your online booking. %s We will send confirmation of your booking as soon as "
|
361 |
msgid "Select your default view mode of bookings at the booking listing page"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: core/admin/api-settings.php:615 core/admin/wpbc-toolbar-tiny.php:393
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
#: core/admin/wpbc-toolbars.php:1184 core/admin/wpbc-toolbars.php:1244
|
366 |
+
#: core/lib/wpbc_all_translations.php:74 inc/_bl/admin/page-coupons.php:526
|
367 |
msgid "Day"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: core/admin/api-settings.php:616 core/admin/wpbc-toolbar-tiny.php:394
|
371 |
#: core/admin/wpbc-toolbars.php:1201 core/admin/wpbc-toolbars.php:1258
|
372 |
+
#: core/lib/wpbc_all_translations.php:75
|
373 |
msgid "Week"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: core/admin/api-settings.php:617 core/admin/api-settings.php:624
|
377 |
#: core/admin/wpbc-toolbar-tiny.php:396 core/admin/wpbc-toolbars.php:1218
|
378 |
+
#: core/admin/wpbc-toolbars.php:1272 core/lib/wpbc_all_translations.php:76
|
379 |
#: inc/_bl/admin/page-coupons.php:525
|
380 |
msgid "Month"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: core/admin/api-settings.php:618 core/admin/wpbc-toolbar-tiny.php:398
|
384 |
+
#: core/admin/wpbc-toolbars.php:1286 core/lib/wpbc_all_translations.php:77
|
385 |
msgid "2 Months"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: core/admin/api-settings.php:619 core/admin/api-settings.php:625
|
389 |
+
#: core/admin/wpbc-toolbar-tiny.php:400 core/lib/wpbc_all_translations.php:78
|
390 |
msgid "3 Months"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: core/admin/api-settings.php:620 core/admin/api-settings.php:626
|
394 |
#: core/admin/wpbc-toolbar-tiny.php:401 core/admin/wpbc-toolbars.php:579
|
395 |
+
#: core/admin/wpbc-toolbars.php:813 core/lib/wpbc_all_translations.php:79
|
396 |
#: inc/_bl/admin/page-coupons.php:524
|
397 |
msgid "Year"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: core/admin/api-settings.php:631 core/lib/wpbc_all_translations.php:80
|
401 |
msgid "Default calendar view mode"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: core/admin/api-settings.php:632 core/lib/wpbc_all_translations.php:81
|
405 |
msgid "Select your default calendar view mode at booking calendar overview page"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: core/admin/api-settings.php:642 core/lib/wpbc_all_translations.php:82
|
409 |
msgid "Filter tab"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: core/admin/api-settings.php:643 core/lib/wpbc_all_translations.php:83
|
413 |
msgid "Actions tab"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: core/admin/api-settings.php:648 core/lib/wpbc_all_translations.php:84
|
417 |
msgid "Default toolbar tab"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: core/admin/api-settings.php:649 core/lib/wpbc_all_translations.php:85
|
421 |
msgid "Select your default opened tab in toolbar at booking listing page"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: core/admin/api-settings.php:661 core/lib/wpbc_all_translations.php:86
|
425 |
msgid "Bookings number per page"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: core/admin/api-settings.php:662 core/lib/wpbc_all_translations.php:87
|
429 |
msgid "Select number of bookings per page in booking listing"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: core/admin/api-settings.php:669 core/admin/api-settings.php:670
|
433 |
#: core/admin/wpbc-class-listing.php:122 core/admin/wpbc-toolbars.php:735
|
434 |
+
#: core/admin/wpbc-toolbars.php:738 core/lib/wpbc_all_translations.php:88
|
435 |
+
#: core/sync/wpbc-gcal-class.php:640 core/sync/wpbc-gcal-class.php:661
|
436 |
#: inc/_bl/admin/page-coupons.php:495 inc/_bm/admin/page-availability.php:491
|
437 |
#: inc/_bm/admin/page-availability.php:972 inc/_bm/admin/page-cost-rate.php:148
|
438 |
+
#: inc/_bm/admin/page-cost.php:571 inc/_bm/admin/page-seasons.php:506 inc/_bs/lib_s.php:179
|
439 |
#: inc/_bs/lib_s.php:184 inc/_mu/admin/page-users.php:428
|
440 |
#: inc/_ps/admin/br-table-export-feeds.php:168 inc/_ps/admin/br-table-import-gcal-p.php:140
|
441 |
#: inc/_ps/admin/page-resources.php:455 inc/_ps/form/class-wpbc-field-help-text.php:211
|
442 |
#: inc/_ps/lib_p.php:124 inc/_ps/lib_p.php:128 inc/_ps/wpbc-print.php:82
|
443 |
+
#: inc/gateways/page-gateways.php:857
|
444 |
msgid "ID"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: core/admin/api-settings.php:669 core/admin/api-settings.php:671 core/admin/api-settings.php:675
|
448 |
+
#: core/admin/api-settings.php:679 core/lib/wpbc_all_translations.php:89
|
449 |
#: inc/_bl/admin/page-search.php:180 inc/_bl/admin/page-search.php:182
|
450 |
#: inc/_bl/admin/page-search.php:184 inc/_bl/admin/page-search.php:186
|
451 |
#: inc/_bl/admin/page-search.php:188
|
452 |
msgid "ASC"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: core/admin/api-settings.php:670 core/admin/api-settings.php:672 core/admin/api-settings.php:676
|
456 |
+
#: core/admin/api-settings.php:680 core/lib/wpbc_all_translations.php:90
|
457 |
#: inc/_bl/admin/page-search.php:181 inc/_bl/admin/page-search.php:183
|
458 |
#: inc/_bl/admin/page-search.php:185 inc/_bl/admin/page-search.php:187
|
459 |
#: inc/_bl/admin/page-search.php:189
|
460 |
msgid "DESC"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: core/admin/api-settings.php:671 core/admin/api-settings.php:672 core/admin/wpbc-toolbars.php:588
|
|
|
464 |
#: core/admin/wpbc-toolbars.php:650 core/admin/wpbc-toolbars.php:736
|
465 |
#: core/admin/wpbc-toolbars.php:739 core/admin/wpbc-toolbars.php:855
|
466 |
+
#: core/lib/wpbc_all_translations.php:91 core/sync/wpbc-gcal-class.php:643
|
467 |
+
#: core/sync/wpbc-gcal-class.php:678 core/timeline/v2/wpbc-class-timeline_v2.php:73
|
468 |
#: inc/_bs/lib_s.php:180 inc/_bs/lib_s.php:185 inc/_ps/lib_p.php:125 inc/_ps/lib_p.php:129
|
469 |
#: inc/_ps/wpbc-form-templates.php:89 inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
|
470 |
msgid "Dates"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: core/admin/api-settings.php:675 core/admin/api-settings.php:676
|
474 |
+
#: core/lib/wpbc_all_translations.php:92 inc/_bl/admin/page-search.php:941
|
475 |
#: inc/_bm/admin/page-availability.php:876 inc/_bm/admin/page-cost-rate.php:106
|
476 |
#: inc/_bm/admin/page-cost-valuation.php:134 inc/_bs/lib_s.php:181 inc/_bs/lib_s.php:186
|
477 |
#: inc/_ps/lib_p.php:126 inc/_ps/lib_p.php:130
|
478 |
msgid "Resource"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: core/admin/api-settings.php:679 core/admin/api-settings.php:680
|
482 |
+
#: core/admin/wpbc-toolbar-tiny.php:1803 core/lib/wpbc_all_translations.php:93
|
483 |
#: inc/_bs/admin/api-settings-s.php:924 inc/_bs/lib_s.php:139 inc/_bs/lib_s.php:182
|
484 |
#: inc/_bs/lib_s.php:187 inc/_ps/wpbc-print.php:86
|
485 |
msgid "Cost"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: core/admin/api-settings.php:685 core/lib/wpbc_all_translations.php:94
|
489 |
msgid "Bookings default order"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: core/admin/api-settings.php:686 core/lib/wpbc_all_translations.php:95
|
493 |
msgid "Select your default order of bookings in the booking listing"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: core/admin/api-settings.php:703 core/lib/wpbc_all_translations.php:96
|
497 |
+
#: inc/_bl/admin/page-search.php:222
|
498 |
msgid "Date Format"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: core/admin/api-settings.php:708 core/lib/wpbc_all_translations.php:97
|
502 |
msgid "F j, Y"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: core/admin/api-settings.php:711 core/admin/wpbc-toolbars.php:1484
|
506 |
+
#: core/lib/wpbc_all_translations.php:98 inc/_bm/admin/api-settings-m.php:197
|
507 |
#: inc/_bs/admin/api-settings-s.php:426 inc/_bs/lib_s.php:54
|
508 |
msgid "Custom"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: core/admin/api-settings.php:737 core/lib/wpbc_all_translations.php:99
|
512 |
#, php-format
|
513 |
msgid ""
|
514 |
"Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: core/admin/api-settings.php:750 core/lib/wpbc_all_translations.php:100
|
518 |
msgid "Short days view"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: core/admin/api-settings.php:751 core/lib/wpbc_all_translations.php:101
|
522 |
msgid "Wide days view"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: core/admin/api-settings.php:756 core/lib/wpbc_all_translations.php:102
|
526 |
msgid "Dates view"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: core/admin/api-settings.php:757 core/lib/wpbc_all_translations.php:103
|
530 |
msgid "Select the default view for dates on the booking tables"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: core/admin/api-settings.php:773 core/lib/wpbc_all_translations.php:104
|
534 |
msgid "Show / hide hints"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: core/admin/api-settings.php:774 core/lib/wpbc_all_translations.php:105
|
538 |
msgid "Check this box if you want to show help hints on the admin panel."
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: core/admin/api-settings.php:794 core/lib/wpbc_all_translations.php:106
|
542 |
msgid "Allow unlimited bookings per same day(s)"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: core/admin/api-settings.php:795 core/lib/wpbc_all_translations.php:107
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
"Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
|
550 |
"date(s)%s of other visitors."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: core/admin/api-settings.php:805 core/lib/wpbc_all_translations.php:108
|
554 |
#: inc/_bl/admin/api-settings-l.php:101
|
555 |
msgid "Use pending days as available"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: core/admin/api-settings.php:806 core/lib/wpbc_all_translations.php:109
|
559 |
#: inc/_bl/admin/api-settings-l.php:102
|
560 |
msgid "Check this box if you want to show the pending days as available in calendars"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: core/admin/api-settings.php:817 core/lib/wpbc_all_translations.php:110
|
564 |
msgid "Checking to prevent double booking, during submitting booking"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: core/admin/api-settings.php:818 core/lib/wpbc_all_translations.php:111
|
568 |
#, php-format
|
569 |
msgid ""
|
570 |
"Check this box, if you want to %sre-check if the selected dates available during submitting "
|
571 |
"booking%s."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: core/admin/api-settings.php:820 core/lib/wpbc_all_translations.php:112
|
575 |
msgid ""
|
576 |
"This feature useful to prevent double booking of the same date(s) or time(s), if several "
|
577 |
"visitors try to book the same date(s) in same calendar during the same time."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: core/admin/api-settings.php:821 core/lib/wpbc_all_translations.php:113
|
581 |
msgid "This feature does not work for booking resources with capacity higher than one."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: core/admin/api-settings.php:838 core/lib/wpbc_all_translations.php:114
|
585 |
msgid "Show advanced settings of JavaScript loading"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: core/admin/api-settings.php:839 core/lib/wpbc_all_translations.php:115
|
589 |
msgid "Hide advanced settings of JavaScript loading"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: core/admin/api-settings.php:847 core/lib/wpbc_all_translations.php:116
|
593 |
msgid "Disable Bootstrap loading on Front-End"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: core/admin/api-settings.php:848 core/admin/api-settings.php:857
|
597 |
+
#: core/lib/wpbc_all_translations.php:117
|
598 |
msgid ""
|
599 |
" If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
|
600 |
"of this script by this plugin."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: core/admin/api-settings.php:856 core/lib/wpbc_all_translations.php:118
|
604 |
msgid "Disable Bootstrap loading on Back-End"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: core/admin/api-settings.php:866 core/lib/wpbc_all_translations.php:119
|
608 |
msgid "Load JS and CSS files only on specific pages"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: core/admin/api-settings.php:867 core/lib/wpbc_all_translations.php:120
|
612 |
msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: core/admin/api-settings.php:877 core/lib/wpbc_all_translations.php:121
|
616 |
msgid "Relative URLs of pages, where to load plugin CSS and JS files"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: core/admin/api-settings.php:878 core/lib/wpbc_all_translations.php:122
|
620 |
#, php-format
|
621 |
msgid ""
|
622 |
"Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
|
623 |
"availability calendars). Please enter one URL per line. Example: %s"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: core/admin/api-settings.php:892 core/lib/wpbc_all_translations.php:123
|
627 |
msgid "Show system debugging log for beta features"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: core/admin/api-settings.php:893 core/lib/wpbc_all_translations.php:124
|
631 |
msgid "Activate this option only for testing beta features"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: core/admin/api-settings.php:909 core/lib/wpbc_all_translations.php:125
|
635 |
msgid "Show settings of powered by notice"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: core/admin/api-settings.php:910 core/lib/wpbc_all_translations.php:126
|
639 |
msgid "Hide settings of powered by notice"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: core/admin/api-settings.php:917 core/lib/wpbc_all_translations.php:127
|
643 |
msgid "Powered by notice"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: core/admin/api-settings.php:918 core/lib/wpbc_all_translations.php:128
|
647 |
msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: core/admin/api-settings.php:926 core/lib/wpbc_all_translations.php:129
|
651 |
msgid "Help and info notices"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: core/admin/api-settings.php:927 core/lib/wpbc_all_translations.php:130
|
655 |
msgid " Turn On/Off version notice and help info links at booking admin panel."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: core/admin/api-settings.php:955 core/lib/wpbc_all_translations.php:131
|
659 |
msgid "Plugin menu position"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: core/admin/api-settings.php:958 core/lib/wpbc_all_translations.php:132
|
663 |
msgid "Top"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: core/admin/api-settings.php:959 core/lib/wpbc_all_translations.php:133
|
667 |
msgid "Middle"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: core/admin/api-settings.php:960 core/lib/wpbc_all_translations.php:134
|
671 |
msgid "Bottom"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: core/admin/api-settings.php:971 core/lib/wpbc_all_translations.php:135
|
675 |
msgid "User permissions for plugin menu pages"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: core/admin/api-settings.php:986 core/admin/wpbc-toolbars.php:556
|
679 |
+
#: core/admin/wpbc-toolbars.php:771 core/lib/wpbc_all_translations.php:136
|
680 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:74 core/wpbc.php:136
|
|
|
681 |
msgid "Bookings"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: core/admin/api-settings.php:995 core/admin/page-new.php:33 core/admin/page-new.php:34
|
685 |
#: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1847
|
686 |
+
#: core/lib/wpbc_all_translations.php:137 core/wpbc-functions.php:1902 core/wpbc.php:165
|
687 |
#: core/wpbc.php:166 core/wpbc.php:167
|
688 |
msgid "Add booking"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: core/admin/api-settings.php:1005 core/admin/page-import-gcal.php:491
|
692 |
+
#: core/lib/wpbc_all_translations.php:138 core/timeline/v2/wpbc-class-timeline_v2.php:72
|
693 |
+
#: core/wpbc-functions.php:1912 core/wpbc.php:176 core/wpbc.php:178
|
694 |
+
#: inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
|
695 |
#: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
|
696 |
#: inc/_bm/admin/page-cost-valuation.php:133 inc/_mu/admin/page-users.php:446
|
697 |
#: inc/_ps/admin/br-table-export-feeds.php:172 inc/_ps/admin/br-table-import-gcal-p.php:144
|
699 |
msgid "Resources"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: core/admin/api-settings.php:1014 core/lib/wpbc_all_translations.php:139
|
703 |
#: core/wpbc-functions.php:1967 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
|
704 |
#: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
|
705 |
msgid "Settings"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: core/admin/api-settings.php:1015 core/lib/wpbc_all_translations.php:140
|
709 |
msgid "Select user access level for the menu pages of plugin"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: core/admin/api-settings.php:1026 core/lib/wpbc_all_translations.php:141 core/wpbc.php:204
|
713 |
msgid "Premium"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: core/admin/api-settings.php:1027 core/lib/wpbc_all_translations.php:142
|
717 |
msgid "Show / hide menu"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: core/admin/api-settings.php:1030 core/admin/wpbc-toolbar-tiny.php:591
|
721 |
#: core/admin/wpbc-toolbar-tiny.php:1810 core/admin/wpbc-toolbars.php:790
|
722 |
+
#: core/lib/wpbc_all_translations.php:143 core/lib/wpdev-booking-widget.php:104
|
723 |
#: js/wpbc-gutenberg.js:1264
|
724 |
msgid "Show"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: core/admin/api-settings.php:1031 core/class/wpbc-class-notices.php:104
|
728 |
+
#: core/lib/wpbc_all_translations.php:144 core/sync/wpbc-gcal-class.php:704
|
729 |
#: core/wpbc-functions.php:2371
|
730 |
msgid "Hide"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: core/admin/api-settings.php:1048 core/lib/wpbc_all_translations.php:145
|
734 |
msgid "Delete booking data, when plugin deactivated"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: core/admin/api-settings.php:1049 core/lib/wpbc_all_translations.php:146
|
738 |
msgid "Check this box to delete all booking data when you uninstal this plugin."
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: core/admin/api-settings.php:1075 core/admin/page-form-free.php:986
|
742 |
+
#: core/lib/wpbc_all_translations.php:147 core/sync/wpbc-gcal-class.php:474
|
743 |
+
#: core/sync/wpbc-gcal-class.php:642 core/sync/wpbc-gcal-class.php:668
|
744 |
#: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
|
745 |
#: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
|
746 |
#: inc/_ps/admin/br-table-export-feeds.php:179 inc/_ps/admin/br-table-import-gcal-p.php:151
|
747 |
msgid "Info"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: core/admin/api-settings.php:1110 core/admin/page-settings.php:296
|
751 |
+
#: core/lib/wpbc_all_translations.php:148
|
752 |
msgid "Restore all dismissed windows"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: core/admin/api-settings.php:1234 core/admin/api-settings.php:1265
|
756 |
+
#: core/admin/api-settings.php:1297 core/admin/api-settings.php:1310
|
757 |
+
#: core/admin/api-settings.php:1343 core/lib/wpbc_all_translations.php:149
|
758 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:559
|
759 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/page-gateways.php:906
|
760 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
|
761 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:857
|
762 |
msgid "Warning"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: core/admin/api-settings.php:1235 core/lib/wpbc_all_translations.php:150
|
766 |
msgid ""
|
767 |
"You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
|
768 |
"the same date. Do you really want to do this?"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: core/admin/api-settings.php:1266 core/lib/wpbc_all_translations.php:151
|
772 |
msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: core/admin/api-settings.php:1298 core/admin/api-settings.php:1311
|
776 |
+
#: core/lib/wpbc_all_translations.php:152
|
777 |
msgid ""
|
778 |
"You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
|
779 |
"really want to do this?"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: core/admin/api-settings.php:1344 core/lib/wpbc_all_translations.php:153
|
783 |
msgid ""
|
784 |
"If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
|
785 |
"you really want to do this?"
|
786 |
msgstr ""
|
787 |
|
788 |
#: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
|
789 |
+
#: core/admin/wpbc-toolbars.php:467 core/lib/wpbc_all_translations.php:154
|
790 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2630 core/wpbc-functions.php:1880
|
791 |
msgid "Booking Listing"
|
792 |
msgstr ""
|
793 |
|
794 |
#: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
|
795 |
#: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
|
796 |
#: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
|
797 |
+
#: core/lib/wpbc_all_translations.php:155 inc/_bm/admin/page-cost-deposit.php:134
|
798 |
#: inc/_bm/admin/page-cost-early-late-booking.php:138
|
799 |
#: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
|
800 |
#: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:292
|
801 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
|
802 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:377 inc/gateways/ipay88/wpbc-gw-ipay88.php:317
|
803 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:343
|
804 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:681 inc/gateways/paypal/wpbc-gw-paypal.php:704
|
805 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:727 inc/gateways/sage/wpbc-gw-sage.php:384
|
806 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:485
|
807 |
msgid "Enable / Disable"
|
808 |
msgstr ""
|
809 |
|
810 |
#: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
|
811 |
#: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
|
812 |
#: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
|
813 |
+
#: core/lib/wpbc_all_translations.php:156 inc/_bs/admin/page-email-payment.php:180
|
814 |
#: inc/_ps/admin/page-email-edit.php:179
|
815 |
msgid "Enable this email notification"
|
816 |
msgstr ""
|
819 |
#: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
|
820 |
#: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
|
821 |
#: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
|
822 |
+
#: core/lib/wpbc_all_translations.php:157 inc/_bs/admin/page-email-payment.php:191
|
823 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
|
824 |
#: inc/_ps/admin/page-email-edit.php:205
|
825 |
msgid "Copy(ies)"
|
827 |
|
828 |
#: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
|
829 |
#: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
|
830 |
+
#: core/lib/wpbc_all_translations.php:158 inc/_bs/admin/page-email-payment.php:192
|
831 |
#: inc/_ps/admin/page-email-edit.php:191
|
832 |
msgid "Enable / disable sending email(s) to additional addresses"
|
833 |
msgstr ""
|
834 |
|
835 |
#: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
|
836 |
#: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
|
837 |
+
#: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:159
|
838 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
839 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
|
840 |
msgid "To"
|
845 |
#: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
|
846 |
#: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
|
847 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
|
848 |
+
#: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:160
|
849 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
850 |
#: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
|
851 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
|
862 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
|
863 |
#: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
|
864 |
#: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1147
|
865 |
+
#: core/admin/page-form-free.php:2071 core/lib/wpbc_all_translations.php:161
|
866 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
867 |
#: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
|
868 |
#: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
|
869 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:304
|
870 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:338 inc/gateways/ideal/wpbc-gw-ideal.php:389
|
871 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:404 inc/gateways/ipay88/wpbc-gw-ipay88.php:329
|
872 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:344 inc/gateways/paypal/wpbc-gw-paypal.php:376
|
873 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:392 inc/gateways/sage/wpbc-gw-sage.php:396
|
874 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:411 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:513
|
875 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:528
|
876 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:545
|
877 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:560
|
|
|
|
|
878 |
msgid "Required"
|
879 |
msgstr ""
|
880 |
|
881 |
#: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
|
882 |
#: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
|
883 |
+
#: core/lib/wpbc_all_translations.php:162 inc/_bs/admin/page-email-payment.php:217
|
884 |
#: inc/_ps/admin/page-email-edit.php:216
|
885 |
msgid "You can put multiple emails separated by"
|
886 |
msgstr ""
|
892 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
893 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
|
894 |
#: core/admin/wpbc-toolbar-tiny.php:430 core/admin/wpbc-toolbar-tiny.php:1801
|
895 |
+
#: core/lib/wpbc_all_translations.php:163 core/lib/wpdev-booking-widget.php:96
|
896 |
+
#: core/sync/wpbc-gcal-class.php:641 core/sync/wpbc-gcal-class.php:664
|
897 |
#: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
|
898 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
899 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
907 |
#: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
|
908 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
909 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
|
910 |
+
#: core/admin/wpbc-toolbar-tiny.php:430 core/lib/wpbc_all_translations.php:164
|
911 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
912 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
913 |
#: inc/_ps/form/class-wpbc-field-help-button.php:73
|
919 |
#: inc/_ps/form/class-wpbc-field-help-text.php:228 inc/_ps/form/class-wpbc-field-help-text.php:247
|
920 |
#: inc/_ps/form/class-wpbc-field-help-text.php:264 inc/_ps/form/class-wpbc-field-help-text.php:281
|
921 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
922 |
+
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111 inc/gateways/page-gateways.php:368
|
923 |
msgid "optional"
|
924 |
msgstr ""
|
925 |
|
927 |
#: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
|
928 |
#: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
|
929 |
#: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:594
|
930 |
+
#: core/lib/wpbc_all_translations.php:165 core/sync/wpbc-gcal.php:171
|
931 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
932 |
#: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
|
933 |
#: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
|
934 |
msgid "From"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:166
|
938 |
msgid "Email Address will be used in the FROM field of response to Visitor."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:167
|
942 |
+
#: core/wpbc-activation.php:995
|
943 |
msgid "Your booking has been approved"
|
944 |
msgstr ""
|
945 |
|
946 |
#: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
|
947 |
#: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
|
948 |
#: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
|
949 |
+
#: core/lib/wpbc_all_translations.php:168 inc/_bs/admin/page-email-payment.php:316
|
950 |
#: inc/_ps/admin/page-email-edit.php:312
|
951 |
msgid "Subject"
|
952 |
msgstr ""
|
954 |
#: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
|
955 |
#: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
|
956 |
#: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
|
957 |
+
#: core/lib/wpbc_all_translations.php:169 inc/_bs/admin/page-email-payment.php:317
|
958 |
#: inc/_ps/admin/page-email-edit.php:313
|
959 |
#, php-format
|
960 |
msgid "Type your email %ssubject%s for the booking confimation message."
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:170
|
964 |
+
#: core/wpbc-activation.php:997
|
965 |
#, php-format
|
966 |
msgid ""
|
967 |
"Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
|
968 |
"you, %s"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:171
|
972 |
+
#: core/wpbc-activation.php:999
|
973 |
#, php-format
|
974 |
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
975 |
msgstr ""
|
977 |
#: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
|
978 |
#: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
|
979 |
#: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
|
980 |
+
#: core/lib/wpbc_all_translations.php:172 inc/_bs/admin/page-email-payment.php:334
|
981 |
#: inc/_ps/admin/page-email-edit.php:330
|
982 |
msgid "Content"
|
983 |
msgstr ""
|
985 |
#: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
|
986 |
#: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
|
987 |
#: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
|
988 |
+
#: core/lib/wpbc_all_translations.php:173 inc/_bs/admin/page-email-payment.php:335
|
989 |
#: inc/_ps/admin/page-email-edit.php:331
|
990 |
msgid "Type your email message content. "
|
991 |
msgstr ""
|
993 |
#: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
|
994 |
#: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
|
995 |
#: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
|
996 |
+
#: core/lib/wpbc_all_translations.php:174 inc/_bs/admin/page-email-payment.php:356
|
997 |
#: inc/_ps/admin/page-email-edit.php:352
|
998 |
msgid "Email Heading"
|
999 |
msgstr ""
|
1001 |
#: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
|
1002 |
#: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
|
1003 |
#: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
|
1004 |
+
#: core/lib/wpbc_all_translations.php:175 inc/_bs/admin/page-email-payment.php:357
|
1005 |
#: inc/_ps/admin/page-email-edit.php:353
|
1006 |
msgid "Enter main heading contained within the email notification."
|
1007 |
msgstr ""
|
1009 |
#: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
|
1010 |
#: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
|
1011 |
#: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
|
1012 |
+
#: core/lib/wpbc_all_translations.php:176 inc/_bs/admin/page-email-payment.php:366
|
1013 |
#: inc/_ps/admin/page-email-edit.php:362
|
1014 |
msgid "Email Footer Text"
|
1015 |
msgstr ""
|
1017 |
#: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
|
1018 |
#: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
|
1019 |
#: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
|
1020 |
+
#: core/lib/wpbc_all_translations.php:177 inc/_bs/admin/page-email-payment.php:367
|
1021 |
#: inc/_ps/admin/page-email-edit.php:363
|
1022 |
msgid "Enter text contained within footer of the email notification"
|
1023 |
msgstr ""
|
1025 |
#: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
|
1026 |
#: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
|
1027 |
#: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
|
1028 |
+
#: core/lib/wpbc_all_translations.php:178 inc/_bs/admin/page-email-payment.php:377
|
1029 |
#: inc/_ps/admin/page-email-edit.php:373
|
1030 |
msgid "Email template"
|
1031 |
msgstr ""
|
1033 |
#: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
|
1034 |
#: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
|
1035 |
#: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
|
1036 |
+
#: core/lib/wpbc_all_translations.php:179 inc/_bs/admin/page-email-payment.php:378
|
1037 |
#: inc/_ps/admin/page-email-edit.php:374
|
1038 |
msgid "Choose email template."
|
1039 |
msgstr ""
|
1041 |
#: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
|
1042 |
#: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
|
1043 |
#: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
|
1044 |
+
#: core/lib/wpbc_all_translations.php:180 inc/_bs/admin/page-email-payment.php:382
|
1045 |
#: inc/_ps/admin/page-email-edit.php:378
|
1046 |
msgid "Plain (without styles)"
|
1047 |
msgstr ""
|
1049 |
#: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
|
1050 |
#: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
|
1051 |
#: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
|
1052 |
+
#: core/lib/wpbc_all_translations.php:181 inc/_bs/admin/page-email-payment.php:383
|
1053 |
#: inc/_ps/admin/page-email-edit.php:379
|
1054 |
msgid "Standard 1 column"
|
1055 |
msgstr ""
|
1057 |
#: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
|
1058 |
#: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
|
1059 |
#: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
|
1060 |
+
#: core/lib/wpbc_all_translations.php:182 inc/_bs/admin/page-email-payment.php:390
|
1061 |
#: inc/_ps/admin/page-email-edit.php:386
|
1062 |
#, php-format
|
1063 |
msgid "You can override this email template in this folder %s"
|
1066 |
#: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
|
1067 |
#: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
|
1068 |
#: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
|
1069 |
+
#: core/lib/wpbc_all_translations.php:183 inc/_bs/admin/page-email-payment.php:400
|
1070 |
#: inc/_ps/admin/page-email-edit.php:396
|
1071 |
msgid "Base Color"
|
1072 |
msgstr ""
|
1074 |
#: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
|
1075 |
#: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
|
1076 |
#: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
|
1077 |
+
#: core/lib/wpbc_all_translations.php:184 inc/_bs/admin/page-email-payment.php:401
|
1078 |
#: inc/_ps/admin/page-email-edit.php:397
|
1079 |
msgid "The base color for email templates."
|
1080 |
msgstr ""
|
1091 |
#: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
|
1092 |
#: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
|
1093 |
#: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
|
1094 |
+
#: core/lib/wpbc_all_translations.php:185 inc/_bs/admin/page-email-payment.php:402
|
1095 |
#: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
|
1096 |
#: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
|
1097 |
#: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
|
1102 |
#: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
|
1103 |
#: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
|
1104 |
#: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
|
1105 |
+
#: core/lib/wpbc_all_translations.php:186 inc/_bs/admin/page-email-payment.php:409
|
1106 |
#: inc/_ps/admin/page-email-edit.php:405
|
1107 |
msgid "Background Color"
|
1108 |
msgstr ""
|
1110 |
#: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
|
1111 |
#: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
|
1112 |
#: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
|
1113 |
+
#: core/lib/wpbc_all_translations.php:187 inc/_bs/admin/page-email-payment.php:410
|
1114 |
#: inc/_ps/admin/page-email-edit.php:406
|
1115 |
msgid "The background color for email templates."
|
1116 |
msgstr ""
|
1118 |
#: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
|
1119 |
#: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
|
1120 |
#: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
|
1121 |
+
#: core/lib/wpbc_all_translations.php:188 inc/_bs/admin/page-email-payment.php:418
|
1122 |
#: inc/_ps/admin/page-email-edit.php:414
|
1123 |
msgid "Email Body Background Color"
|
1124 |
msgstr ""
|
1126 |
#: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
|
1127 |
#: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
|
1128 |
#: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
|
1129 |
+
#: core/lib/wpbc_all_translations.php:189 inc/_bs/admin/page-email-payment.php:419
|
1130 |
#: inc/_ps/admin/page-email-edit.php:415
|
1131 |
msgid "The main body background color for email templates."
|
1132 |
msgstr ""
|
1134 |
#: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
|
1135 |
#: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
|
1136 |
#: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
|
1137 |
+
#: core/lib/wpbc_all_translations.php:190 inc/_bs/admin/page-email-payment.php:427
|
1138 |
#: inc/_ps/admin/page-email-edit.php:423
|
1139 |
msgid "Email Body Text Colour"
|
1140 |
msgstr ""
|
1142 |
#: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
|
1143 |
#: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
|
1144 |
#: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
|
1145 |
+
#: core/lib/wpbc_all_translations.php:191 inc/_bs/admin/page-email-payment.php:428
|
1146 |
#: inc/_ps/admin/page-email-edit.php:424
|
1147 |
msgid "The main body text color for email templates."
|
1148 |
msgstr ""
|
1150 |
#: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
|
1151 |
#: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
|
1152 |
#: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
|
1153 |
+
#: core/lib/wpbc_all_translations.php:192 inc/_bs/admin/page-email-payment.php:443
|
1154 |
#: inc/_ps/admin/page-email-edit.php:439
|
1155 |
msgid "Email format"
|
1156 |
msgstr ""
|
1158 |
#: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
|
1159 |
#: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
|
1160 |
#: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
|
1161 |
+
#: core/lib/wpbc_all_translations.php:193 inc/_bs/admin/page-email-payment.php:444
|
1162 |
#: inc/_ps/admin/page-email-edit.php:440
|
1163 |
msgid "Choose which format of email to send."
|
1164 |
msgstr ""
|
1166 |
#: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
|
1167 |
#: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
|
1168 |
#: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
|
1169 |
+
#: core/lib/wpbc_all_translations.php:194 inc/_bs/admin/page-email-payment.php:448
|
1170 |
#: inc/_ps/admin/page-email-edit.php:444
|
1171 |
msgid "Plain text"
|
1172 |
msgstr ""
|
1174 |
#: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
|
1175 |
#: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
|
1176 |
#: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
|
1177 |
+
#: core/lib/wpbc_all_translations.php:195 inc/_bs/admin/page-email-payment.php:455
|
1178 |
#: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:667
|
1179 |
+
#: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:1112
|
1180 |
msgid "HTML"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
#: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
|
1184 |
#: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
|
1185 |
#: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
|
1186 |
+
#: core/lib/wpbc_all_translations.php:196 inc/_bs/admin/page-email-payment.php:456
|
1187 |
#: inc/_ps/admin/page-email-edit.php:452
|
1188 |
msgid "Multipart"
|
1189 |
msgstr ""
|
1191 |
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1192 |
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1193 |
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1194 |
+
#: core/lib/wpbc_all_translations.php:197 inc/_bs/admin/page-email-payment.php:483
|
1195 |
#: inc/_ps/admin/page-email-edit.php:479
|
1196 |
#, php-format
|
1197 |
msgid ""
|
1202 |
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1203 |
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1204 |
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1205 |
+
#: core/lib/wpbc_all_translations.php:198 core/sync/wpbc-gcal.php:406
|
1206 |
#: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
|
1207 |
msgid "here"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:329
|
1211 |
+
#: core/admin/wpbc-toolbars.php:550 core/lib/wpbc_all_translations.php:199
|
1212 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2732 inc/_ps/personal.php:356
|
1213 |
#: inc/_ps/wpbc-print.php:118
|
1214 |
msgid "Approved"
|
1215 |
msgstr ""
|
1218 |
#: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:513
|
1219 |
#: core/admin/page-email-new-admin.php:514 core/admin/page-email-new-admin.php:538
|
1220 |
#: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
|
1221 |
+
#: core/lib/wpbc_all_translations.php:200 inc/_bs/admin/page-email-payment.php:561
|
1222 |
#: inc/_ps/admin/page-email-edit.php:557
|
1223 |
msgid "Emails Settings"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:201
|
1227 |
msgid "Customization of email template, which is sent to Visitor after approval of booking"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:202
|
1231 |
msgid "Email is sent to Visitor after Approval of booking."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
|
1235 |
#: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:686
|
1236 |
#: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
|
1237 |
+
#: core/lib/wpbc_all_translations.php:203 inc/_bs/admin/page-email-payment.php:705
|
1238 |
#: inc/_ps/admin/page-email-edit.php:701
|
1239 |
msgid "Header / Footer"
|
1240 |
msgstr ""
|
1242 |
#: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
|
1243 |
#: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:693
|
1244 |
#: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
|
1245 |
+
#: core/lib/wpbc_all_translations.php:204 inc/_bs/admin/page-email-payment.php:712
|
1246 |
#: inc/_ps/admin/page-email-edit.php:708
|
1247 |
msgid "Email Styles"
|
1248 |
msgstr ""
|
1253 |
#: core/admin/page-form-free.php:1149 core/admin/page-form-timeslots.php:768
|
1254 |
#: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
|
1255 |
#: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:178
|
1256 |
+
#: core/lib/wpbc_all_translations.php:205 inc/_bl/admin/page-coupons.php:548
|
1257 |
#: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
|
1258 |
#: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
|
1259 |
#: inc/_ps/admin/page-email-edit.php:720
|
1263 |
#: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
|
1264 |
#: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:709
|
1265 |
#: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
|
1266 |
+
#: core/lib/wpbc_all_translations.php:206 inc/_bs/admin/page-email-payment.php:728
|
1267 |
#: inc/_ps/admin/page-email-edit.php:724
|
1268 |
msgid "Send Test Email"
|
1269 |
msgstr ""
|
1279 |
#: core/admin/page-ics-general.php:416 core/admin/page-ics-import.php:203
|
1280 |
#: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:142
|
1281 |
#: core/admin/page-settings.php:290 core/admin/wpbc-toolbars.php:1826
|
1282 |
+
#: core/lib/wpbc_all_translations.php:207 inc/_bl/admin/page-coupons.php:220
|
1283 |
+
#: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:444
|
1284 |
+
#: inc/_bl/admin/page-search.php:544 inc/_bm/admin/page-availability.php:1024
|
1285 |
#: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
|
1286 |
#: inc/_bm/admin/page-cost-deposit.php:362 inc/_bm/admin/page-cost-early-late-booking.php:544
|
1287 |
#: inc/_bm/admin/page-cost-rate.php:231 inc/_bm/admin/page-cost-valuation.php:257
|
1293 |
#: inc/_ps/admin/page-settings-form.php:125 inc/_ps/admin/page-settings-form.php:187
|
1294 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:916
|
1295 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:489
|
1296 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:923 inc/gateways/ipay88/wpbc-gw-ipay88.php:864
|
1297 |
+
#: inc/gateways/page-gateways.php:675 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:402
|
1298 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1085 inc/gateways/sage/wpbc-gw-sage.php:913
|
1299 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1150
|
1300 |
msgid "Save Changes"
|
1301 |
msgstr ""
|
1302 |
|
1304 |
#: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:729
|
1305 |
#: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
|
1306 |
#: core/admin/page-form-free.php:1148 core/admin/wpbc-dashboard.php:471
|
1307 |
+
#: core/lib/wpbc_all_translations.php:208 inc/_bs/admin/page-email-payment.php:748
|
1308 |
#: inc/_ps/admin/page-email-edit.php:744
|
1309 |
msgid "Type"
|
1310 |
msgstr ""
|
1315 |
#: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
|
1316 |
#: core/admin/page-settings.php:136 core/admin/page-settings.php:282
|
1317 |
#: core/admin/wpbc-toolbars.php:434 core/admin/wpbc-toolbars.php:440
|
1318 |
+
#: core/lib/wpbc_all_translations.php:209 inc/_bl/admin/page-search.php:494
|
1319 |
+
#: inc/_bl/admin/page-search.php:522 inc/_bm/admin/page-cost-advanced.php:155
|
1320 |
#: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
|
1321 |
#: inc/_ps/admin/page-settings-form.php:181
|
1322 |
+
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:452 inc/gateways/page-gateways.php:664
|
1323 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:393 inc/gateways/paypal/wpbc-gw-paypal.php:1059
|
1324 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1076
|
1325 |
msgid "Help"
|
1328 |
#: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
|
1329 |
#: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:826
|
1330 |
#: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
|
1331 |
+
#: core/lib/wpbc_all_translations.php:210 inc/_bs/admin/page-email-payment.php:837
|
1332 |
#: inc/_ps/admin/page-email-edit.php:833
|
1333 |
msgid "Email sent to "
|
1334 |
msgstr ""
|
1336 |
#: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
|
1337 |
#: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:828
|
1338 |
#: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
|
1339 |
+
#: core/lib/wpbc_all_translations.php:211 core/wpbc-emails.php:447
|
1340 |
#: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
|
1341 |
msgid "Email had not sent. Some error occuered."
|
1342 |
msgstr ""
|
1344 |
#: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
|
1345 |
#: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:912
|
1346 |
#: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
|
1347 |
+
#: core/lib/wpbc_all_translations.php:212 inc/_bs/admin/page-email-payment.php:854
|
1348 |
#: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:937
|
1349 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
|
1350 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:885
|
1351 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1106
|
1352 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:934 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1169
|
|
|
1353 |
msgid "Settings saved."
|
1354 |
msgstr ""
|
1355 |
|
1359 |
#: core/admin/page-email-new-admin.php:974 core/admin/page-email-new-admin.php:977
|
1360 |
#: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
|
1361 |
#: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
|
1362 |
+
#: core/lib/wpbc_all_translations.php:213 inc/_bs/admin/page-email-payment.php:915
|
1363 |
#: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
|
1364 |
#: inc/_ps/admin/page-email-edit.php:914
|
1365 |
msgid "If empty then title defined as WordPress"
|
1368 |
#: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
|
1369 |
#: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:994
|
1370 |
#: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
|
1371 |
+
#: core/lib/wpbc_all_translations.php:214 inc/_bs/admin/page-email-payment.php:935
|
1372 |
#: inc/_ps/admin/page-email-edit.php:931
|
1373 |
msgid ""
|
1374 |
"Email different from website DNS, its can be a reason of not delivery emails. Please use the "
|
1376 |
msgstr ""
|
1377 |
|
1378 |
#: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
|
1379 |
+
#: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:215
|
1380 |
+
#: core/wpbc-activation.php:1006
|
1381 |
msgid "Your booking has been declined"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
#: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
|
1385 |
+
#: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:216
|
1386 |
+
#: core/wpbc-activation.php:1007
|
1387 |
#, php-format
|
1388 |
msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:430
|
1392 |
+
#: core/lib/wpbc_all_translations.php:217 inc/_bl/admin/page-coupons.php:378
|
1393 |
#: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
|
1394 |
#: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
|
1395 |
#: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:547
|
1397 |
msgid "Deleted"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: core/admin/page-email-deleted.php:560 core/lib/wpbc_all_translations.php:218
|
|
|
1401 |
msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:219
|
1405 |
msgid "Email is sent to Visitor after Deleting of booking."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:220
|
1409 |
msgid ""
|
1410 |
"Customization of email template, which is sent to Visitor, when booking status is set to Pending"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:221
|
1414 |
msgid "Email is sent to Visitor after booking set as Pending."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
#: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
|
1418 |
+
#: core/admin/wpbc-class-listing.php:302 core/lib/wpbc_all_translations.php:222
|
1419 |
+
#: core/wpbc-activation.php:977 core/wpbc-activation.php:984
|
1420 |
msgid "New booking"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:223
|
1424 |
+
#: core/wpbc-activation.php:978
|
1425 |
#, php-format
|
1426 |
msgid ""
|
1427 |
"You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
|
1428 |
"booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: core/admin/page-email-new-admin.php:512 core/lib/wpbc_all_translations.php:224
|
1432 |
#: core/wpbc-functions.php:1984
|
1433 |
msgid "Emails"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
#: core/admin/page-email-new-admin.php:537 core/admin/page-email-new-visitor.php:537
|
1437 |
+
#: core/lib/wpbc_all_translations.php:225
|
1438 |
msgid "New"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:226
|
1442 |
msgid "admin"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:227
|
1446 |
msgid "Customization of email template, which is sending to Admin after new booking"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: core/admin/page-email-new-admin.php:679 core/lib/wpbc_all_translations.php:228
|
1450 |
msgid "Email is sending to Admin after creation of booking."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:229
|
1454 |
+
#: core/wpbc-activation.php:986
|
1455 |
#, php-format
|
1456 |
msgid ""
|
1457 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
|
1458 |
"edit this booking at this page: %s Thank you, %s"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:230
|
1462 |
+
#: core/wpbc-activation.php:988
|
1463 |
#, php-format
|
1464 |
msgid ""
|
1465 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
|
1466 |
"%s"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:231
|
1470 |
msgid "visitor"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:232
|
1474 |
msgid "Customization of email template, which is sending to Visitor after new booking"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:233
|
1478 |
msgid "Email is sending to Visitor after creation of booking."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: core/admin/page-email-trash.php:563 core/admin/wpbc-class-listing.php:331
|
1482 |
+
#: core/admin/wpbc-toolbars.php:994 core/timeline/v2/wpbc-class-timeline_v2.php:2659
|
1483 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2769
|
1484 |
+
msgid "Trash / Reject"
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: core/admin/page-email-trash.php:565
|
1488 |
+
msgid "Customization of email template, which is sent to Visitor after rejecting of booking"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:235
|
1492 |
msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
|
1496 |
+
#: core/admin/page-settings.php:217 core/lib/wpbc_all_translations.php:236
|
1497 |
#: core/wpbc-functions.php:1976 inc/_ps/admin/page-settings-form.php:46
|
1498 |
msgid "Form"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:237
|
1502 |
#: inc/_ps/admin/page-settings-form.php:47
|
1503 |
msgid "Fields Settings"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:238
|
1507 |
#: inc/_ps/admin/page-settings-form.php:48
|
1508 |
msgid "Customizaton of Form Fields"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
#: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
|
1512 |
+
#: core/lib/wpbc_all_translations.php:239
|
1513 |
msgid "Check Premium Features"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:240
|
1517 |
msgid "Upgrade to higher versions"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:241
|
1521 |
msgid "Form Field Configuration"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: core/admin/page-form-free.php:190 core/lib/wpbc_all_translations.php:242
|
1525 |
#, php-format
|
1526 |
msgid ""
|
1527 |
"You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in "
|
1529 |
msgstr ""
|
1530 |
|
1531 |
#: core/admin/page-form-free.php:298 core/admin/page-form-free.php:421
|
1532 |
+
#: core/admin/page-form-free.php:579 core/lib/wpbc_all_translations.php:243
|
1533 |
+
#: inc/_ps/personal.php:2086 inc/_ps/wpbc-form-templates.php:42 inc/_ps/wpbc-form-templates.php:61
|
1534 |
#: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
|
1535 |
#: inc/_ps/wpbc-form-templates.php:127
|
1536 |
msgid "Send"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: core/admin/page-form-free.php:852 core/lib/wpbc_all_translations.php:244
|
1540 |
msgid "Reset to default form"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
#: core/admin/page-form-free.php:856 core/admin/page-form-free.php:1466
|
1544 |
+
#: core/admin/wpbc-class-listing.php:396 core/admin/wpbc-class-listing.php:402
|
1545 |
#: core/admin/wpbc-toolbars.php:997 core/admin/wpbc-toolbars.php:1014
|
1546 |
+
#: core/admin/wpbc-toolbars.php:1078 core/lib/wpbc_all_translations.php:245
|
1547 |
#: inc/_bl/admin/page-coupons.php:236 inc/_bl/admin/page-coupons.php:808
|
1548 |
#: inc/_bm/admin/page-availability.php:274 inc/_bm/admin/page-cost-valuation.php:354
|
1549 |
+
#: inc/_bm/admin/page-cost.php:529 inc/_bm/admin/page-seasons.php:221
|
1550 |
#: inc/_bm/admin/page-seasons.php:602 inc/_ps/admin/page-resources.php:222
|
1551 |
+
#: inc/_ps/personal.php:2120
|
1552 |
msgid "Do you really want to do this ?"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
#: core/admin/page-form-free.php:884 core/admin/page-form-free.php:2177
|
1556 |
+
#: core/lib/wpbc_all_translations.php:246
|
1557 |
msgid "Add New Field"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
#: core/admin/page-form-free.php:901 core/admin/page-form-free.php:936
|
1561 |
+
#: core/lib/wpbc_all_translations.php:247 inc/_ps/admin/page-settings-form.php:312
|
1562 |
msgid "Select"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: core/admin/page-form-free.php:901 core/lib/wpbc_all_translations.php:248
|
1566 |
msgid "Form Field"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: core/admin/page-form-free.php:923 core/lib/wpbc_all_translations.php:249
|
1570 |
#: inc/_ps/form/class-wpbc-form-help.php:141
|
1571 |
msgid "Standard Fields"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: core/admin/page-form-free.php:926 core/lib/wpbc_all_translations.php:250
|
1575 |
#: inc/_ps/form/class-wpbc-form-help.php:147
|
1576 |
msgid "Text"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: core/admin/page-form-free.php:946 core/lib/wpbc_all_translations.php:251
|
1580 |
#: inc/_ps/form/class-wpbc-form-help.php:156
|
1581 |
msgid "Textarea"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: core/admin/page-form-free.php:956 core/lib/wpbc_all_translations.php:252
|
1585 |
msgid "Checkbox"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: core/admin/page-form-free.php:971 core/lib/wpbc_all_translations.php:253
|
1589 |
#: inc/_ps/form/class-wpbc-form-help.php:486
|
1590 |
msgid "Advanced Fields"
|
1591 |
msgstr ""
|
1593 |
#: core/admin/page-form-free.php:975 core/admin/page-form-free.php:1991
|
1594 |
#: core/admin/page-form-free.php:1992 core/admin/page-form-timeslots.php:106
|
1595 |
#: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
|
1596 |
+
#: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:254
|
1597 |
#: inc/_ps/admin/page-settings-form.php:373 inc/_ps/admin/page-settings-form.php:383
|
1598 |
#: inc/_ps/admin/page-settings-form.php:393
|
1599 |
msgid "Time Slots"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: core/admin/page-form-free.php:1033 core/lib/wpbc_all_translations.php:255
|
1603 |
msgid "View"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: core/admin/page-form-free.php:1052 core/lib/wpbc_all_translations.php:256
|
1607 |
msgid "Standard Forms"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: core/admin/page-form-free.php:1055 core/lib/wpbc_all_translations.php:257
|
1611 |
msgid "Form under calendar"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: core/admin/page-form-free.php:1065 core/lib/wpbc_all_translations.php:258
|
1615 |
msgid "Form at right side of calendar"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: core/admin/page-form-free.php:1075 core/lib/wpbc_all_translations.php:259
|
1619 |
msgid "Form and calendar are centered"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: core/admin/page-form-free.php:1085 core/lib/wpbc_all_translations.php:260
|
1623 |
msgid "Form for dark background"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: core/admin/page-form-free.php:1145 core/admin/page-form-free.php:2050
|
1627 |
+
#: core/lib/wpbc_all_translations.php:261
|
1628 |
msgid "Active"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: core/admin/page-form-free.php:1146 core/lib/wpbc_all_translations.php:262
|
1632 |
msgid "Field Label"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
#: core/admin/page-form-free.php:1148 core/admin/page-form-free.php:2116
|
1636 |
+
#: core/lib/wpbc_all_translations.php:263 inc/_ps/form/class-wpbc-field-help-text.php:177
|
1637 |
msgid "Name"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
#: core/admin/page-form-free.php:1225 core/admin/page-form-free.php:1663
|
1641 |
+
#: core/admin/page-form-free.php:1724 core/lib/wpbc_all_translations.php:264
|
1642 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2639
|
1643 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2697 inc/_bl/admin/page-coupons.php:215
|
1644 |
#: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
|
1645 |
#: inc/_bm/admin/page-cost.php:218 inc/_bm/admin/page-seasons.php:200
|
1646 |
#: inc/_bm/admin/page-seasons.php:598 inc/_bm/admin/page-seasons.php:815
|
1649 |
msgstr ""
|
1650 |
|
1651 |
#: core/admin/page-form-free.php:1226 core/admin/page-form-free.php:1664
|
1652 |
+
#: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:265
|
1653 |
msgid "Remove"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: core/admin/page-form-free.php:1894 core/lib/wpbc_all_translations.php:266
|
1657 |
#: inc/_ps/form/class-wpbc-form-help.php:88
|
1658 |
msgid "Shortcodes"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: core/admin/page-form-free.php:1895 core/lib/wpbc_all_translations.php:267
|
1662 |
#: inc/_ps/form/class-wpbc-form-help.php:89
|
1663 |
msgid ""
|
1664 |
"You can generate the form fields for your form (at the left side) by selection specific field in "
|
1665 |
"the above selectbox."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: core/admin/page-form-free.php:1896 core/lib/wpbc_all_translations.php:268
|
1669 |
#: inc/_ps/form/class-wpbc-form-help.php:90
|
1670 |
#, php-format
|
1671 |
msgid "Please read more about the booking form fields configuration %shere%s."
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: core/admin/page-form-free.php:1898 core/lib/wpbc_all_translations.php:269
|
1675 |
#: inc/_ps/form/class-wpbc-form-help.php:99
|
1676 |
msgid "Default Form Templates"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: core/admin/page-form-free.php:1899 core/lib/wpbc_all_translations.php:270
|
1680 |
#: inc/_ps/form/class-wpbc-form-help.php:100
|
1681 |
#, php-format
|
1682 |
msgid ""
|
1686 |
"reset both forms: Booking Form and Content of Booking Fields form."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: core/admin/page-form-free.php:2029 core/lib/wpbc_all_translations.php:271
|
1690 |
#: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
|
1691 |
#: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
|
1692 |
msgid "First Name"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: core/admin/page-form-free.php:2051 core/lib/wpbc_all_translations.php:272
|
1696 |
msgid "Show / hide field in booking form"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: core/admin/page-form-free.php:2072 core/lib/wpbc_all_translations.php:273
|
1700 |
msgid "Set field as required"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
#: core/admin/page-form-free.php:2092 core/admin/page-form-timeslots.php:784
|
1704 |
#: core/admin/wpbc-toolbar-tiny.php:428 core/admin/wpbc-toolbar-tiny.php:1219
|
1705 |
+
#: core/lib/wpbc_all_translations.php:274 inc/_ps/form/class-wpbc-field-help-button.php:73
|
1706 |
#: js/wpbc-gutenberg.js:816
|
1707 |
msgid "Label"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: core/admin/page-form-free.php:2121 core/lib/wpbc_all_translations.php:275
|
1711 |
#, php-format
|
1712 |
msgid "Type only %sunique field name%s, that is not using in form"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: core/admin/page-form-free.php:2142 core/lib/wpbc_all_translations.php:276
|
1716 |
msgid "Values"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: core/admin/page-form-free.php:2147 core/lib/wpbc_all_translations.php:277
|
1720 |
msgid "Enter dropdown options. One option per line."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
#: core/admin/page-form-free.php:2182 core/admin/wpbc-toolbar-tiny.php:298
|
1724 |
#: core/admin/wpbc-toolbars.php:710 core/admin/wpbc-toolbars.php:915
|
1725 |
+
#: core/admin/wpbc-toolbars.php:1536 core/lib/wpbc_all_translations.php:278
|
1726 |
#: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:104 inc/_bs/s-toolbar.php:209
|
1727 |
#: inc/_ps/p-toolbar.php:508 inc/_ps/p-toolbar.php:553
|
1728 |
msgid "Close"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: core/admin/page-form-free.php:2196 core/lib/wpbc_all_translations.php:279
|
1732 |
#: inc/_bm/m-toolbar.php:367 inc/_bm/m-toolbar.php:368 inc/_ps/p-toolbar.php:387
|
1733 |
#: inc/_ps/p-toolbar.php:439 inc/_ps/p-toolbar.php:472
|
1734 |
msgid "Cancel"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:280
|
1738 |
msgid "in 24 hour format"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:281
|
1742 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
|
1743 |
#: inc/_ps/form/class-wpbc-field-help-select.php:119
|
1744 |
msgid "One option per line"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:282
|
1748 |
msgid "Titles"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:283
|
1752 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
|
1753 |
#: inc/_ps/form/class-wpbc-field-help-select.php:137
|
1754 |
msgid "One title per line"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:284
|
1758 |
msgid "Visible options in selectbox"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:285
|
1762 |
msgid "Reset times by"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
#: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
|
1766 |
#: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
|
1767 |
+
#: core/admin/wpbc-toolbar-tiny.php:634 core/lib/wpbc_all_translations.php:286
|
1768 |
#: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
|
1769 |
#: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
|
1770 |
msgid "hours"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
#: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
|
1774 |
+
#: core/lib/wpbc_all_translations.php:287 inc/_bm/admin/api-settings-m.php:98
|
1775 |
#: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
|
1776 |
#: inc/_bs/admin/api-settings-s.php:901
|
1777 |
msgid "hour"
|
1779 |
|
1780 |
#: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
|
1781 |
#: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
|
1782 |
+
#: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:288
|
1783 |
#: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
|
1784 |
#: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
|
1785 |
#: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
|
1792 |
#: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
|
1793 |
#: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
|
1794 |
#: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
|
1795 |
+
#: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:289
|
1796 |
#: core/wpbc-js.php:131 inc/_ps/personal.php:268
|
1797 |
msgid "Processing"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:290
|
1801 |
msgid "+ Add Time Slot"
|
1802 |
msgstr ""
|
1803 |
|
1806 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1807 |
#: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
|
1808 |
#: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
|
1809 |
+
#: core/lib/wpbc_all_translations.php:291 core/wpbc-functions.php:2001
|
1810 |
msgid "Sync"
|
1811 |
msgstr ""
|
1812 |
|
1814 |
#: core/admin/page-ics-general.php:397 core/admin/page-ics-general.php:406
|
1815 |
#: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
|
1816 |
#: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
|
1817 |
+
#: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:469
|
1818 |
+
#: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:292
|
1819 |
#: core/sync/wpbc-gcal.php:465
|
1820 |
msgid "Import"
|
1821 |
msgstr ""
|
1824 |
#: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
|
1825 |
#: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:264
|
1826 |
#: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
|
1827 |
+
#: core/lib/wpbc_all_translations.php:293 inc/_ps/p-toolbar.php:173
|
1828 |
msgid "Export"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
#: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
|
1832 |
+
#: core/lib/wpbc_all_translations.php:294
|
1833 |
msgid "feed"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
#: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
|
1837 |
+
#: core/lib/wpbc_all_translations.php:295 core/sync/wpbc-gcal.php:398
|
1838 |
#: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:767
|
1839 |
msgid "Warning!"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:296
|
1843 |
#, php-format
|
1844 |
msgid "This feature require %s"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
#: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
|
1848 |
+
#: core/lib/wpbc_all_translations.php:297 inc/_bl/admin/api-settings-l.php:162
|
1849 |
#: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
|
1850 |
#: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
|
1851 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
|
1857 |
#: inc/_ps/form/class-wpbc-form-help.php:515 inc/_ps/form/class-wpbc-form-help.php:645
|
1858 |
#: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:455
|
1859 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:878
|
1860 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:831 inc/gateways/sage/wpbc-gw-sage.php:882
|
1861 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1112
|
1862 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1119 js/wpbc-gutenberg.js:1102
|
1863 |
#: js/wpbc-gutenberg.js:1188
|
1864 |
msgid "Important!"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
#: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
|
1868 |
+
#: core/lib/wpbc_all_translations.php:298
|
1869 |
#, php-format
|
1870 |
msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
|
1871 |
msgstr ""
|
1872 |
|
1873 |
#: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
|
1874 |
+
#: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:299
|
1875 |
msgid "How it works"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
#: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
|
1879 |
+
#: core/lib/wpbc_all_translations.php:300
|
1880 |
msgid ".ics feed URL"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:301
|
1884 |
#: inc/_ps/admin/br-table-export-feeds.php:69
|
1885 |
msgid "Open in new window"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:302
|
1889 |
msgid "Please enter URL for generating .ics feed"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:303
|
1893 |
msgid "This .ics feed of bookings starting from today for 1 year"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
#: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:875
|
1897 |
#: core/admin/wpbc-toolbar-tiny.php:1090 core/admin/wpbc-toolbar-tiny.php:1171
|
1898 |
+
#: core/lib/wpbc_all_translations.php:304 inc/_bm/admin/api-settings-m.php:60
|
1899 |
#: inc/_ps/wpbc-booking-select-widget.php:188
|
1900 |
msgid "None"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:305
|
1904 |
msgid "Event Title"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
#: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
|
1908 |
+
#: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:306
|
1909 |
#, php-format
|
1910 |
msgid "Select field for assigning to %sevent property%s"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:307
|
1914 |
msgid "Event Description (optional field)"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:308
|
1918 |
msgid "Location"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
#: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:206
|
1922 |
+
#: core/lib/wpbc_all_translations.php:309 core/sync/wpbc-gcal.php:314
|
1923 |
#: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:628 inc/_ps/admin/activation-p.php:45
|
1924 |
msgid "Default"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:310
|
1928 |
#: core/sync/wpbc-gcal.php:309
|
1929 |
msgid "Timezone"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:311
|
1933 |
#: core/sync/wpbc-gcal.php:343
|
1934 |
msgid "Select a city in your required timezone, if you are having problems with dates and times."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:312
|
1938 |
#: inc/_bs/admin/api-settings-s.php:314
|
1939 |
msgid "Use check in/out time"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:313
|
1943 |
msgid "Use check in/out time of plugin, during import .ics feeds"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:314
|
1947 |
msgid "Append check out day"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:315
|
1951 |
msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: core/admin/page-ics-general.php:188 core/lib/wpbc_all_translations.php:316
|
1955 |
msgid "Export only approved bookings"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: core/admin/page-ics-general.php:189 core/lib/wpbc_all_translations.php:317
|
1959 |
msgid "Enable of export only approved bookings in .ics feeds"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: core/admin/page-ics-general.php:201 core/lib/wpbc_all_translations.php:318
|
1963 |
msgid "Force import"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: core/admin/page-ics-general.php:202 core/lib/wpbc_all_translations.php:319
|
1967 |
msgid "Import bookings without checking, if such bookings already have been imported."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: core/admin/page-ics-general.php:210 core/lib/wpbc_all_translations.php:320
|
1971 |
msgid "Trash all imported bookings before new import"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: core/admin/page-ics-general.php:211 core/lib/wpbc_all_translations.php:321
|
1975 |
msgid ""
|
1976 |
"Move all previously imported bookings to trash before new import bookings. Its can resolve "
|
1977 |
"issue of updating deleted and edited events in external sources. Its work only, if you are using "
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: core/admin/page-ics-general.php:281 core/admin/page-settings.php:74
|
1982 |
+
#: core/lib/wpbc_all_translations.php:322 inc/gateways/page-gateways.php:527
|
1983 |
msgid "General"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1987 |
#: core/admin/page-ics-general.php:390 core/admin/page-import-gcal.php:485
|
1988 |
#: core/admin/page-settings.php:75 core/admin/page-settings.php:76
|
1989 |
+
#: core/lib/wpbc_all_translations.php:323 core/wpbc.php:188
|
1990 |
msgid "General Settings"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: core/admin/page-ics-general.php:397 core/lib/wpbc_all_translations.php:324
|
1994 |
msgid "Assign events fields to specific booking form field"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
#: core/admin/page-ics-general.php:406 core/admin/page-settings.php:121
|
1998 |
+
#: core/admin/page-settings.php:252 core/lib/wpbc_all_translations.php:325
|
1999 |
+
#: inc/_bl/admin/page-search.php:538 inc/_bl/admin/page-search.php:734
|
2000 |
+
#: inc/_bl/admin/page-search.php:779 inc/_bl/wpbc-search-availability.php:167
|
2001 |
+
#: inc/_bl/wpbc-search-availability.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:907
|
2002 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:914 inc/gateways/ipay88/wpbc-gw-ipay88.php:855
|
2003 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1052 inc/gateways/sage/wpbc-gw-sage.php:904
|
2004 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1141
|
2005 |
msgid "Advanced"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:326
|
2009 |
msgid "feeds"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: core/admin/page-ics-import.php:438 core/admin/wpbc-sql.php:592
|
2013 |
+
#: core/admin/wpbc-toolbar-tiny.php:331 core/lib/wpbc_all_translations.php:327
|
2014 |
#: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:965 inc/_ps/p-toolbar.php:996
|
2015 |
msgid "parent resource"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:328
|
2019 |
msgid "Enter URL to .ics feed"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: core/admin/page-ics-import.php:465 core/lib/wpbc_all_translations.php:329
|
2023 |
msgid "Choose file"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: core/admin/page-ics-import.php:466 core/lib/wpbc_all_translations.php:330
|
2027 |
msgid "Insert file URL"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: core/admin/page-ics-import.php:467 core/lib/wpbc_all_translations.php:331
|
2031 |
msgid "Upload / Select "
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: core/admin/page-ics-import.php:504 core/lib/wpbc_all_translations.php:332
|
2035 |
msgid "What does .ics feeds import/export mean?"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: core/admin/page-ics-import.php:512 core/lib/wpbc_all_translations.php:333
|
2039 |
#, php-format
|
2040 |
msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: core/admin/page-ics-import.php:520 core/lib/wpbc_all_translations.php:334
|
2044 |
msgid "and any other calendar that uses .ics format"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: core/admin/page-ics-import.php:534 core/class/wpbc-class-welcome.php:911
|
2048 |
+
#: core/lib/wpbc_all_translations.php:335
|
2049 |
#, php-format
|
2050 |
msgid ""
|
2051 |
".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
|
2053 |
"calendars updated and synchronized."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: core/admin/page-ics-import.php:555 core/lib/wpbc_all_translations.php:336
|
2057 |
msgid "Is it automatic process?"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: core/admin/page-ics-import.php:565 core/lib/wpbc_all_translations.php:337
|
2061 |
msgid ""
|
2062 |
"By default .ics import is not automatic process. You need to set up CRON script on your server "
|
2063 |
"to periodically access front-end page(s) with import .ics feeds shortcodes."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: core/admin/page-ics-import.php:584 core/lib/wpbc_all_translations.php:338
|
2067 |
msgid "How to start import of .ics feeds (files)?"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: core/admin/page-ics-import.php:591 core/admin/page-ics-import.php:638
|
2071 |
+
#: core/lib/wpbc_all_translations.php:339
|
2072 |
#, php-format
|
2073 |
msgid "Install %s plugin."
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: core/admin/page-ics-import.php:595 core/lib/wpbc_all_translations.php:340
|
2077 |
#, php-format
|
2078 |
msgid ""
|
2079 |
"Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
|
2080 |
"configuration%s"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: core/admin/page-ics-import.php:604 core/lib/wpbc_all_translations.php:341
|
2084 |
#, php-format
|
2085 |
msgid ""
|
2086 |
"Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
|
2088 |
"accessing such different pages with different time intervals."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: core/admin/page-ics-import.php:613 core/lib/wpbc_all_translations.php:342
|
2092 |
msgid "Or you can import .ics feed or file directly at current page."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: core/admin/page-ics-import.php:620 core/lib/wpbc_all_translations.php:343
|
2096 |
#, php-format
|
2097 |
msgid ""
|
2098 |
"If you have inserted import shortcodes from %s, then you can configure your CRON for "
|
2099 |
"periodically access these pages and import .ics feeds."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: core/admin/page-ics-import.php:631 core/lib/wpbc_all_translations.php:344
|
2103 |
msgid "How to start export of .ics feeds (files)?"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: core/admin/page-ics-import.php:642 core/lib/wpbc_all_translations.php:345
|
2107 |
msgid "Configure ULR feed(s) at this settings page."
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: core/admin/page-ics-import.php:647 core/lib/wpbc_all_translations.php:346
|
2111 |
#, php-format
|
2112 |
msgid ""
|
2113 |
"Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
|
2115 |
"website."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: core/admin/page-ics-import.php:656 core/lib/wpbc_all_translations.php:347
|
2119 |
msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: core/admin/page-ics-import.php:711 core/lib/wpbc_all_translations.php:348
|
2123 |
+
#: core/sync/wpbc-gcal-class.php:492 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:433
|
2124 |
msgid "Done"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:349
|
2128 |
msgid "Activate auto import"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:350
|
2132 |
#, php-format
|
2133 |
msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
#: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:567
|
2137 |
+
#: core/admin/wpbc-toolbars.php:801 core/lib/wpbc_all_translations.php:351 core/wpbc-emails.php:206
|
2138 |
#: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
|
2139 |
#: inc/_bm/admin/page-cost-early-late-booking.php:230
|
2140 |
#: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
|
2149 |
#: core/admin/wpbc-toolbars.php:571 core/admin/wpbc-toolbars.php:572
|
2150 |
#: core/admin/wpbc-toolbars.php:802 core/admin/wpbc-toolbars.php:803
|
2151 |
#: core/admin/wpbc-toolbars.php:804 core/admin/wpbc-toolbars.php:805
|
2152 |
+
#: core/admin/wpbc-toolbars.php:806 core/lib/wpbc_all_translations.php:352
|
2153 |
#: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:94
|
2154 |
#: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
|
2155 |
#: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
|
2159 |
msgid "days"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:353
|
2163 |
msgid "Import events every"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:354
|
2167 |
msgid "Select time duration of import requests."
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:355
|
2171 |
msgid "Google API Key"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:356
|
2175 |
msgid "Please enter your Google API key. This field required to import events."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:357
|
2179 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:364
|
2180 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:402
|
2181 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:433 inc/gateways/ideal/wpbc-gw-ideal.php:422
|
2182 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:477 inc/gateways/ideal/wpbc-gw-ideal.php:481
|
2183 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:399 inc/gateways/paypal/wpbc-gw-paypal.php:529
|
2184 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:508 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:564
|
2185 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:729
|
|
|
2186 |
msgid "Note:"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:358
|
2190 |
#, php-format
|
2191 |
msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:359
|
2195 |
#: inc/_ps/admin/br-table-import-gcal-p.php:148
|
2196 |
msgid "Google Calendar ID"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:360
|
2200 |
#: core/sync/wpbc-gcal.php:295
|
2201 |
msgid "Maximum number"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:361
|
2205 |
#: core/sync/wpbc-gcal.php:298
|
2206 |
msgid "You can specify the maximum number of events to import during one session."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
#: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
|
2210 |
+
#: core/lib/wpbc_all_translations.php:362 core/sync/wpbc-gcal.php:184 core/sync/wpbc-gcal.php:248
|
2211 |
msgid "Now"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
#: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
|
2215 |
+
#: core/lib/wpbc_all_translations.php:363 core/sync/wpbc-gcal.php:185 core/sync/wpbc-gcal.php:249
|
2216 |
msgid "00:00 today"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
#: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
|
2220 |
+
#: core/lib/wpbc_all_translations.php:364 core/sync/wpbc-gcal.php:186 core/sync/wpbc-gcal.php:250
|
2221 |
msgid "Start of current week"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
#: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
|
2225 |
+
#: core/lib/wpbc_all_translations.php:365 core/sync/wpbc-gcal.php:187 core/sync/wpbc-gcal.php:251
|
2226 |
msgid "Start of current month"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
#: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
|
2230 |
+
#: core/lib/wpbc_all_translations.php:366 core/sync/wpbc-gcal.php:188 core/sync/wpbc-gcal.php:252
|
2231 |
msgid "End of current month"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:367
|
2235 |
#: core/sync/wpbc-gcal.php:189
|
2236 |
msgid "The start of time"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
#: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
|
2240 |
+
#: core/lib/wpbc_all_translations.php:368 core/sync/wpbc-gcal.php:190 core/sync/wpbc-gcal.php:254
|
2241 |
msgid "Specific date / time"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:369
|
2245 |
#: core/sync/wpbc-gcal.php:197
|
2246 |
msgid "Select option, when to start retrieving events."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
#: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
|
2250 |
+
#: core/lib/wpbc_all_translations.php:370 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
|
2251 |
msgid "Offset"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
#: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
|
2255 |
+
#: core/lib/wpbc_all_translations.php:371 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
|
2256 |
msgid "Enter date / time"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
#: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
|
2260 |
+
#: core/lib/wpbc_all_translations.php:372 core/sync/wpbc-gcal.php:205 core/sync/wpbc-gcal.php:269
|
2261 |
msgid "seconds"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
#: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
|
2265 |
+
#: core/lib/wpbc_all_translations.php:373 core/sync/wpbc-gcal.php:215
|
2266 |
msgid ""
|
2267 |
"You can specify an additional offset from you chosen start point. The offset can be negative."
|
2268 |
msgstr ""
|
2269 |
|
2270 |
#: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
|
2271 |
+
#: core/lib/wpbc_all_translations.php:374 core/sync/wpbc-gcal.php:218 core/sync/wpbc-gcal.php:282
|
2272 |
#, php-format
|
2273 |
msgid "Type your date in format %s. Example: %s"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:375
|
2277 |
#: core/sync/wpbc-gcal.php:253
|
2278 |
msgid "The end of time"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
#: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:614
|
2282 |
+
#: core/lib/wpbc_all_translations.php:376 core/sync/wpbc-gcal.php:235
|
2283 |
msgid "Until"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:377
|
2287 |
#: core/sync/wpbc-gcal.php:261
|
2288 |
msgid "Select option, when to stop retrieving events."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:378
|
2292 |
msgid "To get Google Calendar API key please follow this instruction"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:379
|
2296 |
#, php-format
|
2297 |
msgid "Go to Google Developer Console: %s."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:380
|
2301 |
msgid "Give your project a name and click \"Create\"."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:381
|
2305 |
msgid "In the sidebar click on \"APIs & auth\"."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:382
|
2309 |
msgid "Click APIs and make sure \"Calendar API\" is set to ON."
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:383
|
2313 |
msgid "Now click on \"Credentials\" in the sidebar."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:384
|
2317 |
msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:385
|
2321 |
msgid "On the popup click the button \"Server Key\" and click \"Create\"."
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:386
|
2325 |
#, php-format
|
2326 |
msgid ""
|
2327 |
"You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
|
2328 |
"%sGoogle API Key%s field at this page."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:387
|
2332 |
msgid "Set Your Calendar to Public"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
#: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
|
2336 |
+
#: core/lib/wpbc_all_translations.php:388
|
2337 |
msgid "Navigate to your Google calendars."
|
2338 |
msgstr ""
|
2339 |
|
2340 |
#: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
|
2341 |
+
#: core/lib/wpbc_all_translations.php:389
|
2342 |
msgid "Open the settings for the calendar."
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:390
|
2346 |
msgid "Click the \"Share this Calendar\" link."
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:391
|
2350 |
msgid "Click the checkbox to make calendar public. Do not check the other option."
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:392
|
2354 |
msgid "Find Your Calendar ID"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:393
|
2358 |
#, php-format
|
2359 |
msgid ""
|
2360 |
"Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
|
2362 |
msgstr ""
|
2363 |
|
2364 |
#: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
|
2365 |
+
#: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:394
|
2366 |
#: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
|
2367 |
msgid "Import Google Calendar Events"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
#: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
|
2371 |
+
#: core/lib/wpbc_all_translations.php:395
|
2372 |
msgid "Auto import events"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
#: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
|
2376 |
+
#: core/lib/wpbc_all_translations.php:396
|
2377 |
msgid "Default settings for retrieving events"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:397
|
2381 |
msgid "Google Calendar - General Settings"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
#: core/admin/page-settings.php:88 core/admin/page-settings.php:203
|
2385 |
+
#: core/admin/wpbc-toolbar-tiny.php:242 core/lib/wpbc_all_translations.php:398
|
2386 |
#: inc/_ps/form/class-wpbc-form-help.php:115
|
2387 |
msgid "Calendar"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
#: core/admin/page-settings.php:93 core/admin/page-settings.php:210
|
2391 |
+
#: core/lib/wpbc_all_translations.php:399 core/wpbc-functions.php:1948
|
2392 |
#: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
|
2393 |
#: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
|
2394 |
#: inc/_ps/wpbc-form-templates.php:307 inc/_ps/wpbc-form-templates.php:333
|
2397 |
msgstr ""
|
2398 |
|
2399 |
#: core/admin/page-settings.php:103 core/admin/page-settings.php:224
|
2400 |
+
#: core/lib/wpbc_all_translations.php:400
|
2401 |
msgid "Booking Admin Panel"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
#: core/admin/page-settings.php:108 core/admin/page-settings.php:231
|
2405 |
+
#: core/lib/wpbc_all_translations.php:401 js/wpbc-gutenberg.js:682
|
2406 |
msgid "Timeline"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: core/admin/page-settings.php:116 core/lib/wpbc_all_translations.php:402
|
2410 |
msgid "Auto cancellation / approval"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
#: core/admin/page-settings.php:126 core/admin/page-settings.php:268
|
2414 |
+
#: core/lib/wpbc_all_translations.php:403
|
2415 |
msgid "Plugin Menu"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: core/admin/page-settings.php:131 core/lib/wpbc_all_translations.php:404
|
2419 |
msgid "Uninstall"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: core/admin/page-settings.php:243 core/lib/wpbc_all_translations.php:405
|
2423 |
msgid "Auto cancellation / auto approval of bookings"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:406
|
2427 |
msgid "Information"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: core/admin/page-settings.php:275 core/lib/wpbc_all_translations.php:407
|
2431 |
msgid "Uninstall / deactivation"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
#: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
|
2435 |
+
#: core/lib/wpbc_all_translations.php:408 inc/_ps/admin/page-settings-up.php:38
|
2436 |
msgid "Upgrade"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
#: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1520
|
2440 |
+
#: core/admin/wpbc-toolbar-tiny.php:1529 core/lib/wpbc_all_translations.php:409
|
2441 |
#: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
|
2442 |
+
#: inc/_bl/wpbc-search-availability.php:669 inc/_bl/wpdev-booking-search-widget.php:75
|
2443 |
#: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
|
2444 |
#: inc/_bm/admin/page-cost-early-late-booking.php:82 inc/_bm/admin/page-cost-rate.php:77
|
2445 |
#: inc/_bm/admin/page-cost-valuation.php:103 inc/_bm/admin/page-seasons.php:826
|
2447 |
msgid "Nothing Found"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:410
|
2451 |
#: inc/_ps/wpbc-print.php:83
|
2452 |
msgid "Labels"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:411
|
2456 |
msgid "Booking Data"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:412
|
2460 |
msgid "Booking Dates"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:413
|
2464 |
msgid "Show ALL dates of booking"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:414
|
2468 |
msgid "Show only check in/out dates"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: core/admin/wpbc-class-listing.php:221 core/lib/wpbc_all_translations.php:415
|
2472 |
msgid "Resource not exist"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:416
|
2476 |
#: inc/_bs/lib_s.php:294 inc/_bs/lib_s.php:309
|
2477 |
msgid "Unknown"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: core/admin/wpbc-class-listing.php:334 core/lib/wpbc_all_translations.php:417
|
2481 |
msgid "Imported"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: core/admin/wpbc-class-listing.php:398
|
2485 |
+
msgid "Reject - move to trash"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: core/admin/wpbc-class-listing.php:404 core/admin/wpbc-toolbars.php:1011
|
2489 |
+
#: core/lib/wpbc_all_translations.php:419 core/timeline/v2/wpbc-class-timeline_v2.php:2663
|
2490 |
msgid "Restore"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: core/admin/wpbc-class-listing.php:408 core/lib/wpbc_all_translations.php:420
|
2494 |
msgid "Do you really want to delete this booking ?"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: core/admin/wpbc-class-listing.php:410 core/lib/wpbc_all_translations.php:421
|
2498 |
#: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
|
2499 |
msgid "Completely Delete"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: core/admin/wpbc-class-listing.php:419 core/admin/wpbc-toolbars.php:949
|
2503 |
+
#: core/lib/wpbc_all_translations.php:422 core/timeline/v2/wpbc-class-timeline_v2.php:2673
|
2504 |
msgid "Approve"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: core/admin/wpbc-class-listing.php:424 core/admin/wpbc-toolbars.php:967
|
2508 |
+
#: core/lib/wpbc_all_translations.php:423
|
2509 |
msgid "Do you really want to set booking as pending ?"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: core/admin/wpbc-class-listing.php:435 core/lib/wpbc_all_translations.php:424
|
2513 |
#: inc/_bs/lib_s.php:337
|
2514 |
msgid "Created"
|
2515 |
msgstr ""
|
2516 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2517 |
#: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:227
|
2518 |
+
#: core/lib/wpbc_all_translations.php:436 core/lib/wpdev-booking-widget.php:14
|
2519 |
#: core/wpbc-functions.php:1844 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
|
2520 |
#: core/wpbc.php:189
|
2521 |
msgid "Booking Calendar"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
#: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
|
2525 |
+
#: core/lib/wpbc_all_translations.php:437
|
2526 |
msgid "Video guide"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:438
|
2530 |
msgid "Support"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
+
#: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:439
|
2534 |
msgid "Getting Started"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:440
|
2538 |
msgid "Help Info"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
#: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:441
|
2542 |
+
#: core/lib/wpbc_all_translations.php:441
|
2543 |
msgid "FAQ"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:442
|
2547 |
msgid "Contact email"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:443
|
2551 |
msgid "Rate plugin (thanks:)"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:444
|
2555 |
msgid "Current version"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:445
|
2559 |
msgid "Demo"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:446
|
2563 |
msgid "Version"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:447
|
2567 |
msgid "Used for"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:448
|
2571 |
msgid "websites"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:449
|
2575 |
msgid "website"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:450
|
2579 |
msgid "Release date"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:451
|
2583 |
msgid "Explore Premium Features"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:452
|
2587 |
msgid "Statistic"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:453
|
2591 |
msgid "New (unverified) booking(s)"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:454
|
2595 |
msgid "Pending booking(s)"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:455
|
2599 |
msgid "Agenda"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:456
|
2603 |
msgid "New booking(s) made today"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:457
|
2607 |
msgid "Bookings for today"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
#: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2463
|
2611 |
+
#: core/lib/wpbc_all_translations.php:458
|
2612 |
msgid "Insert booking calendar"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
#: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2464
|
2616 |
+
#: core/lib/wpbc_all_translations.php:459
|
2617 |
msgid "Booking calendar"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: core/admin/wpbc-toolbar-tiny.php:225 core/lib/wpbc_all_translations.php:460
|
2621 |
msgid "Insert Shortcode"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:461
|
2625 |
#: inc/_ps/admin/api-settings-p.php:197
|
2626 |
msgid "TimeLine"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: core/admin/wpbc-toolbar-tiny.php:244 core/lib/wpbc_all_translations.php:462
|
2630 |
msgid "Resources Selection"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:463
|
2634 |
+
#: core/wpbc-functions.php:2011 inc/_bl/admin/page-search.php:352 inc/_bl/biz_l.php:740
|
2635 |
+
#: inc/_bl/biz_l.php:755
|
2636 |
msgid "Search"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:464
|
2640 |
msgid "Only Form"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:465
|
2644 |
#: inc/_ps/form/class-wpbc-form-help.php:754
|
2645 |
msgid "Other"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: core/admin/wpbc-toolbar-tiny.php:298 core/lib/wpbc_all_translations.php:466
|
2649 |
msgid "Insert into page"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
#: core/admin/wpbc-toolbar-tiny.php:371 core/admin/wpbc-toolbar-tiny.php:1151
|
2653 |
+
#: core/lib/wpbc_all_translations.php:467 core/wpbc.php:177 inc/_ps/admin/page-resources.php:40
|
2654 |
#: inc/_ps/p-toolbar.php:736
|
2655 |
msgid "Booking resources"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: core/admin/wpbc-toolbar-tiny.php:372 core/lib/wpbc_all_translations.php:468
|
2659 |
msgid "Select booking resources. Please use CTRL to select multiple booking resources."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:469
|
2663 |
#: js/wpbc-gutenberg.js:734
|
2664 |
msgid "View mode"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: core/admin/wpbc-toolbar-tiny.php:407 core/lib/wpbc_all_translations.php:470
|
2668 |
msgid "Select type of view format"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
#: core/admin/wpbc-toolbar-tiny.php:429 core/admin/wpbc-toolbar-tiny.php:438
|
2672 |
+
#: core/admin/wpbc-toolbars.php:785 core/lib/wpbc_all_translations.php:471
|
2673 |
msgid "All bookings"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: core/admin/wpbc-toolbar-tiny.php:461 core/lib/wpbc_all_translations.php:472
|
2677 |
msgid "Select number of months to scroll after loading"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: core/admin/wpbc-toolbar-tiny.php:482 core/lib/wpbc_all_translations.php:473
|
2681 |
#: js/wpbc-gutenberg.js:740
|
2682 |
msgid "Number of days to scroll"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: core/admin/wpbc-toolbar-tiny.php:483 core/lib/wpbc_all_translations.php:474
|
2686 |
msgid "Select number of days to scroll after loading"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
#: core/admin/wpbc-toolbar-tiny.php:503 core/admin/wpbc-toolbars.php:1503
|
2690 |
+
#: core/lib/wpbc_all_translations.php:475 js/wpbc-gutenberg.js:746
|
2691 |
msgid "Start Date"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: core/admin/wpbc-toolbar-tiny.php:581 core/lib/wpbc_all_translations.php:476
|
2695 |
msgid "Select start date"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
#: core/admin/wpbc-toolbar-tiny.php:674 core/admin/wpbc-toolbar-tiny.php:917
|
2699 |
#: core/admin/wpbc-toolbar-tiny.php:1591 core/admin/wpbc-toolbar-tiny.php:1783
|
2700 |
+
#: core/lib/wpbc_all_translations.php:477 core/lib/wpdev-booking-widget.php:118
|
2701 |
#: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:937
|
2702 |
#: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:562 js/wpbc-gutenberg.js:638
|
2703 |
#: js/wpbc-gutenberg.js:896 js/wpbc-gutenberg.js:1261
|
2706 |
|
2707 |
#: core/admin/wpbc-toolbar-tiny.php:675 core/admin/wpbc-toolbar-tiny.php:918
|
2708 |
#: core/admin/wpbc-toolbar-tiny.php:1592 core/admin/wpbc-toolbar-tiny.php:1784
|
2709 |
+
#: core/lib/wpbc_all_translations.php:478 inc/_ps/admin/br-table-import-gcal-p.php:184
|
2710 |
msgid "Select booking resource"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
#: core/admin/wpbc-toolbar-tiny.php:699 core/admin/wpbc-toolbar-tiny.php:1200
|
2714 |
+
#: core/admin/wpbc-toolbar-tiny.php:1616 core/lib/wpbc_all_translations.php:479
|
2715 |
#: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
|
2716 |
msgid "Select default custom booking form"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
#: core/admin/wpbc-toolbar-tiny.php:710 core/admin/wpbc-toolbar-tiny.php:940
|
2720 |
#: core/admin/wpbc-toolbar-tiny.php:1288 core/admin/wpbc-toolbars.php:1618
|
2721 |
+
#: core/lib/wpbc_all_translations.php:480 core/lib/wpdev-booking-widget.php:135
|
2722 |
#: inc/_ps/wpbc-booking-select-widget.php:201
|
2723 |
msgid "Visible months"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
#: core/admin/wpbc-toolbar-tiny.php:711 core/admin/wpbc-toolbar-tiny.php:941
|
2727 |
+
#: core/admin/wpbc-toolbar-tiny.php:1289 core/lib/wpbc_all_translations.php:481
|
2728 |
msgid "Select number of month to show for calendar."
|
2729 |
msgstr ""
|
2730 |
|
2731 |
#: core/admin/wpbc-toolbar-tiny.php:731 core/admin/wpbc-toolbar-tiny.php:961
|
2732 |
+
#: core/admin/wpbc-toolbar-tiny.php:1307 core/lib/wpbc_all_translations.php:482
|
2733 |
msgid "Start month:"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
#: core/admin/wpbc-toolbar-tiny.php:789 core/admin/wpbc-toolbar-tiny.php:1019
|
2737 |
+
#: core/admin/wpbc-toolbar-tiny.php:1365 core/lib/wpbc_all_translations.php:483
|
2738 |
msgid "Select start month of calendar"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
#: core/admin/wpbc-toolbar-tiny.php:796 core/admin/wpbc-toolbar-tiny.php:1026
|
2742 |
+
#: core/admin/wpbc-toolbar-tiny.php:1258 core/lib/wpbc_all_translations.php:484
|
2743 |
msgid "Show advanced settings"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
#: core/admin/wpbc-toolbar-tiny.php:797 core/admin/wpbc-toolbar-tiny.php:1027
|
2747 |
+
#: core/admin/wpbc-toolbar-tiny.php:1259 core/lib/wpbc_all_translations.php:485
|
2748 |
msgid "Hide advanced settings"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
#: core/admin/wpbc-toolbar-tiny.php:807 core/admin/wpbc-toolbar-tiny.php:1037
|
2752 |
+
#: core/admin/wpbc-toolbar-tiny.php:1269 core/lib/wpbc_all_translations.php:486
|
2753 |
#, php-format
|
2754 |
msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
#: core/admin/wpbc-toolbar-tiny.php:808 core/admin/wpbc-toolbar-tiny.php:1038
|
2758 |
+
#: core/lib/wpbc_all_translations.php:487
|
2759 |
#, php-format
|
2760 |
msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
#: core/admin/wpbc-toolbar-tiny.php:818 core/admin/wpbc-toolbar-tiny.php:1048
|
2764 |
#: core/admin/wpbc-toolbar-tiny.php:1372 core/admin/wpbc-toolbars.php:242
|
2765 |
+
#: core/lib/wpbc_all_translations.php:488 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
|
2766 |
#: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:577
|
2767 |
#: js/wpbc-gutenberg.js:650 js/wpbc-gutenberg.js:837
|
2768 |
msgid "Options"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
#: core/admin/wpbc-toolbar-tiny.php:839 core/admin/wpbc-toolbar-tiny.php:1069
|
2772 |
+
#: core/admin/wpbc-toolbar-tiny.php:1393 core/lib/wpbc_all_translations.php:489
|
2773 |
#, php-format
|
2774 |
msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
#: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:1073
|
2778 |
+
#: core/admin/wpbc-toolbar-tiny.php:1397 core/lib/wpbc_all_translations.php:490
|
2779 |
msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
|
2780 |
msgstr ""
|
2781 |
|
2782 |
#: core/admin/wpbc-toolbar-tiny.php:844 core/admin/wpbc-toolbar-tiny.php:852
|
2783 |
#: core/admin/wpbc-toolbar-tiny.php:1074 core/admin/wpbc-toolbar-tiny.php:1398
|
2784 |
+
#: core/lib/wpbc_all_translations.php:491 inc/_bm/admin/page-availability.php:510
|
2785 |
#: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
|
2786 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
|
2787 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
|
2789 |
msgstr ""
|
2790 |
|
2791 |
#: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:1075
|
2792 |
+
#: core/admin/wpbc-toolbar-tiny.php:1399 core/lib/wpbc_all_translations.php:492
|
2793 |
msgid ""
|
2794 |
"Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
|
2795 |
"to use percentage for width: 100%)"
|
2797 |
|
2798 |
#: core/admin/wpbc-toolbar-tiny.php:846 core/admin/wpbc-toolbar-tiny.php:854
|
2799 |
#: core/admin/wpbc-toolbar-tiny.php:1076 core/admin/wpbc-toolbar-tiny.php:1400
|
2800 |
+
#: core/lib/wpbc_all_translations.php:493
|
2801 |
msgid "Code Example"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: core/admin/wpbc-toolbar-tiny.php:851 core/lib/wpbc_all_translations.php:494
|
2805 |
msgid ""
|
2806 |
"Specify that during certain seasons (or days of week), the specific minimum number of days must "
|
2807 |
"be booked. "
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: core/admin/wpbc-toolbar-tiny.php:853 core/lib/wpbc_all_translations.php:495
|
2811 |
msgid ""
|
2812 |
"Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: core/admin/wpbc-toolbar-tiny.php:860 core/lib/wpbc_all_translations.php:496
|
2816 |
#, php-format
|
2817 |
msgid ""
|
2818 |
"Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
|
2820 |
msgstr ""
|
2821 |
|
2822 |
#: core/admin/wpbc-toolbar-tiny.php:883 core/admin/wpbc-toolbar-tiny.php:1098
|
2823 |
+
#: core/lib/wpbc_all_translations.php:497
|
2824 |
msgid "Aggregate booking dates from other resources"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
#: core/admin/wpbc-toolbar-tiny.php:884 core/admin/wpbc-toolbar-tiny.php:1099
|
2828 |
+
#: core/lib/wpbc_all_translations.php:498
|
2829 |
msgid ""
|
2830 |
"Select booking resources, for getting booking dates from them and set such dates as unavailable "
|
2831 |
"in destination calendar."
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: core/admin/wpbc-toolbar-tiny.php:1130 core/lib/wpbc_all_translations.php:499
|
2835 |
+
#: inc/_bl/admin/page-search.php:477 inc/_bl/admin/page-search.php:510
|
2836 |
#: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
|
2837 |
#: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
|
2838 |
#: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
|
2841 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
|
2842 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
|
2843 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:875
|
2844 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1058
|
2845 |
msgid "Note!"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: core/admin/wpbc-toolbar-tiny.php:1131 core/lib/wpbc_all_translations.php:500
|
2849 |
#, php-format
|
2850 |
msgid ""
|
2851 |
"This shortcode %s is using for selection of the booking form of specific booking resources in "
|
2853 |
msgstr ""
|
2854 |
|
2855 |
#: core/admin/wpbc-toolbar-tiny.php:1144 core/admin/wpbc-toolbars.php:1666
|
2856 |
+
#: core/lib/wpbc_all_translations.php:501 inc/_ps/admin/br-table-import-gcal-p.php:173
|
2857 |
#: inc/_ps/wpbc-booking-select-widget.php:163
|
2858 |
msgid "All"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: core/admin/wpbc-toolbar-tiny.php:1153 core/lib/wpbc_all_translations.php:502
|
2862 |
#: inc/_ps/wpbc-booking-select-widget.php:175
|
2863 |
msgid ""
|
2864 |
"Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
|
2865 |
"resources."
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: core/admin/wpbc-toolbar-tiny.php:1178 core/lib/wpbc_all_translations.php:503
|
2869 |
#: inc/_ps/wpbc-booking-select-widget.php:181
|
2870 |
msgid "Preselected resource"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: core/admin/wpbc-toolbar-tiny.php:1179 core/lib/wpbc_all_translations.php:504
|
2874 |
msgid "Define preselected resource."
|
2875 |
msgstr ""
|
2876 |
|
2877 |
+
#: core/admin/wpbc-toolbar-tiny.php:1204 core/lib/wpbc_all_translations.php:505
|
2878 |
#: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1222
|
2879 |
msgid "Default Form"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
#: core/admin/wpbc-toolbar-tiny.php:1220 core/admin/wpbc-toolbar-tiny.php:1229
|
2883 |
+
#: core/lib/wpbc_all_translations.php:506
|
2884 |
msgid "Please select the resource:"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: core/admin/wpbc-toolbar-tiny.php:1221 core/lib/wpbc_all_translations.php:507
|
2888 |
msgid "Title near your select box."
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:508
|
2892 |
#: inc/_ps/wpbc-booking-select-widget.php:247
|
2893 |
msgid "First option title"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:509
|
2897 |
#: inc/_ps/personal.php:535 js/wpbc-gutenberg.js:771
|
2898 |
msgid "Please Select"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:510
|
2902 |
#: inc/_ps/wpbc-booking-select-widget.php:254
|
2903 |
msgid "First option in dropdown list."
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:511
|
2907 |
#: inc/_ps/wpbc-booking-select-widget.php:256
|
2908 |
msgid "Please leave it empty if you want to skip it."
|
2909 |
msgstr ""
|
2910 |
|
2911 |
#: core/admin/wpbc-toolbar-tiny.php:1430 core/admin/wpbc-toolbar-tiny.php:1710
|
2912 |
+
#: core/lib/wpbc_all_translations.php:512
|
2913 |
msgid "Select shortcode to insert"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:513
|
2917 |
msgid "Search form"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: core/admin/wpbc-toolbar-tiny.php:1445 core/lib/wpbc_all_translations.php:514
|
2921 |
+
#: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:659
|
2922 |
+
#: inc/_bl/wpbc-search-availability.php:674
|
2923 |
msgid "Search results"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: core/admin/wpbc-toolbar-tiny.php:1464 core/lib/wpbc_all_translations.php:515
|
2927 |
msgid "Check this box to show search results on other page"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: core/admin/wpbc-toolbar-tiny.php:1481 core/lib/wpbc_all_translations.php:516
|
2931 |
msgid "URL of search results:"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: core/admin/wpbc-toolbar-tiny.php:1483 core/lib/wpbc_all_translations.php:517
|
2935 |
msgid "Type the URL of search results page."
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: core/admin/wpbc-toolbar-tiny.php:1500 core/lib/wpbc_all_translations.php:518
|
2939 |
msgid "Title of Search results:"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
#: core/admin/wpbc-toolbar-tiny.php:1501 core/admin/wpbc-toolbar-tiny.php:1510
|
2943 |
+
#: core/lib/wpbc_all_translations.php:519 inc/_bl/wpdev-booking-search-widget.php:79
|
2944 |
msgid "Result(s) Found"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:520
|
2948 |
msgid "Type the title of Search results."
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:521
|
2952 |
msgid "show number of search results"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: core/admin/wpbc-toolbar-tiny.php:1519 core/lib/wpbc_all_translations.php:522
|
2956 |
msgid "Nothing Found Message:"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: core/admin/wpbc-toolbar-tiny.php:1521 core/lib/wpbc_all_translations.php:523
|
2960 |
msgid "Type the message, when nothing found."
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: core/admin/wpbc-toolbar-tiny.php:1541 core/lib/wpbc_all_translations.php:524
|
2964 |
msgid "Search only for users:"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: core/admin/wpbc-toolbar-tiny.php:1543 core/lib/wpbc_all_translations.php:525
|
2968 |
msgid ""
|
2969 |
"Type IDs of the users (separated by comma \",\") for searching availability only for these "
|
2970 |
"users, or leave it blank for searching for all users."
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: core/admin/wpbc-toolbar-tiny.php:1563 core/lib/wpbc_all_translations.php:526
|
2974 |
#, php-format
|
2975 |
msgid ""
|
2976 |
"This shortcode %s is using for showing the search results at specific page, if the search form "
|
2977 |
"is submit showing the search results at different page"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: core/admin/wpbc-toolbar-tiny.php:1625 core/lib/wpbc_all_translations.php:527
|
2981 |
msgid "date"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: core/admin/wpbc-toolbar-tiny.php:1685 core/lib/wpbc_all_translations.php:528
|
2985 |
msgid "Define date for booking"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:529
|
2989 |
#: inc/_ps/p-toolbar.php:237
|
2990 |
msgid "Edit Booking"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: core/admin/wpbc-toolbar-tiny.php:1726 core/lib/wpbc_all_translations.php:530
|
2994 |
msgid "Show listing of customer bookings"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
+
#: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:531
|
2998 |
msgid "Show info about Booking Resource"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:532
|
3002 |
#, php-format
|
3003 |
msgid ""
|
3004 |
"This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
|
3005 |
"%s or make %spayment%s after receiving an admin email payment request"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: core/admin/wpbc-toolbar-tiny.php:1746 core/lib/wpbc_all_translations.php:533
|
3009 |
#, php-format
|
3010 |
msgid ""
|
3011 |
"The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
|
3013 |
msgstr ""
|
3014 |
|
3015 |
#: core/admin/wpbc-toolbar-tiny.php:1747 core/admin/wpbc-toolbar-tiny.php:1763
|
3016 |
+
#: core/lib/wpbc_all_translations.php:534
|
3017 |
#, php-format
|
3018 |
msgid "Email templates, which use shortcodes: %s, will be linked to this page"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:535
|
3022 |
#, php-format
|
3023 |
msgid ""
|
3024 |
"This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: core/admin/wpbc-toolbar-tiny.php:1762 core/lib/wpbc_all_translations.php:536
|
3028 |
#, php-format
|
3029 |
msgid ""
|
3030 |
"The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
|
3031 |
"settings page%s must link to this page"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:537
|
3035 |
#, php-format
|
3036 |
msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:538
|
3040 |
msgid "Trick"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: core/admin/wpbc-toolbar-tiny.php:1805 core/lib/wpbc_all_translations.php:539
|
3044 |
#: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
|
3045 |
#: inc/_ps/admin/br-table-import-gcal-p.php:63
|
3046 |
msgid "Capacity"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: core/admin/wpbc-toolbar-tiny.php:1811 core/lib/wpbc_all_translations.php:540
|
3050 |
msgid "Select type of info to show."
|
3051 |
msgstr ""
|
3052 |
|
3053 |
#: core/admin/wpbc-toolbar-tiny.php:2121 core/admin/wpbc-toolbar-tiny.php:2164
|
3054 |
#: core/admin/wpbc-toolbar-tiny.php:2248 core/admin/wpbc-toolbar-tiny.php:2337
|
3055 |
+
#: core/lib/wpbc_all_translations.php:541
|
3056 |
msgid "No booking resources"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:542
|
3060 |
msgid "Filters"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: core/admin/wpbc-toolbars.php:350 core/lib/wpbc_all_translations.php:543
|
3064 |
msgid "Expand Advanced Toolbar"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: core/admin/wpbc-toolbars.php:357 core/lib/wpbc_all_translations.php:544
|
3068 |
msgid "Collapse Advanced Toolbar"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
+
#: core/admin/wpbc-toolbars.php:379 core/lib/wpbc_all_translations.php:545
|
3072 |
msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
+
#: core/admin/wpbc-toolbars.php:380 core/lib/wpbc_all_translations.php:546
|
3076 |
msgid "Emails sending"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: core/admin/wpbc-toolbars.php:405 core/lib/wpbc_all_translations.php:547
|
3080 |
msgid "Booking ID"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
#: core/admin/wpbc-toolbars.php:408 core/admin/wpbc-toolbars.php:2241
|
3084 |
+
#: core/lib/wpbc_all_translations.php:548
|
3085 |
msgid "Go"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: core/admin/wpbc-toolbars.php:442 core/lib/wpbc_all_translations.php:549
|
3089 |
msgid "Technical Support"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: core/admin/wpbc-toolbars.php:444 core/lib/wpbc_all_translations.php:550
|
3093 |
msgid "About Booking Calendar"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
#: core/admin/wpbc-toolbars.php:511 core/admin/wpbc-toolbars.php:691
|
3097 |
#: core/admin/wpbc-toolbars.php:896 core/admin/wpbc-toolbars.php:1516
|
3098 |
+
#: core/lib/wpbc_all_translations.php:551 inc/_bs/lib_s.php:84
|
3099 |
msgid "Apply"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: core/admin/wpbc-toolbars.php:512 core/lib/wpbc_all_translations.php:552
|
3103 |
msgid "Refresh booking listing"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: core/admin/wpbc-toolbars.php:526 core/lib/wpbc_all_translations.php:553
|
3107 |
msgid "Reset filter to default values"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
#: core/admin/wpbc-toolbars.php:552 core/admin/wpbc-toolbars.php:767
|
3111 |
+
#: core/lib/wpbc_all_translations.php:554
|
3112 |
msgid "Any"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
#: core/admin/wpbc-toolbars.php:573 core/admin/wpbc-toolbars.php:807
|
3116 |
+
#: core/lib/wpbc_all_translations.php:555
|
3117 |
msgid "week"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
#: core/admin/wpbc-toolbars.php:574 core/admin/wpbc-toolbars.php:808
|
3121 |
+
#: core/lib/wpbc_all_translations.php:556
|
3122 |
msgid "weeks"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
#: core/admin/wpbc-toolbars.php:575 core/admin/wpbc-toolbars.php:809
|
3126 |
+
#: core/lib/wpbc_all_translations.php:557
|
3127 |
msgid "month"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
#: core/admin/wpbc-toolbars.php:576 core/admin/wpbc-toolbars.php:577
|
3131 |
#: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:810
|
3132 |
#: core/admin/wpbc-toolbars.php:811 core/admin/wpbc-toolbars.php:812
|
3133 |
+
#: core/lib/wpbc_all_translations.php:558
|
3134 |
msgid "months"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
#: core/admin/wpbc-toolbars.php:586 core/admin/wpbc-toolbars.php:821
|
3138 |
+
#: core/lib/wpbc_all_translations.php:559
|
3139 |
msgid "Filter bookings by booking dates"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: core/admin/wpbc-toolbars.php:590 core/lib/wpbc_all_translations.php:560
|
3143 |
msgid "Current dates"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
#: core/admin/wpbc-toolbars.php:591 core/admin/wpbc-toolbars.php:825
|
3147 |
+
#: core/lib/wpbc_all_translations.php:561
|
3148 |
msgid "Today"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:562
|
3152 |
msgid "Previous dates"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
#: core/admin/wpbc-toolbars.php:593 core/admin/wpbc-toolbars.php:826
|
3156 |
+
#: core/lib/wpbc_all_translations.php:563
|
3157 |
msgid "All dates"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: core/admin/wpbc-toolbars.php:595 core/lib/wpbc_all_translations.php:564
|
3161 |
msgid "Today check in/out"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: core/admin/wpbc-toolbars.php:596 core/lib/wpbc_all_translations.php:565
|
3165 |
msgid "Check In - Tomorrow"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: core/admin/wpbc-toolbars.php:597 core/lib/wpbc_all_translations.php:566
|
3169 |
msgid "Check Out - Tomorrow"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: core/admin/wpbc-toolbars.php:602 core/lib/wpbc_all_translations.php:567
|
3173 |
#: core/wpbc-functions.php:2521
|
3174 |
msgid "Next"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
#: core/admin/wpbc-toolbars.php:626 core/admin/wpbc-toolbars.php:831
|
3178 |
+
#: core/lib/wpbc_all_translations.php:568
|
3179 |
msgid "Prior"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
#: core/admin/wpbc-toolbars.php:666 core/admin/wpbc-toolbars.php:871
|
3183 |
+
#: core/lib/wpbc_all_translations.php:569
|
3184 |
msgid "Check-in"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
#: core/admin/wpbc-toolbars.php:678 core/admin/wpbc-toolbars.php:883
|
3188 |
+
#: core/lib/wpbc_all_translations.php:570
|
3189 |
msgid "Check-out"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: core/admin/wpbc-toolbars.php:750 core/lib/wpbc_all_translations.php:571
|
3193 |
msgid "Order by"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: core/admin/wpbc-toolbars.php:764 core/lib/wpbc_all_translations.php:572
|
3197 |
msgid "Exist"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: core/admin/wpbc-toolbars.php:765
|
3201 |
+
msgid "In Trash / Rejected"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: core/admin/wpbc-toolbars.php:786 core/lib/wpbc_all_translations.php:574
|
3205 |
msgid "New bookings"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: core/admin/wpbc-toolbars.php:823 core/lib/wpbc_all_translations.php:575
|
3209 |
msgid "Creation"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: core/admin/wpbc-toolbars.php:950 core/lib/wpbc_all_translations.php:576
|
3213 |
msgid "Approve selected bookings"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: core/admin/wpbc-toolbars.php:965 core/lib/wpbc_all_translations.php:577
|
3217 |
msgid "Set selected bookings as pending"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: core/admin/wpbc-toolbars.php:995
|
3221 |
+
msgid "Reject booking - move selected bookings to trash"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: core/admin/wpbc-toolbars.php:1012 core/lib/wpbc_all_translations.php:579
|
3225 |
msgid "Restore selected bookings"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: core/admin/wpbc-toolbars.php:1028 core/lib/wpbc_all_translations.php:580
|
3229 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2667 inc/_bl/admin/page-coupons.php:216
|
3230 |
#: inc/_bl/admin/page-coupons.php:222 inc/_bm/admin/page-availability.php:240
|
3231 |
#: inc/_bm/admin/page-availability.php:246 inc/_bm/admin/page-cost-valuation.php:567
|
3232 |
#: inc/_bm/admin/page-cost.php:223 inc/_bm/admin/page-cost.php:233
|
3235 |
msgid "Delete"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: core/admin/wpbc-toolbars.php:1029 core/lib/wpbc_all_translations.php:581
|
3239 |
msgid "Delete selected bookings"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: core/admin/wpbc-toolbars.php:1031 core/lib/wpbc_all_translations.php:582
|
3243 |
+
#: core/sync/wpbc-gcal-class.php:706
|
3244 |
msgid "Do you really want to delete selected booking(s) ?"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: core/admin/wpbc-toolbars.php:1047 core/lib/wpbc_all_translations.php:583
|
3248 |
msgid "Reason of cancellation"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: core/admin/wpbc-toolbars.php:1075 core/admin/wpbc-toolbars.php:1076 core/lib/wpbc-ajax.php:346
|
3252 |
+
#: core/lib/wpbc_all_translations.php:584
|
3253 |
msgid "Empty Trash"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: core/admin/wpbc-toolbars.php:1106 core/lib/wpbc_all_translations.php:585
|
3257 |
msgid "Read All"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: core/admin/wpbc-toolbars.php:1107 core/lib/wpbc_all_translations.php:586
|
3261 |
msgid "Mark as read all bookings"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: core/admin/wpbc-toolbars.php:1120 core/lib/wpbc_all_translations.php:587
|
3265 |
msgid "Read"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: core/admin/wpbc-toolbars.php:1121 core/lib/wpbc_all_translations.php:588
|
3269 |
msgid "Mark as read selected bookings"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: core/admin/wpbc-toolbars.php:1135 core/lib/wpbc_all_translations.php:589
|
3273 |
msgid "Unread"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: core/admin/wpbc-toolbars.php:1136 core/lib/wpbc_all_translations.php:590
|
3277 |
msgid "Mark as Unread selected bookings"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
#: core/admin/wpbc-toolbars.php:1185 core/admin/wpbc-toolbars.php:1245
|
3281 |
+
#: core/lib/wpbc_all_translations.php:591
|
3282 |
msgid "Show day"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
#: core/admin/wpbc-toolbars.php:1202 core/admin/wpbc-toolbars.php:1259
|
3286 |
+
#: core/lib/wpbc_all_translations.php:592
|
3287 |
msgid "Show week"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
#: core/admin/wpbc-toolbars.php:1219 core/admin/wpbc-toolbars.php:1273
|
3291 |
+
#: core/lib/wpbc_all_translations.php:593
|
3292 |
msgid "Show month"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: core/admin/wpbc-toolbars.php:1287 core/lib/wpbc_all_translations.php:594
|
3296 |
msgid "Show 2 months"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
#: core/admin/wpbc-toolbars.php:1344 core/admin/wpbc-toolbars.php:1358
|
3300 |
+
#: core/admin/wpbc-toolbars.php:1405 core/lib/wpbc_all_translations.php:595
|
3301 |
msgid "Previous 4 weeks"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
#: core/admin/wpbc-toolbars.php:1345 core/admin/wpbc-toolbars.php:1359
|
3305 |
+
#: core/admin/wpbc-toolbars.php:1406 core/lib/wpbc_all_translations.php:596
|
3306 |
msgid "Previous week"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
#: core/admin/wpbc-toolbars.php:1346 core/admin/wpbc-toolbars.php:1360
|
3310 |
+
#: core/admin/wpbc-toolbars.php:1407 core/lib/wpbc_all_translations.php:597
|
3311 |
msgid "Current week"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
#: core/admin/wpbc-toolbars.php:1347 core/admin/wpbc-toolbars.php:1361
|
3315 |
+
#: core/admin/wpbc-toolbars.php:1408 core/lib/wpbc_all_translations.php:598
|
3316 |
msgid "Next week"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
#: core/admin/wpbc-toolbars.php:1348 core/admin/wpbc-toolbars.php:1362
|
3320 |
+
#: core/admin/wpbc-toolbars.php:1409 core/lib/wpbc_all_translations.php:599
|
3321 |
msgid "Next 4 weeks"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
#: core/admin/wpbc-toolbars.php:1372 core/admin/wpbc-toolbars.php:1422
|
3325 |
+
#: core/admin/wpbc-toolbars.php:1437 core/lib/wpbc_all_translations.php:600
|
3326 |
msgid "Previous 3 months"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
#: core/admin/wpbc-toolbars.php:1373 core/admin/wpbc-toolbars.php:1423
|
3330 |
+
#: core/admin/wpbc-toolbars.php:1438 core/lib/wpbc_all_translations.php:601
|
3331 |
msgid "Previous month"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
#: core/admin/wpbc-toolbars.php:1374 core/admin/wpbc-toolbars.php:1424
|
3335 |
+
#: core/admin/wpbc-toolbars.php:1439 core/lib/wpbc_all_translations.php:602
|
3336 |
msgid "Current month"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
#: core/admin/wpbc-toolbars.php:1375 core/admin/wpbc-toolbars.php:1425
|
3340 |
+
#: core/admin/wpbc-toolbars.php:1440 core/lib/wpbc_all_translations.php:603
|
3341 |
msgid "Next month"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
#: core/admin/wpbc-toolbars.php:1376 core/admin/wpbc-toolbars.php:1426
|
3345 |
+
#: core/admin/wpbc-toolbars.php:1441 core/lib/wpbc_all_translations.php:604
|
3346 |
msgid "Next 3 months"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:605
|
3350 |
msgid "Previous 7 days"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:606
|
3354 |
msgid "Previous day"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
+
#: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:607
|
3358 |
msgid "Current day"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: core/admin/wpbc-toolbars.php:1393 core/lib/wpbc_all_translations.php:608
|
3362 |
msgid "Next day"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: core/admin/wpbc-toolbars.php:1394 core/lib/wpbc_all_translations.php:609
|
3366 |
msgid "Next 7 days"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: core/admin/wpbc-toolbars.php:1665 core/lib/wpbc_all_translations.php:610
|
3370 |
msgid "Number of months in one row"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
+
#: core/admin/wpbc-toolbars.php:1710 core/lib/wpbc_all_translations.php:611
|
3374 |
msgid "Calendar width"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: core/admin/wpbc-toolbars.php:1758 core/lib/wpbc_all_translations.php:612
|
3378 |
msgid "Calendar cell height"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
#: core/admin/wpbc-toolbars.php:1867 core/admin/wpbc-toolbars.php:1868
|
3382 |
+
#: core/lib/wpbc_all_translations.php:613
|
3383 |
msgid "Send email notification to customer about this operation"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
#: core/admin/wpbc-toolbars.php:1910 core/admin/wpbc-toolbars.php:1911
|
3387 |
+
#: core/lib/wpbc_all_translations.php:614
|
3388 |
msgid "Add to Google Calendar"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: core/admin/wpbc-toolbars.php:2101 core/lib/wpbc_all_translations.php:615
|
3392 |
+
#: inc/gateways/page-gateways.php:1407 inc/gateways/page-gateways.php:1425
|
3393 |
msgid "Total"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: core/admin/wpbc-toolbars.php:2237 core/lib/wpbc_all_translations.php:616
|
3397 |
msgid "ID or Title"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: core/any/api-emails.php:507 core/lib/wpbc_all_translations.php:617
|
3401 |
msgid "Email copy to"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
#: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
|
3405 |
+
#: core/lib/wpbc_all_translations.php:618 core/wpbc-functions.php:2786 core/wpbc-functions.php:2809
|
3406 |
msgid "Dismiss"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:619
|
3410 |
#, php-format
|
3411 |
msgid ""
|
3412 |
"Probably you updated your paid version of Booking Calendar by free version or update process "
|
3413 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: core/class/wpbc-class-welcome.php:1851 core/class/wpbc-class-welcome.php:2337
|
3417 |
+
#: core/lib/wpbc_all_translations.php:620 inc/_ps/admin/page-settings-up.php:144
|
3418 |
msgid "Purchase"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: core/class/wpbc-class-welcome.php:1851 core/class/wpbc-class-welcome.php:2337
|
3422 |
+
#: core/lib/wpbc_all_translations.php:621 inc/_ps/admin/page-settings-up.php:144
|
3423 |
msgid "Upgrade Now"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
#: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:67
|
3427 |
+
#: core/lib/wpbc-ajax.php:82 core/lib/wpbc_all_translations.php:622
|
3428 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:1113
|
3429 |
#, php-format
|
3430 |
msgid ""
|
3431 |
"%sError!%s Request do not pass security check! Please refresh the page and try one more time."
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: core/lib/wpbc-ajax.php:138 core/lib/wpbc_all_translations.php:623
|
3435 |
msgid "Set as Unread"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:624
|
3439 |
msgid "Set as Read"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: core/lib/wpbc-ajax.php:189
|
3443 |
+
msgid "Approved by:"
|
3444 |
+
msgstr ""
|
3445 |
+
|
3446 |
+
#: core/lib/wpbc-ajax.php:189
|
3447 |
+
msgid "Declined by:"
|
3448 |
+
msgstr ""
|
3449 |
+
|
3450 |
+
#: core/lib/wpbc-ajax.php:215 core/lib/wpbc_all_translations.php:625
|
3451 |
msgid "Set as Approved"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: core/lib/wpbc-ajax.php:217 core/lib/wpbc_all_translations.php:626
|
3455 |
msgid "Set as Pending"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: core/lib/wpbc-ajax.php:238 core/lib/wpbc-ajax.php:392 core/lib/wpbc_all_translations.php:627
|
3459 |
msgid "Reason for cancellation here"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: core/lib/wpbc-ajax.php:239 core/lib/wpbc-ajax.php:393 core/lib/wpbc_all_translations.php:628
|
3463 |
msgid "Reason of cancellation here"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: core/lib/wpbc-ajax.php:291 core/lib/wpbc_all_translations.php:629
|
3467 |
msgid "Moved to trash"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: core/lib/wpbc-ajax.php:299 core/lib/wpbc_all_translations.php:630
|
3471 |
msgid "Restored"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: core/lib/wpbc-ajax.php:372 core/lib/wpbc_all_translations.php:631
|
3475 |
#, php-format
|
3476 |
msgid "Deleted %d bookings from trash"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: core/lib/wpbc-ajax.php:543 core/lib/wpbc_all_translations.php:632 inc/_ps/personal.php:160
|
3480 |
msgid "Saved"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:633
|
3484 |
msgid "The code you entered is incorrect"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: core/lib/wpbc-booking-new.php:139 core/lib/wpbc_all_translations.php:634
|
3488 |
msgid "Updating..."
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: core/lib/wpbc-booking-new.php:164 core/lib/wpbc_all_translations.php:635
|
3492 |
+
#: inc/_ps/personal.php:2371 inc/_ps/personal.php:2562
|
3493 |
msgid "Updated successfully"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: core/lib/wpbc-booking-new.php:869 core/lib/wpbc_all_translations.php:636
|
3497 |
msgid "Error!"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: core/lib/wpbc-booking-new.php:870 core/lib/wpbc_all_translations.php:637
|
3501 |
msgid ""
|
3502 |
"Probably these date(s) just was booking by other visitor. Please reload this page and make "
|
3503 |
"booking again."
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: core/lib/wpbc_all_translations.php:70
|
3507 |
+
msgid "Timeline type"
|
3508 |
+
msgstr ""
|
3509 |
+
|
3510 |
+
#: core/lib/wpbc_all_translations.php:71
|
3511 |
+
msgid "Select type of timeline to load"
|
3512 |
+
msgstr ""
|
3513 |
+
|
3514 |
+
#: core/lib/wpbc_all_translations.php:72
|
3515 |
+
msgid "Flex Timeline"
|
3516 |
+
msgstr ""
|
3517 |
+
|
3518 |
+
#: core/lib/wpbc_all_translations.php:73
|
3519 |
+
msgid "Old Timeline"
|
3520 |
+
msgstr ""
|
3521 |
+
|
3522 |
+
#: core/lib/wpbc_all_translations.php:234
|
3523 |
+
msgid "Trash"
|
3524 |
+
msgstr ""
|
3525 |
+
|
3526 |
+
#: core/lib/wpbc_all_translations.php:418
|
3527 |
+
msgid "Move to trash"
|
3528 |
+
msgstr ""
|
3529 |
+
|
3530 |
+
#: core/lib/wpbc_all_translations.php:425 core/timeline/v2/wpbc-class-timeline_v2.php:89
|
3531 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:98 core/timeline/v2/wpbc-class-timeline_v2.php:107
|
3532 |
+
msgid "Mon"
|
3533 |
+
msgstr ""
|
3534 |
+
|
3535 |
+
#: core/lib/wpbc_all_translations.php:426 core/timeline/v2/wpbc-class-timeline_v2.php:90
|
3536 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:99 core/timeline/v2/wpbc-class-timeline_v2.php:108
|
3537 |
+
msgid "Tue"
|
3538 |
+
msgstr ""
|
3539 |
+
|
3540 |
+
#: core/lib/wpbc_all_translations.php:427 core/timeline/v2/wpbc-class-timeline_v2.php:91
|
3541 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:100 core/timeline/v2/wpbc-class-timeline_v2.php:109
|
3542 |
+
msgid "Wed"
|
3543 |
+
msgstr ""
|
3544 |
+
|
3545 |
+
#: core/lib/wpbc_all_translations.php:428 core/timeline/v2/wpbc-class-timeline_v2.php:92
|
3546 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:101 core/timeline/v2/wpbc-class-timeline_v2.php:110
|
3547 |
+
msgid "Thu"
|
3548 |
+
msgstr ""
|
3549 |
+
|
3550 |
+
#: core/lib/wpbc_all_translations.php:429 core/timeline/v2/wpbc-class-timeline_v2.php:93
|
3551 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:102 core/timeline/v2/wpbc-class-timeline_v2.php:111
|
3552 |
+
msgid "Fri"
|
3553 |
+
msgstr ""
|
3554 |
+
|
3555 |
+
#: core/lib/wpbc_all_translations.php:430 core/timeline/v2/wpbc-class-timeline_v2.php:94
|
3556 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:103 core/timeline/v2/wpbc-class-timeline_v2.php:112
|
3557 |
+
msgid "Sat"
|
3558 |
+
msgstr ""
|
3559 |
+
|
3560 |
+
#: core/lib/wpbc_all_translations.php:431 core/timeline/v2/wpbc-class-timeline_v2.php:95
|
3561 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:104 core/timeline/v2/wpbc-class-timeline_v2.php:113
|
3562 |
+
msgid "Sun"
|
3563 |
+
msgstr ""
|
3564 |
+
|
3565 |
+
#: core/lib/wpbc_all_translations.php:432 core/timeline/v2/wpbc-class-timeline_v2.php:1428
|
3566 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:1441 inc/_ps/wpbc-form-templates.php:155
|
3567 |
+
msgid "Times"
|
3568 |
+
msgstr ""
|
3569 |
+
|
3570 |
+
#: core/lib/wpbc_all_translations.php:433 core/timeline/v2/wpbc-class-timeline_v2.php:2676
|
3571 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2698
|
3572 |
+
msgid "Decline"
|
3573 |
+
msgstr ""
|
3574 |
+
|
3575 |
+
#: core/lib/wpbc_all_translations.php:434 core/timeline/v2/wpbc-class-timeline_v2.php:2699
|
3576 |
+
msgid "Pay"
|
3577 |
+
msgstr ""
|
3578 |
+
|
3579 |
+
#: core/lib/wpbc_all_translations.php:435 core/timeline/v2/wpbc-class-timeline_v2.php:2758
|
3580 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2760 core/wpbc-functions.php:1993
|
3581 |
+
#: inc/_bs/lib_s.php:42 inc/_bs/lib_s.php:271 inc/_bs/lib_s.php:273
|
3582 |
+
#: inc/_ps/admin/page-settings-form.php:352 inc/_ps/admin/page-settings-form.php:363
|
3583 |
+
msgid "Payment"
|
3584 |
+
msgstr ""
|
3585 |
+
|
3586 |
+
#: core/lib/wpbc_all_translations.php:573
|
3587 |
+
msgid "In Trash"
|
3588 |
+
msgstr ""
|
3589 |
+
|
3590 |
+
#: core/lib/wpbc_all_translations.php:578
|
3591 |
+
msgid "Move selected bookings to trash"
|
3592 |
+
msgstr ""
|
3593 |
+
|
3594 |
+
#: core/lib/wpbc_all_translations.php:638
|
3595 |
msgid ""
|
3596 |
"Check the box, if you want to use syntax highlighter during customization booking form at "
|
3597 |
"Settings - Form page."
|
3598 |
msgstr ""
|
3599 |
|
3600 |
+
#: core/lib/wpbc_all_translations.php:639
|
3601 |
msgid "Show 3 months"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: core/lib/wpbc_all_translations.php:640
|
3605 |
msgid "Show year"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: core/lib/wpbc_all_translations.php:641
|
3609 |
msgid "Number of months"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: core/lib/wpbc_all_translations.php:642 inc/_bs/lib_s.php:46 inc/_bs/lib_s.php:291
|
3613 |
msgid "Paid OK"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: core/lib/wpbc_all_translations.php:643
|
3617 |
msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: core/lib/wpbc_all_translations.php:644
|
3621 |
#, php-format
|
3622 |
msgid ""
|
3623 |
"Probabaly you updated your paid version of Booking Calendar by free version or update process "
|
3624 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: core/lib/wpbc_all_translations.php:645
|
3628 |
msgid "Copy to admin"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: core/lib/wpbc_all_translations.php:646
|
3632 |
msgid "Enable / disable sending copy of this email notification to admin"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: core/lib/wpbc_all_translations.php:647
|
3636 |
msgid "Customization of email template, which is sending to Visitor after approval of booking"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: core/lib/wpbc_all_translations.php:648
|
3640 |
msgid "Email is sending to Visitor after Approval of booking."
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: core/lib/wpbc_all_translations.php:649
|
3644 |
msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: core/lib/wpbc_all_translations.php:650
|
3648 |
msgid "Email is sending to Visitor after Deleting of booking."
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: core/lib/wpbc_all_translations.php:651
|
3652 |
msgid ""
|
3653 |
"Customization of email template, which is sending to Visitor, when booking status is set to "
|
3654 |
"Pending"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: core/lib/wpbc_all_translations.php:652
|
3658 |
msgid "Email is sending to Visitor after booking set as Pending."
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: core/lib/wpbc_all_translations.php:653
|
3662 |
msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: core/lib/wpbc_all_translations.php:654
|
3666 |
msgid "Confgure ULR feed(s) at this settings page."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: core/lib/wpbc_all_translations.php:655
|
3670 |
msgid "Reject"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
#: core/lib/wpbc_all_translations.php:656
|
3674 |
msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: core/lib/wpbc_all_translations.php:657
|
3678 |
msgid "Google Calendar"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: core/lib/wpbc_all_translations.php:658
|
3682 |
msgid "Events Import"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: core/lib/wpbc_all_translations.php:659
|
3686 |
msgid "Import Settings"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: core/lib/wpbc_all_translations.php:660
|
3690 |
msgid "Customization of synchronization with Google Calendar"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: core/lib/wpbc_all_translations.php:661 core/wpbc-debug.php:123 core/wpbc-emails.php:447
|
3694 |
#: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
|
3695 |
#: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
|
3696 |
#: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
|
3698 |
#: inc/_bm/admin/page-seasons.php:826 inc/_bm/admin/page-seasons.php:828 inc/_bs/lib_s.php:344
|
3699 |
#: inc/_ps/hash/wpbc-hash-functions.php:67 inc/_ps/hash/wpbc-hash-functions.php:106
|
3700 |
#: inc/_ps/hash/wpbc-hash-functions.php:134 inc/_ps/hash/wpbc-hash-functions.php:162
|
3701 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:308
|
3702 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1076
|
3703 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1090
|
3704 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1101
|
|
|
3705 |
msgid "Error"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: core/lib/wpbc_all_translations.php:662
|
3709 |
msgid "does not exist"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: core/lib/wpbc_all_translations.php:663 core/lib/wpdev-booking-class.php:500
|
3713 |
msgid "Calendar is loading..."
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: core/lib/wpbc_all_translations.php:664 core/lib/wpdev-booking-class.php:684
|
3717 |
+
#: core/lib/wpdev-booking-class.php:745 inc/_ps/personal.php:890 inc/_ps/personal.php:901
|
3718 |
msgid "Wrong booking hash in URL (probably expired)"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
+
#: core/lib/wpbc_all_translations.php:665
|
3722 |
msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: core/lib/wpbc_all_translations.php:666 core/lib/wpdev-booking-class.php:865
|
3726 |
#, php-format
|
3727 |
msgid ""
|
3728 |
"%sWarning! Booking calendar for this booking resource are already at the page, please check more "
|
3729 |
"about this issue at %sthis page%s"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: core/lib/wpbc_all_translations.php:667 core/lib/wpdev-booking-class.php:1084
|
3733 |
#: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
|
3734 |
msgid "You need to use special shortcode [bookingedit] for booking editing."
|
3735 |
msgstr ""
|
3736 |
|
3737 |
+
#: core/lib/wpbc_all_translations.php:668 core/lib/wpdev-booking-class.php:1032
|
3738 |
+
#: core/lib/wpdev-booking-class.php:1229 core/lib/wpdev-booking-class.php:1231
|
3739 |
#: inc/_ps/hash/wpbc-hash-functions.php:106 inc/_ps/hash/wpbc-hash-functions.php:134
|
3740 |
+
#: inc/_ps/hash/wpbc-hash-functions.php:162 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1531
|
3741 |
msgid "Wrong booking hash in URL. Probably hash is expired."
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: core/lib/wpbc_all_translations.php:669 core/lib/wpdev-booking-class.php:1036
|
3745 |
+
#: core/lib/wpdev-booking-class.php:1235 js/wpbc-gutenberg.js:1114 js/wpbc-gutenberg.js:1200
|
3746 |
msgid "You do not set any parameters for booking editing"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
+
#: core/lib/wpbc_all_translations.php:670 core/lib/wpdev-booking-class.php:1038
|
3750 |
+
#: core/lib/wpdev-booking-class.php:1237
|
3751 |
#, php-format
|
3752 |
msgid "Please check more about configuration at %sthis page%s"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: core/lib/wpbc_all_translations.php:671 core/lib/wpdev-booking-widget.php:108
|
3756 |
msgid "Booking form with calendar"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: core/lib/wpbc_all_translations.php:672 core/lib/wpdev-booking-widget.php:109
|
3760 |
msgid "Only availability calendar"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: core/lib/wpbc_all_translations.php:673 core/lib/wpdev-booking-widget.php:150
|
3764 |
msgid "Footer"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: core/lib/wpbc_all_translations.php:674 core/lib/wpdev-booking-widget.php:155
|
3768 |
#, php-format
|
3769 |
msgid "Example: %sMake booking here%s"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: core/lib/wpbc_all_translations.php:675 core/lib/wpdev-booking-widget.php:159
|
3773 |
#: inc/_ps/wpbc-booking-select-widget.php:263
|
3774 |
#, php-format
|
3775 |
msgid ""
|
3777 |
"at the same page, then the last will not be visible."
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: core/lib/wpbc_all_translations.php:676 core/lib/wpdev-booking-widget.php:163
|
3781 |
#, php-format
|
3782 |
msgid "%sSeveral widgets are supported at %spaid versions%s."
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: core/lib/wpbc_all_translations.php:677 core/sync/wpbc-gcal-class.php:300
|
3786 |
msgid "Importing Feed"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: core/lib/wpbc_all_translations.php:678 core/sync/wpbc-gcal-class.php:316
|
3790 |
msgid "Data Parsing"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: core/lib/wpbc_all_translations.php:679 core/sync/wpbc-gcal-class.php:458
|
3794 |
msgid ""
|
3795 |
"Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
|
3796 |
"correct."
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: core/lib/wpbc_all_translations.php:680 core/sync/wpbc-gcal-class.php:465
|
3800 |
msgid "The feed could not be found (404). Please ensure your feed URL is correct."
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: core/lib/wpbc_all_translations.php:681 core/sync/wpbc-gcal-class.php:468
|
3804 |
msgid ""
|
3805 |
"Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
|
3806 |
"calendar."
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: core/lib/wpbc_all_translations.php:682 core/sync/wpbc-gcal-class.php:471
|
3810 |
#, php-format
|
3811 |
msgid ""
|
3812 |
"The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: core/lib/wpbc_all_translations.php:683 core/sync/wpbc-gcal-class.php:644
|
3816 |
+
#: core/sync/wpbc-gcal-class.php:694
|
3817 |
msgid "GID"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: core/lib/wpbc_all_translations.php:684 core/sync/wpbc-gcal-class.php:658
|
3821 |
msgid "Selection"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: core/lib/wpbc_all_translations.php:685 core/sync/wpbc-gcal-class.php:672
|
3825 |
msgid "Location:"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: core/lib/wpbc_all_translations.php:686 core/sync/wpbc-gcal-class.php:702
|
3829 |
msgid "Reload page"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: core/lib/wpbc_all_translations.php:687 core/sync/wpbc-gcal-class.php:715
|
3833 |
msgid "Delete selected booking(s)"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: core/lib/wpbc_all_translations.php:688 core/sync/wpbc-gcal.php:279
|
3837 |
msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: core/lib/wpbc_all_translations.php:689 core/sync/wpbc-gcal.php:399
|
3841 |
msgid "Retrieve Google Calendar Events "
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: core/lib/wpbc_all_translations.php:690 core/sync/wpbc-gcal.php:405
|
3845 |
msgid "Please configure settings for import Google Calendar events"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: core/lib/wpbc_all_translations.php:691 core/sync/wpbc-gcal.php:433
|
3849 |
msgid "Configure"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: core/lib/wpbc_all_translations.php:692 core/wpbc-activation.php:565
|
3853 |
#, php-format
|
3854 |
msgid "%s Found %s not indexed bookings %s"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
+
#: core/lib/wpbc_all_translations.php:693 core/wpbc-activation.php:580
|
3858 |
#, php-format
|
3859 |
msgid "%s Finish getting sort dates. %s"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: core/lib/wpbc_all_translations.php:694 core/wpbc-activation.php:589
|
3863 |
#, php-format
|
3864 |
msgid "Updated booking: %s"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
+
#: core/lib/wpbc_all_translations.php:695 core/wpbc-activation.php:1011
|
3868 |
msgid "Booking form"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: core/lib/wpbc_all_translations.php:696 core/wpbc-activation.php:1106
|
3872 |
#: inc/_ps/admin/page-email-edit.php:310
|
3873 |
msgid "The reservation has been modified"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: core/lib/wpbc_all_translations.php:697 core/wpbc-activation.php:1107
|
3877 |
#: inc/_ps/admin/page-email-edit.php:324
|
3878 |
#, php-format
|
3879 |
msgid ""
|
3881 |
"Thank you, %s"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: core/lib/wpbc_all_translations.php:698 core/wpbc-activation.php:1170
|
3885 |
#: inc/_bs/admin/api-settings-s.php:376
|
3886 |
msgid "Booked Times:"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
+
#: core/lib/wpbc_all_translations.php:699 core/wpbc-activation.php:1190
|
3890 |
msgid ""
|
3891 |
"This booking canceled because we did not receive payment and the administrator did not approve "
|
3892 |
"it."
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: core/lib/wpbc_all_translations.php:700 core/wpbc-activation.php:1222
|
3896 |
#: inc/_bs/admin/page-email-payment.php:314
|
3897 |
msgid "You need to make payment for this reservation"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: core/lib/wpbc_all_translations.php:701 core/wpbc-activation.php:1223
|
3901 |
#: inc/_bs/admin/page-email-payment.php:328
|
3902 |
#, php-format
|
3903 |
msgid ""
|
3905 |
"Thank you, %s"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: core/lib/wpbc_all_translations.php:702 core/wpbc-activation.php:1260
|
3909 |
#: inc/_bm/admin/api-settings-m.php:247
|
3910 |
msgid "Cost: "
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: core/lib/wpbc_all_translations.php:703 core/wpbc-activation.php:1291
|
3914 |
#: inc/_bl/admin/api-settings-l.php:75
|
3915 |
msgid "Available: "
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: core/lib/wpbc_all_translations.php:704 core/wpbc-emails.php:78
|
3919 |
msgid "Booking system"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: core/lib/wpbc_all_translations.php:705 core/wpbc-emails.php:184
|
3923 |
msgid ""
|
3924 |
"You can use (in subject and content of email template) any shortcodes, which you used in the "
|
3925 |
"booking form. Use the shortcodes in the same way as you used them in the content form at "
|
3926 |
"Settings Fields page."
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: core/lib/wpbc_all_translations.php:706 core/wpbc-emails.php:187
|
3930 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
|
3931 |
msgid "You can use following shortcodes in content of this template"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: core/lib/wpbc_all_translations.php:707 core/wpbc-emails.php:191
|
3935 |
+
#: inc/gateways/page-gateways.php:1057
|
3936 |
#, php-format
|
3937 |
msgid ""
|
3938 |
"%s - inserting data info about the booking, which you configured in the content form at Settings "
|
3939 |
"Fields page"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: core/lib/wpbc_all_translations.php:708 core/wpbc-emails.php:193
|
3943 |
#, php-format
|
3944 |
msgid "%s - inserting data info about the booking"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: core/lib/wpbc_all_translations.php:709 core/wpbc-emails.php:197
|
3948 |
#, php-format
|
3949 |
msgid "%s - inserting the dates of booking"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: core/lib/wpbc_all_translations.php:710 core/wpbc-emails.php:201
|
3953 |
#, php-format
|
3954 |
msgid "%s - inserting check-in date (first day of reservation),"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: core/lib/wpbc_all_translations.php:711 core/wpbc-emails.php:205 core/wpbc-emails.php:206
|
3958 |
#, php-format
|
3959 |
msgid "%s - inserting check-out date (last day of reservation),"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: core/lib/wpbc_all_translations.php:712 core/wpbc-emails.php:211
|
3963 |
#, php-format
|
3964 |
msgid "%s - inserting the number of booking dates "
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: core/lib/wpbc_all_translations.php:713 core/wpbc-emails.php:217
|
3968 |
#, php-format
|
3969 |
msgid "%s - inserting ID of booking "
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: core/lib/wpbc_all_translations.php:714 core/wpbc-emails.php:222
|
3973 |
#, php-format
|
3974 |
msgid "%s or %s - inserting the title of the booking resource "
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: core/lib/wpbc_all_translations.php:715 core/wpbc-emails.php:228
|
3978 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
|
3979 |
#, php-format
|
3980 |
msgid "%s - inserting the cost of booking "
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: core/lib/wpbc_all_translations.php:716 core/wpbc-emails.php:234
|
3984 |
#, php-format
|
3985 |
msgid "%s - inserting your site URL "
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: core/lib/wpbc_all_translations.php:717 core/wpbc-emails.php:237
|
3989 |
#, php-format
|
3990 |
msgid "%s - inserting IP address of the user who made this action "
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: core/lib/wpbc_all_translations.php:718 core/wpbc-emails.php:238
|
3994 |
#, php-format
|
3995 |
msgid ""
|
3996 |
"%s - inserting contents of the User-Agent: header from the current request, if there is one "
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: core/lib/wpbc_all_translations.php:719 core/wpbc-emails.php:239
|
4000 |
#, php-format
|
4001 |
msgid "%s - inserting address of the page (if any), where visitor make this action "
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: core/lib/wpbc_all_translations.php:720 core/wpbc-emails.php:243
|
4005 |
#, php-format
|
4006 |
msgid "%s - inserting date of this action "
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: core/lib/wpbc_all_translations.php:721 core/wpbc-emails.php:240
|
4010 |
#, php-format
|
4011 |
msgid "%s - inserting time of this action "
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: core/lib/wpbc_all_translations.php:722 core/wpbc-emails.php:257
|
4015 |
#, php-format
|
4016 |
msgid "%s - inserting moderate link of new booking "
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: core/lib/wpbc_all_translations.php:723 core/wpbc-emails.php:274
|
4020 |
#, php-format
|
4021 |
msgid ""
|
4022 |
"%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
|
4023 |
"parameter for setting different %s of this page. Example: %s )"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: core/lib/wpbc_all_translations.php:724 core/wpbc-emails.php:278
|
4027 |
#, php-format
|
4028 |
msgid ""
|
4029 |
"%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
|
4030 |
"%s parameter for setting different %s of this page. Example: %s )"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: core/lib/wpbc_all_translations.php:725 core/wpbc-emails.php:283
|
4034 |
#, php-format
|
4035 |
msgid ""
|
4036 |
"%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
|
4037 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: core/lib/wpbc_all_translations.php:726 core/wpbc-emails.php:287
|
4041 |
#, php-format
|
4042 |
msgid "%s - add the reason for booking payment, you can enter it before sending email, "
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: core/lib/wpbc_all_translations.php:727 core/wpbc-emails.php:293
|
4046 |
#, php-format
|
4047 |
msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: core/lib/wpbc_all_translations.php:728 core/wpbc-emails.php:301 core/wpbc-translation.php:273
|
4051 |
msgid "Configuration in several languages"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: core/lib/wpbc_all_translations.php:729 core/wpbc-emails.php:302 core/wpbc-translation.php:274
|
4055 |
#, php-format
|
4056 |
msgid "%s - start new translation section, where %s - locale of translation"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: core/lib/wpbc_all_translations.php:730 core/wpbc-emails.php:303 core/wpbc-translation.php:275
|
4060 |
#, php-format
|
4061 |
msgid "Example #1: %s - start French translation section"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: core/lib/wpbc_all_translations.php:731 core/wpbc-emails.php:304 core/wpbc-translation.php:276
|
4065 |
#, php-format
|
4066 |
msgid "Example #2: \"%s\" - English and French translation of some message"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: core/lib/wpbc_all_translations.php:732 core/wpbc-functions.php:1017 inc/_bm/biz_m.php:2053
|
4070 |
msgid "yes"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: core/lib/wpbc_all_translations.php:733 core/wpbc-functions.php:1021
|
4074 |
msgid "no"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: core/lib/wpbc_all_translations.php:734 core/wpbc-functions.php:1921
|
4078 |
+
#: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:586
|
4079 |
msgid "Costs and Rates"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: core/lib/wpbc_all_translations.php:735 core/wpbc-functions.php:1930
|
4083 |
#: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
|
4084 |
#: inc/gateways/page-gateways.php:92
|
4085 |
msgid "Advanced Cost"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: core/lib/wpbc_all_translations.php:736 core/wpbc-functions.php:1939
|
4089 |
#: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
|
4090 |
msgid "Coupons"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: core/lib/wpbc_all_translations.php:737 core/wpbc-functions.php:1957
|
4094 |
#: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
|
4095 |
msgid "Season Filters"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: core/lib/wpbc_all_translations.php:738 core/wpbc-functions.php:2119
|
4099 |
msgid "Warning! Some error occur, during sending registration request."
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: core/lib/wpbc_all_translations.php:739 core/wpbc-functions.php:2124
|
4103 |
msgid ""
|
4104 |
"Please refresh this page and if the same error appear again contact support by email (with info "
|
4105 |
"about order number and website) for finishing the registrations"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: core/lib/wpbc_all_translations.php:740 core/wpbc-functions.php:2152
|
4109 |
#, php-format
|
4110 |
msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
|
4111 |
msgstr ""
|
4112 |
|
4113 |
+
#: core/lib/wpbc_all_translations.php:741 core/wpbc-functions.php:2320
|
4114 |
msgid "Changes saved."
|
4115 |
msgstr ""
|
4116 |
|
4117 |
+
#: core/lib/wpbc_all_translations.php:742 core/wpbc-functions.php:2426
|
4118 |
msgid "Click to toggle"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: core/lib/wpbc_all_translations.php:743 core/wpbc-functions.php:2488
|
4122 |
msgid "Prev"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
+
#: core/lib/wpbc_all_translations.php:744 core/wpbc-functions.php:2848
|
4126 |
msgid "We’ve assembled some links to get you started:"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
+
#: core/lib/wpbc_all_translations.php:745 core/wpbc-functions.php:2851
|
4130 |
msgid "Get Started"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
+
#: core/lib/wpbc_all_translations.php:746 core/wpbc-functions.php:2854
|
4134 |
#, php-format
|
4135 |
msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: core/lib/wpbc_all_translations.php:747 core/wpbc-functions.php:2863
|
4139 |
#, php-format
|
4140 |
msgid "or add booking calendar %sWidget%s to your sidebar."
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: core/lib/wpbc_all_translations.php:748 core/wpbc-functions.php:2869
|
4144 |
#, php-format
|
4145 |
msgid "Check %show todo%s that and what %sshortcodes%s are available."
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: core/lib/wpbc_all_translations.php:749 core/wpbc-functions.php:2876
|
4149 |
#, php-format
|
4150 |
msgid "Add new booking from your post/page or from %sAdmin Panel%s."
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: core/lib/wpbc_all_translations.php:750 core/wpbc-functions.php:2882
|
4154 |
msgid "Next Steps"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: core/lib/wpbc_all_translations.php:751 core/wpbc-functions.php:2885
|
4158 |
#, php-format
|
4159 |
msgid "Check %sBooking Listing%s page for new bookings."
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: core/lib/wpbc_all_translations.php:752 core/wpbc-functions.php:2890
|
4163 |
#, php-format
|
4164 |
msgid "Configure booking %sSettings%s."
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: core/lib/wpbc_all_translations.php:753 core/wpbc-functions.php:2894
|
4168 |
#, php-format
|
4169 |
msgid "Configure predefined set of your %sForm Fields%s."
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: core/lib/wpbc_all_translations.php:754 core/wpbc-functions.php:2898
|
4173 |
#, php-format
|
4174 |
msgid "Configure your predefined %sEmail Templates%s."
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: core/lib/wpbc_all_translations.php:755 core/wpbc-functions.php:2904
|
4178 |
msgid "Have a questions?"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: core/lib/wpbc_all_translations.php:756 core/wpbc-functions.php:2907
|
4182 |
#, php-format
|
4183 |
msgid "Check out our %sHelp%s"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: core/lib/wpbc_all_translations.php:757 core/wpbc-functions.php:2912
|
4187 |
#, php-format
|
4188 |
msgid "See %sFAQ%s."
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: core/lib/wpbc_all_translations.php:758 core/wpbc-functions.php:2917
|
4192 |
#, php-format
|
4193 |
msgid "Still having questions? Contact %sSupport%s."
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: core/lib/wpbc_all_translations.php:759 core/wpbc-functions.php:2925 core/wpbc.php:205
|
4197 |
#, php-format
|
4198 |
msgid "Need even more functionality? Check %s higher versions %s"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
+
#: core/lib/wpbc_all_translations.php:760 core/wpbc-js.php:112
|
4202 |
msgid "This field is required"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: core/lib/wpbc_all_translations.php:761 core/wpbc-js.php:113
|
4206 |
msgid "This checkbox must be checked"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
+
#: core/lib/wpbc_all_translations.php:762 core/wpbc-js.php:114
|
4210 |
msgid "At least one option must be selected"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
+
#: core/lib/wpbc_all_translations.php:763 core/wpbc-js.php:115
|
4214 |
msgid "Incorrect email field"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
+
#: core/lib/wpbc_all_translations.php:764 core/wpbc-js.php:116
|
4218 |
msgid "Your emails do not match"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
+
#: core/lib/wpbc_all_translations.php:765 core/wpbc-js.php:117
|
4222 |
msgid "Please, select booking date(s) at Calendar."
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: core/lib/wpbc_all_translations.php:766 core/wpbc-js.php:132
|
4226 |
msgid "Deleting"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: core/lib/wpbc_all_translations.php:767 core/wpbc-js.php:133
|
4230 |
msgid "Updating"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: core/lib/wpbc_all_translations.php:768 core/wpbc-js.php:134
|
4234 |
msgid "Saving"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: core/lib/wpbc_all_translations.php:769 core/wpbc.php:97
|
4238 |
msgid "Booking"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: core/lib/wpbc_all_translations.php:770 core/wpbc.php:289 core/wpbc.php:296
|
4242 |
msgid "Action is not allowed!"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
+
#: core/lib/wpbc_all_translations.php:771 inc/_bl/admin/activation-l.php:119
|
4246 |
#: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
|
4247 |
+
#: inc/_bl/admin/page-search.php:769 inc/_bm/admin/api-settings-m.php:567 inc/_bm/m-toolbar.php:62
|
4248 |
#: inc/_bm/m-toolbar.php:404 inc/_ps/admin/page-settings-form.php:328
|
4249 |
#: inc/_ps/wpbc-booking-select-widget.php:230
|
4250 |
msgid "Standard"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
+
#: core/lib/wpbc_all_translations.php:772 inc/_bl/admin/activation-l.php:120
|
4254 |
#: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
|
4255 |
#: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
|
4256 |
msgid "Superior"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
+
#: core/lib/wpbc_all_translations.php:773 inc/_bl/admin/activation-l.php:120
|
4260 |
#: inc/_bs/admin/activation-s.php:93
|
4261 |
msgid "Resource #1"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: core/lib/wpbc_all_translations.php:774 inc/_bl/admin/activation-l.php:121
|
4265 |
#: inc/_bl/admin/activation-l.php:125
|
4266 |
msgid "Presidential Suite"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
+
#: core/lib/wpbc_all_translations.php:775 inc/_bl/admin/activation-l.php:121
|
4270 |
#: inc/_bs/admin/activation-s.php:94
|
4271 |
msgid "Resource #2"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#: core/lib/wpbc_all_translations.php:776 inc/_bl/admin/activation-l.php:122
|
4275 |
#: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
|
4276 |
msgid "Royal Villa"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
+
#: core/lib/wpbc_all_translations.php:777 inc/_bl/admin/activation-l.php:122
|
4280 |
#: inc/_bs/admin/activation-s.php:95
|
4281 |
msgid "Resource #3"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: core/lib/wpbc_all_translations.php:778 inc/_bl/admin/api-settings-l.php:34
|
4285 |
msgid ""
|
4286 |
"Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
|
4287 |
"for search results"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
+
#: core/lib/wpbc_all_translations.php:779 inc/_bl/admin/api-settings-l.php:43
|
4291 |
msgid ""
|
4292 |
"Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
|
4293 |
"1 search results"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#: core/lib/wpbc_all_translations.php:780 inc/_bl/admin/api-settings-l.php:66
|
4297 |
msgid "Show availability in tooltip"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
+
#: core/lib/wpbc_all_translations.php:781 inc/_bl/admin/api-settings-l.php:67
|
4301 |
msgid ""
|
4302 |
"Check this box to display the available number of booking resources with a tooltip, when mouse "
|
4303 |
"hovers over each day on the calendar(s)."
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: core/lib/wpbc_all_translations.php:782 inc/_bl/admin/api-settings-l.php:76
|
4307 |
msgid "Availability Title"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: core/lib/wpbc_all_translations.php:783 inc/_bl/admin/api-settings-l.php:77
|
4311 |
#, php-format
|
4312 |
msgid "Type your %savailability%s description"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
+
#: core/lib/wpbc_all_translations.php:784 inc/_bl/admin/api-settings-l.php:110
|
4316 |
#: inc/_bs/admin/api-settings-s.php:516
|
4317 |
msgid "Auto-cancel bookings"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
+
#: core/lib/wpbc_all_translations.php:785 inc/_bl/admin/api-settings-l.php:111
|
4321 |
#: inc/_bl/admin/api-settings-l.php:131
|
4322 |
msgid ""
|
4323 |
"Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
|
4324 |
"date(s)"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
+
#: core/lib/wpbc_all_translations.php:786 inc/_bl/admin/api-settings-l.php:129
|
4328 |
#: inc/_bl/admin/api-settings-l.php:289
|
4329 |
msgid ""
|
4330 |
"Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
|
4332 |
"approved booking, will be automatically canceled!"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#: core/lib/wpbc_all_translations.php:787 inc/_bl/admin/api-settings-l.php:160
|
4336 |
msgid "Set capacity based on number of visitors"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: core/lib/wpbc_all_translations.php:788 inc/_bl/admin/api-settings-l.php:161
|
4340 |
msgid ""
|
4341 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
4342 |
"selected visitors."
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: core/lib/wpbc_all_translations.php:789 inc/_bl/admin/api-settings-l.php:162
|
4346 |
+
#: inc/_ps/admin/api-settings-p.php:330 inc/_ps/admin/api-settings-p.php:343
|
4347 |
#, php-format
|
4348 |
msgid "Please read more info about configuration of this parameter %shere%s"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: core/lib/wpbc_all_translations.php:790 inc/_bl/admin/api-settings-l.php:177
|
4352 |
msgid ""
|
4353 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
4354 |
"resource items remaining for each day."
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: core/lib/wpbc_all_translations.php:791 inc/_bl/admin/api-settings-l.php:180
|
4358 |
#, php-format
|
4359 |
msgid ""
|
4360 |
"Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
|
4361 |
"of visitors specified on the booking form."
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: core/lib/wpbc_all_translations.php:792 inc/_bl/admin/api-settings-l.php:183
|
4365 |
msgid ""
|
4366 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
4367 |
"for the resource, which can be at free booking resource items."
|
4368 |
msgstr ""
|
4369 |
|
4370 |
+
#: core/lib/wpbc_all_translations.php:793 inc/_bl/admin/api-settings-l.php:186
|
4371 |
#, php-format
|
4372 |
msgid ""
|
4373 |
"Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
|
4374 |
"visitors specified on the booking form."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: core/lib/wpbc_all_translations.php:794 inc/_bl/admin/api-settings-l.php:214
|
4378 |
msgid "Disable bookings in different booking resources"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: core/lib/wpbc_all_translations.php:795 inc/_bl/admin/api-settings-l.php:215
|
4382 |
msgid ""
|
4383 |
"Check this box to dissable reservations, which can be stored in different booking resources."
|
4384 |
msgstr ""
|
4385 |
|
4386 |
+
#: core/lib/wpbc_all_translations.php:796 inc/_bl/admin/api-settings-l.php:216
|
4387 |
msgid ""
|
4388 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
4389 |
"show."
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: core/lib/wpbc_all_translations.php:797 inc/_bl/admin/api-settings-l.php:337
|
4393 |
#: inc/_ps/p-toolbar.php:1213
|
4394 |
msgid "Parent"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: core/lib/wpbc_all_translations.php:798 inc/_bl/admin/api-settings-l.php:343
|
4398 |
#: inc/_ps/p-toolbar.php:1231
|
4399 |
msgid "Priority"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: core/lib/wpbc_all_translations.php:799 inc/_bl/admin/api-settings-l.php:350
|
4403 |
msgid "Max visitors"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: core/lib/wpbc_all_translations.php:800 inc/_bl/admin/api-settings-l.php:470
|
4407 |
msgid "Single"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: core/lib/wpbc_all_translations.php:801 inc/_bl/admin/api-settings-l.php:472
|
4411 |
msgid "Child"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: core/lib/wpbc_all_translations.php:802 inc/_bl/admin/page-coupons.php:46
|
4415 |
msgid "Setting coupons for discount"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: core/lib/wpbc_all_translations.php:803 inc/_bl/admin/page-coupons.php:122
|
4419 |
#: inc/_bm/m-toolbar.php:590 inc/_bm/m-toolbar.php:592
|
4420 |
msgid "Create dates filter"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
+
#: core/lib/wpbc_all_translations.php:804 inc/_bl/admin/page-coupons.php:124
|
4424 |
#: inc/_bl/admin/page-coupons.php:871
|
4425 |
msgid "Add New Discount Coupon"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: core/lib/wpbc_all_translations.php:805 inc/_bl/admin/page-coupons.php:214
|
4429 |
#: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
|
4430 |
#: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
|
4431 |
msgid "Bulk Actions"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: core/lib/wpbc_all_translations.php:806 inc/_bl/admin/page-coupons.php:505
|
4435 |
#: inc/_bl/admin/page-coupons.php:1170
|
4436 |
msgid "Coupon Code"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: core/lib/wpbc_all_translations.php:807 inc/_bl/admin/page-coupons.php:511
|
4440 |
#: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
|
4441 |
msgid "Savings"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: core/lib/wpbc_all_translations.php:808 inc/_bl/admin/page-coupons.php:517
|
4445 |
msgid "Minimum Cost"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
+
#: core/lib/wpbc_all_translations.php:809 inc/_bl/admin/page-coupons.php:524
|
4449 |
msgid "Expiration"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
+
#: core/lib/wpbc_all_translations.php:810 inc/_bl/admin/page-coupons.php:533
|
4453 |
msgid "Number of usage"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
+
#: core/lib/wpbc_all_translations.php:811 inc/_bl/admin/page-coupons.php:585
|
4457 |
#: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
|
4458 |
#: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
|
4459 |
+
#: inc/_bm/admin/page-cost.php:648 inc/_bm/admin/page-seasons.php:565
|
4460 |
#: inc/_mu/admin/page-users.php:500 inc/_ps/admin/br-table-export-feeds.php:32
|
4461 |
#: inc/_ps/admin/br-table-import-gcal-p.php:30 inc/_ps/admin/page-resources.php:514
|
4462 |
msgid "Select Booking Resource"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
+
#: core/lib/wpbc_all_translations.php:812 inc/_bl/admin/page-coupons.php:776
|
4466 |
#: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
|
4467 |
#: inc/_ps/p-toolbar.php:722
|
4468 |
msgid "All resources"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: core/lib/wpbc_all_translations.php:813 inc/_bl/admin/page-coupons.php:993
|
4472 |
#: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
|
4473 |
msgid "Coupon"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: core/lib/wpbc_all_translations.php:814 inc/_bl/admin/page-coupons.php:1171
|
4477 |
msgid "Enter coupon code."
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: core/lib/wpbc_all_translations.php:815 inc/_bl/admin/page-coupons.php:1232
|
4481 |
msgid "Enter number of fixed or percentage savings."
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: core/lib/wpbc_all_translations.php:816 inc/_bl/admin/page-coupons.php:1235
|
4485 |
msgid "Expiration Date"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
+
#: core/lib/wpbc_all_translations.php:817 inc/_bl/admin/page-coupons.php:1311
|
4489 |
msgid "Select Expiration Date of the coupon."
|
4490 |
msgstr ""
|
4491 |
|
4492 |
+
#: core/lib/wpbc_all_translations.php:818 inc/_bl/admin/page-coupons.php:1318
|
4493 |
msgid "Minimum Booking Cost"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: core/lib/wpbc_all_translations.php:819 inc/_bl/admin/page-coupons.php:1319
|
4497 |
msgid "Enter minimum booking cost, when coupon is applicable."
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: core/lib/wpbc_all_translations.php:820 inc/_bl/admin/page-coupons.php:1336
|
4501 |
msgid "Maximum number of usage"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: core/lib/wpbc_all_translations.php:821 inc/_bl/admin/page-coupons.php:1337
|
4505 |
msgid "Enter maximum number of times, when coupon is applicable."
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: core/lib/wpbc_all_translations.php:822 inc/_bl/admin/page-coupons.php:1360
|
4509 |
msgid "Select booking resources, where is possible to apply this coupon code."
|
4510 |
msgstr ""
|
4511 |
|
4512 |
+
#: core/lib/wpbc_all_translations.php:823 inc/_bl/admin/page-coupons.php:1378
|
4513 |
#: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
|
4514 |
#: inc/_ps/p-toolbar.php:1157
|
4515 |
msgid "Add New"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: core/lib/wpbc_all_translations.php:824 inc/_bl/admin/page-search.php:87
|
4519 |
#: inc/_bl/admin/page-search.php:126 inc/_ps/admin/page-settings-form.php:662
|
4520 |
+
#: inc/gateways/page-gateways.php:1056
|
4521 |
msgid "Use these shortcodes for customization: "
|
4522 |
msgstr ""
|
4523 |
|
4524 |
+
#: core/lib/wpbc_all_translations.php:825 inc/_bl/admin/page-search.php:88
|
4525 |
#, php-format
|
4526 |
msgid "%s - search inside posts/pages which are part of this category, "
|
4527 |
msgstr ""
|
4528 |
|
4529 |
+
#: core/lib/wpbc_all_translations.php:826 inc/_bl/admin/page-search.php:89
|
4530 |
#, php-format
|
4531 |
msgid "%s - search inside posts/pages which have this tag, "
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: core/lib/wpbc_all_translations.php:827 inc/_bl/admin/page-search.php:90
|
4535 |
#: inc/_bl/admin/page-search.php:142
|
4536 |
#, php-format
|
4537 |
msgid "%s - check-in date, "
|
4538 |
msgstr ""
|
4539 |
|
4540 |
+
#: core/lib/wpbc_all_translations.php:828 inc/_bl/admin/page-search.php:91
|
4541 |
#: inc/_bl/admin/page-search.php:143
|
4542 |
#, php-format
|
4543 |
msgid "%s - check-out date, "
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: core/lib/wpbc_all_translations.php:829 inc/_bl/admin/page-search.php:92
|
4547 |
#, php-format
|
4548 |
msgid "%s - default selection number of visitors, "
|
4549 |
msgstr ""
|
4550 |
|
4551 |
+
#: core/lib/wpbc_all_translations.php:830 inc/_bl/admin/page-search.php:93
|
4552 |
#, php-format
|
4553 |
msgid "Example: %s - custom number of visitor selections\""
|
4554 |
msgstr ""
|
4555 |
|
4556 |
+
#: core/lib/wpbc_all_translations.php:831 inc/_bl/admin/page-search.php:95
|
4557 |
#, php-format
|
4558 |
msgid "%s - search button, "
|
4559 |
msgstr ""
|
4560 |
|
4561 |
+
#: core/lib/wpbc_all_translations.php:832 inc/_bl/admin/page-search.php:96
|
4562 |
#: inc/_bl/admin/page-search.php:148
|
4563 |
msgid "HTML tags is accepted."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: core/lib/wpbc_all_translations.php:833 inc/_bl/admin/page-search.php:127
|
4567 |
#, php-format
|
4568 |
msgid "%s - resource title, "
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: core/lib/wpbc_all_translations.php:834 inc/_bl/admin/page-search.php:128
|
4572 |
#: inc/_bl/admin/page-search.php:129
|
4573 |
#, php-format
|
4574 |
msgid "%s - link to the page with booking form, "
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: core/lib/wpbc_all_translations.php:835 inc/_bl/admin/page-search.php:130
|
4578 |
#, php-format
|
4579 |
msgid "%s - availability of booking resource, "
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: core/lib/wpbc_all_translations.php:836 inc/_bl/admin/page-search.php:131
|
4583 |
#, php-format
|
4584 |
msgid "%s - maximum number of visitors for the booking resource, "
|
4585 |
msgstr ""
|
4586 |
|
4587 |
+
#: core/lib/wpbc_all_translations.php:837 inc/_bl/admin/page-search.php:132
|
4588 |
#, php-format
|
4589 |
msgid "%s - cost of booking the resource, "
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: core/lib/wpbc_all_translations.php:838 inc/_bl/admin/page-search.php:133
|
4593 |
#, php-format
|
4594 |
msgid "%s - featured image, taken from the featured image associated with the post, "
|
4595 |
msgstr ""
|
4596 |
|
4597 |
+
#: core/lib/wpbc_all_translations.php:839 inc/_bl/admin/page-search.php:134
|
4598 |
#, php-format
|
4599 |
msgid "%s - booking info, taken from the excerpt associated with the post, "
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: core/lib/wpbc_all_translations.php:840 inc/_bl/admin/page-search.php:136
|
4603 |
#: inc/_ps/form/class-wpbc-form-help.php:677
|
4604 |
msgid "Full cost of the booking."
|
4605 |
msgstr ""
|
4606 |
|
4607 |
+
#: core/lib/wpbc_all_translations.php:841 inc/_bl/admin/page-search.php:137
|
4608 |
#: inc/_ps/form/class-wpbc-form-help.php:679
|
4609 |
msgid "Cost of the booking for the selected dates only."
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: core/lib/wpbc_all_translations.php:842 inc/_bl/admin/page-search.php:138
|
4613 |
#: inc/_ps/form/class-wpbc-form-help.php:681
|
4614 |
msgid "Additional cost, which depends on the fields selection in the form."
|
4615 |
msgstr ""
|
4616 |
|
4617 |
+
#: core/lib/wpbc_all_translations.php:843 inc/_bl/admin/page-search.php:139
|
4618 |
#: inc/_ps/form/class-wpbc-form-help.php:683
|
4619 |
msgid "The deposit cost of the booking."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: core/lib/wpbc_all_translations.php:844 inc/_bl/admin/page-search.php:140
|
4623 |
#: inc/_ps/form/class-wpbc-form-help.php:685
|
4624 |
msgid "Balance cost of the booking - difference between deposit and full cost."
|
4625 |
msgstr ""
|
4626 |
|
4627 |
+
#: core/lib/wpbc_all_translations.php:845 inc/_bl/admin/page-search.php:155
|
4628 |
msgid "hour(s)"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
+
#: core/lib/wpbc_all_translations.php:846 inc/_bl/admin/page-search.php:158
|
4632 |
#: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
|
4633 |
msgid "day(s)"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: core/lib/wpbc_all_translations.php:847 inc/_bl/admin/page-search.php:163
|
4637 |
msgid "Cache expiration"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: core/lib/wpbc_all_translations.php:848 inc/_bl/admin/page-search.php:164
|
4641 |
msgid "Select time of cache expiration"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: core/lib/wpbc_all_translations.php:849 inc/_bl/admin/page-search.php:353
|
4645 |
+
#: inc/_bl/admin/page-search.php:354
|
4646 |
msgid "Search Settings"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: core/lib/wpbc_all_translations.php:850 inc/_bl/admin/page-search.php:415
|
4650 |
msgid "Cache Updated"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: core/lib/wpbc_all_translations.php:851 inc/_bl/admin/page-search.php:440
|
4654 |
+
#: inc/_bl/admin/page-search.php:486
|
4655 |
msgid "Search Availability Form"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: core/lib/wpbc_all_translations.php:852 inc/_bl/admin/page-search.php:441
|
4659 |
+
#: inc/_bl/admin/page-search.php:504 js/wpbc-gutenberg.js:1001
|
4660 |
msgid "Search Results"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
+
#: core/lib/wpbc_all_translations.php:853 inc/_bl/admin/page-search.php:442
|
4664 |
+
#: inc/_bl/admin/page-search.php:531
|
4665 |
msgid "Search Cache"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: core/lib/wpbc_all_translations.php:854 inc/_bl/admin/page-search.php:478
|
4669 |
#, php-format
|
4670 |
msgid ""
|
4671 |
"If you do not see search results at front-end side of your website, please check troubleshooting "
|
4672 |
"instruction %shere%s"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: core/lib/wpbc_all_translations.php:855 inc/_bl/admin/page-search.php:511
|
4676 |
msgid "CSS customization of search form and search results you can make at this file"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
+
#: core/lib/wpbc_all_translations.php:856 inc/_bl/admin/page-search.php:683
|
4680 |
+
#: inc/_bl/admin/page-search.php:747
|
4681 |
msgid "Select Template"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: core/lib/wpbc_all_translations.php:857
|
4685 |
msgid "Inlinee Search Form Template"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: core/lib/wpbc_all_translations.php:858 inc/_bl/admin/page-search.php:714
|
4689 |
msgid "Horizontal Search Form Template"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: core/lib/wpbc_all_translations.php:859 inc/_bl/admin/page-search.php:724
|
4693 |
msgid "Standard Search Form Template"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
+
#: core/lib/wpbc_all_translations.php:860 inc/_bl/admin/page-search.php:836
|
4697 |
#: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
|
4698 |
#: inc/_ps/admin/page-settings-form.php:496
|
4699 |
msgid "Reset"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: core/lib/wpbc_all_translations.php:861 inc/_bl/admin/page-search.php:837
|
4703 |
#: inc/_ps/admin/page-settings-form.php:497
|
4704 |
msgid "Reset current Form"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
+
#: core/lib/wpbc_all_translations.php:862 inc/_bl/admin/page-search.php:906
|
4708 |
msgid "Cache will expire:"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
+
#: core/lib/wpbc_all_translations.php:863 inc/_bl/admin/page-search.php:936
|
4712 |
#, php-format
|
4713 |
msgid "Found: %s booking forms inside of posts or pages "
|
4714 |
msgstr ""
|
4715 |
|
4716 |
+
#: core/lib/wpbc_all_translations.php:864 inc/_bl/admin/page-search.php:940
|
4717 |
msgid "Page"
|
4718 |
msgstr ""
|
4719 |
|
4720 |
+
#: core/lib/wpbc_all_translations.php:865 inc/_bl/admin/page-search.php:963
|
4721 |
msgid "Reset Search Cache"
|
4722 |
msgstr ""
|
4723 |
|
4724 |
+
#: core/lib/wpbc_all_translations.php:866 inc/_bl/biz_l.php:136
|
4725 |
msgid ""
|
4726 |
"Try selecting fewer visitors. The number of visitors may be more than the number of available "
|
4727 |
"units on selected day(s)!"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: core/lib/wpbc_all_translations.php:867 inc/_bl/biz_l.php:372
|
4731 |
msgid "coupon"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: core/lib/wpbc_all_translations.php:868 inc/_bl/biz_l.php:374
|
4735 |
msgid "discount"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: core/lib/wpbc_all_translations.php:869 inc/_bl/biz_l.php:568
|
4739 |
msgid "Please select check-in and check-out days!"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: core/lib/wpbc_all_translations.php:870 inc/_bl/biz_l.php:1701 inc/_bl/biz_l.php:1712
|
4743 |
+
#: inc/_bl/biz_l.php:1729 inc/_bl/biz_l.php:1734
|
4744 |
#, php-format
|
4745 |
msgid ""
|
4746 |
"Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
|
4748 |
"page and try other days."
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: core/lib/wpbc_all_translations.php:871 inc/_bl/biz_l.php:2311
|
4752 |
#, php-format
|
4753 |
msgid "The folowing pending booking(s): %s deleted."
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: core/lib/wpbc_all_translations.php:872 inc/_bl/wpbc-search-availability.php:858
|
4757 |
msgid "Book now"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: core/lib/wpbc_all_translations.php:873 inc/_bl/wpdev-booking-search-widget.php:14
|
4761 |
#: inc/_bl/wpdev-booking-search-widget.php:67
|
4762 |
msgid "Search availability"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: core/lib/wpbc_all_translations.php:874 inc/_bl/wpdev-booking-search-widget.php:15
|
4766 |
msgid "Search results."
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: core/lib/wpbc_all_translations.php:875 inc/_bl/wpdev-booking-search-widget.php:16
|
4770 |
msgid "Nothing found."
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: core/lib/wpbc_all_translations.php:876 inc/_bl/wpdev-booking-search-widget.php:85
|
4774 |
msgid "Title of search widget"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
+
#: core/lib/wpbc_all_translations.php:877 inc/_bl/wpdev-booking-search-widget.php:93
|
4778 |
msgid "Title of search results"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: core/lib/wpbc_all_translations.php:878 inc/_bl/wpdev-booking-search-widget.php:98
|
4782 |
#, php-format
|
4783 |
msgid "Please type the %sTitle of search results%s."
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: core/lib/wpbc_all_translations.php:879 inc/_bl/wpdev-booking-search-widget.php:102
|
4787 |
msgid "Nothing found message"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: core/lib/wpbc_all_translations.php:880 inc/_bl/wpdev-booking-search-widget.php:107
|
4791 |
#, php-format
|
4792 |
msgid "Please type the %smessage ,what is showing, when nothing found%s."
|
4793 |
msgstr ""
|
4794 |
|
4795 |
+
#: core/lib/wpbc_all_translations.php:881 inc/_bl/wpdev-booking-search-widget.php:111
|
4796 |
msgid "URL of Search Results"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
+
#: core/lib/wpbc_all_translations.php:882 inc/_bl/wpdev-booking-search-widget.php:116
|
4800 |
#, php-format
|
4801 |
msgid ""
|
4802 |
"Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
|
4803 |
"show."
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: core/lib/wpbc_all_translations.php:883 inc/_bm/admin/activation-m.php:48
|
4807 |
#: inc/_mu/multiuser.php:634
|
4808 |
msgid "Weekend"
|
4809 |
msgstr ""
|
4810 |
|
4811 |
+
#: core/lib/wpbc_all_translations.php:884 inc/_bm/admin/activation-m.php:92
|
4812 |
#: inc/_mu/multiuser.php:636
|
4813 |
msgid "High season"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
+
#: core/lib/wpbc_all_translations.php:885 inc/_bm/admin/api-settings-m.php:35
|
4817 |
msgid "Limit available days from today"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: core/lib/wpbc_all_translations.php:886 inc/_bm/admin/api-settings-m.php:36
|
4821 |
msgid "Select number of available days in calendar start from today."
|
4822 |
msgstr ""
|
4823 |
|
4824 |
+
#: core/lib/wpbc_all_translations.php:887 inc/_bm/admin/api-settings-m.php:85
|
4825 |
msgid "Unavailable time before / after booking"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
+
#: core/lib/wpbc_all_translations.php:888 inc/_bm/admin/api-settings-m.php:87
|
4829 |
msgid ""
|
4830 |
"This feature is applying only for bookings for specific timeslots, or if activated check in/out "
|
4831 |
"time option."
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: core/lib/wpbc_all_translations.php:889 inc/_bm/admin/api-settings-m.php:110
|
4835 |
#: inc/_bm/admin/api-settings-m.php:134
|
4836 |
msgid "Before booking"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
+
#: core/lib/wpbc_all_translations.php:890 inc/_bm/admin/api-settings-m.php:111
|
4840 |
#: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
|
4841 |
#: inc/_bm/admin/api-settings-m.php:144
|
4842 |
msgid "Select unavailable time interval."
|
4843 |
msgstr ""
|
4844 |
|
4845 |
+
#: core/lib/wpbc_all_translations.php:891 inc/_bm/admin/api-settings-m.php:119
|
4846 |
#: inc/_bm/admin/api-settings-m.php:143
|
4847 |
msgid "After booking"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: core/lib/wpbc_all_translations.php:892 inc/_bm/admin/api-settings-m.php:170
|
4851 |
msgid "Showing cost in date cell"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: core/lib/wpbc_all_translations.php:893 inc/_bm/admin/api-settings-m.php:171
|
4855 |
#, php-format
|
4856 |
msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: core/lib/wpbc_all_translations.php:894 inc/_bm/admin/api-settings-m.php:188
|
4860 |
msgid "Currency symbol"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
+
#: core/lib/wpbc_all_translations.php:895 inc/_bm/admin/api-settings-m.php:224
|
4864 |
#, php-format
|
4865 |
msgid ""
|
4866 |
"Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
|
4867 |
"currency symbols%s"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: core/lib/wpbc_all_translations.php:896 inc/_bm/admin/api-settings-m.php:237
|
4871 |
msgid "Showing cost in tooltip"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
+
#: core/lib/wpbc_all_translations.php:897 inc/_bm/admin/api-settings-m.php:238
|
4875 |
msgid ""
|
4876 |
" Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
|
4877 |
"calendar(s)."
|
4878 |
msgstr ""
|
4879 |
|
4880 |
+
#: core/lib/wpbc_all_translations.php:898 inc/_bm/admin/api-settings-m.php:246
|
4881 |
msgid "Cost Title"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
+
#: core/lib/wpbc_all_translations.php:899 inc/_bm/admin/api-settings-m.php:248
|
4885 |
#, php-format
|
4886 |
msgid "Type your %scost%s description"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: core/lib/wpbc_all_translations.php:900 inc/_bm/admin/api-settings-m.php:569
|
4890 |
#: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:414
|
4891 |
msgid "Custom Forms"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
+
#: core/lib/wpbc_all_translations.php:901 inc/_bm/admin/page-availability.php:48
|
4895 |
msgid "Configuration of availability for booking resources"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: core/lib/wpbc_all_translations.php:902 inc/_bm/admin/page-availability.php:49
|
4899 |
msgid "Availability Settings"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
+
#: core/lib/wpbc_all_translations.php:903 inc/_bm/admin/page-availability.php:143
|
4903 |
#: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1186
|
4904 |
msgid "Show Children Resources"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
+
#: core/lib/wpbc_all_translations.php:904 inc/_bm/admin/page-availability.php:145
|
4908 |
#: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1188
|
4909 |
msgid "Hide Children Resources"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: core/lib/wpbc_all_translations.php:905 inc/_bm/admin/page-availability.php:239
|
4913 |
#: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
|
4914 |
msgid "Set Availability"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
+
#: core/lib/wpbc_all_translations.php:906 inc/_bm/admin/page-availability.php:253
|
4918 |
#: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
|
4919 |
#, php-format
|
4920 |
msgid ""
|
4922 |
"booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
|
4923 |
msgstr ""
|
4924 |
|
4925 |
+
#: core/lib/wpbc_all_translations.php:907 inc/_bm/admin/page-availability.php:499
|
4926 |
+
#: inc/_bm/admin/page-cost.php:581 inc/_ps/admin/page-resources.php:463
|
4927 |
msgid "Resource Name"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
+
#: core/lib/wpbc_all_translations.php:908 inc/_bm/admin/page-availability.php:608
|
4931 |
#: inc/_bm/admin/page-availability.php:895
|
4932 |
msgid "All days"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: core/lib/wpbc_all_translations.php:909 inc/_bm/admin/page-availability.php:609
|
4936 |
#: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
|
4937 |
#: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
|
4938 |
#: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
|
4939 |
msgid "available"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#: core/lib/wpbc_all_translations.php:910 inc/_bm/admin/page-availability.php:610
|
4943 |
#: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
|
4944 |
#: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
|
4945 |
#: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
|
4946 |
msgid "unavailable"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: core/lib/wpbc_all_translations.php:911 inc/_bm/admin/page-availability.php:635
|
4950 |
#, php-format
|
4951 |
msgid "and %s on seasons:"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
+
#: core/lib/wpbc_all_translations.php:912 inc/_bm/admin/page-availability.php:925
|
4955 |
#, php-format
|
4956 |
msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: core/lib/wpbc_all_translations.php:913 inc/_bm/admin/page-availability.php:943
|
4960 |
#: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
|
4961 |
#: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
|
4962 |
#: inc/_bm/admin/page-cost-valuation.php:148
|
4963 |
msgid "Hide season filters"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
+
#: core/lib/wpbc_all_translations.php:914 inc/_bm/admin/page-availability.php:948
|
4967 |
#: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
|
4968 |
#: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
|
4969 |
#: inc/_bm/admin/page-cost-valuation.php:153
|
4970 |
msgid "Show all exist season filters"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
+
#: core/lib/wpbc_all_translations.php:915 inc/_bm/admin/page-availability.php:981
|
4974 |
+
#: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:859
|
4975 |
msgid "Enabled"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
+
#: core/lib/wpbc_all_translations.php:916 inc/_bm/admin/page-cost-advanced.php:44
|
4979 |
msgid "Customization of additional cost, which depend from form fields"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
+
#: core/lib/wpbc_all_translations.php:917 inc/_bm/admin/page-cost-advanced.php:45
|
4983 |
msgid "Advanced Cost Settings"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
+
#: core/lib/wpbc_all_translations.php:918 inc/_bm/admin/page-cost-advanced.php:125
|
4987 |
msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
|
4988 |
msgstr ""
|
4989 |
|
4990 |
+
#: core/lib/wpbc_all_translations.php:919 inc/_bm/admin/page-cost-advanced.php:127
|
4991 |
#, php-format
|
4992 |
msgid ""
|
4993 |
"Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
|
4994 |
"%sbooking form%s."
|
4995 |
msgstr ""
|
4996 |
|
4997 |
+
#: core/lib/wpbc_all_translations.php:920 inc/_bm/admin/page-cost-advanced.php:441
|
4998 |
#: inc/_bm/admin/page-cost-deposit.php:181
|
4999 |
msgid "Deposit type"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
+
#: core/lib/wpbc_all_translations.php:921 inc/_bm/admin/page-cost-advanced.php:460
|
5003 |
msgid "of total cost"
|
5004 |
msgstr ""
|
5005 |
|
5006 |
+
#: core/lib/wpbc_all_translations.php:922 inc/_bm/admin/page-cost-advanced.php:462
|
5007 |
#: inc/_bs/admin/api-settings-s.php:898
|
5008 |
msgid "night"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: core/lib/wpbc_all_translations.php:923 inc/_bm/admin/page-cost-advanced.php:463
|
5012 |
msgid "as additional sum"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: core/lib/wpbc_all_translations.php:924 inc/_bm/admin/page-cost-advanced.php:658
|
5016 |
msgid "Enter additional cost in formats:"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: core/lib/wpbc_all_translations.php:925 inc/_bm/admin/page-cost-advanced.php:659
|
5020 |
#, php-format
|
5021 |
msgid ""
|
5022 |
"For example, if the original cost of the booking is %s, then after applying additional costs the "
|
5023 |
"total cost will be folowing"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
+
#: core/lib/wpbc_all_translations.php:926 inc/_bm/admin/page-cost-advanced.php:662
|
5027 |
msgid "Enter fixed cost"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
+
#: core/lib/wpbc_all_translations.php:927 inc/_bm/admin/page-cost-advanced.php:662
|
5031 |
#: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
|
5032 |
#: inc/_bm/admin/page-cost-advanced.php:681
|
5033 |
#, php-format
|
5034 |
msgid "%s, then total cost will be %s"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
+
#: core/lib/wpbc_all_translations.php:928 inc/_bm/admin/page-cost-advanced.php:665
|
5038 |
msgid "Enter percentage of the entire booking"
|
5039 |
msgstr ""
|
5040 |
|
5041 |
+
#: core/lib/wpbc_all_translations.php:929 inc/_bm/admin/page-cost-advanced.php:668
|
5042 |
msgid "Enter fixed amount for each selected day"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
+
#: core/lib/wpbc_all_translations.php:930 inc/_bm/admin/page-cost-advanced.php:668
|
5046 |
#, php-format
|
5047 |
msgid "%s, then total cost will be (if selected 3 days) %s"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: core/lib/wpbc_all_translations.php:931 inc/_bm/admin/page-cost-advanced.php:668
|
5051 |
#: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
|
5052 |
#: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
|
5053 |
msgid "or"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
+
#: core/lib/wpbc_all_translations.php:932 inc/_bm/admin/page-cost-advanced.php:671
|
5057 |
msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
+
#: core/lib/wpbc_all_translations.php:933 inc/_bm/admin/page-cost-advanced.php:674
|
5061 |
#: inc/_bm/admin/page-cost-advanced.php:686
|
5062 |
#, php-format
|
5063 |
msgid "Please check more info about configuration of this cost settings on this %spage%s."
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: core/lib/wpbc_all_translations.php:934 inc/_bm/admin/page-cost-deposit.php:73
|
5067 |
msgid "Set Deposit"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: core/lib/wpbc_all_translations.php:935 inc/_bm/admin/page-cost-deposit.php:135
|
5071 |
msgid "deposit payment for booking resource"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: core/lib/wpbc_all_translations.php:936 inc/_bm/admin/page-cost-deposit.php:153
|
5075 |
#: inc/_bm/admin/page-cost-deposit.php:162
|
5076 |
msgid "Deposit amount"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
+
#: core/lib/wpbc_all_translations.php:937 inc/_bm/admin/page-cost-deposit.php:199
|
5080 |
#: inc/_bm/admin/page-cost-early-late-booking.php:203
|
5081 |
#: inc/_bm/admin/page-cost-early-late-booking.php:404
|
5082 |
msgid "fixed total in"
|
5083 |
msgstr ""
|
5084 |
|
5085 |
+
#: core/lib/wpbc_all_translations.php:938 inc/_bm/admin/page-cost-deposit.php:200
|
5086 |
#: inc/_bm/admin/page-cost-early-late-booking.php:204
|
5087 |
#: inc/_bm/admin/page-cost-early-late-booking.php:405
|
5088 |
msgid "of payment"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: core/lib/wpbc_all_translations.php:939 inc/_bm/admin/page-cost-deposit.php:209
|
5092 |
#: inc/_bm/admin/page-cost-early-late-booking.php:213
|
5093 |
#: inc/_bm/admin/page-cost-early-late-booking.php:414
|
5094 |
msgid "Conditions"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
+
#: core/lib/wpbc_all_translations.php:940 inc/_bm/admin/page-cost-deposit.php:219
|
5098 |
#, php-format
|
5099 |
msgid ""
|
5100 |
"Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: core/lib/wpbc_all_translations.php:941 inc/_bm/admin/page-cost-deposit.php:271
|
5104 |
#, php-format
|
5105 |
msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
+
#: core/lib/wpbc_all_translations.php:942 inc/_bm/admin/page-cost-deposit.php:275
|
5109 |
#: inc/_bm/admin/page-cost-early-late-booking.php:280
|
5110 |
#: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
|
5111 |
msgid "Any days"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
+
#: core/lib/wpbc_all_translations.php:943 inc/_bm/admin/page-cost-deposit.php:342
|
5115 |
msgid "Deposit payment total"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
+
#: core/lib/wpbc_all_translations.php:944 inc/_bm/admin/page-cost-rate.php:69
|
5119 |
msgid "Set Rates"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
+
#: core/lib/wpbc_all_translations.php:945 inc/_bm/admin/page-cost-rate.php:163
|
5123 |
+
#: inc/_bm/admin/page-cost.php:676 inc/_bm/admin/page-cost.php:677
|
5124 |
msgid "Rates"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
#: core/lib/wpbc_all_translations.php:946 inc/_bm/admin/page-cost-rate.php:167
|
5128 |
msgid "Seasonal price"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
+
#: core/lib/wpbc_all_translations.php:947 inc/_bm/admin/page-cost-rate.php:171
|
5132 |
#: inc/_bm/admin/page-cost-valuation.php:198
|
5133 |
msgid "Season"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
+
#: core/lib/wpbc_all_translations.php:948 inc/_bm/admin/page-cost-rate.php:215
|
5137 |
#, php-format
|
5138 |
msgid ""
|
5139 |
"Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
|
5140 |
"booking resource (%s) or %sAdd a new seasonal filter%s"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
+
#: core/lib/wpbc_all_translations.php:949 inc/_bm/admin/page-cost-valuation.php:96
|
5144 |
#: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
|
5145 |
msgid "Set Valuation Days"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: core/lib/wpbc_all_translations.php:950 inc/_bm/admin/page-cost-valuation.php:185
|
5149 |
#: inc/_mu/admin/page-users.php:437
|
5150 |
msgid "Status"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
+
#: core/lib/wpbc_all_translations.php:951 inc/_bm/admin/page-cost-valuation.php:194
|
5154 |
msgid "Costs"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
+
#: core/lib/wpbc_all_translations.php:952 inc/_bm/admin/page-cost-valuation.php:249
|
5158 |
msgid "Add new cost"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
+
#: core/lib/wpbc_all_translations.php:953 inc/_bm/admin/page-cost-valuation.php:272
|
5162 |
#, php-format
|
5163 |
msgid ""
|
5164 |
"Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
|
5165 |
"the list."
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: core/lib/wpbc_all_translations.php:954 inc/_bm/admin/page-cost-valuation.php:275
|
5169 |
#, php-format
|
5170 |
msgid ""
|
5171 |
"Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
|
5172 |
"terms %s"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: core/lib/wpbc_all_translations.php:955 inc/_bm/admin/page-cost-valuation.php:275
|
5176 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
|
5177 |
msgid "Together"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
+
#: core/lib/wpbc_all_translations.php:956 inc/_bm/admin/page-cost-valuation.php:275
|
5181 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
|
5182 |
#: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
|
5183 |
msgid "For"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: core/lib/wpbc_all_translations.php:957 inc/_bm/admin/page-cost-valuation.php:278
|
5187 |
#, php-format
|
5188 |
msgid "%s and %s terms have higher priority than a range %s days."
|
5189 |
msgstr ""
|
5190 |
|
5191 |
+
#: core/lib/wpbc_all_translations.php:958 inc/_bm/admin/page-cost-valuation.php:282
|
5192 |
#, php-format
|
5193 |
msgid "%s - definition of check-out date."
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: core/lib/wpbc_all_translations.php:959 inc/_bm/admin/page-cost-valuation.php:284
|
5197 |
#: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
|
5198 |
#: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
|
5199 |
#: inc/_ps/form/class-wpbc-form-help.php:535
|
5200 |
msgid "Example"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
+
#: core/lib/wpbc_all_translations.php:960 inc/_bm/admin/page-cost-valuation.php:291
|
5204 |
msgid ""
|
5205 |
"Specific cost will take affect, only if it active (the box at the left side is checked) and if "
|
5206 |
"\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
|
5207 |
msgstr ""
|
5208 |
|
5209 |
+
#: core/lib/wpbc_all_translations.php:961 inc/_bm/admin/page-cost-valuation.php:335
|
5210 |
#: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
|
5211 |
#: inc/_bm/biz_m.php:252
|
5212 |
msgid " for all days!"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
+
#: core/lib/wpbc_all_translations.php:962 inc/_bm/admin/page-cost-valuation.php:341
|
5216 |
#: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
|
5217 |
msgid "from the cost of 1 day "
|
5218 |
msgstr ""
|
5219 |
|
5220 |
+
#: core/lib/wpbc_all_translations.php:963 inc/_bm/admin/page-cost-valuation.php:342
|
5221 |
#: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
|
5222 |
msgid "per 1 day"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
+
#: core/lib/wpbc_all_translations.php:964 inc/_bm/admin/page-cost-valuation.php:470
|
5226 |
#: inc/_bm/admin/page-seasons.php:1564
|
5227 |
msgid "to"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: core/lib/wpbc_all_translations.php:965 inc/_bm/admin/page-cost-valuation.php:504
|
5231 |
#: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
|
5232 |
#, php-format
|
5233 |
msgid "Additional cost in %s per 1 day"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
+
#: core/lib/wpbc_all_translations.php:966 inc/_bm/admin/page-cost.php:49
|
5237 |
msgid "Customization of rates, valuation days cost and deposit amount "
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: core/lib/wpbc_all_translations.php:967 inc/_bm/admin/page-cost.php:50
|
5241 |
msgid "Costs and Rates Settings"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
+
#: core/lib/wpbc_all_translations.php:968 inc/_bm/admin/page-cost.php:219
|
5245 |
#: inc/_bm/admin/page-cost.php:228
|
5246 |
msgid "Set Rate"
|
5247 |
msgstr ""
|
5248 |
|
5249 |
+
#: core/lib/wpbc_all_translations.php:969 inc/_bm/admin/page-cost.php:221
|
5250 |
#: inc/_bm/admin/page-cost.php:230
|
5251 |
msgid "Set Deposit Amount"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: core/lib/wpbc_all_translations.php:970 inc/_bm/admin/page-cost.php:683
|
5255 |
+
#: inc/_bm/admin/page-cost.php:684
|
5256 |
msgid "Valuation days"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
+
#: core/lib/wpbc_all_translations.php:971 inc/_bm/admin/page-cost.php:690
|
5260 |
+
#: inc/_bm/admin/page-cost.php:691 inc/gateways/page-gateways.php:1423
|
5261 |
msgid "Deposit"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
+
#: core/lib/wpbc_all_translations.php:972 inc/_bm/admin/page-seasons.php:46
|
5265 |
msgid "Customizaton of Season Filters"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
+
#: core/lib/wpbc_all_translations.php:973 inc/_bm/admin/page-seasons.php:680
|
5269 |
#: inc/_bm/admin/page-seasons.php:815
|
5270 |
msgid "Specific Dates Filter"
|
5271 |
msgstr ""
|
5272 |
|
5273 |
+
#: core/lib/wpbc_all_translations.php:974 inc/_bm/admin/page-seasons.php:743
|
5274 |
#: inc/_bm/admin/page-seasons.php:821
|
5275 |
msgid "Conditional Dates Filter"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: core/lib/wpbc_all_translations.php:975 inc/_bm/admin/page-seasons.php:956
|
5279 |
#: inc/_bm/admin/page-seasons.php:1257
|
5280 |
msgid "Filter Name"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
+
#: core/lib/wpbc_all_translations.php:976 inc/_bm/admin/page-seasons.php:957
|
5284 |
#: inc/_bm/admin/page-seasons.php:1258
|
5285 |
msgid "Type filter name"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: core/lib/wpbc_all_translations.php:977 inc/_bm/admin/page-seasons.php:990
|
5289 |
msgid "Weekdays"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: core/lib/wpbc_all_translations.php:978 inc/_bm/admin/page-seasons.php:1106
|
5293 |
msgid "Months"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
+
#: core/lib/wpbc_all_translations.php:979 inc/_bm/admin/page-seasons.php:1108
|
5297 |
#: inc/_bm/admin/page-seasons.php:1283
|
5298 |
msgid "January"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: core/lib/wpbc_all_translations.php:980 inc/_bm/admin/page-seasons.php:1109
|
5302 |
#: inc/_bm/admin/page-seasons.php:1284
|
5303 |
msgid "February"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: core/lib/wpbc_all_translations.php:981 inc/_bm/admin/page-seasons.php:1110
|
5307 |
#: inc/_bm/admin/page-seasons.php:1285
|
5308 |
msgid "March"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: core/lib/wpbc_all_translations.php:982 inc/_bm/admin/page-seasons.php:1111
|
5312 |
#: inc/_bm/admin/page-seasons.php:1286
|
5313 |
msgid "April"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: core/lib/wpbc_all_translations.php:983 inc/_bm/admin/page-seasons.php:1112
|
5317 |
#: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
|
5318 |
msgid "May"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
+
#: core/lib/wpbc_all_translations.php:984 inc/_bm/admin/page-seasons.php:1113
|
5322 |
#: inc/_bm/admin/page-seasons.php:1288
|
5323 |
msgid "June"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: core/lib/wpbc_all_translations.php:985 inc/_bm/admin/page-seasons.php:1114
|
5327 |
#: inc/_bm/admin/page-seasons.php:1289
|
5328 |
msgid "July"
|
5329 |
msgstr ""
|
5330 |
|
5331 |
+
#: core/lib/wpbc_all_translations.php:986 inc/_bm/admin/page-seasons.php:1115
|
5332 |
#: inc/_bm/admin/page-seasons.php:1290
|
5333 |
msgid "August"
|
5334 |
msgstr ""
|
5335 |
|
5336 |
+
#: core/lib/wpbc_all_translations.php:987 inc/_bm/admin/page-seasons.php:1116
|
5337 |
#: inc/_bm/admin/page-seasons.php:1291
|
5338 |
msgid "September"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: core/lib/wpbc_all_translations.php:988 inc/_bm/admin/page-seasons.php:1117
|
5342 |
#: inc/_bm/admin/page-seasons.php:1292
|
5343 |
msgid "October"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: core/lib/wpbc_all_translations.php:989 inc/_bm/admin/page-seasons.php:1118
|
5347 |
#: inc/_bm/admin/page-seasons.php:1293
|
5348 |
msgid "November"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
+
#: core/lib/wpbc_all_translations.php:990 inc/_bm/admin/page-seasons.php:1119
|
5352 |
#: inc/_bm/admin/page-seasons.php:1294
|
5353 |
msgid "December"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
+
#: core/lib/wpbc_all_translations.php:991 inc/_bm/admin/page-seasons.php:1174
|
5357 |
msgid "Years"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
+
#: core/lib/wpbc_all_translations.php:992 inc/_bm/admin/page-seasons.php:1272
|
5361 |
#: inc/_bm/admin/page-seasons.php:1487
|
5362 |
msgid "Mo"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: core/lib/wpbc_all_translations.php:993 inc/_bm/admin/page-seasons.php:1273
|
5366 |
#: inc/_bm/admin/page-seasons.php:1487
|
5367 |
msgid "Tu"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: core/lib/wpbc_all_translations.php:994 inc/_bm/admin/page-seasons.php:1274
|
5371 |
#: inc/_bm/admin/page-seasons.php:1487
|
5372 |
msgid "We"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
+
#: core/lib/wpbc_all_translations.php:995 inc/_bm/admin/page-seasons.php:1275
|
5376 |
#: inc/_bm/admin/page-seasons.php:1487
|
5377 |
msgid "Th"
|
5378 |
msgstr ""
|
5379 |
|
5380 |
+
#: core/lib/wpbc_all_translations.php:996 inc/_bm/admin/page-seasons.php:1276
|
5381 |
#: inc/_bm/admin/page-seasons.php:1487
|
5382 |
msgid "Fr"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
+
#: core/lib/wpbc_all_translations.php:997 inc/_bm/admin/page-seasons.php:1277
|
5386 |
#: inc/_bm/admin/page-seasons.php:1487
|
5387 |
msgid "Sa"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
+
#: core/lib/wpbc_all_translations.php:998 inc/_bm/admin/page-seasons.php:1278
|
5391 |
#: inc/_bm/admin/page-seasons.php:1487
|
5392 |
msgid "Su"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
+
#: core/lib/wpbc_all_translations.php:999 inc/_bm/admin/page-seasons.php:1489
|
5396 |
msgid "Jan"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
+
#: core/lib/wpbc_all_translations.php:1000 inc/_bm/admin/page-seasons.php:1489
|
5400 |
msgid "Feb"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: core/lib/wpbc_all_translations.php:1001 inc/_bm/admin/page-seasons.php:1490
|
5404 |
msgid "Mar"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: core/lib/wpbc_all_translations.php:1002 inc/_bm/admin/page-seasons.php:1490
|
5408 |
msgid "Apr"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: core/lib/wpbc_all_translations.php:1003 inc/_bm/admin/page-seasons.php:1491
|
5412 |
msgid "Jun"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
+
#: core/lib/wpbc_all_translations.php:1004 inc/_bm/admin/page-seasons.php:1491
|
5416 |
msgid "Jul"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: core/lib/wpbc_all_translations.php:1005 inc/_bm/admin/page-seasons.php:1491
|
5420 |
msgid "Aug"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
+
#: core/lib/wpbc_all_translations.php:1006 inc/_bm/admin/page-seasons.php:1492
|
5424 |
msgid "Sep"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
+
#: core/lib/wpbc_all_translations.php:1007 inc/_bm/admin/page-seasons.php:1492
|
5428 |
msgid "Oct"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: core/lib/wpbc_all_translations.php:1008 inc/_bm/admin/page-seasons.php:1492
|
5432 |
msgid "Nov"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
+
#: core/lib/wpbc_all_translations.php:1009 inc/_bm/admin/page-seasons.php:1492
|
5436 |
msgid "Dec"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
+
#: core/lib/wpbc_all_translations.php:1010 inc/_bm/admin/page-seasons.php:1562
|
5440 |
#: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
|
5441 |
#: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
|
5442 |
msgid "No days"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: core/lib/wpbc_all_translations.php:1011 inc/_bm/admin/page-seasons.php:1564
|
5446 |
msgid "time"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
+
#: core/lib/wpbc_all_translations.php:1012 inc/_bm/admin/page-seasons.php:1582
|
5450 |
msgid "Every"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: core/lib/wpbc_all_translations.php:1013 inc/_bm/admin/page-seasons.php:1598
|
5454 |
msgid "Each day "
|
5455 |
msgstr ""
|
5456 |
|
5457 |
+
#: core/lib/wpbc_all_translations.php:1014 inc/_bm/admin/page-seasons.php:1600
|
5458 |
msgid "on each day "
|
5459 |
msgstr ""
|
5460 |
|
5461 |
+
#: core/lib/wpbc_all_translations.php:1015 inc/_bm/admin/page-seasons.php:1605
|
5462 |
msgid "On each "
|
5463 |
msgstr ""
|
5464 |
|
5465 |
+
#: core/lib/wpbc_all_translations.php:1016 inc/_bm/admin/page-seasons.php:1607
|
5466 |
msgid "on each "
|
5467 |
msgstr ""
|
5468 |
|
5469 |
+
#: core/lib/wpbc_all_translations.php:1017 inc/_bm/admin/page-seasons.php:1624
|
5470 |
msgid "of every month "
|
5471 |
msgstr ""
|
5472 |
|
5473 |
+
#: core/lib/wpbc_all_translations.php:1018 inc/_bm/admin/page-seasons.php:1628
|
5474 |
msgid "of"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
+
#: core/lib/wpbc_all_translations.php:1019 inc/_bm/biz_m.php:220
|
5478 |
msgid "for all days!"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: core/lib/wpbc_all_translations.php:1020 inc/_bm/biz_m.php:764
|
5482 |
msgid "Standard booking resource cost"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
+
#: core/lib/wpbc_all_translations.php:1021 inc/_bm/biz_m.php:765
|
5486 |
msgid "Total booking resource cost"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: core/lib/wpbc_all_translations.php:1022 inc/_bm/m-toolbar.php:288
|
5490 |
msgid "Delete selected booking form"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
+
#: core/lib/wpbc_all_translations.php:1023 inc/_bm/m-toolbar.php:292
|
5494 |
msgid "Do you really want to delete selected booking form ?"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
+
#: core/lib/wpbc_all_translations.php:1024 inc/_bm/m-toolbar.php:317 inc/_bm/m-toolbar.php:318
|
5498 |
msgid "Add New Custom Form"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
+
#: core/lib/wpbc_all_translations.php:1025 inc/_bm/m-toolbar.php:351
|
5502 |
msgid "Type the name of booking form"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
+
#: core/lib/wpbc_all_translations.php:1026 inc/_bm/m-toolbar.php:358
|
5506 |
msgid "Create"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: core/lib/wpbc_all_translations.php:1027 inc/_bm/m-toolbar.php:359
|
5510 |
msgid "Create new form"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
+
#: core/lib/wpbc_all_translations.php:1028 inc/_bm/m-toolbar.php:554
|
5514 |
msgid "There are no extended booking forms"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
+
#: core/lib/wpbc_all_translations.php:1029 inc/_bm/m-toolbar.php:598 inc/_bm/m-toolbar.php:600
|
5518 |
msgid "Create conditional days filter"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
+
#: core/lib/wpbc_all_translations.php:1030 inc/_bs/admin/activation-s.php:93
|
5522 |
#: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
|
5523 |
msgid "Apartment#1"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: core/lib/wpbc_all_translations.php:1031 inc/_bs/admin/activation-s.php:94
|
5527 |
#: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
|
5528 |
msgid "Apartment#2"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: core/lib/wpbc_all_translations.php:1032 inc/_bs/admin/activation-s.php:95
|
5532 |
#: inc/_ps/admin/activation-p.php:48
|
5533 |
msgid "Apartment#3"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: core/lib/wpbc_all_translations.php:1033 inc/_bs/admin/api-settings-s.php:31
|
5537 |
msgid "Range days"
|
5538 |
msgstr ""
|
5539 |
|
5540 |
+
#: core/lib/wpbc_all_translations.php:1034 inc/_bs/admin/api-settings-s.php:46
|
5541 |
#, php-format
|
5542 |
msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: core/lib/wpbc_all_translations.php:1035 inc/_bs/admin/api-settings-s.php:48
|
5546 |
#, php-format
|
5547 |
msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: core/lib/wpbc_all_translations.php:1036 inc/_bs/admin/api-settings-s.php:74
|
5551 |
#: inc/_bs/admin/api-settings-s.php:138
|
5552 |
msgid "Days selection number"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: core/lib/wpbc_all_translations.php:1037 inc/_bs/admin/api-settings-s.php:75
|
5556 |
#, php-format
|
5557 |
msgid "Type your %snumber of days for range selection%s"
|
5558 |
msgstr ""
|
5559 |
|
5560 |
+
#: core/lib/wpbc_all_translations.php:1038 inc/_bs/admin/api-settings-s.php:83
|
5561 |
#: inc/_bs/admin/api-settings-s.php:211
|
5562 |
msgid "Specific day(s) of week"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: core/lib/wpbc_all_translations.php:1039 inc/_bs/admin/api-settings-s.php:84
|
5566 |
#: inc/_bs/admin/api-settings-s.php:215
|
5567 |
msgid "Any day of week"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: core/lib/wpbc_all_translations.php:1040 inc/_bs/admin/api-settings-s.php:90
|
5571 |
#: inc/_bs/admin/api-settings-s.php:223
|
5572 |
msgid "Start day of range"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: core/lib/wpbc_all_translations.php:1041 inc/_bs/admin/api-settings-s.php:119
|
5576 |
#: inc/_bs/admin/api-settings-s.php:252
|
5577 |
msgid "Select your start day of range selection at week"
|
5578 |
msgstr ""
|
5579 |
|
5580 |
+
#: core/lib/wpbc_all_translations.php:1042 inc/_bs/admin/api-settings-s.php:152
|
5581 |
#: inc/_bs/admin/api-settings-s.php:157
|
5582 |
msgid "Min"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: core/lib/wpbc_all_translations.php:1043 inc/_bs/admin/api-settings-s.php:170
|
5586 |
#: inc/_bs/admin/api-settings-s.php:175
|
5587 |
msgid "Max"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: core/lib/wpbc_all_translations.php:1044 inc/_bs/admin/api-settings-s.php:187
|
5591 |
#, php-format
|
5592 |
msgid "Select your %sminimum and maximum number of days for range selection%s"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: core/lib/wpbc_all_translations.php:1045 inc/_bs/admin/api-settings-s.php:198
|
5596 |
msgid "Specific days selections"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: core/lib/wpbc_all_translations.php:1046 inc/_bs/admin/api-settings-s.php:200
|
5600 |
#, php-format
|
5601 |
msgid ""
|
5602 |
"Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
|
5604 |
"this: %s) or combination (example:%s, its the same like this: %s)"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: core/lib/wpbc_all_translations.php:1047 inc/_bs/admin/api-settings-s.php:281
|
5608 |
msgid "Use time selections as recurrent time slots"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
+
#: core/lib/wpbc_all_translations.php:1048 inc/_bs/admin/api-settings-s.php:282
|
5612 |
msgid ""
|
5613 |
"Check this box if you want to use recurrent time to reserve several days. This means that middle "
|
5614 |
"days will be partially booked by actual times, otherwise the time in the booking form will be "
|
5615 |
"used as check-in/check-out time for the first and last day of the reservation."
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: core/lib/wpbc_all_translations.php:1049 inc/_bs/admin/api-settings-s.php:315
|
5619 |
msgid "Check this option, to use check in/out time during booking process. "
|
5620 |
msgstr ""
|
5621 |
|
5622 |
+
#: core/lib/wpbc_all_translations.php:1050 inc/_bs/admin/api-settings-s.php:316
|
5623 |
#, php-format
|
5624 |
msgid "%s Important!%s This will overwrite any times selection in your booking form."
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: core/lib/wpbc_all_translations.php:1051 inc/_bs/admin/api-settings-s.php:323
|
5628 |
msgid "Check-in time"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: core/lib/wpbc_all_translations.php:1052 inc/_bs/admin/api-settings-s.php:324
|
5632 |
#, php-format
|
5633 |
msgid "Type your %sCheck-in%s time of booking"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
+
#: core/lib/wpbc_all_translations.php:1053 inc/_bs/admin/api-settings-s.php:336
|
5637 |
msgid "Check-Out time"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
+
#: core/lib/wpbc_all_translations.php:1054 inc/_bs/admin/api-settings-s.php:337
|
5641 |
#, php-format
|
5642 |
msgid "Type your %sCheck-Out%s time of booking"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: core/lib/wpbc_all_translations.php:1055 inc/_bs/admin/api-settings-s.php:351
|
5646 |
msgid "Change over days as triangles"
|
5647 |
msgstr ""
|
5648 |
|
5649 |
+
#: core/lib/wpbc_all_translations.php:1056 inc/_bs/admin/api-settings-s.php:352
|
5650 |
msgid "Check this option, to show change over days as triangles. "
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: core/lib/wpbc_all_translations.php:1057 inc/_bs/admin/api-settings-s.php:377
|
5654 |
msgid "Title of booked timeslot(s)"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
+
#: core/lib/wpbc_all_translations.php:1058 inc/_bs/admin/api-settings-s.php:378
|
5658 |
#, php-format
|
5659 |
msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
+
#: core/lib/wpbc_all_translations.php:1059 inc/_bs/admin/api-settings-s.php:418
|
5663 |
msgid "Time Format"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: core/lib/wpbc_all_translations.php:1060 inc/_bs/admin/api-settings-s.php:452
|
5667 |
#, php-format
|
5668 |
msgid ""
|
5669 |
"Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: core/lib/wpbc_all_translations.php:1061 inc/_bs/admin/api-settings-s.php:478
|
5673 |
msgid "Auto approve all new bookings"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: core/lib/wpbc_all_translations.php:1062 inc/_bs/admin/api-settings-s.php:479
|
5677 |
#, php-format
|
5678 |
msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
|
5679 |
msgstr ""
|
5680 |
|
5681 |
+
#: core/lib/wpbc_all_translations.php:1063 inc/_bs/admin/api-settings-s.php:517
|
5682 |
#, php-format
|
5683 |
msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
|
5684 |
msgstr ""
|
5685 |
|
5686 |
+
#: core/lib/wpbc_all_translations.php:1064 inc/_bs/admin/api-settings-s.php:541
|
5687 |
msgid "Cancel bookings older"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
+
#: core/lib/wpbc_all_translations.php:1065 inc/_bs/admin/api-settings-s.php:542
|
5691 |
msgid "Cancel only pending, unpaid bookings, which are older than this selection."
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: core/lib/wpbc_all_translations.php:1066 inc/_bs/admin/api-settings-s.php:550
|
5695 |
msgid "Cancellation email sent"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: core/lib/wpbc_all_translations.php:1067 inc/_bs/admin/api-settings-s.php:551
|
5699 |
#, php-format
|
5700 |
msgid "Check this box to %ssend%s cancellation email for this resource."
|
5701 |
msgstr ""
|
5702 |
|
5703 |
+
#: core/lib/wpbc_all_translations.php:1068 inc/_bs/admin/api-settings-s.php:559
|
5704 |
#: inc/_bs/admin/api-settings-s.php:560
|
5705 |
msgid "Reason for cancellation"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: core/lib/wpbc_all_translations.php:1069 inc/_bs/admin/api-settings-s.php:561
|
5709 |
#, php-format
|
5710 |
msgid "Type the reason for %scancellation%s for the email template."
|
5711 |
msgstr ""
|
5712 |
|
5713 |
+
#: core/lib/wpbc_all_translations.php:1070 inc/_bs/admin/page-email-payment.php:560
|
5714 |
msgid "Payment request"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
+
#: core/lib/wpbc_all_translations.php:1071 inc/_bs/admin/page-email-payment.php:562
|
5718 |
msgid "Customization of email template, which is sending to Visitor after payment request"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
+
#: core/lib/wpbc_all_translations.php:1072
|
5722 |
msgid "Email with Payment Request which is sending to Visitor."
|
5723 |
msgstr ""
|
5724 |
|
5725 |
+
#: core/lib/wpbc_all_translations.php:1073 core/wpbc-js.php:136
|
5726 |
msgid "Error! Please reset your check-in/check-out dates above."
|
5727 |
msgstr ""
|
5728 |
|
5729 |
+
#: core/lib/wpbc_all_translations.php:1074 core/wpbc-js.php:137
|
5730 |
msgid ""
|
5731 |
"Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
|
5732 |
"another date or time."
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: core/lib/wpbc_all_translations.php:1075 core/wpbc-js.php:138
|
5736 |
msgid ""
|
5737 |
"End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
|
5738 |
"also be earlier that the start time, if only 1 day was selected! Please choose another date or "
|
5739 |
"time."
|
5740 |
msgstr ""
|
5741 |
|
5742 |
+
#: core/lib/wpbc_all_translations.php:1076 core/wpbc-js.php:139 core/wpbc-js.php:140
|
5743 |
msgid "The time(s) may be booked, or already in the past!"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
+
#: core/lib/wpbc_all_translations.php:1077 inc/_bs/biz_s.php:408
|
5747 |
msgid "Cost saved successfully"
|
5748 |
msgstr ""
|
5749 |
|
5750 |
+
#: core/lib/wpbc_all_translations.php:1078 inc/_bs/biz_s.php:415
|
5751 |
msgid "Cost is not correct. It must be greater than 0"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
+
#: core/lib/wpbc_all_translations.php:1079 inc/_bs/biz_s.php:600
|
5755 |
msgid "Request has been sent"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
+
#: core/lib/wpbc_all_translations.php:1080 inc/_bs/biz_s.php:607
|
5759 |
msgid "Request has failed"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
+
#: core/lib/wpbc_all_translations.php:1081 inc/_bs/biz_s.php:638
|
5763 |
msgid "The payment status is changed successfully"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
+
#: core/lib/wpbc_all_translations.php:1082 inc/_bs/biz_s.php:645
|
5767 |
msgid "The changing of payment status is failed"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
+
#: core/lib/wpbc_all_translations.php:1083 inc/_bs/biz_s.php:1022
|
5771 |
msgid "deposit"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
+
#: core/lib/wpbc_all_translations.php:1084 inc/_bs/biz_s.php:1023
|
5775 |
msgid "Total cost"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: core/lib/wpbc_all_translations.php:1085 inc/_bs/biz_s.php:1024
|
5779 |
msgid "balance"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
+
#: core/lib/wpbc_all_translations.php:1086 inc/_bs/lib_s.php:40 inc/_bs/lib_s.php:71
|
5783 |
#: inc/_bs/s-toolbar.php:94
|
5784 |
msgid "Payment status"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
+
#: core/lib/wpbc_all_translations.php:1087 inc/_bs/lib_s.php:44
|
5788 |
msgid "Any Status"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: core/lib/wpbc_all_translations.php:1088 inc/_bs/lib_s.php:47
|
5792 |
msgid "Unknown Status"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: core/lib/wpbc_all_translations.php:1089 inc/_bs/lib_s.php:48 inc/_bs/lib_s.php:323
|
5796 |
msgid "Not Completed"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: core/lib/wpbc_all_translations.php:1090 inc/_bs/lib_s.php:49 inc/_bs/lib_s.php:312
|
5800 |
#: inc/_bs/lib_s.php:332
|
5801 |
msgid "Failed"
|
5802 |
msgstr ""
|
5803 |
|
5804 |
+
#: core/lib/wpbc_all_translations.php:1091 inc/_bs/lib_s.php:139
|
5805 |
msgid "min"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
+
#: core/lib/wpbc_all_translations.php:1092 inc/_bs/lib_s.php:139
|
5809 |
msgid "max"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
+
#: core/lib/wpbc_all_translations.php:1093 inc/_bs/lib_s.php:267 inc/_bs/lib_s.php:307
|
5813 |
#: inc/_bs/lib_s.php:325
|
5814 |
msgid "Completed"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
+
#: core/lib/wpbc_all_translations.php:1094 inc/_bs/lib_s.php:308 inc/_bs/lib_s.php:328
|
5818 |
msgid "In-Progress"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
+
#: core/lib/wpbc_all_translations.php:1095 inc/_bs/lib_s.php:310 inc/_bs/lib_s.php:345
|
5822 |
msgid "Partially paid"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
+
#: core/lib/wpbc_all_translations.php:1096 inc/_bs/lib_s.php:311 inc/_bs/lib_s.php:346
|
5826 |
msgid "Cancelled"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: core/lib/wpbc_all_translations.php:1097 inc/_bs/lib_s.php:313 inc/_bs/lib_s.php:334
|
5830 |
msgid "Refunded"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: core/lib/wpbc_all_translations.php:1098 inc/_bs/lib_s.php:314 inc/_bs/lib_s.php:347
|
5834 |
msgid "Fraud"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: core/lib/wpbc_all_translations.php:1099 inc/_bs/lib_s.php:321
|
5838 |
msgid "!Paid OK"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: core/lib/wpbc_all_translations.php:1100 inc/_bs/lib_s.php:322
|
5842 |
msgid "Unknown status"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
+
#: core/lib/wpbc_all_translations.php:1101 inc/_bs/lib_s.php:327
|
5846 |
msgid "Processed"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
+
#: core/lib/wpbc_all_translations.php:1102 inc/_bs/lib_s.php:329
|
5850 |
msgid "Canceled_Reversal"
|
5851 |
msgstr ""
|
5852 |
|
5853 |
+
#: core/lib/wpbc_all_translations.php:1103 inc/_bs/lib_s.php:330
|
5854 |
msgid "Denied"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
+
#: core/lib/wpbc_all_translations.php:1104 inc/_bs/lib_s.php:331
|
5858 |
msgid "Expired"
|
5859 |
msgstr ""
|
5860 |
|
5861 |
+
#: core/lib/wpbc_all_translations.php:1105 inc/_bs/lib_s.php:333
|
5862 |
msgid "Partially_Refunded"
|
5863 |
msgstr ""
|
5864 |
|
5865 |
+
#: core/lib/wpbc_all_translations.php:1106 inc/_bs/lib_s.php:335
|
5866 |
msgid "Reversed"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
+
#: core/lib/wpbc_all_translations.php:1107 inc/_bs/lib_s.php:336
|
5870 |
msgid "Voided"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
+
#: core/lib/wpbc_all_translations.php:1108 inc/_bs/lib_s.php:339
|
5874 |
msgid "Not authed"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
+
#: core/lib/wpbc_all_translations.php:1109 inc/_bs/lib_s.php:340
|
5878 |
msgid "Malformed"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
+
#: core/lib/wpbc_all_translations.php:1110 inc/_bs/lib_s.php:341
|
5882 |
msgid "Invalid"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
+
#: core/lib/wpbc_all_translations.php:1111 inc/_bs/lib_s.php:342
|
5886 |
msgid "Abort"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
+
#: core/lib/wpbc_all_translations.php:1112 inc/_bs/lib_s.php:343
|
5890 |
msgid "Rejected"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
+
#: core/lib/wpbc_all_translations.php:1113 inc/_bs/lib_s.php:348
|
5894 |
msgid "Suspended"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
+
#: core/lib/wpbc_all_translations.php:1114 inc/_bs/s-toolbar.php:68
|
5898 |
msgid "Send payment request to visitor"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
+
#: core/lib/wpbc_all_translations.php:1115 core/timeline/v2/wpbc-class-timeline_v2.php:2647
|
5902 |
#: inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:131 inc/_ps/p-toolbar.php:507
|
5903 |
msgid "Print"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: core/lib/wpbc_all_translations.php:1116 inc/_bs/s-toolbar.php:136
|
5907 |
msgid "Save cost"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
+
#: core/lib/wpbc_all_translations.php:1117 inc/_bs/s-toolbar.php:173
|
5911 |
msgid "Change status"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
+
#: core/lib/wpbc_all_translations.php:1118 inc/_bs/s-toolbar.php:196
|
5915 |
msgid "Send payment request to customer"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
+
#: core/lib/wpbc_all_translations.php:1119 inc/_bs/s-toolbar.php:200
|
5919 |
#, php-format
|
5920 |
msgid "Type your %sreason for payment%s request"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: core/lib/wpbc_all_translations.php:1120 inc/_bs/s-toolbar.php:208
|
5924 |
msgid "Send Request"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: core/lib/wpbc_all_translations.php:1121 inc/_bs/s-toolbar.php:230
|
5928 |
msgid "Auto-fill form"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: core/lib/wpbc_all_translations.php:1122 inc/_mu/admin/activation-u.php:84
|
5932 |
msgid "Suite"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
+
#: core/lib/wpbc_all_translations.php:1123 inc/_mu/admin/api-settings-u.php:91
|
5936 |
#: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
|
5937 |
msgid "User"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: core/lib/wpbc_all_translations.php:1124 inc/_mu/admin/api-settings-u.php:437
|
5941 |
#: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
|
5942 |
#: inc/_mu/admin/page-users.php:599
|
5943 |
msgid "Super Admin"
|
5944 |
msgstr ""
|
5945 |
|
5946 |
+
#: core/lib/wpbc_all_translations.php:1125 inc/_mu/admin/api-settings-u.php:441
|
5947 |
#: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
|
5948 |
#: inc/_mu/admin/page-users.php:607
|
5949 |
msgid "Regular User"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: core/lib/wpbc_all_translations.php:1126 inc/_mu/admin/api-settings-u.php:446
|
5953 |
msgid "Inactive User"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
+
#: core/lib/wpbc_all_translations.php:1127 inc/_mu/admin/page-users.php:43
|
5957 |
#: inc/_mu/admin/page-users.php:433
|
5958 |
msgid "Users"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
+
#: core/lib/wpbc_all_translations.php:1128 inc/_mu/admin/page-users.php:44
|
5962 |
msgid "Manage Users"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
+
#: core/lib/wpbc_all_translations.php:1129 inc/_mu/admin/page-users.php:45
|
5966 |
msgid "Users Settings"
|
5967 |
msgstr ""
|
5968 |
|
5969 |
+
#: core/lib/wpbc_all_translations.php:1130 inc/_mu/admin/page-users.php:209
|
5970 |
#: inc/_mu/multiuser.php:649
|
5971 |
msgid "User is Activated"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
+
#: core/lib/wpbc_all_translations.php:1131 inc/_mu/admin/page-users.php:237
|
5975 |
#: inc/_mu/multiuser.php:699
|
5976 |
msgid "User is Deactivated"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: core/lib/wpbc_all_translations.php:1132 inc/_mu/admin/page-users.php:441
|
5980 |
msgid "User Role"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: core/lib/wpbc_all_translations.php:1133 inc/_mu/admin/page-users.php:452
|
5984 |
#: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
|
5985 |
msgid "Set user as"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: core/lib/wpbc_all_translations.php:1134 inc/_mu/admin/page-users.php:548
|
5989 |
msgid "Unlimited"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
+
#: core/lib/wpbc_all_translations.php:1135 inc/_mu/admin/page-users.php:560
|
5993 |
#: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
|
5994 |
#: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
|
5995 |
#: inc/_mu/admin/page-users.php:602
|
5996 |
msgid "Do you really want"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
+
#: core/lib/wpbc_all_translations.php:1136 inc/_mu/admin/page-users.php:561
|
6000 |
msgid "make user active"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
+
#: core/lib/wpbc_all_translations.php:1137 inc/_mu/admin/page-users.php:565
|
6004 |
msgid "Activate"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
+
#: core/lib/wpbc_all_translations.php:1138 inc/_mu/admin/page-users.php:569
|
6008 |
msgid "make user inactive"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
+
#: core/lib/wpbc_all_translations.php:1139 inc/_mu/admin/page-users.php:572
|
6012 |
msgid "Deactivate"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
+
#: core/lib/wpbc_all_translations.php:1140 inc/_mu/admin/page-users.php:575
|
6016 |
msgid "delete configuration"
|
6017 |
msgstr ""
|
6018 |
|
6019 |
+
#: core/lib/wpbc_all_translations.php:1141 inc/_mu/admin/page-users.php:579
|
6020 |
msgid "Delete settings"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
+
#: core/lib/wpbc_all_translations.php:1142 inc/_mu/admin/page-users.php:582
|
6024 |
msgid "delete all booking data"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
+
#: core/lib/wpbc_all_translations.php:1143 inc/_mu/admin/page-users.php:586
|
6028 |
msgid "Delete data"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
+
#: core/lib/wpbc_all_translations.php:1144 inc/_mu/multiuser.php:635
|
6032 |
msgid "Work days"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: core/lib/wpbc_all_translations.php:1145 inc/_mu/multiuser.php:768
|
6036 |
#, php-format
|
6037 |
msgid ""
|
6038 |
"%sYou do not have permissions for this page.%s Your account is not active, please contact "
|
6039 |
"administrator.%s"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
+
#: core/lib/wpbc_all_translations.php:1146 inc/_mu/multiuser.php:807
|
6043 |
#, php-format
|
6044 |
msgid "%sYou do not have permissions for this booking resources.%s"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
+
#: core/lib/wpbc_all_translations.php:1147 inc/_mu/multiuser.php:813
|
6048 |
#, php-format
|
6049 |
msgid "%sNo this booking resources.%s"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
+
#: core/lib/wpbc_all_translations.php:1148 inc/_ps/admin/activation-p.php:52
|
6053 |
msgid "Please, reserve an apartment with fresh flowers."
|
6054 |
msgstr ""
|
6055 |
|
6056 |
+
#: core/lib/wpbc_all_translations.php:1149 inc/_ps/admin/api-settings-p.php:56
|
6057 |
msgid "Default booking resource"
|
6058 |
msgstr ""
|
6059 |
|
6060 |
+
#: core/lib/wpbc_all_translations.php:1150 inc/_ps/admin/api-settings-p.php:57
|
6061 |
msgid "Select your default booking resource."
|
6062 |
msgstr ""
|
6063 |
|
6064 |
+
#: core/lib/wpbc_all_translations.php:1151 inc/_ps/admin/api-settings-p.php:70
|
6065 |
msgid "Resources number per page"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
+
#: core/lib/wpbc_all_translations.php:1152 inc/_ps/admin/api-settings-p.php:71
|
6069 |
msgid "Select number of booking resources (single or parent) per page at Resource menu page"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: core/lib/wpbc_all_translations.php:1153 inc/_ps/admin/api-settings-p.php:183
|
6073 |
#: inc/_ps/admin/api-settings-p.php:197
|
6074 |
msgid "Booking title"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: core/lib/wpbc_all_translations.php:1154 inc/_ps/admin/api-settings-p.php:183
|
6078 |
msgid "admin panel"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: core/lib/wpbc_all_translations.php:1155 inc/_ps/admin/api-settings-p.php:184
|
6082 |
#, php-format
|
6083 |
msgid ""
|
6084 |
"Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
|
6085 |
"the shortcodes from the bottom form of Settings Fields page)."
|
6086 |
msgstr ""
|
6087 |
|
6088 |
+
#: core/lib/wpbc_all_translations.php:1156
|
6089 |
msgid "front panel"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: core/lib/wpbc_all_translations.php:1157 inc/_ps/admin/api-settings-p.php:198
|
6093 |
#, php-format
|
6094 |
msgid ""
|
6095 |
"Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
|
6096 |
"from the bottom form of Settings Fields page."
|
6097 |
msgstr ""
|
6098 |
|
6099 |
+
#: core/lib/wpbc_all_translations.php:1158 inc/_ps/admin/api-settings-p.php:206
|
6100 |
msgid "Booking details in popover"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: core/lib/wpbc_all_translations.php:1159 inc/_ps/admin/api-settings-p.php:207
|
6104 |
#, php-format
|
6105 |
msgid ""
|
6106 |
"Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
|
6107 |
"side."
|
6108 |
msgstr ""
|
6109 |
|
6110 |
+
#: core/lib/wpbc_all_translations.php:1160 inc/_ps/admin/api-settings-p.php:228
|
6111 |
msgid "semicolon"
|
6112 |
msgstr ""
|
6113 |
|
6114 |
+
#: core/lib/wpbc_all_translations.php:1161 inc/_ps/admin/api-settings-p.php:229
|
6115 |
msgid "comma"
|
6116 |
msgstr ""
|
6117 |
|
6118 |
+
#: core/lib/wpbc_all_translations.php:1162 inc/_ps/admin/api-settings-p.php:234
|
6119 |
msgid "CSV data separator"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
+
#: core/lib/wpbc_all_translations.php:1163 inc/_ps/admin/api-settings-p.php:235
|
6123 |
msgid "Select separator of data for export bookings to CSV."
|
6124 |
msgstr ""
|
6125 |
|
6126 |
+
#: core/lib/wpbc_all_translations.php:1164 inc/_ps/admin/api-settings-p.php:327
|
6127 |
#: js/wpbc-gutenberg.js:1096
|
6128 |
msgid "URL to edit bookings"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: core/lib/wpbc_all_translations.php:1165 inc/_ps/admin/api-settings-p.php:328
|
6132 |
#, php-format
|
6133 |
msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
|
6134 |
msgstr ""
|
6135 |
|
6136 |
+
#: core/lib/wpbc_all_translations.php:1166 inc/_ps/admin/api-settings-p.php:352
|
6137 |
msgid "Change hash after the booking is approved"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
+
#: core/lib/wpbc_all_translations.php:1167 inc/_ps/admin/api-settings-p.php:353
|
6141 |
msgid ""
|
6142 |
"Check this box if you want to change the booking hash after approval. When checked, visitor will "
|
6143 |
"not be able to edit or cancel the booking."
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: core/lib/wpbc_all_translations.php:1168 inc/_ps/admin/page-email-edit.php:556
|
6147 |
msgid "Modified"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
+
#: core/lib/wpbc_all_translations.php:1169
|
6151 |
msgid "Customization of email template, which is sending after modification of booking"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
+
#: core/lib/wpbc_all_translations.php:1170
|
6155 |
msgid "Email is sending to Visitor after Editing of booking."
|
6156 |
msgstr ""
|
6157 |
|
6158 |
+
#: core/lib/wpbc_all_translations.php:1171 inc/_ps/admin/page-resources.php:39
|
6159 |
msgid "Customizaton of booking resources"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: core/lib/wpbc_all_translations.php:1172 inc/_ps/admin/page-settings-form.php:137
|
6163 |
#: inc/_ps/admin/page-settings-form.php:157
|
6164 |
msgid "Form fields"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
+
#: core/lib/wpbc_all_translations.php:1173 inc/_ps/admin/page-settings-form.php:138
|
6168 |
msgid "Content of Booking Fields"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
+
#: core/lib/wpbc_all_translations.php:1174 inc/_ps/admin/page-settings-form.php:164
|
6172 |
msgid "Generate tag"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
+
#: core/lib/wpbc_all_translations.php:1175 inc/_ps/admin/page-settings-form.php:173
|
6176 |
#, php-format
|
6177 |
msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
+
#: core/lib/wpbc_all_translations.php:1176 inc/_ps/admin/page-settings-form.php:312
|
6181 |
msgid "Form Template"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: core/lib/wpbc_all_translations.php:1177 inc/_ps/admin/page-settings-form.php:325
|
6185 |
msgid "Standard Templates"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: core/lib/wpbc_all_translations.php:1178 inc/_ps/admin/page-settings-form.php:338
|
6189 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111
|
6190 |
msgid "Columns"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
+
#: core/lib/wpbc_all_translations.php:1179 inc/_ps/admin/page-settings-form.php:410
|
6194 |
msgid "Advanced Templates"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
+
#: core/lib/wpbc_all_translations.php:1180 inc/_ps/admin/page-settings-form.php:413
|
6198 |
msgid "Wizard (several steps)"
|
6199 |
msgstr ""
|
6200 |
|
6201 |
+
#: core/lib/wpbc_all_translations.php:1181 inc/_ps/admin/page-settings-form.php:426
|
6202 |
msgid "Time slots for different weekdays"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
+
#: core/lib/wpbc_all_translations.php:1182 inc/_ps/admin/page-settings-form.php:436
|
6206 |
msgid "Hints"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
+
#: core/lib/wpbc_all_translations.php:1183 inc/_ps/admin/page-settings-form.php:458
|
6210 |
msgid "Reset Form"
|
6211 |
msgstr ""
|
6212 |
|
6213 |
+
#: core/lib/wpbc_all_translations.php:1184 inc/_ps/admin/page-settings-form.php:511
|
6214 |
msgid "Both"
|
6215 |
msgstr ""
|
6216 |
|
6217 |
+
#: core/lib/wpbc_all_translations.php:1185 inc/_ps/admin/page-settings-form.php:512
|
6218 |
msgid "Reset Booking Form and Content of Booking Fields Form"
|
6219 |
msgstr ""
|
6220 |
|
6221 |
+
#: core/lib/wpbc_all_translations.php:1186 inc/_ps/admin/page-settings-form.php:663
|
6222 |
+
#: inc/gateways/page-gateways.php:1058
|
6223 |
#, php-format
|
6224 |
msgid "%s - inserting data from fields of booking form"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
+
#: core/lib/wpbc_all_translations.php:1187 inc/_ps/admin/page-settings-form.php:664
|
6228 |
#, php-format
|
6229 |
msgid "%s - inserting new line"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
+
#: core/lib/wpbc_all_translations.php:1188 inc/_ps/admin/page-settings-form.php:668
|
6233 |
+
#: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:1113
|
6234 |
#, php-format
|
6235 |
msgid ""
|
6236 |
"You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
|
6237 |
"that all \"open\" tags (like %s) are closed (like this %s)."
|
6238 |
msgstr ""
|
6239 |
|
6240 |
+
#: core/lib/wpbc_all_translations.php:1189 inc/_ps/admin/page-settings-up.php:39
|
6241 |
msgid "Upgrade to higher version"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
+
#: core/lib/wpbc_all_translations.php:1190 inc/_ps/class/wpbc-settings-table.php:260
|
6245 |
msgid "No results found."
|
6246 |
msgstr ""
|
6247 |
|
6248 |
+
#: core/lib/wpbc_all_translations.php:1191 inc/_ps/form/class-wpbc-field-help-checkbox.php:90
|
6249 |
#, php-format
|
6250 |
msgid "Wrap each item with %s tag"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
+
#: core/lib/wpbc_all_translations.php:1192 inc/_ps/form/class-wpbc-field-help-checkbox.php:104
|
6254 |
msgid "Put a label before field"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: core/lib/wpbc_all_translations.php:1193 inc/_ps/form/class-wpbc-field-help-checkbox.php:118
|
6258 |
#, php-format
|
6259 |
msgid "Make it %sexclusive%s"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
+
#: core/lib/wpbc_all_translations.php:1194 inc/_ps/form/class-wpbc-field-help-checkbox.php:128
|
6263 |
#: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
|
6264 |
#: inc/_ps/form/class-wpbc-field-help-text.php:194
|
6265 |
msgid "Default value"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
+
#: core/lib/wpbc_all_translations.php:1195 inc/_ps/form/class-wpbc-field-help-checkbox.php:136
|
6269 |
#, php-format
|
6270 |
msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
|
6271 |
msgstr ""
|
6272 |
|
6273 |
+
#: core/lib/wpbc_all_translations.php:1196 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
|
6274 |
#: inc/_ps/form/class-wpbc-field-help-select.php:111
|
6275 |
#: inc/_ps/form/class-wpbc-field-help-text.php:177
|
6276 |
msgid "required"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
+
#: core/lib/wpbc_all_translations.php:1197 inc/_ps/form/class-wpbc-field-help-checkbox.php:164
|
6280 |
#: inc/_ps/form/class-wpbc-field-help-select.php:129
|
6281 |
msgid "Titles of options"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
+
#: core/lib/wpbc_all_translations.php:1198 inc/_ps/form/class-wpbc-field-help-radio.php:93
|
6285 |
#: inc/_ps/form/class-wpbc-field-help-select.php:86
|
6286 |
#, php-format
|
6287 |
msgid "One Value from %sOptions%s list"
|
6288 |
msgstr ""
|
6289 |
|
6290 |
+
#: core/lib/wpbc_all_translations.php:1199 inc/_ps/form/class-wpbc-field-help-select.php:101
|
6291 |
#, php-format
|
6292 |
msgid "Allow %smultiple%s selections"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
+
#: core/lib/wpbc_all_translations.php:1200 inc/_ps/form/class-wpbc-field-help-text.php:167
|
6296 |
#, php-format
|
6297 |
msgid "Set as %srequired%s"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
+
#: core/lib/wpbc_all_translations.php:1201 inc/_ps/form/class-wpbc-field-help-text.php:228
|
6301 |
msgid "Placeholder"
|
6302 |
msgstr ""
|
6303 |
|
6304 |
+
#: core/lib/wpbc_all_translations.php:1202 inc/_ps/form/class-wpbc-field-help-text.php:247
|
6305 |
msgid "Class"
|
6306 |
msgstr ""
|
6307 |
|
6308 |
+
#: core/lib/wpbc_all_translations.php:1203 inc/_ps/form/class-wpbc-field-help-text.php:264
|
6309 |
msgid "Size"
|
6310 |
msgstr ""
|
6311 |
|
6312 |
+
#: core/lib/wpbc_all_translations.php:1204 inc/_ps/form/class-wpbc-field-help-text.php:281
|
6313 |
msgid "Maxlength"
|
6314 |
msgstr ""
|
6315 |
|
6316 |
+
#: core/lib/wpbc_all_translations.php:1205 inc/_ps/form/class-wpbc-field-help-text.php:298
|
6317 |
msgid "Copy and paste this shortcode into the form at left side"
|
6318 |
msgstr ""
|
6319 |
|
6320 |
+
#: core/lib/wpbc_all_translations.php:1206 inc/_ps/form/class-wpbc-field-help-text.php:313
|
6321 |
#, php-format
|
6322 |
msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
|
6323 |
msgstr ""
|
6324 |
|
6325 |
+
#: core/lib/wpbc_all_translations.php:1207 inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
6326 |
msgid "Rows"
|
6327 |
msgstr ""
|
6328 |
|
6329 |
+
#: core/lib/wpbc_all_translations.php:1208 inc/_ps/form/class-wpbc-form-help.php:86
|
6330 |
msgid "General Information"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
+
#: core/lib/wpbc_all_translations.php:1209 inc/_ps/form/class-wpbc-form-help.php:109
|
6334 |
msgid "Required Fields in Booking Form"
|
6335 |
msgstr ""
|
6336 |
|
6337 |
+
#: core/lib/wpbc_all_translations.php:1210 inc/_ps/form/class-wpbc-form-help.php:117
|
6338 |
#, php-format
|
6339 |
msgid "You must to have this shortcode:%s in the form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
+
#: core/lib/wpbc_all_translations.php:1211 inc/_ps/form/class-wpbc-form-help.php:119
|
6343 |
msgid ""
|
6344 |
"You can insert several calendars of different resources into the form allowing you to book "
|
6345 |
"several resources during one booking process."
|
6346 |
msgstr ""
|
6347 |
|
6348 |
+
#: core/lib/wpbc_all_translations.php:1212 inc/_ps/form/class-wpbc-form-help.php:120
|
6349 |
#, php-format
|
6350 |
msgid "Example: %s."
|
6351 |
msgstr ""
|
6352 |
|
6353 |
+
#: core/lib/wpbc_all_translations.php:1213 inc/_ps/form/class-wpbc-form-help.php:121
|
6354 |
#, php-format
|
6355 |
msgid ""
|
6356 |
"where %s – default calendar %s (you can select desired resource of calendar by inserting "
|
6357 |
"shortcode into page)%s"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
+
#: core/lib/wpbc_all_translations.php:1214 inc/_ps/form/class-wpbc-form-help.php:122
|
6361 |
#: inc/_ps/form/class-wpbc-form-help.php:123
|
6362 |
#, php-format
|
6363 |
msgid "%s – calendar of booking resource with %s"
|
6364 |
msgstr ""
|
6365 |
|
6366 |
+
#: core/lib/wpbc_all_translations.php:1215 inc/_ps/form/class-wpbc-form-help.php:124
|
6367 |
#, php-format
|
6368 |
msgid "Please check more about this feature %shere%s."
|
6369 |
msgstr ""
|
6370 |
|
6371 |
+
#: core/lib/wpbc_all_translations.php:1216 inc/_ps/form/class-wpbc-form-help.php:126
|
6372 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
|
6373 |
#: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
|
6374 |
#: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
|
6378 |
msgid "You can %suse this shortcode only once%s in the form."
|
6379 |
msgstr ""
|
6380 |
|
6381 |
+
#: core/lib/wpbc_all_translations.php:1217 inc/_ps/form/class-wpbc-form-help.php:135
|
6382 |
msgid "Email Field"
|
6383 |
msgstr ""
|
6384 |
|
6385 |
+
#: core/lib/wpbc_all_translations.php:1218 inc/_ps/form/class-wpbc-form-help.php:136
|
6386 |
#, php-format
|
6387 |
msgid "You must have this shortcode:%s in the booking form."
|
6388 |
msgstr ""
|
6389 |
|
6390 |
+
#: core/lib/wpbc_all_translations.php:1219 inc/_ps/form/class-wpbc-form-help.php:136
|
6391 |
msgid "This is the primary email field, which is used for sending emails to visitors."
|
6392 |
msgstr ""
|
6393 |
|
6394 |
+
#: core/lib/wpbc_all_translations.php:1220 inc/_ps/form/class-wpbc-form-help.php:163
|
6395 |
msgid "Drop Down"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
+
#: core/lib/wpbc_all_translations.php:1221 inc/_ps/form/class-wpbc-form-help.php:175
|
6399 |
msgid "Checkbox(es)"
|
6400 |
msgstr ""
|
6401 |
|
6402 |
+
#: core/lib/wpbc_all_translations.php:1222 inc/_ps/form/class-wpbc-form-help.php:182
|
6403 |
msgid "Radio Button(s)"
|
6404 |
msgstr ""
|
6405 |
|
6406 |
+
#: core/lib/wpbc_all_translations.php:1223 inc/_ps/form/class-wpbc-form-help.php:196
|
6407 |
#, php-format
|
6408 |
msgid "Insert %s shortcode to prevent SPAM bookings."
|
6409 |
msgstr ""
|
6410 |
|
6411 |
+
#: core/lib/wpbc_all_translations.php:1224 inc/_ps/form/class-wpbc-form-help.php:206
|
6412 |
msgid "Submit Button"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
+
#: core/lib/wpbc_all_translations.php:1225 inc/_ps/form/class-wpbc-form-help.php:214
|
6416 |
msgid "Times Fields"
|
6417 |
msgstr ""
|
6418 |
|
6419 |
+
#: core/lib/wpbc_all_translations.php:1226 inc/_ps/form/class-wpbc-form-help.php:220
|
6420 |
msgid "Time Slot List"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
+
#: core/lib/wpbc_all_translations.php:1227 inc/_ps/form/class-wpbc-form-help.php:222
|
6424 |
#: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
|
6425 |
#: inc/_ps/form/class-wpbc-form-help.php:379
|
6426 |
#, php-format
|
6427 |
msgid "Select the %s using the predefined %sTime List%s."
|
6428 |
msgstr ""
|
6429 |
|
6430 |
+
#: core/lib/wpbc_all_translations.php:1228 inc/_ps/form/class-wpbc-form-help.php:222
|
6431 |
msgid "Time Slot"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
+
#: core/lib/wpbc_all_translations.php:1229 inc/_ps/form/class-wpbc-form-help.php:223
|
6435 |
#, php-format
|
6436 |
msgid ""
|
6437 |
"Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
|
6438 |
"slots, this time field will %sdisable booked times slots%s (set them as grayed)."
|
6439 |
msgstr ""
|
6440 |
|
6441 |
+
#: core/lib/wpbc_all_translations.php:1230 inc/_ps/form/class-wpbc-form-help.php:224
|
6442 |
#, php-format
|
6443 |
msgid "It works only in %ssingle day selection%s mode."
|
6444 |
msgstr ""
|
6445 |
|
6446 |
+
#: core/lib/wpbc_all_translations.php:1231 inc/_ps/form/class-wpbc-form-help.php:225
|
6447 |
msgid ""
|
6448 |
"Also some early versions of the IE do not support disabling of the options in the selectboxes."
|
6449 |
msgstr ""
|
6450 |
|
6451 |
+
#: core/lib/wpbc_all_translations.php:1232 inc/_ps/form/class-wpbc-form-help.php:226
|
6452 |
msgid ""
|
6453 |
"Even if visitor selects the booked timeslot, system will not allow them to make the booking."
|
6454 |
msgstr ""
|
6455 |
|
6456 |
+
#: core/lib/wpbc_all_translations.php:1233 inc/_ps/form/class-wpbc-form-help.php:229
|
6457 |
#: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
|
6458 |
#, php-format
|
6459 |
msgid ""
|
6461 |
"Time)%s only."
|
6462 |
msgstr ""
|
6463 |
|
6464 |
+
#: core/lib/wpbc_all_translations.php:1234 inc/_ps/form/class-wpbc-form-help.php:231
|
6465 |
#, php-format
|
6466 |
msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
|
6467 |
msgstr ""
|
6468 |
|
6469 |
+
#: core/lib/wpbc_all_translations.php:1235 inc/_ps/form/class-wpbc-form-help.php:273
|
6470 |
msgid "Start Time - Text field"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
+
#: core/lib/wpbc_all_translations.php:1236 inc/_ps/form/class-wpbc-form-help.php:275
|
6474 |
#: inc/_ps/form/class-wpbc-form-help.php:288
|
6475 |
#, php-format
|
6476 |
msgid "Enter %s in text field."
|
6477 |
msgstr ""
|
6478 |
|
6479 |
+
#: core/lib/wpbc_all_translations.php:1237 inc/_ps/admin/api-settings-p.php:109
|
6480 |
#: inc/_ps/admin/api-settings-p.php:115 inc/_ps/form/class-wpbc-form-help.php:275
|
6481 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
|
6482 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6483 |
msgid "Start Time"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
+
#: core/lib/wpbc_all_translations.php:1238 inc/_ps/form/class-wpbc-form-help.php:277
|
6487 |
#: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
|
6488 |
#, php-format
|
6489 |
msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
|
6490 |
msgstr ""
|
6491 |
|
6492 |
+
#: core/lib/wpbc_all_translations.php:1239 inc/_ps/form/class-wpbc-form-help.php:279
|
6493 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6494 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6495 |
#, php-format
|
6496 |
msgid "You can also use the %s in the form."
|
6497 |
msgstr ""
|
6498 |
|
6499 |
+
#: core/lib/wpbc_all_translations.php:1240 inc/_ps/admin/api-settings-p.php:128
|
6500 |
#: inc/_ps/admin/api-settings-p.php:134 inc/_ps/form/class-wpbc-form-help.php:279
|
6501 |
#: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
|
6502 |
#: inc/_ps/form/class-wpbc-form-help.php:340
|
6503 |
msgid "End Time"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
+
#: core/lib/wpbc_all_translations.php:1241 inc/_ps/form/class-wpbc-form-help.php:279
|
6507 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6508 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
|
6509 |
msgid "Duration Time"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: core/lib/wpbc_all_translations.php:1242 inc/_ps/form/class-wpbc-form-help.php:279
|
6513 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6514 |
#: inc/_ps/form/class-wpbc-form-help.php:344
|
6515 |
msgid "fields"
|
6516 |
msgstr ""
|
6517 |
|
6518 |
+
#: core/lib/wpbc_all_translations.php:1243 inc/_ps/form/class-wpbc-form-help.php:286
|
6519 |
msgid "End Time - Text field"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
+
#: core/lib/wpbc_all_translations.php:1244 inc/_ps/form/class-wpbc-form-help.php:300
|
6523 |
msgid "Start Time - Drop Down list"
|
6524 |
msgstr ""
|
6525 |
|
6526 |
+
#: core/lib/wpbc_all_translations.php:1245 inc/_ps/form/class-wpbc-form-help.php:304
|
6527 |
#, php-format
|
6528 |
msgid ""
|
6529 |
"Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
|
6530 |
"Time)%s only."
|
6531 |
msgstr ""
|
6532 |
|
6533 |
+
#: core/lib/wpbc_all_translations.php:1246 inc/_ps/form/class-wpbc-form-help.php:338
|
6534 |
msgid "End Time - Drop Down list"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
+
#: core/lib/wpbc_all_translations.php:1247 inc/_ps/form/class-wpbc-form-help.php:377
|
6538 |
msgid "Duration Time - Drop Down list"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: core/lib/wpbc_all_translations.php:1248 inc/_ps/form/class-wpbc-form-help.php:383
|
6542 |
msgid "field"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
+
#: core/lib/wpbc_all_translations.php:1249 inc/_ps/form/class-wpbc-form-help.php:416
|
6546 |
msgid "Different time slots, for the different week days"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
+
#: core/lib/wpbc_all_translations.php:1250 inc/_ps/form/class-wpbc-form-help.php:419
|
6550 |
msgid ""
|
6551 |
"This feature provides the possibility to use the different time slot selections in the booking "
|
6552 |
"form for the different week days or different days - which are assigned to the specific season "
|
6553 |
"filters. So each week day (day of specific season filter) can have a different time slots list."
|
6554 |
msgstr ""
|
6555 |
|
6556 |
+
#: core/lib/wpbc_all_translations.php:1251 inc/_ps/form/class-wpbc-form-help.php:421
|
6557 |
#: inc/_ps/form/class-wpbc-form-help.php:568
|
6558 |
msgid "Configuration"
|
6559 |
msgstr ""
|
6560 |
|
6561 |
+
#: core/lib/wpbc_all_translations.php:1252 inc/_ps/form/class-wpbc-form-help.php:422
|
6562 |
#: inc/_ps/form/class-wpbc-form-help.php:569
|
6563 |
#, php-format
|
6564 |
msgid "The general structure of the configuration %scondition rule%s is as follows"
|
6565 |
msgstr ""
|
6566 |
|
6567 |
+
#: core/lib/wpbc_all_translations.php:1253 inc/_ps/form/class-wpbc-form-help.php:428
|
6568 |
#: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
|
6569 |
#: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
|
6570 |
#: inc/_ps/form/class-wpbc-form-help.php:619
|
6571 |
msgid "Parameters"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
+
#: core/lib/wpbc_all_translations.php:1254 inc/_ps/form/class-wpbc-form-help.php:429
|
6575 |
#: inc/_ps/form/class-wpbc-form-help.php:576
|
6576 |
#, php-format
|
6577 |
msgid ""
|
6581 |
"conditions. Please check more about it, in the examples."
|
6582 |
msgstr ""
|
6583 |
|
6584 |
+
#: core/lib/wpbc_all_translations.php:1255 inc/_ps/form/class-wpbc-form-help.php:430
|
6585 |
#: inc/_ps/form/class-wpbc-form-help.php:577
|
6586 |
#, php-format
|
6587 |
msgid ""
|
6592 |
"filter in the Season Filters page."
|
6593 |
msgstr ""
|
6594 |
|
6595 |
+
#: core/lib/wpbc_all_translations.php:1256 inc/_ps/form/class-wpbc-form-help.php:431
|
6596 |
#, php-format
|
6597 |
msgid ""
|
6598 |
"%svalue%s – value of the specific conditions. If the value is true, the content of the "
|
6601 |
"at initial stage, when the date in calendar is not yet selected."
|
6602 |
msgstr ""
|
6603 |
|
6604 |
+
#: core/lib/wpbc_all_translations.php:1257 inc/_ps/form/class-wpbc-form-help.php:433
|
6605 |
#: inc/_ps/form/class-wpbc-form-help.php:580
|
6606 |
msgid "Examples"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
+
#: core/lib/wpbc_all_translations.php:1258 inc/_ps/form/class-wpbc-form-help.php:434
|
6610 |
#: inc/_ps/form/class-wpbc-form-help.php:581
|
6611 |
msgid "Week days conditions."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: core/lib/wpbc_all_translations.php:1259 inc/_ps/form/class-wpbc-form-help.php:450
|
6615 |
#: inc/_ps/form/class-wpbc-form-help.php:597
|
6616 |
msgid "default value, if no dates are selected, or none exist conditions are true."
|
6617 |
msgstr ""
|
6618 |
|
6619 |
+
#: core/lib/wpbc_all_translations.php:1260 inc/_ps/form/class-wpbc-form-help.php:458
|
6620 |
#: inc/_ps/form/class-wpbc-form-help.php:475
|
6621 |
msgid "You can use the several values, separated by comma."
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: core/lib/wpbc_all_translations.php:1261 inc/_ps/form/class-wpbc-form-help.php:460
|
6625 |
#: inc/_ps/form/class-wpbc-form-help.php:607
|
6626 |
msgid "Season filters conditions."
|
6627 |
msgstr ""
|
6628 |
|
6629 |
+
#: core/lib/wpbc_all_translations.php:1262 inc/_ps/form/class-wpbc-form-help.php:473
|
6630 |
#: inc/_ps/form/class-wpbc-form-help.php:620
|
6631 |
msgid "Season filter on the Season Filters page,"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: core/lib/wpbc_all_translations.php:1263 inc/_ps/form/class-wpbc-form-help.php:474
|
6635 |
#: inc/_ps/form/class-wpbc-form-help.php:621
|
6636 |
msgid "Season filter on the Season Filters page"
|
6637 |
msgstr ""
|
6638 |
|
6639 |
+
#: core/lib/wpbc_all_translations.php:1264 inc/_ps/form/class-wpbc-form-help.php:477
|
6640 |
#: inc/_ps/form/class-wpbc-form-help.php:624
|
6641 |
msgid "Additional info"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: core/lib/wpbc_all_translations.php:1265 inc/_ps/form/class-wpbc-form-help.php:478
|
6645 |
#: inc/_ps/form/class-wpbc-form-help.php:625
|
6646 |
#, php-format
|
6647 |
msgid ""
|
6649 |
"section."
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: core/lib/wpbc_all_translations.php:1266 inc/_ps/form/class-wpbc-form-help.php:479
|
6653 |
#: inc/_ps/form/class-wpbc-form-help.php:626
|
6654 |
#, php-format
|
6655 |
msgid "Please check more about this feature at %sthis page%s"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: core/lib/wpbc_all_translations.php:1267 inc/_ps/form/class-wpbc-form-help.php:493
|
6659 |
msgid "Time Field"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: core/lib/wpbc_all_translations.php:1268 inc/_ps/form/class-wpbc-form-help.php:495
|
6663 |
#, php-format
|
6664 |
msgid "Enter the %sTime%s using the text field."
|
6665 |
msgstr ""
|
6666 |
|
6667 |
+
#: core/lib/wpbc_all_translations.php:1269 inc/_ps/form/class-wpbc-form-help.php:498
|
6668 |
msgid "This field does not impact to availability (booking for the specific time) ."
|
6669 |
msgstr ""
|
6670 |
|
6671 |
+
#: core/lib/wpbc_all_translations.php:1270 inc/_ps/form/class-wpbc-form-help.php:499
|
6672 |
msgid "The value of this field is just saved into DB."
|
6673 |
msgstr ""
|
6674 |
|
6675 |
+
#: core/lib/wpbc_all_translations.php:1271 inc/_ps/form/class-wpbc-form-help.php:509
|
6676 |
msgid "Country List"
|
6677 |
msgstr ""
|
6678 |
|
6679 |
+
#: core/lib/wpbc_all_translations.php:1272 inc/_ps/form/class-wpbc-form-help.php:511
|
6680 |
msgid "Select the country from the predefined country list."
|
6681 |
msgstr ""
|
6682 |
|
6683 |
+
#: core/lib/wpbc_all_translations.php:1273 inc/_ps/form/class-wpbc-form-help.php:512
|
6684 |
#, php-format
|
6685 |
msgid "You can customize the country list at this file: %s"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: core/lib/wpbc_all_translations.php:1274 inc/_ps/form/class-wpbc-form-help.php:513
|
6689 |
msgid "You can insert this field with default selected value."
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: core/lib/wpbc_all_translations.php:1275 inc/_ps/form/class-wpbc-form-help.php:514
|
6693 |
#, php-format
|
6694 |
msgid "Example: %s - %s\"United States\"%s is selected by default."
|
6695 |
msgstr ""
|
6696 |
|
6697 |
+
#: core/lib/wpbc_all_translations.php:1276 inc/_ps/form/class-wpbc-form-help.php:523
|
6698 |
msgid "Language Sections"
|
6699 |
msgstr ""
|
6700 |
|
6701 |
+
#: core/lib/wpbc_all_translations.php:1277 inc/_ps/form/class-wpbc-form-help.php:525
|
6702 |
msgid "Plugin support configurations of the booking form are available in different languages."
|
6703 |
msgstr ""
|
6704 |
|
6705 |
+
#: core/lib/wpbc_all_translations.php:1278 inc/_ps/form/class-wpbc-form-help.php:526
|
6706 |
msgid "The active language of the booking form depends on the active locale of the site."
|
6707 |
msgstr ""
|
6708 |
|
6709 |
+
#: core/lib/wpbc_all_translations.php:1279 inc/_ps/form/class-wpbc-form-help.php:527
|
6710 |
msgid ""
|
6711 |
"Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: core/lib/wpbc_all_translations.php:1280 inc/_ps/form/class-wpbc-form-help.php:529
|
6715 |
msgid "Usage"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: core/lib/wpbc_all_translations.php:1281 inc/_ps/form/class-wpbc-form-help.php:530
|
6719 |
#, php-format
|
6720 |
msgid "start new translation section in specific language, where %s - locale of the translation."
|
6721 |
msgstr ""
|
6722 |
|
6723 |
+
#: core/lib/wpbc_all_translations.php:1282 inc/_ps/form/class-wpbc-form-help.php:533
|
6724 |
msgid "English and French translation"
|
6725 |
msgstr ""
|
6726 |
|
6727 |
+
#: core/lib/wpbc_all_translations.php:1283 inc/_ps/form/class-wpbc-form-help.php:536
|
6728 |
msgid "of configuration booking form in English and French languages"
|
6729 |
msgstr ""
|
6730 |
|
6731 |
+
#: core/lib/wpbc_all_translations.php:1284 inc/_ps/form/class-wpbc-form-help.php:555
|
6732 |
msgid ""
|
6733 |
"Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
|
6734 |
"translation\" page. Required WPML 3.2 with String Translation plugin."
|
6735 |
msgstr ""
|
6736 |
|
6737 |
+
#: core/lib/wpbc_all_translations.php:1285 inc/_ps/form/class-wpbc-form-help.php:563
|
6738 |
msgid "Different form fields, for the different week days"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
+
#: core/lib/wpbc_all_translations.php:1286 inc/_ps/form/class-wpbc-form-help.php:566
|
6742 |
msgid ""
|
6743 |
"This feature provides the possibility to show the different form fields or any other HTML "
|
6744 |
"content in the booking form, depending on the selection of specific week day in calendar or "
|
6745 |
"different days, which are assigned to the specific season filters"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: core/lib/wpbc_all_translations.php:1287 inc/_ps/form/class-wpbc-form-help.php:578
|
6749 |
#, php-format
|
6750 |
msgid ""
|
6751 |
"%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
|
6754 |
"at initial stage, when the date in calendar is not yet selected."
|
6755 |
msgstr ""
|
6756 |
|
6757 |
+
#: core/lib/wpbc_all_translations.php:1288 inc/_ps/form/class-wpbc-form-help.php:605
|
6758 |
msgid "You can use several values, separated by comma."
|
6759 |
msgstr ""
|
6760 |
|
6761 |
+
#: core/lib/wpbc_all_translations.php:1289 inc/_ps/form/class-wpbc-form-help.php:622
|
6762 |
msgid "You can use several values, separated by a comma."
|
6763 |
msgstr ""
|
6764 |
|
6765 |
+
#: core/lib/wpbc_all_translations.php:1290 inc/_ps/form/class-wpbc-form-help.php:635
|
6766 |
msgid "Cost Fields"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
+
#: core/lib/wpbc_all_translations.php:1291 inc/_ps/form/class-wpbc-form-help.php:641
|
6770 |
msgid "Cost Correction Field"
|
6771 |
msgstr ""
|
6772 |
|
6773 |
+
#: core/lib/wpbc_all_translations.php:1292 inc/_ps/form/class-wpbc-form-help.php:643
|
6774 |
#, php-format
|
6775 |
msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
|
6776 |
msgstr ""
|
6777 |
|
6778 |
+
#: core/lib/wpbc_all_translations.php:1293 inc/_ps/form/class-wpbc-form-help.php:644
|
6779 |
#, php-format
|
6780 |
msgid "Use this field for %scorrecting the cost%s during adding new booking."
|
6781 |
msgstr ""
|
6782 |
|
6783 |
+
#: core/lib/wpbc_all_translations.php:1294 inc/_ps/form/class-wpbc-form-help.php:655
|
6784 |
msgid "Discount Coupon field"
|
6785 |
msgstr ""
|
6786 |
|
6787 |
+
#: core/lib/wpbc_all_translations.php:1295 inc/_ps/form/class-wpbc-form-help.php:657
|
6788 |
msgid "Please use this field for possibility to use coupon discounts by your visitors."
|
6789 |
msgstr ""
|
6790 |
|
6791 |
+
#: core/lib/wpbc_all_translations.php:1296 inc/_ps/form/class-wpbc-form-help.php:658
|
6792 |
#, php-format
|
6793 |
msgid "You can configure the discount coupon codes at this %spage%s."
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: core/lib/wpbc_all_translations.php:1297 inc/_ps/form/class-wpbc-form-help.php:667
|
6797 |
msgid "Hints for your form"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: core/lib/wpbc_all_translations.php:1298 inc/_ps/form/class-wpbc-form-help.php:673
|
6801 |
msgid "Cost Hints"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: core/lib/wpbc_all_translations.php:1299 inc/_ps/form/class-wpbc-form-help.php:675
|
6805 |
#: inc/_ps/form/class-wpbc-form-help.php:697
|
6806 |
#, php-format
|
6807 |
msgid ""
|
6809 |
"calendar or options in checkboxes or selectboxes)%s."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: core/lib/wpbc_all_translations.php:1300 inc/_ps/form/class-wpbc-form-help.php:695
|
6813 |
msgid "Dates and Times Hints"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: core/lib/wpbc_all_translations.php:1301 inc/_ps/form/class-wpbc-form-help.php:699
|
6817 |
+
#: inc/gateways/page-gateways.php:1083
|
6818 |
msgid "Selected Check In date."
|
6819 |
msgstr ""
|
6820 |
|
6821 |
+
#: core/lib/wpbc_all_translations.php:1302 inc/_ps/form/class-wpbc-form-help.php:700
|
6822 |
#: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
|
6823 |
#: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
|
6824 |
#: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
|
6825 |
#: inc/_ps/form/class-wpbc-form-help.php:721 inc/_ps/form/class-wpbc-form-help.php:724
|
6826 |
#: inc/_ps/form/class-wpbc-form-help.php:727 inc/_ps/form/class-wpbc-form-help.php:730
|
6827 |
+
#: inc/gateways/page-gateways.php:1084 inc/gateways/page-gateways.php:1087
|
6828 |
+
#: inc/gateways/page-gateways.php:1090 inc/gateways/page-gateways.php:1093
|
6829 |
+
#: inc/gateways/page-gateways.php:1096 inc/gateways/page-gateways.php:1099
|
6830 |
+
#: inc/gateways/page-gateways.php:1102 inc/gateways/page-gateways.php:1105
|
6831 |
+
#: inc/gateways/page-gateways.php:1108 inc/gateways/page-gateways.php:1111
|
6832 |
msgid "Example:"
|
6833 |
msgstr ""
|
6834 |
|
6835 |
+
#: core/lib/wpbc_all_translations.php:1303 inc/_ps/form/class-wpbc-form-help.php:702
|
6836 |
+
#: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:1086
|
6837 |
msgid "Selected Check Out date."
|
6838 |
msgstr ""
|
6839 |
|
6840 |
+
#: core/lib/wpbc_all_translations.php:1304 inc/_ps/form/class-wpbc-form-help.php:708
|
6841 |
+
#: inc/gateways/page-gateways.php:1089
|
6842 |
msgid "Selected Start Time."
|
6843 |
msgstr ""
|
6844 |
|
6845 |
+
#: core/lib/wpbc_all_translations.php:1305 inc/_ps/form/class-wpbc-form-help.php:711
|
6846 |
+
#: inc/gateways/page-gateways.php:1092
|
6847 |
msgid "Selected End Time."
|
6848 |
msgstr ""
|
6849 |
|
6850 |
+
#: core/lib/wpbc_all_translations.php:1306 inc/_ps/form/class-wpbc-form-help.php:714
|
6851 |
+
#: inc/gateways/page-gateways.php:1095
|
6852 |
msgid "All selected dates."
|
6853 |
msgstr ""
|
6854 |
|
6855 |
+
#: core/lib/wpbc_all_translations.php:1307 inc/_ps/form/class-wpbc-form-help.php:717
|
6856 |
+
#: inc/gateways/page-gateways.php:1098
|
6857 |
msgid "All selected dates with times."
|
6858 |
msgstr ""
|
6859 |
|
6860 |
+
#: core/lib/wpbc_all_translations.php:1308 inc/_ps/form/class-wpbc-form-help.php:720
|
6861 |
+
#: inc/gateways/page-gateways.php:1101
|
6862 |
msgid "All selected dates in \"short\" format."
|
6863 |
msgstr ""
|
6864 |
|
6865 |
+
#: core/lib/wpbc_all_translations.php:1309 inc/_ps/form/class-wpbc-form-help.php:723
|
6866 |
+
#: inc/gateways/page-gateways.php:1104
|
6867 |
msgid "All selected dates with times in \"short\" format.."
|
6868 |
msgstr ""
|
6869 |
|
6870 |
+
#: core/lib/wpbc_all_translations.php:1310 inc/_ps/form/class-wpbc-form-help.php:726
|
6871 |
+
#: inc/gateways/page-gateways.php:1107
|
6872 |
msgid "Number of selected days."
|
6873 |
msgstr ""
|
6874 |
|
6875 |
+
#: core/lib/wpbc_all_translations.php:1311 inc/_ps/form/class-wpbc-form-help.php:729
|
6876 |
+
#: inc/gateways/page-gateways.php:1110
|
6877 |
msgid "Number of selected nights."
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: core/lib/wpbc_all_translations.php:1312 inc/_ps/form/class-wpbc-form-help.php:739
|
6881 |
msgid "Other Hints"
|
6882 |
msgstr ""
|
6883 |
|
6884 |
+
#: core/lib/wpbc_all_translations.php:1313 inc/_ps/form/class-wpbc-form-help.php:741
|
6885 |
+
#: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:1061
|
6886 |
msgid "title of booking resource"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
+
#: core/lib/wpbc_all_translations.php:1314 inc/_ps/form/class-wpbc-form-help.php:742
|
6890 |
msgid "ID of booking resource."
|
6891 |
msgstr ""
|
6892 |
|
6893 |
+
#: core/lib/wpbc_all_translations.php:1315 inc/_ps/form/class-wpbc-form-help.php:744
|
6894 |
msgid "cost of booking resource."
|
6895 |
msgstr ""
|
6896 |
|
6897 |
+
#: core/lib/wpbc_all_translations.php:1316 inc/_ps/form/class-wpbc-form-help.php:745
|
6898 |
msgid "capacity of booking resource."
|
6899 |
msgstr ""
|
6900 |
|
6901 |
+
#: core/lib/wpbc_all_translations.php:1317 inc/_ps/form/class-wpbc-form-help.php:746
|
6902 |
msgid "maximum number of visitors per booking resource."
|
6903 |
msgstr ""
|
6904 |
|
6905 |
+
#: core/lib/wpbc_all_translations.php:1318 inc/_ps/form/class-wpbc-form-help.php:760
|
6906 |
msgid "Tips and Tricks"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
+
#: core/lib/wpbc_all_translations.php:1319 inc/_ps/form/class-wpbc-form-help.php:762
|
6910 |
#, php-format
|
6911 |
msgid "%sEmail verification field%s."
|
6912 |
msgstr ""
|
6913 |
|
6914 |
+
#: core/lib/wpbc_all_translations.php:1320 inc/_ps/form/class-wpbc-form-help.php:764
|
6915 |
#, php-format
|
6916 |
msgid "%sDescription of usage%s."
|
6917 |
msgstr ""
|
6918 |
|
6919 |
+
#: core/lib/wpbc_all_translations.php:1321 inc/_ps/form/class-wpbc-form-help.php:765
|
6920 |
#, php-format
|
6921 |
msgid ""
|
6922 |
"To create verification email, you need to use special CSS class in other email field. This CSS "
|
6924 |
"field: %s"
|
6925 |
msgstr ""
|
6926 |
|
6927 |
+
#: core/lib/wpbc_all_translations.php:1322 inc/_ps/form/class-wpbc-form-help.php:766
|
6928 |
#, php-format
|
6929 |
msgid "%sExample%s."
|
6930 |
msgstr ""
|
6931 |
|
6932 |
+
#: core/lib/wpbc_all_translations.php:1323 inc/_ps/form/class-wpbc-form-help.php:767
|
6933 |
msgid "confirmation email field of the primary email field"
|
6934 |
msgstr ""
|
6935 |
|
6936 |
+
#: core/lib/wpbc_all_translations.php:1324 inc/_ps/form/class-wpbc-form-help.php:791
|
6937 |
msgid "Generate Tag"
|
6938 |
msgstr ""
|
6939 |
|
6940 |
+
#: core/lib/wpbc_all_translations.php:1325 inc/_ps/form/class-wpbc-form-help.php:807
|
6941 |
msgid "Select option to configure or show help info about tags"
|
6942 |
msgstr ""
|
6943 |
|
6944 |
+
#: core/lib/wpbc_all_translations.php:1326 inc/_ps/p-toolbar.php:34
|
6945 |
msgid "Keyword"
|
6946 |
msgstr ""
|
6947 |
|
6948 |
+
#: core/lib/wpbc_all_translations.php:1327 inc/_ps/p-toolbar.php:42
|
6949 |
msgid "Enter Keyword here"
|
6950 |
msgstr ""
|
6951 |
|
6952 |
+
#: core/lib/wpbc_all_translations.php:1328 inc/_ps/p-toolbar.php:96
|
6953 |
msgid ""
|
6954 |
"Save filter settings as default template (Please, click Apply filter button, before saving!)"
|
6955 |
msgstr ""
|
6956 |
|
6957 |
+
#: core/lib/wpbc_all_translations.php:1329 inc/_ps/p-toolbar.php:100
|
6958 |
msgid "Save as Default"
|
6959 |
msgstr ""
|
6960 |
|
6961 |
+
#: core/lib/wpbc_all_translations.php:1330 inc/_ps/p-toolbar.php:106
|
6962 |
msgid "Delete your previously saved default filer template!"
|
6963 |
msgstr ""
|
6964 |
|
6965 |
+
#: core/lib/wpbc_all_translations.php:1331 inc/_ps/p-toolbar.php:110
|
6966 |
msgid "Delete template"
|
6967 |
msgstr ""
|
6968 |
|
6969 |
+
#: core/lib/wpbc_all_translations.php:1332 inc/_ps/p-toolbar.php:132
|
6970 |
msgid "Print bookings listing"
|
6971 |
msgstr ""
|
6972 |
|
6973 |
+
#: core/lib/wpbc_all_translations.php:1333 inc/_ps/p-toolbar.php:174
|
6974 |
msgid "Export only current page of bookings to CSV format"
|
6975 |
msgstr ""
|
6976 |
|
6977 |
+
#: core/lib/wpbc_all_translations.php:1334 inc/_ps/p-toolbar.php:187
|
6978 |
msgid "Export All"
|
6979 |
msgstr ""
|
6980 |
|
6981 |
+
#: core/lib/wpbc_all_translations.php:1335 inc/_ps/p-toolbar.php:188
|
6982 |
msgid "Export All bookings to CSV format"
|
6983 |
msgstr ""
|
6984 |
|
6985 |
+
#: core/lib/wpbc_all_translations.php:1336 inc/_ps/p-toolbar.php:255
|
6986 |
msgid "Edit Note"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
+
#: core/lib/wpbc_all_translations.php:1337 inc/_ps/p-toolbar.php:278
|
6990 |
msgid "Change Language"
|
6991 |
msgstr ""
|
6992 |
|
6993 |
+
#: core/lib/wpbc_all_translations.php:1338 inc/_ps/p-toolbar.php:290
|
6994 |
msgid "Default Locale"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
+
#: core/lib/wpbc_all_translations.php:1339 inc/_ps/p-toolbar.php:326
|
6998 |
msgid "Change Resource"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: core/lib/wpbc_all_translations.php:1340 inc/_ps/p-toolbar.php:351 inc/_ps/p-toolbar.php:464
|
7002 |
+
#: inc/_ps/personal.php:2119
|
7003 |
msgid "Duplicate Booking"
|
7004 |
msgstr ""
|
7005 |
|
7006 |
+
#: core/lib/wpbc_all_translations.php:1341 inc/_ps/p-toolbar.php:382
|
7007 |
msgid "Save"
|
7008 |
msgstr ""
|
7009 |
|
7010 |
+
#: core/lib/wpbc_all_translations.php:1342 inc/_ps/p-toolbar.php:431
|
7011 |
msgid "Change"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
+
#: core/lib/wpbc_all_translations.php:1343 inc/_ps/p-toolbar.php:501
|
7015 |
msgid "Print bookings"
|
7016 |
msgstr ""
|
7017 |
|
7018 |
+
#: core/lib/wpbc_all_translations.php:1344 inc/_ps/p-toolbar.php:540
|
7019 |
msgid "Export bookings"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
+
#: core/lib/wpbc_all_translations.php:1345 inc/_ps/p-toolbar.php:543
|
7023 |
msgid "Download the CSV file of exported booking data"
|
7024 |
msgstr ""
|
7025 |
|
7026 |
+
#: core/lib/wpbc_all_translations.php:1346 inc/_ps/p-toolbar.php:551
|
7027 |
msgid "Download"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
+
#: core/lib/wpbc_all_translations.php:1347 inc/_ps/p-toolbar.php:788
|
7031 |
msgid "Clear booking resources selection"
|
7032 |
msgstr ""
|
7033 |
|
7034 |
+
#: core/lib/wpbc_all_translations.php:1348 inc/_ps/p-toolbar.php:792
|
7035 |
msgid "Apply booking resources selection"
|
7036 |
msgstr ""
|
7037 |
|
7038 |
+
#: core/lib/wpbc_all_translations.php:1349 inc/_ps/p-toolbar.php:822
|
7039 |
msgid ""
|
7040 |
"Please note, its not possible to add new resources, if \"All resources\" option is selected. "
|
7041 |
"Please clear the selection, then add new resources."
|
7042 |
msgstr ""
|
7043 |
|
7044 |
+
#: core/lib/wpbc_all_translations.php:1350 inc/_ps/p-toolbar.php:1110 inc/_ps/p-toolbar.php:1158
|
7045 |
msgid "Add New Booking Resource(s)"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
+
#: core/lib/wpbc_all_translations.php:1351 inc/_ps/p-toolbar.php:1150
|
7049 |
msgid "Enter name of booking resource"
|
7050 |
msgstr ""
|
7051 |
|
7052 |
+
#: core/lib/wpbc_all_translations.php:1352 inc/_ps/p-toolbar.php:1174
|
7053 |
msgid "Resources count"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
+
#: core/lib/wpbc_all_translations.php:1353 inc/_ps/personal.php:249
|
7057 |
msgid "This booking resources does not exist"
|
7058 |
msgstr ""
|
7059 |
|
7060 |
+
#: core/lib/wpbc_all_translations.php:1354 inc/_ps/personal.php:294
|
7061 |
msgid "Generating columns"
|
7062 |
msgstr ""
|
7063 |
|
7064 |
+
#: core/lib/wpbc_all_translations.php:1355 inc/_ps/personal.php:335
|
7065 |
msgid "Exporting booking data"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
+
#: core/lib/wpbc_all_translations.php:1356 inc/_ps/personal.php:378
|
7069 |
msgid "Generating content of file"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: core/lib/wpbc_all_translations.php:1357 inc/_ps/personal.php:420
|
7073 |
msgid "Saving to file"
|
7074 |
msgstr ""
|
7075 |
|
7076 |
+
#: core/lib/wpbc_all_translations.php:1358 inc/_ps/personal.php:874
|
7077 |
msgid "The booking was canceled by the visitor."
|
7078 |
msgstr ""
|
7079 |
|
7080 |
+
#: core/lib/wpbc_all_translations.php:1359 inc/_ps/personal.php:935
|
7081 |
msgid "The booking has been canceled successfully"
|
7082 |
msgstr ""
|
7083 |
|
7084 |
+
#: core/lib/wpbc_all_translations.php:1360 inc/_ps/personal.php:956
|
7085 |
msgid "Incorrect date format"
|
7086 |
msgstr ""
|
7087 |
|
7088 |
+
#: core/lib/wpbc_all_translations.php:1361 inc/_ps/personal.php:2098
|
7089 |
msgid "Change your Booking"
|
7090 |
msgstr ""
|
7091 |
|
7092 |
+
#: core/lib/wpbc_all_translations.php:1362 inc/_ps/personal.php:2100
|
7093 |
msgid "Cancel Booking"
|
7094 |
msgstr ""
|
7095 |
|
7096 |
+
#: core/lib/wpbc_all_translations.php:1363 inc/_ps/personal.php:2378
|
7097 |
msgid "Warning! The resource was not changed. Current dates are already booked there."
|
7098 |
msgstr ""
|
7099 |
|
7100 |
+
#: core/lib/wpbc_all_translations.php:1364 inc/_ps/personal.php:2515
|
7101 |
msgid "The booking has been duplicated successfully"
|
7102 |
msgstr ""
|
7103 |
|
7104 |
+
#: core/lib/wpbc_all_translations.php:1365 inc/_ps/personal.php:2524
|
7105 |
msgid "Warning! Operation failed. Current dates are already booked there."
|
7106 |
msgstr ""
|
7107 |
|
7108 |
+
#: core/lib/wpbc_all_translations.php:1366 inc/_ps/personal.php:2611
|
7109 |
msgid "Sending request..."
|
7110 |
msgstr ""
|
7111 |
|
7112 |
+
#: core/lib/wpbc_all_translations.php:1367 inc/_ps/personal.php:2640
|
7113 |
msgid "Order number"
|
7114 |
msgstr ""
|
7115 |
|
7116 |
+
#: core/lib/wpbc_all_translations.php:1368 inc/_ps/personal.php:2642
|
7117 |
msgid "Register"
|
7118 |
msgstr ""
|
7119 |
|
7120 |
+
#: core/lib/wpbc_all_translations.php:1369 inc/_ps/personal.php:2644
|
7121 |
msgid ""
|
7122 |
"Please, enter order number of your purchased version, which you received to your billing email."
|
7123 |
msgstr ""
|
7124 |
|
7125 |
+
#: core/lib/wpbc_all_translations.php:1370 inc/_ps/personal.php:2646
|
7126 |
#, php-format
|
7127 |
msgid "If you will get any difficulties or have a questions, please contact by email %s"
|
7128 |
msgstr ""
|
7129 |
|
7130 |
+
#: core/lib/wpbc_all_translations.php:1371 inc/_ps/wpbc-booking-select-widget.php:226
|
7131 |
msgid "Default form"
|
7132 |
msgstr ""
|
7133 |
|
7134 |
+
#: core/lib/wpbc_all_translations.php:1372 inc/_ps/wpbc-check-updates.php:178
|
7135 |
#, php-format
|
7136 |
msgid ""
|
7137 |
"There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
|
7138 |
"version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
+
#: core/lib/wpbc_all_translations.php:1373 inc/_ps/wpbc-check-updates.php:184
|
7142 |
#, php-format
|
7143 |
msgid "You can request the new update of plugin on %1$sthis page%2$s."
|
7144 |
msgstr ""
|
7145 |
|
7146 |
+
#: core/lib/wpbc_all_translations.php:1374 inc/_ps/wpbc-check-updates.php:191
|
7147 |
msgid "Upgrade Notice"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
+
#: core/lib/wpbc_all_translations.php:1375 inc/_ps/wpbc-check-updates.php:231
|
7151 |
#, php-format
|
7152 |
msgid "Version %s By %s"
|
7153 |
msgstr ""
|
7154 |
|
7155 |
+
#: core/lib/wpbc_all_translations.php:1376 inc/_ps/wpbc-check-updates.php:235
|
7156 |
msgid "View details"
|
7157 |
msgstr ""
|
7158 |
|
7159 |
+
#: core/lib/wpbc_all_translations.php:1377 inc/_ps/wpbc-form-templates.php:34
|
7160 |
#: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
|
7161 |
#: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
|
7162 |
msgid "First Name (required)"
|
7163 |
msgstr ""
|
7164 |
|
7165 |
+
#: core/lib/wpbc_all_translations.php:1378 inc/_ps/wpbc-form-templates.php:35
|
7166 |
#: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
|
7167 |
#: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
|
7168 |
msgid "Last Name (required)"
|
7169 |
msgstr ""
|
7170 |
|
7171 |
+
#: core/lib/wpbc_all_translations.php:1379 inc/_ps/wpbc-form-templates.php:36
|
7172 |
#: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
|
7173 |
#: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
|
7174 |
msgid "Email (required)"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
+
#: core/lib/wpbc_all_translations.php:1380 inc/_ps/wpbc-form-templates.php:37
|
7178 |
#: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
|
7179 |
#: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
|
7180 |
#: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
|
7181 |
#: inc/_ps/wpbc-form-templates.php:174 inc/_ps/wpbc-form-templates.php:189
|
7182 |
+
#: inc/gateways/page-gateways.php:326
|
7183 |
msgid "Phone"
|
7184 |
msgstr ""
|
7185 |
|
7186 |
+
#: core/lib/wpbc_all_translations.php:1381 inc/_ps/wpbc-form-templates.php:38
|
7187 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7188 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
|
7189 |
#: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
|
7190 |
msgid "Adults"
|
7191 |
msgstr ""
|
7192 |
|
7193 |
+
#: core/lib/wpbc_all_translations.php:1382 inc/_ps/wpbc-form-templates.php:38
|
7194 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7195 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
|
7196 |
#: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
|
7197 |
msgid "Children"
|
7198 |
msgstr ""
|
7199 |
|
7200 |
+
#: core/lib/wpbc_all_translations.php:1383 inc/_ps/wpbc-form-templates.php:39
|
7201 |
#: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
|
7202 |
#: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
|
7203 |
#: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
|
7205 |
msgid "Details"
|
7206 |
msgstr ""
|
7207 |
|
7208 |
+
#: core/lib/wpbc_all_translations.php:1384 inc/_ps/wpbc-form-templates.php:40
|
7209 |
#: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
|
7210 |
#: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
|
7211 |
msgid "I Accept term and conditions"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
+
#: core/lib/wpbc_all_translations.php:1385 inc/_ps/wpbc-form-templates.php:48
|
7215 |
#: inc/_ps/wpbc-form-templates.php:68
|
7216 |
msgid "Select Times"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
+
#: core/lib/wpbc_all_translations.php:1386 inc/_ps/wpbc-form-templates.php:53
|
7220 |
#: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
|
7221 |
#: inc/_ps/wpbc-form-templates.php:118
|
7222 |
msgid "Address (required)"
|
7223 |
msgstr ""
|
7224 |
|
7225 |
+
#: core/lib/wpbc_all_translations.php:1387 inc/_ps/wpbc-form-templates.php:54
|
7226 |
#: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
|
7227 |
#: inc/_ps/wpbc-form-templates.php:119
|
7228 |
msgid "City (required)"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
+
#: core/lib/wpbc_all_translations.php:1388 inc/_ps/wpbc-form-templates.php:55
|
7232 |
#: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
|
7233 |
#: inc/_ps/wpbc-form-templates.php:120
|
7234 |
msgid "Post code (required)"
|
7235 |
msgstr ""
|
7236 |
|
7237 |
+
#: core/lib/wpbc_all_translations.php:1389 inc/_ps/wpbc-form-templates.php:56
|
7238 |
#: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
|
7239 |
#: inc/_ps/wpbc-form-templates.php:121
|
7240 |
msgid "Country (required)"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
+
#: core/lib/wpbc_all_translations.php:1390 inc/_ps/wpbc-form-templates.php:89
|
7244 |
msgid "night(s)"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
+
#: core/lib/wpbc_all_translations.php:1391 inc/_ps/wpbc-form-templates.php:90
|
7248 |
#: inc/_ps/wpbc-form-templates.php:112
|
7249 |
msgid "Full cost of the booking"
|
7250 |
msgstr ""
|
7251 |
|
7252 |
+
#: core/lib/wpbc_all_translations.php:1392 inc/_ps/wpbc-form-templates.php:122
|
7253 |
#: inc/_ps/wpbc-form-templates.php:194
|
7254 |
msgid "Visitors"
|
7255 |
msgstr ""
|
7256 |
|
7257 |
+
#: core/lib/wpbc_all_translations.php:1393 inc/_ps/wpbc-form-templates.php:145
|
7258 |
#: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
|
7259 |
#: inc/_ps/wpbc-form-templates.php:187
|
7260 |
msgid "Last Name"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
+
#: core/lib/wpbc_all_translations.php:1394 inc/_ps/wpbc-form-templates.php:146
|
7264 |
#: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
|
7265 |
#: inc/_ps/wpbc-form-templates.php:188
|
7266 |
msgid "Email"
|
7267 |
msgstr ""
|
7268 |
|
7269 |
+
#: core/lib/wpbc_all_translations.php:1395 inc/_ps/wpbc-form-templates.php:160
|
7270 |
#: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
|
7271 |
msgid "Address"
|
7272 |
msgstr ""
|
7273 |
|
7274 |
+
#: core/lib/wpbc_all_translations.php:1396 inc/_ps/wpbc-form-templates.php:161
|
7275 |
#: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
|
7276 |
msgid "City"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
+
#: core/lib/wpbc_all_translations.php:1397 inc/_ps/wpbc-form-templates.php:162
|
7280 |
#: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
|
7281 |
msgid "Post code"
|
7282 |
msgstr ""
|
7283 |
|
7284 |
+
#: core/lib/wpbc_all_translations.php:1398 inc/_ps/wpbc-form-templates.php:163
|
7285 |
#: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
|
7286 |
+
#: inc/gateways/page-gateways.php:350
|
7287 |
msgid "Country"
|
7288 |
msgstr ""
|
7289 |
|
7290 |
+
#: core/lib/wpbc_all_translations.php:1399 inc/_ps/wpbc-form-templates.php:222
|
7291 |
#: inc/_ps/wpbc-form-templates.php:242 inc/_ps/wpbc-form-templates.php:252
|
7292 |
#: inc/_ps/wpbc-form-templates.php:262 inc/_ps/wpbc-form-templates.php:272
|
7293 |
msgid "Check in"
|
7294 |
msgstr ""
|
7295 |
|
7296 |
+
#: core/lib/wpbc_all_translations.php:1400 inc/_ps/wpbc-form-templates.php:225
|
7297 |
#: inc/_ps/wpbc-form-templates.php:243 inc/_ps/wpbc-form-templates.php:253
|
7298 |
#: inc/_ps/wpbc-form-templates.php:263 inc/_ps/wpbc-form-templates.php:273
|
7299 |
msgid "Check out"
|
7300 |
msgstr ""
|
7301 |
|
7302 |
+
#: core/lib/wpbc_all_translations.php:1401 inc/_ps/wpbc-form-templates.php:228
|
7303 |
#: inc/_ps/wpbc-form-templates.php:244 inc/_ps/wpbc-form-templates.php:254
|
7304 |
#: inc/_ps/wpbc-form-templates.php:264 inc/_ps/wpbc-form-templates.php:274
|
7305 |
msgid "Guests"
|
7306 |
msgstr ""
|
7307 |
|
7308 |
+
#: core/lib/wpbc_all_translations.php:1402 inc/_ps/wpbc-form-templates.php:308
|
7309 |
#: inc/_ps/wpbc-form-templates.php:334 inc/_ps/wpbc-form-templates.php:351
|
7310 |
msgid "Max. persons"
|
7311 |
msgstr ""
|
7312 |
|
7313 |
+
#: core/lib/wpbc_all_translations.php:1403 inc/_ps/wpbc-print.php:84
|
7314 |
msgid "Data"
|
7315 |
msgstr ""
|
7316 |
|
7317 |
+
#: core/lib/wpbc_all_translations.php:1404 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:293
|
7318 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
|
7319 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:318
|
7320 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
|
7321 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:385 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:486
|
|
|
7322 |
msgid "Enable this payment gateway"
|
7323 |
msgstr ""
|
7324 |
|
7325 |
+
#: core/lib/wpbc_all_translations.php:1405 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:303
|
7326 |
msgid "API Login ID"
|
7327 |
msgstr ""
|
7328 |
|
7329 |
+
#: core/lib/wpbc_all_translations.php:1406 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:305
|
7330 |
#, php-format
|
7331 |
msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
|
7332 |
msgstr ""
|
7333 |
|
7334 |
+
#: core/lib/wpbc_all_translations.php:1407
|
7335 |
msgid "Transaction Key"
|
7336 |
msgstr ""
|
7337 |
|
7338 |
+
#: core/lib/wpbc_all_translations.php:1408 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:514
|
7339 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:529
|
7340 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:546
|
7341 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:561
|
|
|
|
|
7342 |
#, php-format
|
7343 |
msgid "This parameter have to assigned to you by %s"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
+
#: core/lib/wpbc_all_translations.php:1409 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:361
|
7347 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
|
7348 |
#: inc/gateways/sage/wpbc-gw-sage.php:424
|
7349 |
msgid "Chose payment mode"
|
7350 |
msgstr ""
|
7351 |
|
7352 |
+
#: core/lib/wpbc_all_translations.php:1410 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:362
|
7353 |
msgid ""
|
7354 |
"Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
|
7355 |
"for using Developer account."
|
7356 |
msgstr ""
|
7357 |
|
7358 |
+
#: core/lib/wpbc_all_translations.php:1411 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:365
|
7359 |
msgid ""
|
7360 |
"Transactions posted against live merchant accounts using either of the above testing methods are "
|
7361 |
"not submitted to financial institutions for authorization and are not stored in the Merchant "
|
7362 |
"Interface."
|
7363 |
msgstr ""
|
7364 |
|
7365 |
+
#: core/lib/wpbc_all_translations.php:1412 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:370
|
7366 |
msgid "Developer Test"
|
7367 |
msgstr ""
|
7368 |
|
7369 |
+
#: core/lib/wpbc_all_translations.php:1413 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:371
|
7370 |
msgid "Live Test"
|
7371 |
msgstr ""
|
7372 |
|
7373 |
+
#: core/lib/wpbc_all_translations.php:1414 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:372
|
7374 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:429
|
7375 |
msgid "Live"
|
7376 |
msgstr ""
|
7377 |
|
7378 |
+
#: core/lib/wpbc_all_translations.php:1415 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:380
|
7379 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
|
7380 |
msgid "Transaction type"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
+
#: core/lib/wpbc_all_translations.php:1416 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:381
|
7384 |
msgid "Select transaction type, which supported by the payment gateway."
|
7385 |
msgstr ""
|
7386 |
|
7387 |
+
#: core/lib/wpbc_all_translations.php:1417 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:384
|
7388 |
msgid "Authorization and Capture"
|
7389 |
msgstr ""
|
7390 |
|
7391 |
+
#: core/lib/wpbc_all_translations.php:1418 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:385
|
7392 |
msgid "Authorization Only"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
+
#: core/lib/wpbc_all_translations.php:1419 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:391
|
7396 |
+
#: inc/gateways/paypal/wpbc-gw-paypal.php:438 inc/gateways/sage/wpbc-gw-sage.php:453
|
7397 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:582
|
|
|
7398 |
msgid "U.S. Dollars"
|
7399 |
msgstr ""
|
7400 |
|
7401 |
+
#: core/lib/wpbc_all_translations.php:1420 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:392
|
7402 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:583
|
|
|
7403 |
msgid "Pounds Sterling"
|
7404 |
msgstr ""
|
7405 |
|
7406 |
+
#: core/lib/wpbc_all_translations.php:1421 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:393
|
7407 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
|
7408 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:584
|
7409 |
msgid "Euros"
|
7410 |
msgstr ""
|
7411 |
|
7412 |
+
#: core/lib/wpbc_all_translations.php:1422 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:394
|
7413 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
|
7414 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:585
|
7415 |
msgid "Canadian Dollars"
|
7416 |
msgstr ""
|
7417 |
|
7418 |
+
#: core/lib/wpbc_all_translations.php:1423 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:399
|
7419 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:369 inc/gateways/paypal/wpbc-gw-paypal.php:466
|
7420 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:726
|
|
|
7421 |
msgid "Accepted Currency"
|
7422 |
msgstr ""
|
7423 |
|
7424 |
+
#: core/lib/wpbc_all_translations.php:1424 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:400
|
7425 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:370 inc/gateways/paypal/wpbc-gw-paypal.php:467
|
7426 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:727
|
|
|
7427 |
msgid "The currency code that gateway will process the payment in."
|
7428 |
msgstr ""
|
7429 |
|
7430 |
+
#: core/lib/wpbc_all_translations.php:1425 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:403
|
7431 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:730
|
7432 |
msgid ""
|
7433 |
"Setting the currency that is not supported by the payment processor will result in an error."
|
7434 |
msgstr ""
|
7435 |
|
7436 |
+
#: core/lib/wpbc_all_translations.php:1426 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:413
|
7437 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:414
|
7438 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1038 inc/gateways/ideal/wpbc-gw-ideal.php:309
|
7439 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
|
7440 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:1046 inc/gateways/ipay88/wpbc-gw-ipay88.php:379
|
7441 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:380 inc/gateways/ipay88/wpbc-gw-ipay88.php:986
|
7442 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:495 inc/gateways/paypal/wpbc-gw-paypal.php:496
|
7443 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1327 inc/gateways/sage/wpbc-gw-sage.php:488
|
7444 |
#: inc/gateways/sage/wpbc-gw-sage.php:489 inc/gateways/sage/wpbc-gw-sage.php:1042
|
7445 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:748
|
7446 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:749
|
7447 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1303
|
|
|
7448 |
msgid "Pay via"
|
7449 |
msgstr ""
|
7450 |
|
7451 |
+
#: core/lib/wpbc_all_translations.php:1427 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:415
|
7452 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:381
|
7453 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
|
7454 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:750
|
7455 |
msgid "Payment button title"
|
7456 |
msgstr ""
|
7457 |
|
7458 |
+
#: core/lib/wpbc_all_translations.php:1428 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:416
|
7459 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
|
7460 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
|
7461 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:751
|
7462 |
msgid "Enter the title of the payment button"
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#: core/lib/wpbc_all_translations.php:1429 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:427
|
7466 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:428
|
7467 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1034 inc/gateways/ideal/wpbc-gw-ideal.php:471
|
7468 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
|
7469 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:393 inc/gateways/ipay88/wpbc-gw-ipay88.php:394
|
7470 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:983 inc/gateways/paypal/wpbc-gw-paypal.php:523
|
7471 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:524 inc/gateways/paypal/wpbc-gw-paypal.php:1329
|
7472 |
#: inc/gateways/sage/wpbc-gw-sage.php:502 inc/gateways/sage/wpbc-gw-sage.php:503
|
7473 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:1038 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:762
|
7474 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:763
|
7475 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1304
|
|
|
|
|
7476 |
#, php-format
|
7477 |
msgid "Payment for booking %s on these day(s): %s"
|
7478 |
msgstr ""
|
7479 |
|
7480 |
+
#: core/lib/wpbc_all_translations.php:1430 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:429
|
7481 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:395
|
7482 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
|
7483 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:764
|
7484 |
msgid "Payment description at gateway website"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
+
#: core/lib/wpbc_all_translations.php:1431 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:430
|
7488 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:396
|
7489 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
|
7490 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:765
|
7491 |
msgid "Enter the service name or the reason for the payment here."
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: core/lib/wpbc_all_translations.php:1432 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:431
|
7495 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:397
|
7496 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
|
7497 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:766
|
7498 |
msgid "You can use any shortcodes, which you have used in content of booking fields data form."
|
7499 |
msgstr ""
|
7500 |
|
7501 |
+
#: core/lib/wpbc_all_translations.php:1433 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:434
|
7502 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:400
|
7503 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
|
7504 |
#, php-format
|
7505 |
msgid "This field support only up to %s characters by payment system."
|
7506 |
msgstr ""
|
7507 |
|
7508 |
+
#: core/lib/wpbc_all_translations.php:1434 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:452
|
7509 |
msgid "Activate Relay Response"
|
7510 |
msgstr ""
|
7511 |
|
7512 |
+
#: core/lib/wpbc_all_translations.php:1435 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:453
|
7513 |
msgid ""
|
7514 |
"Indicate to the payment gateway that you would like to receive the transaction response to your "
|
7515 |
"site."
|
7516 |
msgstr ""
|
7517 |
|
7518 |
+
#: core/lib/wpbc_all_translations.php:1436 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:456
|
7519 |
msgid ""
|
7520 |
"You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
|
7521 |
"Interface, if a Relay Response is activated here."
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: core/lib/wpbc_all_translations.php:1437
|
7525 |
msgid "MD5 Hash value"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
+
#: core/lib/wpbc_all_translations.php:1438
|
7529 |
msgid ""
|
7530 |
"Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
|
7531 |
msgstr ""
|
7532 |
|
7533 |
+
#: core/lib/wpbc_all_translations.php:1439
|
7534 |
msgid "To configure MD5 Hash value in Relay Response for your transactions"
|
7535 |
msgstr ""
|
7536 |
|
7537 |
+
#: core/lib/wpbc_all_translations.php:1440
|
7538 |
msgid "Log on to the Merchant Interface"
|
7539 |
msgstr ""
|
7540 |
|
7541 |
+
#: core/lib/wpbc_all_translations.php:1441
|
7542 |
msgid "Click Settings under Account in the main menu on the left"
|
7543 |
msgstr ""
|
7544 |
|
7545 |
+
#: core/lib/wpbc_all_translations.php:1442
|
7546 |
msgid "Click MD5-Hash in the Security Settings section"
|
7547 |
msgstr ""
|
7548 |
|
7549 |
+
#: core/lib/wpbc_all_translations.php:1443
|
7550 |
msgid "Enter this value"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
+
#: core/lib/wpbc_all_translations.php:1444
|
7554 |
msgid "Click Submit"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
+
#: core/lib/wpbc_all_translations.php:1445
|
7558 |
#, php-format
|
7559 |
msgid ""
|
7560 |
"For more information about configuring Relay Response in the Merchant Interface, please see the "
|
7561 |
"%sMerchant Integration Guide%s"
|
7562 |
msgstr ""
|
7563 |
|
7564 |
+
#: core/lib/wpbc_all_translations.php:1446 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:492
|
7565 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:421
|
7566 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:790
|
|
|
7567 |
msgid "Return URL after Successful order"
|
7568 |
msgstr ""
|
7569 |
|
7570 |
+
#: core/lib/wpbc_all_translations.php:1447 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:510
|
7571 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:437
|
7572 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
|
7573 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:808
|
7574 |
msgid "The URL where visitor will be redirected after completing payment."
|
7575 |
msgstr ""
|
7576 |
|
7577 |
+
#: core/lib/wpbc_all_translations.php:1448 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:511
|
7578 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:438
|
7579 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
|
7580 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:809
|
7581 |
#, php-format
|
7582 |
msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
|
7583 |
msgstr ""
|
7584 |
|
7585 |
+
#: core/lib/wpbc_all_translations.php:1449 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:526
|
7586 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:452
|
7587 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:824
|
|
|
7588 |
msgid "Return URL after Failed order"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
+
#: core/lib/wpbc_all_translations.php:1450 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:544
|
7592 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:468
|
7593 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
|
7594 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:842
|
7595 |
msgid "The URL where the visitor will be redirected after completing payment."
|
7596 |
msgstr ""
|
7597 |
|
7598 |
+
#: core/lib/wpbc_all_translations.php:1451 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:545
|
7599 |
+
#: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:469
|
7600 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
|
7601 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:843
|
7602 |
#, php-format
|
7603 |
msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
|
7604 |
msgstr ""
|
7605 |
|
7606 |
+
#: core/lib/wpbc_all_translations.php:1452 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:556
|
7607 |
msgid "Automatically approve booking"
|
7608 |
msgstr ""
|
7609 |
|
7610 |
+
#: core/lib/wpbc_all_translations.php:1453 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:557
|
7611 |
msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
|
7612 |
msgstr ""
|
7613 |
|
7614 |
+
#: core/lib/wpbc_all_translations.php:1454 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:559
|
7615 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/paypal/wpbc-gw-paypal.php:640
|
7616 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:857
|
|
|
7617 |
msgid "This will not work, if the visitor leaves the payment page."
|
7618 |
msgstr ""
|
7619 |
|
7620 |
+
#: core/lib/wpbc_all_translations.php:1455 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:779
|
7621 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7622 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7623 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
|
7624 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:801 inc/gateways/ideal/wpbc-gw-ideal.php:904
|
7625 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:729 inc/gateways/ipay88/wpbc-gw-ipay88.php:845
|
7626 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:388
|
7627 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:947 inc/gateways/paypal/wpbc-gw-paypal.php:1042
|
7628 |
#: inc/gateways/sage/wpbc-gw-sage.php:783 inc/gateways/sage/wpbc-gw-sage.php:894
|
7629 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:965
|
7630 |
#, php-format
|
7631 |
msgid "%s Settings"
|
7632 |
msgstr ""
|
7633 |
|
7634 |
+
#: core/lib/wpbc_all_translations.php:1456 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:780
|
7635 |
msgid "Integration of authorizenet payment system"
|
7636 |
msgstr ""
|
7637 |
|
7638 |
+
#: core/lib/wpbc_all_translations.php:1457
|
7639 |
#, php-format
|
7640 |
msgid ""
|
7641 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
7643 |
"gateway."
|
7644 |
msgstr ""
|
7645 |
|
7646 |
+
#: core/lib/wpbc_all_translations.php:1458
|
7647 |
msgid ""
|
7648 |
"Please configure all fields inside the Billing form fields tab at this page, when using a "
|
7649 |
"European payment processor"
|
7650 |
msgstr ""
|
7651 |
|
7652 |
+
#: core/lib/wpbc_all_translations.php:1459 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:887
|
7653 |
msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
|
7654 |
msgstr ""
|
7655 |
|
7656 |
+
#: core/lib/wpbc_all_translations.php:1460 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:897
|
7657 |
#, php-format
|
7658 |
msgid "%s - Server Integration Method (SIM)"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
+
#: core/lib/wpbc_all_translations.php:1461 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:231
|
7662 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
|
7663 |
msgid "Payment method description that the customer will see on your payment page."
|
7664 |
msgstr ""
|
7665 |
|
7666 |
+
#: core/lib/wpbc_all_translations.php:1462 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:264
|
7667 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
|
7668 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7669 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7670 |
msgid "Bank Transfer"
|
7671 |
msgstr ""
|
7672 |
|
7673 |
+
#: core/lib/wpbc_all_translations.php:1463 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:345
|
7674 |
msgid "Integration of Bank Transfer payment system"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
+
#: core/lib/wpbc_all_translations.php:1464 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:426
|
7678 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
|
7679 |
msgid "Account details"
|
7680 |
msgstr ""
|
7681 |
|
7682 |
+
#: core/lib/wpbc_all_translations.php:1465 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:480
|
7683 |
#, php-format
|
7684 |
msgid "Allow payments by %sdirect bank / wire transfer%s"
|
7685 |
msgstr ""
|
7686 |
|
7687 |
+
#: core/lib/wpbc_all_translations.php:1466 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:482
|
7688 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
|
7689 |
msgid "Its only show fixed payment details."
|
7690 |
msgstr ""
|
7691 |
|
7692 |
+
#: core/lib/wpbc_all_translations.php:1467 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:717
|
7693 |
msgid "Sort Code"
|
7694 |
msgstr ""
|
7695 |
|
7696 |
+
#: core/lib/wpbc_all_translations.php:1468 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:725
|
7697 |
#, php-format
|
7698 |
msgid ""
|
7699 |
"Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
|
7700 |
"the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
|
7701 |
msgstr ""
|
7702 |
|
7703 |
+
#: core/lib/wpbc_all_translations.php:1469 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:731
|
7704 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
|
7705 |
msgid "Account Number"
|
7706 |
msgstr ""
|
7707 |
|
7708 |
+
#: core/lib/wpbc_all_translations.php:1470 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:733
|
7709 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
|
7710 |
msgid "IBAN"
|
7711 |
msgstr ""
|
7712 |
|
7713 |
+
#: core/lib/wpbc_all_translations.php:1471 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:734
|
7714 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
|
7715 |
msgid "BIC / Swift"
|
7716 |
msgstr ""
|
7717 |
|
7718 |
+
#: core/lib/wpbc_all_translations.php:1472 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:737
|
7719 |
msgid "Account Name"
|
7720 |
msgstr ""
|
7721 |
|
7722 |
+
#: core/lib/wpbc_all_translations.php:1473 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:739
|
7723 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:324
|
7724 |
msgid "Bank Name"
|
7725 |
msgstr ""
|
7726 |
|
7727 |
+
#: core/lib/wpbc_all_translations.php:1474 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:787
|
7728 |
msgid "BSB"
|
7729 |
msgstr ""
|
7730 |
|
7731 |
+
#: core/lib/wpbc_all_translations.php:1475 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:788
|
7732 |
msgid "Bank Transit Number"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
+
#: core/lib/wpbc_all_translations.php:1476 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:789
|
7736 |
msgid "IFSC"
|
7737 |
msgstr ""
|
7738 |
|
7739 |
+
#: core/lib/wpbc_all_translations.php:1477 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:790
|
7740 |
msgid "Branch Sort"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
+
#: core/lib/wpbc_all_translations.php:1478 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:791
|
7744 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
|
7745 |
msgid "Bank Code"
|
7746 |
msgstr ""
|
7747 |
|
7748 |
+
#: core/lib/wpbc_all_translations.php:1479 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:793
|
7749 |
msgid "Routing Number"
|
7750 |
msgstr ""
|
7751 |
|
7752 |
+
#: core/lib/wpbc_all_translations.php:1480 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:794
|
7753 |
msgid "Branch Code"
|
7754 |
msgstr ""
|
7755 |
|
7756 |
+
#: core/lib/wpbc_all_translations.php:1481 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:804
|
7757 |
#, php-format
|
7758 |
msgid "%s - inserting all bank accounts details"
|
7759 |
msgstr ""
|
7760 |
|
7761 |
+
#: core/lib/wpbc_all_translations.php:1482 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:805
|
7762 |
#, php-format
|
7763 |
msgid "%s - inserting account name"
|
7764 |
msgstr ""
|
7765 |
|
7766 |
+
#: core/lib/wpbc_all_translations.php:1483 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:806
|
7767 |
#, php-format
|
7768 |
msgid "%s - inserting account number"
|
7769 |
msgstr ""
|
7770 |
|
7771 |
+
#: core/lib/wpbc_all_translations.php:1484 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:807
|
7772 |
#, php-format
|
7773 |
msgid "%s - inserting bank name "
|
7774 |
msgstr ""
|
7775 |
|
7776 |
+
#: core/lib/wpbc_all_translations.php:1485 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:808
|
7777 |
#, php-format
|
7778 |
msgid "%s - inserting sort code "
|
7779 |
msgstr ""
|
7780 |
|
7781 |
+
#: core/lib/wpbc_all_translations.php:1486 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:809
|
7782 |
#, php-format
|
7783 |
msgid "%s - inserting IBAN "
|
7784 |
msgstr ""
|
7785 |
|
7786 |
+
#: core/lib/wpbc_all_translations.php:1487 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:810
|
7787 |
#, php-format
|
7788 |
msgid "%s - inserting BIC "
|
7789 |
msgstr ""
|
7790 |
|
7791 |
+
#: core/lib/wpbc_all_translations.php:1488 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:815
|
7792 |
msgid ""
|
7793 |
"You can use any shortcodes, that you can use in payment description form at Settings Payment "
|
7794 |
"General page"
|
7795 |
msgstr ""
|
7796 |
|
7797 |
+
#: core/lib/wpbc_all_translations.php:1489 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
|
7798 |
msgid "+ Add Account"
|
7799 |
msgstr ""
|
7800 |
|
7801 |
+
#: core/lib/wpbc_all_translations.php:1490 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
|
7802 |
msgid "Remove selected account(s)"
|
7803 |
msgstr ""
|
7804 |
|
7805 |
+
#: core/lib/wpbc_all_translations.php:1491 inc/gateways/ipay88/ipay88-backend.php:92
|
7806 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:570
|
7807 |
msgid "Successful payment"
|
7808 |
msgstr ""
|
7809 |
|
7810 |
+
#: core/lib/wpbc_all_translations.php:1492 inc/gateways/ipay88/ipay88-backend.php:94
|
7811 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:573
|
7812 |
msgid " Parameters are incorrect,"
|
7813 |
msgstr ""
|
7814 |
|
7815 |
+
#: core/lib/wpbc_all_translations.php:1493 inc/gateways/ipay88/ipay88-backend.php:95
|
7816 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:575
|
7817 |
msgid "Cannot find the record"
|
7818 |
msgstr ""
|
7819 |
|
7820 |
+
#: core/lib/wpbc_all_translations.php:1494 inc/gateways/ipay88/ipay88-backend.php:96
|
7821 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:577
|
7822 |
msgid "Amount different"
|
7823 |
msgstr ""
|
7824 |
|
7825 |
+
#: core/lib/wpbc_all_translations.php:1495 inc/gateways/ipay88/ipay88-backend.php:97
|
7826 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:579
|
7827 |
msgid "Payment failed"
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: core/lib/wpbc_all_translations.php:1496 inc/gateways/ipay88/ipay88-backend.php:98
|
7831 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:581
|
7832 |
msgid "Payment status updated by Mobile88 Admin(Fail)"
|
7833 |
msgstr ""
|
7834 |
|
7835 |
+
#: core/lib/wpbc_all_translations.php:1497 inc/gateways/ipay88/ipay88-backend.php:99
|
7836 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:583
|
7837 |
msgid "Connection Error"
|
7838 |
msgstr ""
|
7839 |
|
7840 |
+
#: core/lib/wpbc_all_translations.php:1498 inc/gateways/ipay88/wpbc-gw-ipay88.php:328
|
7841 |
msgid "Merchant Code"
|
7842 |
msgstr ""
|
7843 |
|
7844 |
+
#: core/lib/wpbc_all_translations.php:1499 inc/gateways/ipay88/wpbc-gw-ipay88.php:330
|
7845 |
msgid "Enter your iPay88 Merchant Code."
|
7846 |
msgstr ""
|
7847 |
|
7848 |
+
#: core/lib/wpbc_all_translations.php:1500 inc/gateways/ideal/wpbc-gw-ideal.php:403
|
7849 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:343
|
7850 |
msgid "Merchant Key"
|
7851 |
msgstr ""
|
7852 |
|
7853 |
+
#: core/lib/wpbc_all_translations.php:1501 inc/gateways/ipay88/wpbc-gw-ipay88.php:345
|
7854 |
msgid "Enter your iPay88 Merchant Key."
|
7855 |
msgstr ""
|
7856 |
|
7857 |
+
#: core/lib/wpbc_all_translations.php:1502 inc/gateways/ipay88/wpbc-gw-ipay88.php:355
|
7858 |
msgid "Malaysian Ringgit"
|
7859 |
msgstr ""
|
7860 |
|
7861 |
+
#: core/lib/wpbc_all_translations.php:1503 inc/gateways/paypal/wpbc-gw-paypal.php:458
|
7862 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:471
|
7863 |
msgid "Philippine Pesos"
|
7864 |
msgstr ""
|
7865 |
|
7866 |
+
#: core/lib/wpbc_all_translations.php:1504 inc/gateways/ideal/wpbc-gw-ideal.php:564
|
7867 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:479 inc/gateways/paypal/wpbc-gw-paypal.php:637
|
7868 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:854
|
|
|
7869 |
msgid "Automatically approve/cancel booking"
|
7870 |
msgstr ""
|
7871 |
|
7872 |
+
#: core/lib/wpbc_all_translations.php:1505 inc/gateways/ideal/wpbc-gw-ideal.php:565
|
7873 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:480 inc/gateways/paypal/wpbc-gw-paypal.php:638
|
7874 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:855
|
|
|
7875 |
msgid ""
|
7876 |
"Check this box to automatically approve bookings, when visitor makes a successful payment, or "
|
7877 |
"automatically cancel the booking, when visitor makes a payment cancellation."
|
7878 |
msgstr ""
|
7879 |
|
7880 |
+
#: core/lib/wpbc_all_translations.php:1506 inc/gateways/ipay88/wpbc-gw-ipay88.php:730
|
7881 |
msgid "Integration of iPay88 payment system"
|
7882 |
msgstr ""
|
7883 |
|
7884 |
+
#: core/lib/wpbc_all_translations.php:1507 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:879
|
7885 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:832 inc/gateways/sage/wpbc-gw-sage.php:883
|
7886 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1113
|
7887 |
#, php-format
|
7888 |
msgid ""
|
7889 |
"Please configure all fields inside the %sBilling form fields%s section at %sPayments General%s "
|
7890 |
"tab."
|
7891 |
msgstr ""
|
7892 |
|
7893 |
+
#: core/lib/wpbc_all_translations.php:1508 inc/gateways/page-gateways.php:65
|
7894 |
msgid "for 1 day"
|
7895 |
msgstr ""
|
7896 |
|
7897 |
+
#: core/lib/wpbc_all_translations.php:1509 inc/gateways/page-gateways.php:66
|
7898 |
msgid "for 1 night"
|
7899 |
msgstr ""
|
7900 |
|
7901 |
+
#: core/lib/wpbc_all_translations.php:1510 inc/gateways/page-gateways.php:67
|
7902 |
msgid "fixed sum"
|
7903 |
msgstr ""
|
7904 |
|
7905 |
+
#: core/lib/wpbc_all_translations.php:1511 inc/gateways/page-gateways.php:68
|
7906 |
msgid "for 1 hour"
|
7907 |
msgstr ""
|
7908 |
|
7909 |
+
#: core/lib/wpbc_all_translations.php:1512 inc/gateways/page-gateways.php:73
|
7910 |
msgid "Set the cost"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
+
#: core/lib/wpbc_all_translations.php:1513 inc/gateways/page-gateways.php:74
|
7914 |
msgid " Select your cost configuration."
|
7915 |
msgstr ""
|
7916 |
|
7917 |
+
#: core/lib/wpbc_all_translations.php:1514 inc/gateways/page-gateways.php:82
|
7918 |
msgid "Time impact to cost"
|
7919 |
msgstr ""
|
7920 |
|
7921 |
+
#: core/lib/wpbc_all_translations.php:1515 inc/gateways/page-gateways.php:83
|
7922 |
#, php-format
|
7923 |
msgid ""
|
7924 |
"Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
|
7925 |
"calculation%s."
|
7926 |
msgstr ""
|
7927 |
|
7928 |
+
#: core/lib/wpbc_all_translations.php:1516 inc/gateways/page-gateways.php:93
|
7929 |
msgid ""
|
7930 |
"Check this box if you want that specific additional cost, which configured as percentage for "
|
7931 |
"some option, apply to other additional fixed costs and not only to original booking cost."
|
7932 |
msgstr ""
|
7933 |
|
7934 |
+
#: core/lib/wpbc_all_translations.php:1517 inc/gateways/page-gateways.php:184
|
7935 |
+
#: inc/gateways/page-gateways.php:858
|
7936 |
msgid "Currency"
|
7937 |
msgstr ""
|
7938 |
|
7939 |
+
#: core/lib/wpbc_all_translations.php:1518 inc/gateways/page-gateways.php:187
|
7940 |
msgid ""
|
7941 |
"This is default currency that showing at your website. Specific payment gateway(s) can support "
|
7942 |
"or does not suport it."
|
7943 |
msgstr ""
|
7944 |
|
7945 |
+
#: core/lib/wpbc_all_translations.php:1519 inc/gateways/page-gateways.php:152
|
7946 |
+
#: inc/gateways/page-gateways.php:190 inc/gateways/page-gateways.php:910
|
7947 |
msgid "Important"
|
7948 |
msgstr ""
|
7949 |
|
7950 |
+
#: core/lib/wpbc_all_translations.php:1520 inc/gateways/page-gateways.php:190
|
7951 |
msgid "Check and configure currency at each activated payment gateway."
|
7952 |
msgstr ""
|
7953 |
|
7954 |
+
#: core/lib/wpbc_all_translations.php:1521 inc/gateways/page-gateways.php:200
|
7955 |
msgid "Currency Position"
|
7956 |
msgstr ""
|
7957 |
|
7958 |
+
#: core/lib/wpbc_all_translations.php:1522 inc/gateways/page-gateways.php:201
|
7959 |
msgid "Set position of the currency symbol."
|
7960 |
msgstr ""
|
7961 |
|
7962 |
+
#: core/lib/wpbc_all_translations.php:1523 inc/gateways/page-gateways.php:204
|
7963 |
msgid "Left"
|
7964 |
msgstr ""
|
7965 |
|
7966 |
+
#: core/lib/wpbc_all_translations.php:1524 inc/gateways/page-gateways.php:208
|
7967 |
msgid "Right"
|
7968 |
msgstr ""
|
7969 |
|
7970 |
+
#: core/lib/wpbc_all_translations.php:1525 inc/gateways/page-gateways.php:212
|
7971 |
msgid "Left with space"
|
7972 |
msgstr ""
|
7973 |
|
7974 |
+
#: core/lib/wpbc_all_translations.php:1526 inc/gateways/page-gateways.php:216
|
7975 |
msgid "Right with space"
|
7976 |
msgstr ""
|
7977 |
|
7978 |
+
#: core/lib/wpbc_all_translations.php:1527 inc/gateways/page-gateways.php:235
|
7979 |
msgid "Currency format"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
+
#: core/lib/wpbc_all_translations.php:1528 inc/gateways/page-gateways.php:236
|
7983 |
msgid "Number of decimal points"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
+
#: core/lib/wpbc_all_translations.php:1529 inc/gateways/page-gateways.php:243
|
7987 |
+
#: inc/gateways/page-gateways.php:258
|
7988 |
msgid "No separator"
|
7989 |
msgstr ""
|
7990 |
|
7991 |
+
#: core/lib/wpbc_all_translations.php:1530 inc/gateways/page-gateways.php:244
|
7992 |
+
#: inc/gateways/page-gateways.php:259
|
7993 |
msgid "Space"
|
7994 |
msgstr ""
|
7995 |
|
7996 |
+
#: core/lib/wpbc_all_translations.php:1531 inc/gateways/page-gateways.php:245
|
7997 |
+
#: inc/gateways/page-gateways.php:260
|
7998 |
msgid "Dot"
|
7999 |
msgstr ""
|
8000 |
|
8001 |
+
#: core/lib/wpbc_all_translations.php:1532 inc/gateways/page-gateways.php:246
|
8002 |
+
#: inc/gateways/page-gateways.php:261
|
8003 |
msgid "Comma"
|
8004 |
msgstr ""
|
8005 |
|
8006 |
+
#: core/lib/wpbc_all_translations.php:1533 inc/gateways/page-gateways.php:251
|
8007 |
msgid "Separator for the decimal point"
|
8008 |
msgstr ""
|
8009 |
|
8010 |
+
#: core/lib/wpbc_all_translations.php:1534 inc/gateways/page-gateways.php:266
|
8011 |
msgid "Thousands separator"
|
8012 |
msgstr ""
|
8013 |
|
8014 |
+
#: core/lib/wpbc_all_translations.php:1535 inc/gateways/page-gateways.php:279
|
8015 |
msgid "Please select"
|
8016 |
msgstr ""
|
8017 |
|
8018 |
+
#: core/lib/wpbc_all_translations.php:1536 inc/gateways/page-gateways.php:290
|
8019 |
msgid ""
|
8020 |
"Please select a field from your booking form. This field will be automatically assigned to the "
|
8021 |
"current field in the billing form."
|
8022 |
msgstr ""
|
8023 |
|
8024 |
+
#: core/lib/wpbc_all_translations.php:1537 inc/gateways/page-gateways.php:302
|
8025 |
msgid "Customer Email"
|
8026 |
msgstr ""
|
8027 |
|
8028 |
+
#: core/lib/wpbc_all_translations.php:1538 inc/gateways/page-gateways.php:310
|
8029 |
msgid "First Name(s)"
|
8030 |
msgstr ""
|
8031 |
|
8032 |
+
#: core/lib/wpbc_all_translations.php:1539 inc/gateways/page-gateways.php:318
|
8033 |
msgid "Last name"
|
8034 |
msgstr ""
|
8035 |
|
8036 |
+
#: core/lib/wpbc_all_translations.php:1540 inc/gateways/page-gateways.php:334
|
8037 |
msgid "Billing Address"
|
8038 |
msgstr ""
|
8039 |
|
8040 |
+
#: core/lib/wpbc_all_translations.php:1541 inc/gateways/page-gateways.php:342
|
8041 |
msgid "Billing City"
|
8042 |
msgstr ""
|
8043 |
|
8044 |
+
#: core/lib/wpbc_all_translations.php:1542 inc/gateways/page-gateways.php:359
|
8045 |
msgid "Post Code"
|
8046 |
msgstr ""
|
8047 |
|
8048 |
+
#: core/lib/wpbc_all_translations.php:1543 inc/gateways/page-gateways.php:367
|
8049 |
msgid "State"
|
8050 |
msgstr ""
|
8051 |
|
8052 |
+
#: core/lib/wpbc_all_translations.php:1544 inc/gateways/page-gateways.php:379
|
8053 |
msgid "Show booking details in payment form"
|
8054 |
msgstr ""
|
8055 |
|
8056 |
+
#: core/lib/wpbc_all_translations.php:1545 inc/gateways/page-gateways.php:380
|
8057 |
#, php-format
|
8058 |
msgid ""
|
8059 |
" Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
|
8060 |
msgstr ""
|
8061 |
|
8062 |
+
#: core/lib/wpbc_all_translations.php:1546 inc/gateways/page-gateways.php:391
|
8063 |
msgid "Configure booking details summary above the payment form"
|
8064 |
msgstr ""
|
8065 |
|
8066 |
+
#: core/lib/wpbc_all_translations.php:1547 inc/gateways/page-gateways.php:510
|
8067 |
msgid "Payments"
|
8068 |
msgstr ""
|
8069 |
|
8070 |
+
#: core/lib/wpbc_all_translations.php:1548 inc/gateways/page-gateways.php:511
|
8071 |
msgid "Customizaton of Payment"
|
8072 |
msgstr ""
|
8073 |
|
8074 |
+
#: core/lib/wpbc_all_translations.php:1549 inc/gateways/page-gateways.php:512
|
8075 |
msgid "Payment Gateways"
|
8076 |
msgstr ""
|
8077 |
|
8078 |
+
#: core/lib/wpbc_all_translations.php:1550 inc/gateways/page-gateways.php:528
|
8079 |
+
#: inc/gateways/page-gateways.php:598 inc/gateways/page-gateways.php:625
|
8080 |
msgid "Payment Settings"
|
8081 |
msgstr ""
|
8082 |
|
8083 |
+
#: core/lib/wpbc_all_translations.php:1551 inc/gateways/page-gateways.php:529
|
8084 |
msgid "Payment Gateways - General Settings"
|
8085 |
msgstr ""
|
8086 |
|
8087 |
+
#: core/lib/wpbc_all_translations.php:1552 inc/gateways/page-gateways.php:596
|
8088 |
+
#: inc/gateways/page-gateways.php:620
|
8089 |
msgid "Active Payment Gateways"
|
8090 |
msgstr ""
|
8091 |
|
8092 |
+
#: core/lib/wpbc_all_translations.php:1553 inc/gateways/page-gateways.php:597
|
8093 |
+
#: inc/gateways/page-gateways.php:641
|
8094 |
msgid "Billing form fields"
|
8095 |
msgstr ""
|
8096 |
|
8097 |
+
#: core/lib/wpbc_all_translations.php:1554 inc/gateways/page-gateways.php:600
|
8098 |
+
#: inc/gateways/page-gateways.php:655
|
8099 |
msgid "Payment Description"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
+
#: core/lib/wpbc_all_translations.php:1555 inc/gateways/page-gateways.php:856
|
8103 |
msgid "Gateway"
|
8104 |
msgstr ""
|
8105 |
|
8106 |
+
#: core/lib/wpbc_all_translations.php:1556 inc/gateways/page-gateways.php:906
|
8107 |
#, php-format
|
8108 |
msgid "Some currencies at payment gateways are different from main currency %s"
|
8109 |
msgstr ""
|
8110 |
|
8111 |
+
#: core/lib/wpbc_all_translations.php:1557 inc/gateways/page-gateways.php:910
|
8112 |
#, php-format
|
8113 |
msgid ""
|
8114 |
"Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
|
8115 |
"payment form without currency exchange! Its can be reason of wrong cost."
|
8116 |
msgstr ""
|
8117 |
|
8118 |
+
#: core/lib/wpbc_all_translations.php:1558 inc/gateways/page-gateways.php:1059
|
8119 |
msgid "ID of booking"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
+
#: core/lib/wpbc_all_translations.php:1559 inc/gateways/page-gateways.php:1060
|
8123 |
msgid "ID of booking resources"
|
8124 |
msgstr ""
|
8125 |
|
8126 |
+
#: core/lib/wpbc_all_translations.php:1560 inc/gateways/page-gateways.php:1066
|
8127 |
msgid "current date"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
+
#: core/lib/wpbc_all_translations.php:1561 inc/gateways/page-gateways.php:1067
|
8131 |
msgid "current time"
|
8132 |
msgstr ""
|
8133 |
|
8134 |
+
#: core/lib/wpbc_all_translations.php:1562 inc/gateways/page-gateways.php:1073
|
8135 |
msgid "content data of this booking"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
+
#: core/lib/wpbc_all_translations.php:1563 inc/gateways/page-gateways.php:1074
|
8139 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
|
8140 |
msgid "show amount to pay"
|
8141 |
msgstr ""
|
8142 |
|
8143 |
+
#: core/lib/wpbc_all_translations.php:1564 inc/gateways/page-gateways.php:1076
|
8144 |
msgid "total booking cost"
|
8145 |
msgstr ""
|
8146 |
|
8147 |
+
#: core/lib/wpbc_all_translations.php:1565 inc/gateways/page-gateways.php:1077
|
8148 |
msgid "deposit cost"
|
8149 |
msgstr ""
|
8150 |
|
8151 |
+
#: core/lib/wpbc_all_translations.php:1566 inc/gateways/page-gateways.php:1078
|
8152 |
msgid "balance cost"
|
8153 |
msgstr ""
|
8154 |
|
8155 |
+
#: core/lib/wpbc_all_translations.php:1567 inc/gateways/page-gateways.php:1079
|
8156 |
msgid "original booking cost"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
+
#: core/lib/wpbc_all_translations.php:1568 inc/gateways/page-gateways.php:1080
|
8160 |
msgid "additional booking cost"
|
8161 |
msgstr ""
|
8162 |
|
8163 |
+
#: core/lib/wpbc_all_translations.php:1569 inc/gateways/page-gateways.php:1428
|
8164 |
msgid "Amount to pay"
|
8165 |
msgstr ""
|
8166 |
|
8167 |
+
#: core/lib/wpbc_all_translations.php:1570 inc/gateways/page-gateways.php:1522
|
8168 |
#, php-format
|
8169 |
msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
|
8170 |
msgstr ""
|
8171 |
|
8172 |
+
#: core/lib/wpbc_all_translations.php:1571 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:204
|
8173 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
|
8174 |
msgid "Pay in Cash"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
+
#: core/lib/wpbc_all_translations.php:1572 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:284
|
8178 |
msgid "Integration of Pay in Cash payment system"
|
8179 |
msgstr ""
|
8180 |
|
8181 |
+
#: core/lib/wpbc_all_translations.php:1573 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:362
|
8182 |
#, php-format
|
8183 |
msgid "If you accept %scash payment%s, you can write details about it here"
|
8184 |
msgstr ""
|
8185 |
|
8186 |
+
#: core/lib/wpbc_all_translations.php:1574 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:523
|
8187 |
#, php-format
|
8188 |
msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
|
8189 |
msgstr ""
|
8190 |
|
8191 |
+
#: core/lib/wpbc_all_translations.php:1575 inc/gateways/paypal/ipn.php:120
|
8192 |
msgid "Error IPN"
|
8193 |
msgstr ""
|
8194 |
|
8195 |
+
#: core/lib/wpbc_all_translations.php:1576 inc/gateways/paypal/ipn.php:250
|
8196 |
msgid "Verified IPN"
|
8197 |
msgstr ""
|
8198 |
|
8199 |
+
#: core/lib/wpbc_all_translations.php:1577 inc/gateways/paypal/ipn.php:273
|
8200 |
msgid "Invalid IPN"
|
8201 |
msgstr ""
|
8202 |
|
8203 |
+
#: core/lib/wpbc_all_translations.php:1578 inc/gateways/paypal/wpbc-gw-paypal.php:313
|
8204 |
msgid "Make payments with payPal - its fast, free and secure!"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
+
#: core/lib/wpbc_all_translations.php:1579 inc/gateways/paypal/wpbc-gw-paypal.php:352
|
8208 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8209 |
msgid "Paypal Standard"
|
8210 |
msgstr ""
|
8211 |
|
8212 |
+
#: core/lib/wpbc_all_translations.php:1580 inc/gateways/paypal/wpbc-gw-paypal.php:356
|
8213 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8214 |
msgid "Paypal Pro Hosted Solution"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
+
#: core/lib/wpbc_all_translations.php:1581 inc/gateways/paypal/wpbc-gw-paypal.php:363
|
8218 |
msgid "Account Type"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
+
#: core/lib/wpbc_all_translations.php:1582 inc/gateways/paypal/wpbc-gw-paypal.php:375
|
8222 |
msgid "Paypal Email address to receive payments"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
+
#: core/lib/wpbc_all_translations.php:1583 inc/gateways/paypal/wpbc-gw-paypal.php:377
|
8226 |
msgid "This is the Paypal Email address where payments will be sent"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
+
#: core/lib/wpbc_all_translations.php:1584 inc/gateways/paypal/wpbc-gw-paypal.php:391
|
8230 |
msgid "Secure Merchant ID"
|
8231 |
msgstr ""
|
8232 |
|
8233 |
+
#: core/lib/wpbc_all_translations.php:1585 inc/gateways/paypal/wpbc-gw-paypal.php:393
|
8234 |
msgid "This is the Secure Merchant ID, which can be found on the profile page"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
+
#: core/lib/wpbc_all_translations.php:1586 inc/gateways/paypal/wpbc-gw-paypal.php:408
|
8238 |
msgid ""
|
8239 |
" Indicates whether the transaction is payment on a final sale or an authorization for a final "
|
8240 |
"sale, to be captured later. "
|
8241 |
msgstr ""
|
8242 |
|
8243 |
+
#: core/lib/wpbc_all_translations.php:1587 inc/gateways/paypal/wpbc-gw-paypal.php:412
|
8244 |
msgid "Sale"
|
8245 |
msgstr ""
|
8246 |
|
8247 |
+
#: core/lib/wpbc_all_translations.php:1588 inc/gateways/paypal/wpbc-gw-paypal.php:413
|
8248 |
msgid "Authorization"
|
8249 |
msgstr ""
|
8250 |
|
8251 |
+
#: core/lib/wpbc_all_translations.php:1589 inc/gateways/paypal/wpbc-gw-paypal.php:424
|
8252 |
msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
|
8253 |
msgstr ""
|
8254 |
|
8255 |
+
#: core/lib/wpbc_all_translations.php:1590 inc/gateways/paypal/wpbc-gw-paypal.php:430
|
8256 |
msgid "Sandbox"
|
8257 |
msgstr ""
|
8258 |
|
8259 |
+
#: core/lib/wpbc_all_translations.php:1591 inc/gateways/paypal/wpbc-gw-paypal.php:440
|
8260 |
msgid "British Pound"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
+
#: core/lib/wpbc_all_translations.php:1592 inc/gateways/paypal/wpbc-gw-paypal.php:441
|
8264 |
msgid "Japanese Yen"
|
8265 |
msgstr ""
|
8266 |
|
8267 |
+
#: core/lib/wpbc_all_translations.php:1593 inc/gateways/paypal/wpbc-gw-paypal.php:442
|
8268 |
#: inc/gateways/sage/wpbc-gw-sage.php:455
|
8269 |
msgid "Australian Dollars"
|
8270 |
msgstr ""
|
8271 |
|
8272 |
+
#: core/lib/wpbc_all_translations.php:1594 inc/gateways/paypal/wpbc-gw-paypal.php:444
|
8273 |
#: inc/gateways/sage/wpbc-gw-sage.php:457
|
8274 |
msgid "New Zealand Dollar"
|
8275 |
msgstr ""
|
8276 |
|
8277 |
+
#: core/lib/wpbc_all_translations.php:1595 inc/gateways/paypal/wpbc-gw-paypal.php:445
|
8278 |
#: inc/gateways/sage/wpbc-gw-sage.php:458
|
8279 |
msgid "Swiss Franc"
|
8280 |
msgstr ""
|
8281 |
|
8282 |
+
#: core/lib/wpbc_all_translations.php:1596 inc/gateways/paypal/wpbc-gw-paypal.php:446
|
8283 |
#: inc/gateways/sage/wpbc-gw-sage.php:459
|
8284 |
msgid "Hong Kong Dollar"
|
8285 |
msgstr ""
|
8286 |
|
8287 |
+
#: core/lib/wpbc_all_translations.php:1597 inc/gateways/paypal/wpbc-gw-paypal.php:447
|
8288 |
#: inc/gateways/sage/wpbc-gw-sage.php:460
|
8289 |
msgid "Singapore Dollar"
|
8290 |
msgstr ""
|
8291 |
|
8292 |
+
#: core/lib/wpbc_all_translations.php:1598 inc/gateways/paypal/wpbc-gw-paypal.php:448
|
8293 |
#: inc/gateways/sage/wpbc-gw-sage.php:461
|
8294 |
msgid "Swedish Krona"
|
8295 |
msgstr ""
|
8296 |
|
8297 |
+
#: core/lib/wpbc_all_translations.php:1599 inc/gateways/paypal/wpbc-gw-paypal.php:449
|
8298 |
#: inc/gateways/sage/wpbc-gw-sage.php:462
|
8299 |
msgid "Danish Krone"
|
8300 |
msgstr ""
|
8301 |
|
8302 |
+
#: core/lib/wpbc_all_translations.php:1600 inc/gateways/paypal/wpbc-gw-paypal.php:450
|
8303 |
#: inc/gateways/sage/wpbc-gw-sage.php:463
|
8304 |
msgid "Polish Zloty"
|
8305 |
msgstr ""
|
8306 |
|
8307 |
+
#: core/lib/wpbc_all_translations.php:1601 inc/gateways/paypal/wpbc-gw-paypal.php:451
|
8308 |
#: inc/gateways/sage/wpbc-gw-sage.php:464
|
8309 |
msgid "Norwegian Krone"
|
8310 |
msgstr ""
|
8311 |
|
8312 |
+
#: core/lib/wpbc_all_translations.php:1602 inc/gateways/paypal/wpbc-gw-paypal.php:452
|
8313 |
#: inc/gateways/sage/wpbc-gw-sage.php:465
|
8314 |
msgid "Hungarian Forint"
|
8315 |
msgstr ""
|
8316 |
|
8317 |
+
#: core/lib/wpbc_all_translations.php:1603 inc/gateways/paypal/wpbc-gw-paypal.php:453
|
8318 |
#: inc/gateways/sage/wpbc-gw-sage.php:466
|
8319 |
msgid "Czech Koruna"
|
8320 |
msgstr ""
|
8321 |
|
8322 |
+
#: core/lib/wpbc_all_translations.php:1604 inc/gateways/paypal/wpbc-gw-paypal.php:454
|
8323 |
msgid "Israeli New Shekel"
|
8324 |
msgstr ""
|
8325 |
|
8326 |
+
#: core/lib/wpbc_all_translations.php:1605 inc/gateways/paypal/wpbc-gw-paypal.php:455
|
8327 |
#: inc/gateways/sage/wpbc-gw-sage.php:468
|
8328 |
msgid "Mexican Peso"
|
8329 |
msgstr ""
|
8330 |
|
8331 |
+
#: core/lib/wpbc_all_translations.php:1606 inc/gateways/paypal/wpbc-gw-paypal.php:456
|
8332 |
#: inc/gateways/sage/wpbc-gw-sage.php:469
|
8333 |
msgid "Brazilian Real (only for Brazilian users)"
|
8334 |
msgstr ""
|
8335 |
|
8336 |
+
#: core/lib/wpbc_all_translations.php:1607 inc/gateways/paypal/wpbc-gw-paypal.php:457
|
8337 |
#: inc/gateways/sage/wpbc-gw-sage.php:470
|
8338 |
msgid "Malaysian Ringgits (only for Malaysian users)"
|
8339 |
msgstr ""
|
8340 |
|
8341 |
+
#: core/lib/wpbc_all_translations.php:1608 inc/gateways/paypal/wpbc-gw-paypal.php:459
|
8342 |
#: inc/gateways/sage/wpbc-gw-sage.php:472
|
8343 |
msgid "Taiwan New Dollars"
|
8344 |
msgstr ""
|
8345 |
|
8346 |
+
#: core/lib/wpbc_all_translations.php:1609 inc/gateways/paypal/wpbc-gw-paypal.php:460
|
8347 |
#: inc/gateways/sage/wpbc-gw-sage.php:473
|
8348 |
msgid "Thai Baht"
|
8349 |
msgstr ""
|
8350 |
|
8351 |
+
#: core/lib/wpbc_all_translations.php:1610 inc/gateways/paypal/wpbc-gw-paypal.php:461
|
8352 |
msgid "Turkish Lira (only for Turkish members)"
|
8353 |
msgstr ""
|
8354 |
|
8355 |
+
#: core/lib/wpbc_all_translations.php:1611 inc/gateways/paypal/wpbc-gw-paypal.php:480
|
8356 |
msgid "Custom button title"
|
8357 |
msgstr ""
|
8358 |
|
8359 |
+
#: core/lib/wpbc_all_translations.php:1612 inc/gateways/paypal/wpbc-gw-paypal.php:487
|
8360 |
msgid "Payment Button type"
|
8361 |
msgstr ""
|
8362 |
|
8363 |
+
#: core/lib/wpbc_all_translations.php:1613 inc/gateways/paypal/wpbc-gw-paypal.php:542
|
8364 |
msgid "Show Reference Text Box"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
+
#: core/lib/wpbc_all_translations.php:1614 inc/gateways/paypal/wpbc-gw-paypal.php:543
|
8368 |
msgid "Check this box to show Reference Text Box"
|
8369 |
msgstr ""
|
8370 |
|
8371 |
+
#: core/lib/wpbc_all_translations.php:1615 inc/gateways/paypal/wpbc-gw-paypal.php:551
|
8372 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
|
8373 |
msgid "Enter your phone number"
|
8374 |
msgstr ""
|
8375 |
|
8376 |
+
#: core/lib/wpbc_all_translations.php:1616 inc/gateways/paypal/wpbc-gw-paypal.php:553
|
8377 |
msgid "Reference Text Box Title"
|
8378 |
msgstr ""
|
8379 |
|
8380 |
+
#: core/lib/wpbc_all_translations.php:1617 inc/gateways/paypal/wpbc-gw-paypal.php:554
|
8381 |
msgid ""
|
8382 |
"Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
|
8383 |
msgstr ""
|
8384 |
|
8385 |
+
#: core/lib/wpbc_all_translations.php:1618 inc/gateways/paypal/wpbc-gw-paypal.php:575
|
8386 |
msgid "Return URL from PayPal"
|
8387 |
msgstr ""
|
8388 |
|
8389 |
+
#: core/lib/wpbc_all_translations.php:1619 inc/gateways/paypal/wpbc-gw-paypal.php:606
|
8390 |
msgid "Cancel Return URL from PayPal"
|
8391 |
msgstr ""
|
8392 |
|
8393 |
+
#: core/lib/wpbc_all_translations.php:1620 inc/gateways/paypal/wpbc-gw-paypal.php:657
|
8394 |
#, php-format
|
8395 |
msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
|
8396 |
msgstr ""
|
8397 |
|
8398 |
+
#: core/lib/wpbc_all_translations.php:1621 inc/gateways/paypal/wpbc-gw-paypal.php:658
|
8399 |
msgid "Follow these steps to configure it:"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
+
#: core/lib/wpbc_all_translations.php:1622 inc/gateways/paypal/wpbc-gw-paypal.php:660
|
8403 |
msgid "Log in to your PayPal account."
|
8404 |
msgstr ""
|
8405 |
|
8406 |
+
#: core/lib/wpbc_all_translations.php:1623 inc/gateways/paypal/wpbc-gw-paypal.php:661
|
8407 |
msgid "Click the Profile subtab."
|
8408 |
msgstr ""
|
8409 |
|
8410 |
+
#: core/lib/wpbc_all_translations.php:1624 inc/gateways/paypal/wpbc-gw-paypal.php:662
|
8411 |
msgid "Click Website Payment Preferences in the Seller Preferences column."
|
8412 |
msgstr ""
|
8413 |
|
8414 |
+
#: core/lib/wpbc_all_translations.php:1625 inc/gateways/paypal/wpbc-gw-paypal.php:663
|
8415 |
msgid "Under Auto Return for Website Payments, click the On radio button."
|
8416 |
msgstr ""
|
8417 |
|
8418 |
+
#: core/lib/wpbc_all_translations.php:1626 inc/gateways/paypal/wpbc-gw-paypal.php:664
|
8419 |
msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
|
8420 |
msgstr ""
|
8421 |
|
8422 |
+
#: core/lib/wpbc_all_translations.php:1627 inc/gateways/paypal/wpbc-gw-paypal.php:673
|
8423 |
msgid ""
|
8424 |
"Instant Payment Notification (IPN) is a message service that notifies you of events related to "
|
8425 |
"PayPal transactions"
|
8426 |
msgstr ""
|
8427 |
|
8428 |
+
#: core/lib/wpbc_all_translations.php:1628 inc/gateways/paypal/wpbc-gw-paypal.php:682
|
8429 |
msgid "Sending email for verified transaction"
|
8430 |
msgstr ""
|
8431 |
|
8432 |
+
#: core/lib/wpbc_all_translations.php:1629 inc/gateways/paypal/wpbc-gw-paypal.php:692
|
8433 |
#, php-format
|
8434 |
msgid "Email for getting report for %sverified%s transactions."
|
8435 |
msgstr ""
|
8436 |
|
8437 |
+
#: core/lib/wpbc_all_translations.php:1630 inc/gateways/paypal/wpbc-gw-paypal.php:705
|
8438 |
msgid "Sending email for invalid transaction"
|
8439 |
msgstr ""
|
8440 |
|
8441 |
+
#: core/lib/wpbc_all_translations.php:1631 inc/gateways/paypal/wpbc-gw-paypal.php:715
|
8442 |
#, php-format
|
8443 |
msgid "Email for getting report for %sinvalid%s transactions."
|
8444 |
msgstr ""
|
8445 |
|
8446 |
+
#: core/lib/wpbc_all_translations.php:1632 inc/gateways/paypal/wpbc-gw-paypal.php:728
|
8447 |
msgid "Sending email if error occur during verification"
|
8448 |
msgstr ""
|
8449 |
|
8450 |
+
#: core/lib/wpbc_all_translations.php:1633 inc/gateways/paypal/wpbc-gw-paypal.php:738
|
8451 |
#, php-format
|
8452 |
msgid "Email for getting report for %ssome errors in verification process%s."
|
8453 |
msgstr ""
|
8454 |
|
8455 |
+
#: core/lib/wpbc_all_translations.php:1634 inc/gateways/paypal/wpbc-gw-paypal.php:750
|
8456 |
msgid "Use SSL connection"
|
8457 |
msgstr ""
|
8458 |
|
8459 |
+
#: core/lib/wpbc_all_translations.php:1635 inc/gateways/paypal/wpbc-gw-paypal.php:751
|
8460 |
msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
|
8461 |
msgstr ""
|
8462 |
|
8463 |
+
#: core/lib/wpbc_all_translations.php:1636 inc/gateways/paypal/wpbc-gw-paypal.php:758
|
8464 |
msgid "Use cURL posting"
|
8465 |
msgstr ""
|
8466 |
|
8467 |
+
#: core/lib/wpbc_all_translations.php:1637 inc/gateways/paypal/wpbc-gw-paypal.php:759
|
8468 |
msgid "Use the cURL for posting data, instead of fsockopen() function"
|
8469 |
msgstr ""
|
8470 |
|
8471 |
+
#: core/lib/wpbc_all_translations.php:1638 inc/gateways/paypal/wpbc-gw-paypal.php:775
|
8472 |
msgid " Follow these instructions to set up your listener at your PayPal account:"
|
8473 |
msgstr ""
|
8474 |
|
8475 |
+
#: core/lib/wpbc_all_translations.php:1639 inc/gateways/paypal/wpbc-gw-paypal.php:777
|
8476 |
msgid "Click Profile on the My Account tab."
|
8477 |
msgstr ""
|
8478 |
|
8479 |
+
#: core/lib/wpbc_all_translations.php:1640 inc/gateways/paypal/wpbc-gw-paypal.php:778
|
8480 |
msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
|
8481 |
msgstr ""
|
8482 |
|
8483 |
+
#: core/lib/wpbc_all_translations.php:1641 inc/gateways/paypal/wpbc-gw-paypal.php:779
|
8484 |
msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
|
8485 |
msgstr ""
|
8486 |
|
8487 |
+
#: core/lib/wpbc_all_translations.php:1642 inc/gateways/paypal/wpbc-gw-paypal.php:780
|
8488 |
msgid "Specify the URL for your listener in the Notification URL field as:"
|
8489 |
msgstr ""
|
8490 |
|
8491 |
+
#: core/lib/wpbc_all_translations.php:1643 inc/gateways/paypal/wpbc-gw-paypal.php:782
|
8492 |
msgid "Click Receive IPN messages (Enabled) to enable your listener."
|
8493 |
msgstr ""
|
8494 |
|
8495 |
+
#: core/lib/wpbc_all_translations.php:1644 inc/gateways/paypal/wpbc-gw-paypal.php:783
|
8496 |
msgid "Click Save."
|
8497 |
msgstr ""
|
8498 |
|
8499 |
+
#: core/lib/wpbc_all_translations.php:1645 inc/gateways/paypal/wpbc-gw-paypal.php:784
|
8500 |
msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
|
8501 |
msgstr ""
|
8502 |
|
8503 |
+
#: core/lib/wpbc_all_translations.php:1646 inc/gateways/paypal/wpbc-gw-paypal.php:946
|
8504 |
msgid "PayPal"
|
8505 |
msgstr ""
|
8506 |
|
8507 |
+
#: core/lib/wpbc_all_translations.php:1647 inc/gateways/paypal/wpbc-gw-paypal.php:948
|
8508 |
msgid "Integration of Paypal payment system"
|
8509 |
msgstr ""
|
8510 |
|
8511 |
+
#: core/lib/wpbc_all_translations.php:1648 inc/gateways/paypal/wpbc-gw-paypal.php:1069
|
8512 |
msgid "PayPal IPN"
|
8513 |
msgstr ""
|
8514 |
|
8515 |
+
#: core/lib/wpbc_all_translations.php:1649 inc/gateways/sage/wpbc-gw-sage.php:355
|
8516 |
#, php-format
|
8517 |
msgid "Pay using %s payment service"
|
8518 |
msgstr ""
|
8519 |
|
8520 |
+
#: core/lib/wpbc_all_translations.php:1650 inc/gateways/sage/wpbc-gw-sage.php:395
|
8521 |
msgid "Vendor Name"
|
8522 |
msgstr ""
|
8523 |
|
8524 |
+
#: core/lib/wpbc_all_translations.php:1651 inc/gateways/sage/wpbc-gw-sage.php:397
|
8525 |
msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
|
8526 |
msgstr ""
|
8527 |
|
8528 |
+
#: core/lib/wpbc_all_translations.php:1652 inc/gateways/sage/wpbc-gw-sage.php:410
|
8529 |
msgid "XOR Encryption password"
|
8530 |
msgstr ""
|
8531 |
|
8532 |
+
#: core/lib/wpbc_all_translations.php:1653 inc/gateways/sage/wpbc-gw-sage.php:412
|
8533 |
msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
|
8534 |
msgstr ""
|
8535 |
|
8536 |
+
#: core/lib/wpbc_all_translations.php:1654 inc/gateways/ideal/wpbc-gw-ideal.php:420
|
8537 |
#: inc/gateways/sage/wpbc-gw-sage.php:425
|
8538 |
msgid "Select TEST for the Test Server and LIVE in the live environment"
|
8539 |
msgstr ""
|
8540 |
|
8541 |
+
#: core/lib/wpbc_all_translations.php:1655 inc/gateways/ideal/wpbc-gw-ideal.php:432
|
8542 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:501
|
8543 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
8544 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
|
|
|
|
8545 |
msgid "TEST"
|
8546 |
msgstr ""
|
8547 |
|
8548 |
+
#: core/lib/wpbc_all_translations.php:1656 inc/gateways/ideal/wpbc-gw-ideal.php:433
|
8549 |
+
#: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:502
|
|
|
8550 |
msgid "LIVE"
|
8551 |
msgstr ""
|
8552 |
|
8553 |
+
#: core/lib/wpbc_all_translations.php:1657 inc/gateways/sage/wpbc-gw-sage.php:439
|
8554 |
msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
|
8555 |
msgstr ""
|
8556 |
|
8557 |
+
#: core/lib/wpbc_all_translations.php:1658 inc/gateways/sage/wpbc-gw-sage.php:443
|
8558 |
msgid "PAYMENT"
|
8559 |
msgstr ""
|
8560 |
|
8561 |
+
#: core/lib/wpbc_all_translations.php:1659 inc/gateways/sage/wpbc-gw-sage.php:444
|
8562 |
msgid "DEFERRED"
|
8563 |
msgstr ""
|
8564 |
|
8565 |
+
#: core/lib/wpbc_all_translations.php:1660 inc/gateways/sage/wpbc-gw-sage.php:445
|
8566 |
msgid "AUTHENTICATE"
|
8567 |
msgstr ""
|
8568 |
|
8569 |
+
#: core/lib/wpbc_all_translations.php:1661 inc/gateways/sage/wpbc-gw-sage.php:454
|
8570 |
msgid "Yen"
|
8571 |
msgstr ""
|
8572 |
|
8573 |
+
#: core/lib/wpbc_all_translations.php:1662 inc/gateways/sage/wpbc-gw-sage.php:467
|
8574 |
msgid "Israeli Shekel"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
+
#: core/lib/wpbc_all_translations.php:1663 inc/gateways/sage/wpbc-gw-sage.php:782
|
8578 |
msgid "Sage"
|
8579 |
msgstr ""
|
8580 |
|
8581 |
+
#: core/lib/wpbc_all_translations.php:1664 inc/gateways/sage/wpbc-gw-sage.php:784
|
8582 |
msgid "Integration of Sage payment system"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
+
#: core/lib/wpbc_all_translations.php:1665 inc/gateways/sage/wpbc-gw-sage.php:876
|
8586 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1059
|
8587 |
#, php-format
|
8588 |
msgid "If you have no account on this system, please visit %s to create one."
|
8589 |
msgstr ""
|
8590 |
|
8591 |
+
#: core/lib/wpbc_all_translations.php:1666 core/wpbc-functions.php:3477
|
8592 |
msgid "Payment rejected"
|
8593 |
msgstr ""
|
8594 |
|
8595 |
+
#: core/lib/wpbc_all_translations.php:1667 inc/gateways/ideal/wpbc-gw-ideal.php:388
|
8596 |
msgid "Merchant ID"
|
8597 |
msgstr ""
|
8598 |
|
8599 |
+
#: core/lib/wpbc_all_translations.php:1668 inc/gateways/ideal/wpbc-gw-ideal.php:390
|
8600 |
msgid "Enter your iDEAL Merchant ID"
|
8601 |
msgstr ""
|
8602 |
|
8603 |
+
#: core/lib/wpbc_all_translations.php:1669 inc/gateways/ideal/wpbc-gw-ideal.php:405
|
8604 |
msgid "Enter your iDEAL Merchant Key."
|
8605 |
msgstr ""
|
8606 |
|
8607 |
+
#: core/lib/wpbc_all_translations.php:1670 inc/gateways/ideal/wpbc-gw-ideal.php:423
|
8608 |
#, php-format
|
8609 |
msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
|
8610 |
msgstr ""
|
8611 |
|
8612 |
+
#: core/lib/wpbc_all_translations.php:1671 inc/gateways/ideal/wpbc-gw-ideal.php:424
|
8613 |
msgid "Test with Simulator"
|
8614 |
msgstr ""
|
8615 |
|
8616 |
+
#: core/lib/wpbc_all_translations.php:1672 inc/gateways/ideal/wpbc-gw-ideal.php:426
|
8617 |
msgid "My Profile – Connection"
|
8618 |
msgstr ""
|
8619 |
|
8620 |
+
#: core/lib/wpbc_all_translations.php:1673 inc/gateways/ideal/wpbc-gw-ideal.php:482
|
8621 |
#, php-format
|
8622 |
msgid ""
|
8623 |
"If not supplied then the description as configured in the administration/management portal "
|
8625 |
"be applied."
|
8626 |
msgstr ""
|
8627 |
|
8628 |
+
#: core/lib/wpbc_all_translations.php:1674 inc/gateways/ideal/wpbc-gw-ideal.php:483
|
8629 |
msgid "Always use Description"
|
8630 |
msgstr ""
|
8631 |
|
8632 |
+
#: core/lib/wpbc_all_translations.php:1675 inc/gateways/ideal/wpbc-gw-ideal.php:802
|
8633 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:966
|
8634 |
#, php-format
|
8635 |
msgid "Integration of %s payment system"
|
8636 |
msgstr ""
|
8637 |
|
8638 |
+
#: core/lib/wpbc_all_translations.php:1676 inc/gateways/ideal/wpbc-gw-ideal.php:893
|
8639 |
#, php-format
|
8640 |
msgid "Processing your %s payments through %s"
|
8641 |
msgstr ""
|
8642 |
|
8643 |
+
#: core/lib/wpbc_all_translations.php:1677 core/wpbc-emails.php:264
|
8644 |
#, php-format
|
8645 |
msgid "%s - inserting link for export booking to"
|
8646 |
msgstr ""
|
8647 |
|
8648 |
+
#: core/lib/wpbc_all_translations.php:1678 inc/_ps/admin/br-table-export-feeds.php:176
|
8649 |
msgid ".ics Feed URL"
|
8650 |
msgstr ""
|
8651 |
|
8652 |
+
#: core/lib/wpbc_all_translations.php:1679 core/wpbc-emails.php:245 core/wpbc-emails.php:246
|
8653 |
#: core/wpbc-emails.php:247 core/wpbc-emails.php:248 core/wpbc-emails.php:249
|
8654 |
#: core/wpbc-emails.php:250 core/wpbc-emails.php:251
|
8655 |
#, php-format
|
8656 |
msgid "%s - inserting modification date of booking "
|
8657 |
msgstr ""
|
8658 |
|
8659 |
+
#: core/lib/wpbc_all_translations.php:1680 inc/_ps/form/class-wpbc-form-help.php:687
|
8660 |
msgid "Coupon discount value of the booking."
|
8661 |
msgstr ""
|
8662 |
|
8663 |
+
#: core/lib/wpbc_all_translations.php:1681
|
8664 |
msgid "Stripe. Ouch, something went wrong!"
|
8665 |
msgstr ""
|
8666 |
|
8667 |
+
#: core/lib/wpbc_all_translations.php:1682
|
8668 |
#, php-format
|
8669 |
msgid "Please pay %s"
|
8670 |
msgstr ""
|
8671 |
|
8672 |
+
#: core/lib/wpbc_all_translations.php:1683 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:496
|
|
|
8673 |
msgid "Chose payment account"
|
8674 |
msgstr ""
|
8675 |
|
8676 |
+
#: core/lib/wpbc_all_translations.php:1684 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:512
|
8677 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
|
|
8678 |
msgid "Publishable key"
|
8679 |
msgstr ""
|
8680 |
|
8681 |
+
#: core/lib/wpbc_all_translations.php:1685 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:527
|
8682 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
|
|
8683 |
msgid "Secret key"
|
8684 |
msgstr ""
|
8685 |
|
8686 |
+
#: core/lib/wpbc_all_translations.php:1686 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:731
|
|
|
8687 |
msgid "For more information:"
|
8688 |
msgstr ""
|
8689 |
|
8690 |
+
#: core/lib/wpbc_all_translations.php:1687 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1092
|
|
|
8691 |
#, php-format
|
8692 |
msgid "require PHP version %s or newer!"
|
8693 |
msgstr ""
|
8694 |
|
8695 |
+
#: core/lib/wpbc_all_translations.php:1688 inc/_bl/admin/page-search.php:145
|
8696 |
#, php-format
|
8697 |
msgid "%s - ID of booking resource, "
|
8698 |
msgstr ""
|
8699 |
|
8700 |
+
#: core/lib/wpbc_all_translations.php:1689 inc/_bl/admin/page-search.php:146
|
8701 |
#, php-format
|
8702 |
msgid "%s - ID of page with booking form, "
|
8703 |
msgstr ""
|
8704 |
|
8705 |
+
#: core/lib/wpbc_all_translations.php:1690 inc/_bs/admin/page-email-payment.php:698
|
8706 |
msgid "Email with Payment Request which is sent to Visitor."
|
8707 |
msgstr ""
|
8708 |
|
8709 |
+
#: core/lib/wpbc_all_translations.php:1691 inc/_ps/admin/page-email-edit.php:558
|
8710 |
msgid "Customization of email template, which is sent after modification of booking"
|
8711 |
msgstr ""
|
8712 |
|
8713 |
+
#: core/lib/wpbc_all_translations.php:1692 inc/_ps/admin/page-email-edit.php:694
|
8714 |
msgid "Email is sent to Visitor after Editing of booking."
|
8715 |
msgstr ""
|
8716 |
|
8717 |
+
#: core/lib/wpbc_all_translations.php:1693 core/lib/wpdev-booking-class.php:692
|
8718 |
msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
|
8719 |
msgstr ""
|
8720 |
|
8721 |
+
#: core/lib/wpbc_all_translations.php:1694 core/lib/wpdev-booking-class.php:1024
|
8722 |
msgid "My bookings"
|
8723 |
msgstr ""
|
8724 |
|
8725 |
+
#: core/lib/wpbc_all_translations.php:1695 core/wpbc-emails.php:271
|
8726 |
#, php-format
|
8727 |
msgid ""
|
8728 |
"%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
|
8729 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
8730 |
msgstr ""
|
8731 |
|
8732 |
+
#: core/lib/wpbc_all_translations.php:1696 inc/_bl/admin/page-search.php:704
|
8733 |
msgid "Inline Search Form Template"
|
8734 |
msgstr ""
|
8735 |
|
8736 |
+
#: core/lib/wpbc_all_translations.php:1697 inc/_bm/admin/api-settings-m.php:275
|
8737 |
msgid "Show booking details in tooltip"
|
8738 |
msgstr ""
|
8739 |
|
8740 |
+
#: core/lib/wpbc_all_translations.php:1698 inc/_bm/admin/api-settings-m.php:276
|
8741 |
#, php-format
|
8742 |
msgid ""
|
8743 |
"Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
|
8744 |
"calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
|
8745 |
msgstr ""
|
8746 |
|
8747 |
+
#: core/lib/wpbc_all_translations.php:1699 inc/_bm/admin/api-settings-m.php:284
|
8748 |
msgid "Booking details"
|
8749 |
msgstr ""
|
8750 |
|
8751 |
+
#: core/lib/wpbc_all_translations.php:1700 inc/_bm/admin/api-settings-m.php:285
|
8752 |
msgid "You can use the shortcodes from the bottom form of Settings Fields page."
|
8753 |
msgstr ""
|
8754 |
|
8755 |
+
#: core/lib/wpbc_all_translations.php:1701 inc/_bm/admin/api-settings-m.php:299
|
8756 |
msgid "This option can impact to speed of page loading."
|
8757 |
msgstr ""
|
8758 |
|
8759 |
+
#: core/lib/wpbc_all_translations.php:1702 inc/_bm/admin/page-cost-advanced.php:680
|
8760 |
msgid ""
|
8761 |
"Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
|
8762 |
"mathematics operations"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
+
#: core/lib/wpbc_all_translations.php:1703 inc/_bm/admin/page-cost-advanced.php:682
|
8766 |
#, php-format
|
8767 |
msgid "if selected %s"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
+
#: core/lib/wpbc_all_translations.php:1704 inc/_bs/admin/api-settings-s.php:304
|
8771 |
msgid "Set check out date as available"
|
8772 |
msgstr ""
|
8773 |
|
8774 |
+
#: core/lib/wpbc_all_translations.php:1705 inc/_bs/admin/api-settings-s.php:305
|
8775 |
msgid "Check this option, to remove last selected day of saving to booking."
|
8776 |
msgstr ""
|
8777 |
|
8778 |
+
#: core/lib/wpbc_all_translations.php:1706 inc/_bs/admin/api-settings-s.php:489
|
8779 |
msgid "Auto approve bookings during import"
|
8780 |
msgstr ""
|
8781 |
|
8782 |
+
#: core/lib/wpbc_all_translations.php:1707 inc/_bs/admin/api-settings-s.php:490
|
8783 |
#, php-format
|
8784 |
msgid ""
|
8785 |
"Check this checkbox to activate auto approve of all bookings %sduring import from external "
|
8786 |
"source(s)%s."
|
8787 |
msgstr ""
|
8788 |
|
8789 |
+
#: core/lib/wpbc_all_translations.php:1708 inc/_bs/admin/api-settings-s.php:497
|
8790 |
msgid "Auto approve booking, if booking cost is zero"
|
8791 |
msgstr ""
|
8792 |
|
8793 |
+
#: core/lib/wpbc_all_translations.php:1709 inc/_bs/admin/api-settings-s.php:498
|
8794 |
#, php-format
|
8795 |
msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
|
8796 |
msgstr ""
|
8797 |
|
8798 |
+
#: core/lib/wpbc_all_translations.php:1710 inc/_bs/admin/api-settings-s.php:505
|
8799 |
msgid "Auto approve bookings after creation booking in admin panel"
|
8800 |
msgstr ""
|
8801 |
|
8802 |
+
#: core/lib/wpbc_all_translations.php:1711 inc/_bs/admin/api-settings-s.php:506
|
8803 |
#, php-format
|
8804 |
msgid ""
|
8805 |
"Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
|
8806 |
msgstr ""
|
8807 |
|
8808 |
+
#: core/lib/wpbc_all_translations.php:1712 inc/_mu/admin/api-settings-u.php:62
|
8809 |
msgid "Activate custom booking forms for regular users"
|
8810 |
msgstr ""
|
8811 |
|
8812 |
+
#: core/lib/wpbc_all_translations.php:1713 inc/_mu/admin/api-settings-u.php:63
|
8813 |
msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
|
8814 |
msgstr ""
|
8815 |
|
8816 |
+
#: core/lib/wpbc_all_translations.php:1714 inc/_ps/admin/api-settings-p.php:98
|
8817 |
msgid "Start / End time for Calendar Overview"
|
8818 |
msgstr ""
|
8819 |
|
8820 |
+
#: core/lib/wpbc_all_translations.php:1715 inc/_ps/admin/api-settings-p.php:146
|
8821 |
#, php-format
|
8822 |
msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
|
8823 |
msgstr ""
|
8824 |
|
8825 |
+
#: core/lib/wpbc_all_translations.php:1716 inc/_ps/admin/api-settings-p.php:279
|
8826 |
msgid "Show / hide notes"
|
8827 |
msgstr ""
|
8828 |
|
8829 |
+
#: core/lib/wpbc_all_translations.php:1717 inc/_ps/admin/api-settings-p.php:280
|
8830 |
msgid "Check this box if you want to open notes section by default in Booking Listing page."
|
8831 |
msgstr ""
|
8832 |
|
8833 |
+
#: core/lib/wpbc_all_translations.php:1718 inc/_ps/admin/api-settings-p.php:340
|
8834 |
#: js/wpbc-gutenberg.js:1182
|
8835 |
msgid "URL of page for customer bookings listing"
|
8836 |
msgstr ""
|
8837 |
|
8838 |
+
#: core/lib/wpbc_all_translations.php:1719 inc/_ps/admin/api-settings-p.php:341
|
8839 |
#, php-format
|
8840 |
msgid ""
|
8841 |
"Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
|
8842 |
msgstr ""
|
8843 |
|
8844 |
+
#: core/lib/wpbc_all_translations.php:1720 inc/gateways/page-gateways.php:105
|
8845 |
msgid "Do not show payment form, after submit booking form"
|
8846 |
msgstr ""
|
8847 |
|
8848 |
+
#: core/lib/wpbc_all_translations.php:1721 inc/gateways/page-gateways.php:106
|
8849 |
msgid "Check this box if you want to show payment form only after sending payment request by email"
|
8850 |
msgstr ""
|
8851 |
|
8852 |
+
#: core/lib/wpbc_all_translations.php:1722 inc/gateways/page-gateways.php:115
|
8853 |
msgid "Auto send payment request after creation booking in admin panel"
|
8854 |
msgstr ""
|
8855 |
|
8856 |
+
#: core/lib/wpbc_all_translations.php:1723 inc/gateways/page-gateways.php:116
|
8857 |
msgid ""
|
8858 |
"Check this box if you want automatically send payment request to visitor, if booking was made in "
|
8859 |
"admin panel"
|
8860 |
msgstr ""
|
8861 |
|
8862 |
+
#: core/lib/wpbc_all_translations.php:1724 inc/gateways/page-gateways.php:139
|
8863 |
msgid "Show deposit and total booking cost together"
|
8864 |
msgstr ""
|
8865 |
|
8866 |
+
#: core/lib/wpbc_all_translations.php:1725 inc/gateways/page-gateways.php:140
|
8867 |
msgid ""
|
8868 |
"Check this box if you want to show deposit amount and total booking cost, after submit of "
|
8869 |
"booking."
|
8870 |
msgstr ""
|
8871 |
|
8872 |
+
#: core/lib/wpbc_all_translations.php:1726 inc/gateways/page-gateways.php:152
|
8873 |
msgid ""
|
8874 |
"Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
|
8875 |
"not depend from the visitor choice of this payment. You need to check each such payment manually!"
|
8876 |
msgstr ""
|
8877 |
|
8878 |
+
#: core/lib/wpbc_all_translations.php:1727 inc/gateways/page-gateways.php:163
|
8879 |
msgid "Send email on cost changes"
|
8880 |
msgstr ""
|
8881 |
|
8882 |
+
#: core/lib/wpbc_all_translations.php:1728 inc/gateways/page-gateways.php:164
|
8883 |
msgid ""
|
8884 |
"Check this box if you want to send booking modification email, if cost of booking was edited in "
|
8885 |
"booking listing page."
|
8886 |
msgstr ""
|
8887 |
|
8888 |
+
#: core/lib/wpbc_all_translations.php:1729 inc/gateways/page-gateways.php:599
|
8889 |
+
#: inc/gateways/page-gateways.php:645
|
8890 |
msgid "Payment Options"
|
8891 |
msgstr ""
|
8892 |
|
8893 |
+
#: core/lib/wpbc_all_translations.php:1730 core/wpbc-js.php:141
|
8894 |
msgid "Times:"
|
8895 |
msgstr ""
|
8896 |
|
8897 |
+
#: core/lib/wpbc_all_translations.php:1731 inc/_bm/admin/page-cost-early-late-booking.php:74
|
8898 |
msgid "Set Early / Late Booking"
|
8899 |
msgstr ""
|
8900 |
|
8901 |
+
#: core/lib/wpbc_all_translations.php:1732 inc/_bm/admin/page-cost-early-late-booking.php:139
|
8902 |
#, php-format
|
8903 |
msgid "%sEarly booking discount%s for booking resource"
|
8904 |
msgstr ""
|
8905 |
|
8906 |
+
#: core/lib/wpbc_all_translations.php:1733 inc/_bm/admin/page-cost-early-late-booking.php:157
|
8907 |
#: inc/_bm/admin/page-cost-early-late-booking.php:166
|
8908 |
#: inc/_bm/admin/page-cost-early-late-booking.php:185
|
8909 |
#: inc/_bm/admin/page-cost-early-late-booking.php:358
|
8912 |
msgid "Discount"
|
8913 |
msgstr ""
|
8914 |
|
8915 |
+
#: core/lib/wpbc_all_translations.php:1734 inc/_bm/admin/page-cost-early-late-booking.php:223
|
8916 |
#, php-format
|
8917 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
|
8918 |
msgstr ""
|
8919 |
|
8920 |
+
#: core/lib/wpbc_all_translations.php:1735 inc/_bm/admin/page-cost-early-late-booking.php:276
|
8921 |
#: inc/_bm/admin/page-cost-early-late-booking.php:476
|
8922 |
#, php-format
|
8923 |
msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
|
8924 |
msgstr ""
|
8925 |
|
8926 |
+
#: core/lib/wpbc_all_translations.php:1736 inc/_bm/admin/page-cost-early-late-booking.php:340
|
8927 |
#, php-format
|
8928 |
msgid "%sLast minute booking discount%s for booking resource"
|
8929 |
msgstr ""
|
8930 |
|
8931 |
+
#: core/lib/wpbc_all_translations.php:1737 inc/_bm/admin/page-cost-early-late-booking.php:424
|
8932 |
#, php-format
|
8933 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
|
8934 |
msgstr ""
|
8935 |
|
8936 |
+
#: core/lib/wpbc_all_translations.php:1738 inc/_bm/admin/page-cost.php:222
|
8937 |
msgid "Early / Late Booking"
|
8938 |
msgstr ""
|
8939 |
|
8940 |
+
#: core/lib/wpbc_all_translations.php:1739 inc/_bm/admin/page-cost.php:231
|
8941 |
msgid "Set Early / Late Booking Amount"
|
8942 |
msgstr ""
|
8943 |
|
8944 |
+
#: core/lib/wpbc_all_translations.php:1740 inc/_bm/admin/page-cost.php:697
|
8945 |
msgid "Set Early / Late booking discount"
|
8946 |
msgstr ""
|
8947 |
|
8948 |
+
#: core/lib/wpbc_all_translations.php:1741 inc/_bm/admin/page-cost.php:698
|
8949 |
msgid "Early / Late"
|
8950 |
msgstr ""
|
8951 |
|
8952 |
+
#: core/lib/wpbc_all_translations.php:1742 js/wpbc-gutenberg.js:55
|
8953 |
msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
|
8954 |
msgstr ""
|
8955 |
|
8956 |
+
#: core/lib/wpbc_all_translations.php:1743 js/wpbc-gutenberg.js:140
|
8957 |
msgid "Configure Booking Calendar Block"
|
8958 |
msgstr ""
|
8959 |
|
8960 |
+
#: core/lib/wpbc_all_translations.php:1744 js/wpbc-gutenberg.js:290
|
8961 |
msgid "Click to Preview Block"
|
8962 |
msgstr ""
|
8963 |
|
8964 |
+
#: core/lib/wpbc_all_translations.php:1745 js/wpbc-gutenberg.js:565 js/wpbc-gutenberg.js:641
|
8965 |
#: js/wpbc-gutenberg.js:825
|
8966 |
msgid "Visible months number"
|
8967 |
msgstr ""
|
8968 |
|
8969 |
+
#: core/lib/wpbc_all_translations.php:1746 js/wpbc-gutenberg.js:568 js/wpbc-gutenberg.js:644
|
8970 |
#: js/wpbc-gutenberg.js:828
|
8971 |
msgid "Start month"
|
8972 |
msgstr ""
|
8973 |
|
8974 |
+
#: core/lib/wpbc_all_translations.php:1747 js/wpbc-gutenberg.js:571 js/wpbc-gutenberg.js:902
|
8975 |
msgid "Custom booking form"
|
8976 |
msgstr ""
|
8977 |
|
8978 |
+
#: core/lib/wpbc_all_translations.php:1748 js/wpbc-gutenberg.js:574 js/wpbc-gutenberg.js:647
|
8979 |
#: js/wpbc-gutenberg.js:834
|
8980 |
msgid "Unavailable dates from other booking resources"
|
8981 |
msgstr ""
|
8982 |
|
8983 |
+
#: core/lib/wpbc_all_translations.php:1749 js/wpbc-gutenberg.js:608
|
8984 |
msgid "Availability Calendar"
|
8985 |
msgstr ""
|
8986 |
|
8987 |
+
#: core/lib/wpbc_all_translations.php:1750 js/wpbc-gutenberg.js:712 js/wpbc-gutenberg.js:813
|
8988 |
msgid "Booking resource(s)"
|
8989 |
msgstr ""
|
8990 |
|
8991 |
+
#: core/lib/wpbc_all_translations.php:1751 js/wpbc-gutenberg.js:749
|
8992 |
msgid "Show from/to"
|
8993 |
msgstr ""
|
8994 |
|
8995 |
+
#: core/lib/wpbc_all_translations.php:1752 js/wpbc-gutenberg.js:766
|
8996 |
msgid "All booking resources"
|
8997 |
msgstr ""
|
8998 |
|
8999 |
+
#: core/lib/wpbc_all_translations.php:1753 js/wpbc-gutenberg.js:783
|
9000 |
msgid "Selection of Resources"
|
9001 |
msgstr ""
|
9002 |
|
9003 |
+
#: core/lib/wpbc_all_translations.php:1754 js/wpbc-gutenberg.js:819
|
9004 |
msgid "Selected booking resource (by default)"
|
9005 |
msgstr ""
|
9006 |
|
9007 |
+
#: core/lib/wpbc_all_translations.php:1755 js/wpbc-gutenberg.js:822
|
9008 |
msgid "Title of first option in list"
|
9009 |
msgstr ""
|
9010 |
|
9011 |
+
#: core/lib/wpbc_all_translations.php:1756 js/wpbc-gutenberg.js:831
|
9012 |
msgid "Custom booking form for all booking resources"
|
9013 |
msgstr ""
|
9014 |
|
9015 |
+
#: core/lib/wpbc_all_translations.php:1757 js/wpbc-gutenberg.js:866
|
9016 |
msgid "Booking Form (without calendar)"
|
9017 |
msgstr ""
|
9018 |
|
9019 |
+
#: core/lib/wpbc_all_translations.php:1758 js/wpbc-gutenberg.js:899
|
9020 |
msgid "Date for submit booking"
|
9021 |
msgstr ""
|
9022 |
|
9023 |
+
#: core/lib/wpbc_all_translations.php:1759 js/wpbc-gutenberg.js:931
|
9024 |
msgid "Search Availability form"
|
9025 |
msgstr ""
|
9026 |
|
9027 |
+
#: core/lib/wpbc_all_translations.php:1760 js/wpbc-gutenberg.js:961
|
9028 |
msgid "Show search results on other page"
|
9029 |
msgstr ""
|
9030 |
|
9031 |
+
#: core/lib/wpbc_all_translations.php:1761 js/wpbc-gutenberg.js:964
|
9032 |
msgid "Search results page must have this shortcode"
|
9033 |
msgstr ""
|
9034 |
|
9035 |
+
#: core/lib/wpbc_all_translations.php:1762 js/wpbc-gutenberg.js:967
|
9036 |
msgid "Show search results in the same page"
|
9037 |
msgstr ""
|
9038 |
|
9039 |
+
#: core/lib/wpbc_all_translations.php:1763 js/wpbc-gutenberg.js:970
|
9040 |
msgid "Search Results Title"
|
9041 |
msgstr ""
|
9042 |
|
9043 |
+
#: core/lib/wpbc_all_translations.php:1764 js/wpbc-gutenberg.js:973
|
9044 |
msgid "Title, if no search results"
|
9045 |
msgstr ""
|
9046 |
|
9047 |
+
#: core/lib/wpbc_all_translations.php:1765 js/wpbc-gutenberg.js:976
|
9048 |
msgid "Search in booking resources of WP users"
|
9049 |
msgstr ""
|
9050 |
|
9051 |
+
#: core/lib/wpbc_all_translations.php:1766 js/wpbc-gutenberg.js:1030
|
9052 |
msgid "Show search results on this page, after redirection from search form at other page."
|
9053 |
msgstr ""
|
9054 |
|
9055 |
+
#: core/lib/wpbc_all_translations.php:1767 js/wpbc-gutenberg.js:1054
|
9056 |
msgid "System Block"
|
9057 |
msgstr ""
|
9058 |
|
9059 |
+
#: core/lib/wpbc_all_translations.php:1768 js/wpbc-gutenberg.js:1054
|
9060 |
msgid "Booking Calendar Editing"
|
9061 |
msgstr ""
|
9062 |
|
9063 |
+
#: core/lib/wpbc_all_translations.php:1769 js/wpbc-gutenberg.js:1085
|
9064 |
msgid ""
|
9065 |
"This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
|
9066 |
"for ability to show payment form, after sending payment request."
|
9067 |
msgstr ""
|
9068 |
|
9069 |
+
#: core/lib/wpbc_all_translations.php:1770 js/wpbc-gutenberg.js:1090 js/wpbc-gutenberg.js:1176
|
9070 |
msgid "Link to this page must be defined"
|
9071 |
msgstr ""
|
9072 |
|
9073 |
+
#: core/lib/wpbc_all_translations.php:1771 js/wpbc-gutenberg.js:1094 js/wpbc-gutenberg.js:1180
|
9074 |
msgid "at this option"
|
9075 |
msgstr ""
|
9076 |
|
9077 |
+
#: core/lib/wpbc_all_translations.php:1772 js/wpbc-gutenberg.js:1104 js/wpbc-gutenberg.js:1190
|
9078 |
msgid "You can not open this page directly. Please, use links in "
|
9079 |
msgstr ""
|
9080 |
|
9081 |
+
#: core/lib/wpbc_all_translations.php:1773 js/wpbc-gutenberg.js:1112 js/wpbc-gutenberg.js:1198
|
9082 |
msgid "If you open this page directly, then you will see this error"
|
9083 |
msgstr ""
|
9084 |
|
9085 |
+
#: core/lib/wpbc_all_translations.php:1774 js/wpbc-gutenberg.js:1140
|
9086 |
msgid "Customer Bookings Listing"
|
9087 |
msgstr ""
|
9088 |
|
9089 |
+
#: core/lib/wpbc_all_translations.php:1775 js/wpbc-gutenberg.js:1171
|
9090 |
msgid ""
|
9091 |
"Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
|
9092 |
"which is sending after booking created."
|
9093 |
msgstr ""
|
9094 |
|
9095 |
+
#: core/lib/wpbc_all_translations.php:1776 js/wpbc-gutenberg.js:1231
|
9096 |
msgid "Show Info of Booking Resource"
|
9097 |
msgstr ""
|
9098 |
|
9099 |
+
#: core/lib/wpbc_all_translations.php:1777 js/wpbc-gutenberg.js:1297
|
9100 |
msgid "Click to edit"
|
9101 |
msgstr ""
|
9102 |
|
9103 |
+
#: core/lib/wpbc_all_translations.php:1778 js/wpbc-gutenberg.js:1299
|
9104 |
msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
|
9105 |
msgstr ""
|
9106 |
|
9107 |
+
#: core/lib/wpbc_all_translations.php:1779 inc/_bl/admin/page-search.php:175
|
9108 |
msgid "Sort search results by"
|
9109 |
msgstr ""
|
9110 |
|
9111 |
+
#: core/lib/wpbc_all_translations.php:1780 inc/_bl/admin/page-search.php:176
|
9112 |
msgid "Select type of sorting search results"
|
9113 |
msgstr ""
|
9114 |
|
9115 |
+
#: core/lib/wpbc_all_translations.php:1781 inc/_bl/admin/page-search.php:180
|
9116 |
#: inc/_bl/admin/page-search.php:181
|
9117 |
msgid "ID of booking resource"
|
9118 |
msgstr ""
|
9119 |
|
9120 |
+
#: core/lib/wpbc_all_translations.php:1782 inc/_bl/admin/page-search.php:182
|
9121 |
#: inc/_bl/admin/page-search.php:183
|
9122 |
msgid "Title of booking resource"
|
9123 |
msgstr ""
|
9124 |
|
9125 |
+
#: core/lib/wpbc_all_translations.php:1783 inc/_bl/admin/page-search.php:184
|
9126 |
#: inc/_bl/admin/page-search.php:185
|
9127 |
msgid "Priority field of booking resource"
|
9128 |
msgstr ""
|
9129 |
|
9130 |
+
#: core/lib/wpbc_all_translations.php:1784 inc/_bl/admin/page-search.php:186
|
9131 |
#: inc/_bl/admin/page-search.php:187
|
9132 |
msgid "Cost of booking resource"
|
9133 |
msgstr ""
|
9134 |
|
9135 |
+
#: core/lib/wpbc_all_translations.php:1785 inc/_bl/admin/page-search.php:188
|
9136 |
#: inc/_bl/admin/page-search.php:189
|
9137 |
msgid "Cost of booking"
|
9138 |
msgstr ""
|
9139 |
|
9140 |
+
#: core/lib/wpbc_all_translations.php:1786 inc/_ps/admin/api-settings-p.php:260
|
9141 |
msgid "Deactivate send email option at Add Booking page"
|
9142 |
msgstr ""
|
9143 |
|
9144 |
+
#: core/lib/wpbc_all_translations.php:1787 inc/_ps/admin/api-settings-p.php:261
|
9145 |
msgid ""
|
9146 |
"Check this box if you want to deactivate by default option \"Send email\" at Add Booking page."
|
9147 |
msgstr ""
|
9148 |
|
9149 |
+
#: core/lib/wpbc_all_translations.php:1788 inc/_ps/admin/api-settings-p.php:269
|
9150 |
msgid "Deactivate send email option at Booking Listing page"
|
9151 |
msgstr ""
|
9152 |
|
9153 |
+
#: core/lib/wpbc_all_translations.php:1789 inc/_ps/admin/api-settings-p.php:270
|
9154 |
msgid ""
|
9155 |
"Check this box if you want to deactivate by default option \"Send email\" at Booking Listing "
|
9156 |
"page."
|
9157 |
msgstr ""
|
9158 |
|
9159 |
+
#: core/lib/wpbc_all_translations.php:1790 inc/_ps/admin/api-settings-p.php:291
|
9160 |
msgid "Force change booking resource for exist booking"
|
9161 |
msgstr ""
|
9162 |
|
9163 |
+
#: core/lib/wpbc_all_translations.php:1791 inc/_ps/admin/api-settings-p.php:292
|
9164 |
msgid ""
|
9165 |
"Check this box if you want to skip checking availability of new booking resource during changing "
|
9166 |
"booking resource of exist booking at Booking Listing page."
|
9167 |
msgstr ""
|
9168 |
|
9169 |
+
#: core/lib/wpbc_all_translations.php:1792 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:337
|
9170 |
msgid "Signature Key"
|
9171 |
msgstr ""
|
9172 |
|
9173 |
+
#: core/lib/wpbc_all_translations.php:1793 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:339
|
9174 |
msgid "Please enter the Signature Key, which you generated in the settings of Merchant Interface."
|
9175 |
msgstr ""
|
9176 |
|
9177 |
+
#: core/lib/wpbc_all_translations.php:1794 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:341
|
9178 |
msgid "To generate new Signature Key"
|
9179 |
msgstr ""
|
9180 |
|
9181 |
+
#: core/lib/wpbc_all_translations.php:1795 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:342
|
9182 |
#, php-format
|
9183 |
msgid "Log on to the %sMerchant Interface%s"
|
9184 |
msgstr ""
|
9185 |
|
9186 |
+
#: core/lib/wpbc_all_translations.php:1796 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:343
|
9187 |
msgid ""
|
9188 |
"In the merchant interface, go to Account > Settings > Security Settings > General Security "
|
9189 |
"Settings > API Credential & Keys"
|
9190 |
msgstr ""
|
9191 |
|
9192 |
+
#: core/lib/wpbc_all_translations.php:1797 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:344
|
9193 |
msgid "Answer the secret question."
|
9194 |
msgstr ""
|
9195 |
|
9196 |
+
#: core/lib/wpbc_all_translations.php:1798 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:345
|
9197 |
msgid "Select New Signature Key. Your signature key is displayed as a string."
|
9198 |
msgstr ""
|
9199 |
|
9200 |
+
#: core/lib/wpbc_all_translations.php:1799 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:346
|
9201 |
msgid "Click Copy to Clipboard."
|
9202 |
msgstr ""
|
9203 |
|
9204 |
+
#: core/lib/wpbc_all_translations.php:1800 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:347
|
9205 |
#, php-format
|
9206 |
msgid "For more information, please check %shere%s"
|
9207 |
msgstr ""
|
9208 |
|
9209 |
+
#: core/lib/wpbc_all_translations.php:1801 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:872
|
9210 |
#, php-format
|
9211 |
msgid ""
|
9212 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
9213 |
"an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway."
|
9214 |
msgstr ""
|
9215 |
|
9216 |
+
#: core/lib/wpbc_all_translations.php:1802 core/timeline/v2/wpbc-class-timeline_v2.php:2567
|
9217 |
msgid "Loading"
|
9218 |
msgstr ""
|
9219 |
|
9220 |
+
#: core/lib/wpbc_all_translations.php:1803 core/wpbc-emails.php:260
|
9221 |
#, php-format
|
9222 |
msgid "%s - inserting link to approve booking in 1 mouse click "
|
9223 |
msgstr ""
|
9224 |
|
9225 |
+
#: core/lib/wpbc_all_translations.php:1804 core/wpbc-emails.php:261
|
9226 |
#, php-format
|
9227 |
msgid "%s - inserting link to set booking as pending in 1 mouse click "
|
9228 |
msgstr ""
|
9229 |
|
9230 |
+
#: core/lib/wpbc_all_translations.php:1805 core/wpbc-emails.php:262
|
9231 |
#, php-format
|
9232 |
msgid "%s - inserting link for move booking to trash in 1 mouse click "
|
9233 |
msgstr ""
|
9234 |
|
9235 |
+
#: core/lib/wpbc_all_translations.php:1806 inc/_bl/admin/page-search.php:694
|
9236 |
msgid "Flex Search Form Template"
|
9237 |
msgstr ""
|
9238 |
|
9239 |
+
#: core/lib/wpbc_all_translations.php:1807 inc/_bl/admin/page-search.php:758
|
9240 |
msgid "Flex"
|
9241 |
msgstr ""
|
9242 |
|
9243 |
+
#: core/lib/wpbc_all_translations.php:1808 inc/_ps/hash/wpbc-hash-functions.php:101
|
9244 |
#, php-format
|
9245 |
msgid "Booking %s have been approved."
|
9246 |
msgstr ""
|
9247 |
|
9248 |
+
#: core/lib/wpbc_all_translations.php:1809 inc/_ps/hash/wpbc-hash-functions.php:129
|
9249 |
#, php-format
|
9250 |
msgid "Booking %s have been set as pending."
|
9251 |
msgstr ""
|
9252 |
|
9253 |
+
#: core/lib/wpbc_all_translations.php:1810 inc/_ps/hash/wpbc-hash-functions.php:157
|
9254 |
#, php-format
|
9255 |
msgid "Booking %s have been moved to trash."
|
9256 |
msgstr ""
|
9257 |
|
9258 |
+
#: core/lib/wpbc_all_translations.php:1811 inc/_ps/p-toolbar.php:70 inc/_ps/p-toolbar.php:71
|
9259 |
msgid "Find lost bookings"
|
9260 |
msgstr ""
|
9261 |
|
9262 |
+
#: core/lib/wpbc_all_translations.php:1812 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1078
|
9263 |
#, php-format
|
9264 |
msgid "require correct configuration of this option: %sURL to edit bookings%s"
|
9265 |
msgstr ""
|
9266 |
|
9267 |
+
#: core/lib/wpbc_all_translations.php:1813 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1120
|
9268 |
msgid "You may test your integration over HTTP. However, live integrations must use HTTPS."
|
9269 |
msgstr ""
|
9270 |
+
|
9271 |
+
#: inc/_bl/admin/page-search.php:223
|
9272 |
+
msgid "Select date format for search form"
|
9273 |
+
msgstr ""
|
9274 |
+
|
9275 |
+
#: inc/_ps/admin/api-settings-p.php:301
|
9276 |
+
msgid "Logging of booking approving or rejection"
|
9277 |
+
msgstr ""
|
9278 |
+
|
9279 |
+
#: inc/_ps/admin/api-settings-p.php:302
|
9280 |
+
msgid ""
|
9281 |
+
"Check this box if you want to log approving or rejection of bookings and add it to your booking "
|
9282 |
+
"notes."
|
9283 |
+
msgstr ""
|
9284 |
+
|
9285 |
+
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:821
|
9286 |
+
#, php-format
|
9287 |
+
msgid "%sFor Malaysia Only%s. iPay88 - Payment Switching Gateway integration %s"
|
9288 |
+
msgstr ""
|
9289 |
+
|
9290 |
+
#: inc/gateways/page-gateways.php:125
|
9291 |
+
msgid "Update cost, after booking editing in admin panel"
|
9292 |
+
msgstr ""
|
9293 |
+
|
9294 |
+
#: inc/gateways/page-gateways.php:126
|
9295 |
+
msgid ""
|
9296 |
+
"Check this box if you want to update cost after editing booking in admin panel, based on new "
|
9297 |
+
"booking data"
|
9298 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: booking calendar, booking system, availability calendar, events calendar,
|
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 5.3
|
8 |
-
Stable tag: 8.7
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -168,14 +168,14 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
|
|
168 |
= Support Languages =
|
169 |
|
170 |
- English
|
171 |
-
- French [
|
172 |
- Hungarian [99% Completed]
|
173 |
-
- Spanish [
|
174 |
-
- Dutch [
|
175 |
-
- Romanian [
|
176 |
- Slovenian [99% Completed]
|
177 |
- German [99% Completed]
|
178 |
-
- Italian [
|
179 |
- Finnish [96% Completed]
|
180 |
- Danish [94% Completed]
|
181 |
- Greek [94% Completed]
|
@@ -185,19 +185,19 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
|
|
185 |
- Swedish [93% Completed]
|
186 |
- Chinese (Taiwan) [92% Completed]
|
187 |
- Russian [90% Completed]
|
188 |
-
- Portugal [
|
189 |
- Galician (Spanish) [89% Completed]
|
190 |
- Thai [89% Completed]
|
191 |
-
- Norwegian [
|
192 |
-
- Brazilian Portuguese [
|
193 |
-
- Hebrew [
|
194 |
-
- Ukrainian [
|
195 |
-
- Chinese [
|
196 |
- Czech [73% Completed]
|
197 |
- Slovak [73% Completed]
|
198 |
- Croatian [73% Completed]
|
199 |
-
- Catalan [
|
200 |
-
- Arabic [
|
201 |
- Belorussian [9% Completed]
|
202 |
|
203 |
Please recheck the status of each translation, before using plugin.
|
@@ -227,6 +227,17 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
|
|
227 |
13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
|
228 |
|
229 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
= 8.7 =
|
231 |
- Changes in **all** versions:
|
232 |
* **New**. calendar skin with dark colors: "Black 2"
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 5.3
|
8 |
+
Stable tag: 8.7.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
168 |
= Support Languages =
|
169 |
|
170 |
- English
|
171 |
+
- French [99% Completed]
|
172 |
- Hungarian [99% Completed]
|
173 |
+
- Spanish [98% Completed]
|
174 |
+
- Dutch [97% Completed]
|
175 |
+
- Romanian [97% Completed]
|
176 |
- Slovenian [99% Completed]
|
177 |
- German [99% Completed]
|
178 |
+
- Italian [96% Completed]
|
179 |
- Finnish [96% Completed]
|
180 |
- Danish [94% Completed]
|
181 |
- Greek [94% Completed]
|
185 |
- Swedish [93% Completed]
|
186 |
- Chinese (Taiwan) [92% Completed]
|
187 |
- Russian [90% Completed]
|
188 |
+
- Portugal [89% Completed]
|
189 |
- Galician (Spanish) [89% Completed]
|
190 |
- Thai [89% Completed]
|
191 |
+
- Norwegian [86% Completed]
|
192 |
+
- Brazilian Portuguese [86% Completed]
|
193 |
+
- Hebrew [86% Completed]
|
194 |
+
- Ukrainian [85% Completed]
|
195 |
+
- Chinese [85% Completed]
|
196 |
- Czech [73% Completed]
|
197 |
- Slovak [73% Completed]
|
198 |
- Croatian [73% Completed]
|
199 |
+
- Catalan [72% Completed]
|
200 |
+
- Arabic [72% Completed]
|
201 |
- Belorussian [9% Completed]
|
202 |
|
203 |
Please recheck the status of each translation, before using plugin.
|
227 |
13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
|
228 |
|
229 |
== Changelog ==
|
230 |
+
= 8.7.1 =
|
231 |
+
- Changes in **all** versions:
|
232 |
+
* **Improvement**. Changed title 'Trash' to 'Trash / Reject', as some users can confuse missed Reject status.
|
233 |
+
* **Fix**. Incorrectly showing bookings in Calendar Overview in situation, when at some date was started booking at specific start time, and in closest future date start other new booking (its means that previous booking was not closed with end time), and sometimes we have showing this previous booking at date, where booking does not exist, at all. (8.7.1.1)
|
234 |
+
* **Fix**. Compatibility issue with Polylang plugin 2.6.5 or newer, of not loading translation of Booking Calendar plugin in admin panel (8.7.1.3)
|
235 |
+
* **Fix**. Parse error: syntax error, unexpected '[' in ../core/timeline/v2/wpbc-class-timeline_v2.php on line 1667 (8.7.1.4)
|
236 |
+
* **Fix**. Fatal error: Can't use function return value in write context in ../core/lib/wpdev-booking-class.php on line 918 (8.7.1.5)
|
237 |
+
* **Fix**. Fatal errors, relative using plugin at servers with old PHP version 5.2 (8.7.1.7)
|
238 |
+
- Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
|
239 |
+
* **New**. Ability to use this shortcode [booking_featured_image] in the email templates for inserting URL of featured images of posts, where was inserted the booking form for specific booking resource of this specific booking. (8.7.1.6)
|
240 |
+
|
241 |
= 8.7 =
|
242 |
- Changes in **all** versions:
|
243 |
* **New**. calendar skin with dark colors: "Black 2"
|
wpdev-booking.php
CHANGED
@@ -7,7 +7,7 @@ Author: wpdevelop, oplugins
|
|
7 |
Author URI: https://wpbookingcalendar.com/
|
8 |
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 8.7
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2019 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|
@@ -29,7 +29,7 @@ Version: 8.7
|
|
29 |
if ( ! defined( 'ABSPATH' ) ) die( '<h3>Direct access to this file do not allow!</h3>' ); // Exit if accessed directly
|
30 |
|
31 |
|
32 |
-
if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { define( 'WP_BK_VERSION_NUM', '8.7' ); }
|
33 |
|
34 |
////////////////////////////////////////////////////////////////////////////////
|
35 |
// PRIMARY URL CONSTANTS
|
7 |
Author URI: https://wpbookingcalendar.com/
|
8 |
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 8.7.1
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2019 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|
29 |
if ( ! defined( 'ABSPATH' ) ) die( '<h3>Direct access to this file do not allow!</h3>' ); // Exit if accessed directly
|
30 |
|
31 |
|
32 |
+
if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { define( 'WP_BK_VERSION_NUM', '8.7.1' ); }
|
33 |
|
34 |
////////////////////////////////////////////////////////////////////////////////
|
35 |
// PRIMARY URL CONSTANTS
|