Version Description
- Changes in all versions:
- Support WordPress 5.4 - Fix compatibility with new Blocks editor in Gutenberg editor, during inserting Booking Calendar shortcodes into the posts or pages (8.7.6.11)
- Translation Brazilian Portuguese translation [99% completed] by Myres Hopkins.
- Under hood New Hook action after approving of booking: do_action( 'wpbc_booking_approved' , $booking_id , $is_approved_dates ); (8.7.6.1)
- Under hood New Hook action after trash of booking: do_action( 'wpbc_booking_trash', $booking_id, $is_trash ); (8.7.6.2)
- Under hood New Hook action after deleting of booking: do_action( 'wpbc_booking_delete', $approved_id_str ); (8.7.6.3)
- Under hood New function wpbc_api_get_booking_by_id( $booking_id ); for getting booking data. (8.7.6.4)
- Improvement. Do not show selected text, if selected multiple bookings (or booking resources) with Shift pressed button (8.7.6.8)
- Fix. Issue of showing shifted days number in header at the Booking Listing page and in Timeline, while showing timeline for single booking resource in Month view mode. (8.7.6.5)
- Changes in Personal / Business Small / Business Medium / Business Large / MultiUser versions:
- Fix. Issue of not showing cost for [cost_hit] shortcode if visitor selected only 1 day, while activated range days selection mode with 2 mouse clicks, and minimum number for days selection set as 1 day. (8.7.6.6) (Business Medium/Large, MultiUser)
- Fix. Issue of not ability to go for next pages (if more than 10 booking resources) at the Booking > Settings > Sync > "Import Google Calendar Events" page (8.7.6.7) (Personal, Business Small/Medium/Large, MultiUser)
- Fix. Issue of incorrectly saving bookings into the "child booking resources". Issue was existing from update 8.7.3 to 8.7.5 (8.7.6.10) (Business Large, MultiUser)
- Improvement. Auto Reset "custom booking forms" if during previous saving of custom forms, was existing some error in creation of such forms. Usually because of using some inappropriate symbols in names of forms (8.7.6.9) (Business Medium/Large, MultiUser)
Download this release
Release Info
Developer | wpdevelop |
Plugin | Booking Calendar |
Version | 8.7.6 |
Comparing to | |
See all releases |
Code changes from version 8.7.5 to 8.7.6
- core/lib/wpbc-ajax.php +6 -0
- core/lib/wpbc-booking-new.php +5 -1
- core/timeline/v2/wpbc-class-timeline_v2.php +2 -2
- core/wpbc-css.php +0 -1
- core/wpbc-dev-api.php +60 -0
- core/wpbc-functions.php +2 -0
- css/wpbc-gutenberg.css +9 -1
- js/admin.js +3 -0
- js/client.js +1 -1
- js/wpbc-gutenberg.js +6 -0
- 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 +1774 -1774
- readme.txt +26 -11
- wpdev-booking.php +2 -2
core/lib/wpbc-ajax.php
CHANGED
@@ -191,6 +191,8 @@ function wpbc_ajax_UPDATE_APPROVE() {
|
|
191 |
|
192 |
wpbc_update_number_new_bookings( explode(',', $approved_id_str) );
|
193 |
|
|
|
|
|
194 |
if ($is_approve_or_pending == '1') {
|
195 |
if ( ! empty($is_send_emeils ) ) //FixIn: 7.0.1.5
|
196 |
wpbc_send_email_approved($approved_id_str, $is_send_emeils,$denyreason);
|
@@ -251,6 +253,8 @@ function wpbc_ajax_TRASH_RESTORE() {
|
|
251 |
$approved_id_str = join( ',', $approved_id);
|
252 |
$approved_id_str = wpbc_clean_like_string_for_db( $approved_id_str );
|
253 |
|
|
|
|
|
254 |
if ( $is_trash ) {
|
255 |
if ( ! empty( $is_send_emeils ) ) { //FixIn: 8.1.3.35
|
256 |
wpbc_send_email_trash( $approved_id_str, $is_send_emeils, $denyreason );
|
@@ -402,6 +406,8 @@ function wpbc_ajax_DELETE_APPROVE() {
|
|
402 |
$approved_id_str = join( ',', $approved_id);
|
403 |
$approved_id_str = wpbc_clean_like_string_for_db( $approved_id_str );
|
404 |
|
|
|
|
|
405 |
if ( ! empty( $is_send_emeils ) ) { //FixIn: 8.1.3.35
|
406 |
wpbc_send_email_deleted( $approved_id_str, $is_send_emeils, $denyreason );
|
407 |
}
|
191 |
|
192 |
wpbc_update_number_new_bookings( explode(',', $approved_id_str) );
|
193 |
|
194 |
+
do_action( 'wpbc_booking_approved', $approved_id_str, $is_approve_or_pending ); //FixIn: 8.7.6.1
|
195 |
+
|
196 |
if ($is_approve_or_pending == '1') {
|
197 |
if ( ! empty($is_send_emeils ) ) //FixIn: 7.0.1.5
|
198 |
wpbc_send_email_approved($approved_id_str, $is_send_emeils,$denyreason);
|
253 |
$approved_id_str = join( ',', $approved_id);
|
254 |
$approved_id_str = wpbc_clean_like_string_for_db( $approved_id_str );
|
255 |
|
256 |
+
do_action( 'wpbc_booking_trash', $booking_id, $is_trash ); //FixIn: 8.7.6.2
|
257 |
+
|
258 |
if ( $is_trash ) {
|
259 |
if ( ! empty( $is_send_emeils ) ) { //FixIn: 8.1.3.35
|
260 |
wpbc_send_email_trash( $approved_id_str, $is_send_emeils, $denyreason );
|
406 |
$approved_id_str = join( ',', $approved_id);
|
407 |
$approved_id_str = wpbc_clean_like_string_for_db( $approved_id_str );
|
408 |
|
409 |
+
do_action( 'wpbc_booking_delete', $approved_id_str ); //FixIn: 8.7.6.3
|
410 |
+
|
411 |
if ( ! empty( $is_send_emeils ) ) { //FixIn: 8.1.3.35
|
412 |
wpbc_send_email_deleted( $approved_id_str, $is_send_emeils, $denyreason );
|
413 |
}
|
core/lib/wpbc-booking-new.php
CHANGED
@@ -183,6 +183,8 @@ function wpdev_bk_insert_new_booking() {
|
|
183 |
?> <script type="text/javascript"> if ( jQuery('#submiting<?php echo $bktype; ?>' ).length ) { document.getElementById('submiting<?php echo $bktype; ?>').innerHTML = '<div style="height:20px;width:100%;text-align:center;margin:15px auto;"><?php debuge_error('Error during updating BD - Dates',__FILE__,__LINE__); ?></div>'; }</script> <?php
|
184 |
die('Error during updating BD - Dates');
|
185 |
}
|
|
|
|
|
186 |
wpbc_send_email_approved( $result_bk_id, 1, "" );
|
187 |
|
188 |
}
|
@@ -447,7 +449,7 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
|
|
447 |
if ( ( $is_edit_booking === false )
|
448 |
|| ( true === $is_duplicate_booking )
|
449 |
) {
|
450 |
-
|
451 |
if ( $is_send_emeils != 0 ) {
|
452 |
// wpbc_send_email_new_REPLACED( $booking_id, $bktype, $formdata ) ; // Old Sending emails.
|
453 |
|
@@ -504,6 +506,7 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
|
|
504 |
|
505 |
wpbc_integrate_MailChimp($formdata, $bktype);
|
506 |
|
|
|
507 |
if ( ( $auto_approve_new_bookings_is_active == 'On') && ($is_send_emeils != 0 ) ){
|
508 |
wpbc_send_email_approved($booking_id, 1);
|
509 |
}
|
@@ -560,6 +563,7 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
|
|
560 |
if ( ! empty( $params[ 'return_instead_die_on_error' ] ) ) return 0; //FixIn: 7.2.1.7
|
561 |
die('Error during updating BD - Dates');
|
562 |
}
|
|
|
563 |
wpbc_send_email_approved( $booking_id, 1, "" );
|
564 |
}
|
565 |
}
|
183 |
?> <script type="text/javascript"> if ( jQuery('#submiting<?php echo $bktype; ?>' ).length ) { document.getElementById('submiting<?php echo $bktype; ?>').innerHTML = '<div style="height:20px;width:100%;text-align:center;margin:15px auto;"><?php debuge_error('Error during updating BD - Dates',__FILE__,__LINE__); ?></div>'; }</script> <?php
|
184 |
die('Error during updating BD - Dates');
|
185 |
}
|
186 |
+
|
187 |
+
do_action( 'wpbc_booking_approved' , $result_bk_id , $is_approve_or_pending ); //FixIn: 8.7.6.1
|
188 |
wpbc_send_email_approved( $result_bk_id, 1, "" );
|
189 |
|
190 |
}
|
449 |
if ( ( $is_edit_booking === false )
|
450 |
|| ( true === $is_duplicate_booking )
|
451 |
) {
|
452 |
+
|
453 |
if ( $is_send_emeils != 0 ) {
|
454 |
// wpbc_send_email_new_REPLACED( $booking_id, $bktype, $formdata ) ; // Old Sending emails.
|
455 |
|
506 |
|
507 |
wpbc_integrate_MailChimp($formdata, $bktype);
|
508 |
|
509 |
+
do_action( 'wpbc_booking_approved' , $booking_id , $is_approved_dates ); //FixIn: 8.7.6.1
|
510 |
if ( ( $auto_approve_new_bookings_is_active == 'On') && ($is_send_emeils != 0 ) ){
|
511 |
wpbc_send_email_approved($booking_id, 1);
|
512 |
}
|
563 |
if ( ! empty( $params[ 'return_instead_die_on_error' ] ) ) return 0; //FixIn: 7.2.1.7
|
564 |
die('Error during updating BD - Dates');
|
565 |
}
|
566 |
+
do_action( 'wpbc_booking_approved' , $booking_id , $is_approve_or_pending ); //FixIn: 8.7.6.1
|
567 |
wpbc_send_email_approved( $booking_id, 1, "" );
|
568 |
}
|
569 |
}
|
core/timeline/v2/wpbc-class-timeline_v2.php
CHANGED
@@ -1309,8 +1309,8 @@ if(1)
|
|
1309 |
$time_selles_num = 1;
|
1310 |
break;
|
1311 |
case '365':
|
1312 |
-
$days_num =
|
1313 |
-
|
1314 |
$dwa = $this->week_days_titles['3'];
|
1315 |
$time_selles_num = 1;
|
1316 |
break;
|
1309 |
$time_selles_num = 1;
|
1310 |
break;
|
1311 |
case '365':
|
1312 |
+
$days_num = 31; //FixIn: 8.7.6.5
|
1313 |
+
//$days_num = intval( date_i18n('t',$start_date) ); // num of days in the specific month, wchih relative to $real_date from header //FixIn: 7.0.1.47
|
1314 |
$dwa = $this->week_days_titles['3'];
|
1315 |
$time_selles_num = 1;
|
1316 |
break;
|
core/wpbc-css.php
CHANGED
@@ -85,7 +85,6 @@ class WPBC_CSS extends WPBC_JS_CSS{
|
|
85 |
wp_add_inline_style( 'wpbc-admin-pages', $css );
|
86 |
}
|
87 |
|
88 |
-
|
89 |
}
|
90 |
if ( ( $where_to_load != 'admin' ) || ( wpbc_is_new_booking_page() ) ){ // Client or Add New Booking page
|
91 |
wp_enqueue_style( 'wpbc-client-pages', wpbc_plugin_url( '/css/client.css' ), array(), WP_BK_VERSION_NUM);
|
85 |
wp_add_inline_style( 'wpbc-admin-pages', $css );
|
86 |
}
|
87 |
|
|
|
88 |
}
|
89 |
if ( ( $where_to_load != 'admin' ) || ( wpbc_is_new_booking_page() ) ){ // Client or Add New Booking page
|
90 |
wp_enqueue_style( 'wpbc-client-pages', wpbc_plugin_url( '/css/client.css' ), array(), WP_BK_VERSION_NUM);
|
core/wpbc-dev-api.php
CHANGED
@@ -391,6 +391,46 @@ function wpbc_api_get_bookings_arr( $params = array() ) {
|
|
391 |
return $bookings_arr;
|
392 |
}
|
393 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
|
395 |
/**
|
396 |
* Hook action after creation new booking
|
@@ -403,4 +443,24 @@ function your_cust_func_add_new_booking( $booking_id, $resource_id, $str_dates__
|
|
403 |
|
404 |
}
|
405 |
add_action( 'wpdev_new_booking', 'your_cust_func_add_new_booking', 100, 5 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
*/
|
391 |
return $bookings_arr;
|
392 |
}
|
393 |
|
394 |
+
//FixIn: 8.7.6.4
|
395 |
+
/**
|
396 |
+
* Get Booking Data as array of properties
|
397 |
+
*
|
398 |
+
* @param string $booking_id - digit '11' or comma separated '11,19,12'
|
399 |
+
*
|
400 |
+
* @return array
|
401 |
+
*/
|
402 |
+
function wpbc_api_get_booking_by_id( $booking_id = '' ) {
|
403 |
+
|
404 |
+
global $wpdb;
|
405 |
+
$booking_id = wpbc_clean_digit_or_csd( $booking_id );
|
406 |
+
|
407 |
+
$slct_sql = "SELECT * FROM {$wpdb->prefix}booking as b left join {$wpdb->prefix}bookingdates as bd on (b.booking_id = bd.booking_id) WHERE b.booking_id IN (%s) LIMIT 0,1";
|
408 |
+
$slct_sql = $wpdb->prepare( $slct_sql, $booking_id );
|
409 |
+
$slct_sql_results = $wpdb->get_results( $slct_sql, ARRAY_A );
|
410 |
+
|
411 |
+
$data = array();
|
412 |
+
|
413 |
+
if ( count( $slct_sql_results ) > 0 ) {
|
414 |
+
$data = $slct_sql_results[0];
|
415 |
+
$formdata_array = explode( '~', $data['form'] );
|
416 |
+
|
417 |
+
$formdata_array_count = count( $formdata_array );
|
418 |
+
for ( $i = 0; $i < $formdata_array_count; $i ++ ) {
|
419 |
+
|
420 |
+
if ( empty( $formdata_array[ $i ] ) ) {
|
421 |
+
continue;
|
422 |
+
}
|
423 |
+
$elemnts = explode( '^', $formdata_array[ $i ] );
|
424 |
+
$type = $elemnts[0];
|
425 |
+
$element_name = $elemnts[1];
|
426 |
+
$value = $elemnts[2];
|
427 |
+
$value = nl2br( $value );
|
428 |
+
$data['formdata'][ $element_name ] = $value;
|
429 |
+
}
|
430 |
+
}
|
431 |
+
return $data;
|
432 |
+
}
|
433 |
+
|
434 |
|
435 |
/**
|
436 |
* Hook action after creation new booking
|
443 |
|
444 |
}
|
445 |
add_action( 'wpdev_new_booking', 'your_cust_func_add_new_booking', 100, 5 );
|
446 |
+
*/
|
447 |
+
|
448 |
+
/**
|
449 |
+
* Hook action after approving of booking: do_action( 'wpbc_booking_approved' , $booking_id , $is_approved_dates );
|
450 |
+
* @param int/string $booking_id - can be '1' or 99 or comma separated ID of bookings: '10,22,45'
|
451 |
+
* @param int/string $is_approved_dates - '1' | '0' | 1 | 0 1 -approved, 0 - pending
|
452 |
+
function your_cust_func_wpbc_booking_approved( $booking_id, $is_approved_dates ) {
|
453 |
+
|
454 |
+
}
|
455 |
+
add_action( 'wpbc_booking_approved', 'your_cust_func_wpbc_booking_approved', 100, 2 ); //FixIn: 8.7.6.1
|
456 |
+
*/
|
457 |
+
|
458 |
+
/**
|
459 |
+
* Hook action after trash of booking:
|
460 |
+
* do_action( 'wpbc_booking_trash', $booking_id, $is_trash ); //FixIn: 8.7.6.2
|
461 |
+
*/
|
462 |
+
|
463 |
+
/**
|
464 |
+
* Hook action after delete of booking:
|
465 |
+
* do_action( 'wpbc_booking_delete', $approved_id_str ); //FixIn: 8.7.6.3
|
466 |
*/
|
core/wpbc-functions.php
CHANGED
@@ -3437,12 +3437,14 @@ function wpbc_auto_approve_booking( $booking_id , $email_reason = '' ) {
|
|
3437 |
|
3438 |
if ( is_numeric( $booking_id ) ) { //FixIn: 8.1.2.8
|
3439 |
if ( ! wpbc_is_booking_approved( $booking_id ) ) {
|
|
|
3440 |
wpbc_send_email_approved( $booking_id, 1, $email_reason );
|
3441 |
}
|
3442 |
} else {
|
3443 |
$booking_id_arr = explode( ',',$booking_id );
|
3444 |
foreach ( $booking_id_arr as $bk_id ) {
|
3445 |
if ( ! wpbc_is_booking_approved( $bk_id ) ) {
|
|
|
3446 |
wpbc_send_email_approved( $bk_id, 1, $email_reason );
|
3447 |
}
|
3448 |
|
3437 |
|
3438 |
if ( is_numeric( $booking_id ) ) { //FixIn: 8.1.2.8
|
3439 |
if ( ! wpbc_is_booking_approved( $booking_id ) ) {
|
3440 |
+
do_action( 'wpbc_booking_approved', $booking_id, 1 ); //FixIn: 8.7.6.1
|
3441 |
wpbc_send_email_approved( $booking_id, 1, $email_reason );
|
3442 |
}
|
3443 |
} else {
|
3444 |
$booking_id_arr = explode( ',',$booking_id );
|
3445 |
foreach ( $booking_id_arr as $bk_id ) {
|
3446 |
if ( ! wpbc_is_booking_approved( $bk_id ) ) {
|
3447 |
+
do_action( 'wpbc_booking_approved', $bk_id, 1 ); //FixIn: 8.7.6.1
|
3448 |
wpbc_send_email_approved( $bk_id, 1, $email_reason );
|
3449 |
}
|
3450 |
|
css/wpbc-gutenberg.css
CHANGED
@@ -143,11 +143,19 @@ DIV.wpbc_gb_block_shortcode_preview_wrapper.wpbc_gb_block_preview_bookingtimelin
|
|
143 |
font-weight: 600;
|
144 |
}
|
145 |
|
|
|
|
|
|
|
146 |
/* Show Blue configuration shortcode button, if block selected or when no shortcode at all */
|
147 |
.editor-block-list__block .wpbc_gb_div_block.wpbc_gb_div_block_no_shortcode a.wpbc-gutenberg-open-btn,
|
148 |
-
.editor-block-list__block.is-selected .wpbc_gb_div_block a.wpbc-gutenberg-open-btn
|
|
|
149 |
display: block;
|
150 |
}
|
|
|
|
|
|
|
|
|
151 |
|
152 |
/* PopUp Blue Button */
|
153 |
.wpbc_gb_div_block a.wpbc-gutenberg-open-btn,
|
143 |
font-weight: 600;
|
144 |
}
|
145 |
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
/* Show Blue configuration shortcode button, if block selected or when no shortcode at all */
|
150 |
.editor-block-list__block .wpbc_gb_div_block.wpbc_gb_div_block_no_shortcode a.wpbc-gutenberg-open-btn,
|
151 |
+
.editor-block-list__block.is-selected .wpbc_gb_div_block a.wpbc-gutenberg-open-btn,
|
152 |
+
.block-editor-block-list__block.is-selected .wpbc_gb_div_block a.wpbc-gutenberg-open-btn /* FixIn: 8.7.6.11 */ {
|
153 |
display: block;
|
154 |
}
|
155 |
+
/* Hide Green Preview block buttin inside of the Block for WordPress older than 5.4 update*/
|
156 |
+
.editor-block-list__block.is-selected .wpbc-gutenberg-update-view .wpbc-gutenberg-update-preview-btn{
|
157 |
+
visibility: hidden;
|
158 |
+
}
|
159 |
|
160 |
/* PopUp Blue Button */
|
161 |
.wpbc_gb_div_block a.wpbc-gutenberg-open-btn,
|
js/admin.js
CHANGED
@@ -674,6 +674,9 @@ function wpbc_import_gcal_events( us_id
|
|
674 |
return ( 0 === unchecked.length );
|
675 |
});
|
676 |
|
|
|
|
|
|
|
677 |
return true;
|
678 |
});
|
679 |
|
674 |
return ( 0 === unchecked.length );
|
675 |
});
|
676 |
|
677 |
+
// Disable text selection while pressing 'shift'
|
678 |
+
document.getSelection().removeAllRanges(); //FixIn: 8.7.6.8
|
679 |
+
|
680 |
return true;
|
681 |
});
|
682 |
|
js/client.js
CHANGED
@@ -416,7 +416,7 @@ function init_datepick_cal(bk_type, date_approved_par, my_num_month, start_day_
|
|
416 |
changeMonth: false,
|
417 |
changeYear: false,
|
418 |
minDate: bkMinDate, maxDate: bkMaxDate, //'1Y',
|
419 |
-
//minDate:
|
420 |
showStatus: false,
|
421 |
multiSeparator: ', ',
|
422 |
closeAtTop: false,
|
416 |
changeMonth: false,
|
417 |
changeYear: false,
|
418 |
minDate: bkMinDate, maxDate: bkMaxDate, //'1Y',
|
419 |
+
// minDate: new Date(2020, 2, 1), maxDate: new Date(2020, 9, 31), // Ability to set any start and end date in calendar
|
420 |
showStatus: false,
|
421 |
multiSeparator: ', ',
|
422 |
closeAtTop: false,
|
js/wpbc-gutenberg.js
CHANGED
@@ -296,6 +296,12 @@
|
|
296 |
'<div href="#!" class="button wpbc-gutenberg-update-preview-btn" ' +
|
297 |
'>' + wp.i18n.__( 'Click to Preview Block' ) + '</div></div>'
|
298 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
|
300 |
|
301 |
|
296 |
'<div href="#!" class="button wpbc-gutenberg-update-preview-btn" ' +
|
297 |
'>' + wp.i18n.__( 'Click to Preview Block' ) + '</div></div>'
|
298 |
);
|
299 |
+
//FixIn: 8.7.6.11
|
300 |
+
jQuery( 'div[data-block="' + block_section_id + '"]' ).before(
|
301 |
+
'<div class="editor-block-list__block wpbc-gutenberg-update-view" style="cursor: pointer;text-align: center;">' +
|
302 |
+
'<div href="#!" class="button wpbc-gutenberg-update-preview-btn" ' +
|
303 |
+
'>' + wp.i18n.__( 'Click to Preview Block' ) + '</div></div>'
|
304 |
+
);
|
305 |
|
306 |
|
307 |
|
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: 2020-
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
@@ -35,7 +35,7 @@ msgid "year(s)"
|
|
35 |
msgstr ""
|
36 |
|
37 |
#: core/admin/api-settings.php:94 core/admin/wpbc-toolbar-tiny.php:460
|
38 |
-
#: core/lib/wpbc_all_translations.php:6 js/wpbc-gutenberg.js:
|
39 |
msgid "Number of months to scroll"
|
40 |
msgstr ""
|
41 |
|
@@ -136,7 +136,7 @@ msgstr ""
|
|
136 |
#: core/lib/wpbc_all_translations.php:22 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:198
|
139 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1076 js/wpbc-gutenberg.js:
|
140 |
msgid "Note"
|
141 |
msgstr ""
|
142 |
|
@@ -168,8 +168,8 @@ msgstr ""
|
|
168 |
#: core/admin/api-settings.php:275 core/admin/wpbc-toolbar-tiny.php:240
|
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:29
|
171 |
-
#: inc/_bm/m-toolbar.php:29 inc/_bm/m-toolbar.php:113 inc/_bm/m-toolbar.php:
|
172 |
-
#: inc/_ps/lib_p.php:268 js/wpbc-gutenberg.js:
|
173 |
msgid "Booking Form"
|
174 |
msgstr ""
|
175 |
|
@@ -514,46 +514,46 @@ 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:752
|
518 |
msgid "Use localized time format"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: core/admin/api-settings.php:753
|
522 |
msgid ""
|
523 |
"This option useful only, if you have issue with translation of time format. If you activated "
|
524 |
"this option, at some servers possible issue with \"Daylight Saving Time\" - booked times can be "
|
525 |
"later on 1 hour."
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: core/admin/api-settings.php:761 core/lib/wpbc_all_translations.php:
|
529 |
msgid "Short days view"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: core/admin/api-settings.php:762 core/lib/wpbc_all_translations.php:
|
533 |
msgid "Wide days view"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: core/admin/api-settings.php:767 core/lib/wpbc_all_translations.php:
|
537 |
msgid "Dates view"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: core/admin/api-settings.php:768 core/lib/wpbc_all_translations.php:
|
541 |
msgid "Select the default view for dates on the booking tables"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: core/admin/api-settings.php:784 core/lib/wpbc_all_translations.php:
|
545 |
msgid "Show / hide hints"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: core/admin/api-settings.php:785 core/lib/wpbc_all_translations.php:
|
549 |
msgid "Check this box if you want to show help hints on the admin panel."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: core/admin/api-settings.php:805 core/lib/wpbc_all_translations.php:
|
553 |
msgid "Allow unlimited bookings per same day(s)"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: core/admin/api-settings.php:806 core/lib/wpbc_all_translations.php:
|
557 |
#, php-format
|
558 |
msgid ""
|
559 |
"Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
|
@@ -561,146 +561,146 @@ msgid ""
|
|
561 |
"date(s)%s of other visitors."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: core/admin/api-settings.php:816 core/lib/wpbc_all_translations.php:
|
565 |
#: inc/_bl/admin/api-settings-l.php:101
|
566 |
msgid "Use pending days as available"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: core/admin/api-settings.php:817 core/lib/wpbc_all_translations.php:
|
570 |
#: inc/_bl/admin/api-settings-l.php:102
|
571 |
msgid "Check this box if you want to show the pending days as available in calendars"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: core/admin/api-settings.php:828 core/lib/wpbc_all_translations.php:
|
575 |
msgid "Checking to prevent double booking, during submitting booking"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: core/admin/api-settings.php:829 core/lib/wpbc_all_translations.php:
|
579 |
#, php-format
|
580 |
msgid ""
|
581 |
"Check this box, if you want to %sre-check if the selected dates available during submitting "
|
582 |
"booking%s."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: core/admin/api-settings.php:831 core/lib/wpbc_all_translations.php:
|
586 |
msgid ""
|
587 |
"This feature useful to prevent double booking of the same date(s) or time(s), if several "
|
588 |
"visitors try to book the same date(s) in same calendar during the same time."
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: core/admin/api-settings.php:832 core/lib/wpbc_all_translations.php:
|
592 |
msgid "This feature does not work for booking resources with capacity higher than one."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: core/admin/api-settings.php:849 core/lib/wpbc_all_translations.php:
|
596 |
msgid "Show advanced settings of JavaScript loading"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: core/admin/api-settings.php:850 core/lib/wpbc_all_translations.php:
|
600 |
msgid "Hide advanced settings of JavaScript loading"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: core/admin/api-settings.php:858 core/lib/wpbc_all_translations.php:
|
604 |
msgid "Disable Bootstrap loading on Front-End"
|
605 |
msgstr ""
|
606 |
|
607 |
#: core/admin/api-settings.php:859 core/admin/api-settings.php:868
|
608 |
-
#: core/lib/wpbc_all_translations.php:
|
609 |
msgid ""
|
610 |
" If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
|
611 |
"of this script by this plugin."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: core/admin/api-settings.php:867 core/lib/wpbc_all_translations.php:
|
615 |
msgid "Disable Bootstrap loading on Back-End"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: core/admin/api-settings.php:877 core/lib/wpbc_all_translations.php:
|
619 |
msgid "Load JS and CSS files only on specific pages"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: core/admin/api-settings.php:878 core/lib/wpbc_all_translations.php:
|
623 |
msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: core/admin/api-settings.php:888 core/lib/wpbc_all_translations.php:
|
627 |
msgid "Relative URLs of pages, where to load plugin CSS and JS files"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: core/admin/api-settings.php:889 core/lib/wpbc_all_translations.php:
|
631 |
#, php-format
|
632 |
msgid ""
|
633 |
"Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
|
634 |
"availability calendars). Please enter one URL per line. Example: %s"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: core/admin/api-settings.php:903 core/lib/wpbc_all_translations.php:
|
638 |
msgid "Show system debugging log for beta features"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: core/admin/api-settings.php:904 core/lib/wpbc_all_translations.php:
|
642 |
msgid "Activate this option only for testing beta features"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: core/admin/api-settings.php:920 core/lib/wpbc_all_translations.php:
|
646 |
msgid "Show settings of powered by notice"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: core/admin/api-settings.php:921 core/lib/wpbc_all_translations.php:
|
650 |
msgid "Hide settings of powered by notice"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: core/admin/api-settings.php:928 core/lib/wpbc_all_translations.php:
|
654 |
msgid "Powered by notice"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: core/admin/api-settings.php:929 core/lib/wpbc_all_translations.php:
|
658 |
msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: core/admin/api-settings.php:937 core/lib/wpbc_all_translations.php:
|
662 |
msgid "Help and info notices"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: core/admin/api-settings.php:938 core/lib/wpbc_all_translations.php:
|
666 |
msgid " Turn On/Off version notice and help info links at booking admin panel."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: core/admin/api-settings.php:966 core/lib/wpbc_all_translations.php:
|
670 |
msgid "Plugin menu position"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: core/admin/api-settings.php:969 core/lib/wpbc_all_translations.php:
|
674 |
msgid "Top"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: core/admin/api-settings.php:970 core/lib/wpbc_all_translations.php:
|
678 |
msgid "Middle"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: core/admin/api-settings.php:971 core/lib/wpbc_all_translations.php:
|
682 |
msgid "Bottom"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: core/admin/api-settings.php:982 core/lib/wpbc_all_translations.php:
|
686 |
msgid "User permissions for plugin menu pages"
|
687 |
msgstr ""
|
688 |
|
689 |
#: core/admin/api-settings.php:997 core/admin/wpbc-toolbars.php:556
|
690 |
-
#: core/admin/wpbc-toolbars.php:771 core/lib/wpbc_all_translations.php:
|
691 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:74 core/wpbc.php:136
|
692 |
msgid "Bookings"
|
693 |
msgstr ""
|
694 |
|
695 |
#: core/admin/api-settings.php:1006 core/admin/page-new.php:33 core/admin/page-new.php:34
|
696 |
#: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1847
|
697 |
-
#: core/lib/wpbc_all_translations.php:
|
698 |
#: core/wpbc.php:166 core/wpbc.php:167
|
699 |
msgid "Add booking"
|
700 |
msgstr ""
|
701 |
|
702 |
#: core/admin/api-settings.php:1016 core/admin/page-import-gcal.php:491
|
703 |
-
#: core/lib/wpbc_all_translations.php:
|
704 |
#: core/wpbc-functions.php:1918 core/wpbc.php:176 core/wpbc.php:178
|
705 |
#: inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
|
706 |
#: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
|
@@ -710,47 +710,47 @@ msgstr ""
|
|
710 |
msgid "Resources"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: core/admin/api-settings.php:1025 core/lib/wpbc_all_translations.php:
|
714 |
#: core/wpbc-functions.php:1973 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
|
715 |
#: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
|
716 |
msgid "Settings"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: core/admin/api-settings.php:1026 core/lib/wpbc_all_translations.php:
|
720 |
msgid "Select user access level for the menu pages of plugin"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: core/admin/api-settings.php:1037 core/lib/wpbc_all_translations.php:
|
724 |
msgid "Premium"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: core/admin/api-settings.php:1038 core/lib/wpbc_all_translations.php:
|
728 |
msgid "Show / hide menu"
|
729 |
msgstr ""
|
730 |
|
731 |
#: core/admin/api-settings.php:1041 core/admin/wpbc-toolbar-tiny.php:591
|
732 |
#: core/admin/wpbc-toolbar-tiny.php:1810 core/admin/wpbc-toolbars.php:790
|
733 |
-
#: core/lib/wpbc_all_translations.php:
|
734 |
-
#: js/wpbc-gutenberg.js:
|
735 |
msgid "Show"
|
736 |
msgstr ""
|
737 |
|
738 |
#: core/admin/api-settings.php:1042 core/class/wpbc-class-notices.php:104
|
739 |
-
#: core/lib/wpbc_all_translations.php:
|
740 |
#: core/wpbc-functions.php:2377
|
741 |
msgid "Hide"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: core/admin/api-settings.php:1059 core/lib/wpbc_all_translations.php:
|
745 |
msgid "Delete booking data, when plugin deactivated"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: core/admin/api-settings.php:1060 core/lib/wpbc_all_translations.php:
|
749 |
msgid "Check this box to delete all booking data when you uninstal this plugin."
|
750 |
msgstr ""
|
751 |
|
752 |
#: core/admin/api-settings.php:1086 core/admin/page-form-free.php:986
|
753 |
-
#: core/lib/wpbc_all_translations.php:
|
754 |
#: core/sync/wpbc-gcal-class.php:642 core/sync/wpbc-gcal-class.php:668
|
755 |
#: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
|
756 |
#: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
|
@@ -759,13 +759,13 @@ msgid "Info"
|
|
759 |
msgstr ""
|
760 |
|
761 |
#: core/admin/api-settings.php:1121 core/admin/page-settings.php:296
|
762 |
-
#: core/lib/wpbc_all_translations.php:
|
763 |
msgid "Restore all dismissed windows"
|
764 |
msgstr ""
|
765 |
|
766 |
#: core/admin/api-settings.php:1245 core/admin/api-settings.php:1276
|
767 |
#: core/admin/api-settings.php:1308 core/admin/api-settings.php:1321
|
768 |
-
#: core/admin/api-settings.php:1354 core/lib/wpbc_all_translations.php:
|
769 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:564
|
770 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/page-gateways.php:917
|
771 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
|
@@ -773,31 +773,31 @@ msgstr ""
|
|
773 |
msgid "Warning"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: core/admin/api-settings.php:1246 core/lib/wpbc_all_translations.php:
|
777 |
msgid ""
|
778 |
"You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
|
779 |
"the same date. Do you really want to do this?"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: core/admin/api-settings.php:1277 core/lib/wpbc_all_translations.php:
|
783 |
msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
|
784 |
msgstr ""
|
785 |
|
786 |
#: core/admin/api-settings.php:1309 core/admin/api-settings.php:1322
|
787 |
-
#: core/lib/wpbc_all_translations.php:
|
788 |
msgid ""
|
789 |
"You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
|
790 |
"really want to do this?"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: core/admin/api-settings.php:1355 core/lib/wpbc_all_translations.php:
|
794 |
msgid ""
|
795 |
"If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
|
796 |
"you really want to do this?"
|
797 |
msgstr ""
|
798 |
|
799 |
#: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
|
800 |
-
#: core/admin/wpbc-toolbars.php:467 core/lib/wpbc_all_translations.php:
|
801 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2630 core/wpbc-functions.php:1886
|
802 |
msgid "Booking Listing"
|
803 |
msgstr ""
|
@@ -805,7 +805,7 @@ msgstr ""
|
|
805 |
#: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
|
806 |
#: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
|
807 |
#: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
|
808 |
-
#: core/lib/wpbc_all_translations.php:
|
809 |
#: inc/_bm/admin/page-cost-early-late-booking.php:138
|
810 |
#: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
|
811 |
#: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:297
|
@@ -821,7 +821,7 @@ msgstr ""
|
|
821 |
#: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
|
822 |
#: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
|
823 |
#: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
|
824 |
-
#: core/lib/wpbc_all_translations.php:
|
825 |
#: inc/_ps/admin/page-email-edit.php:179
|
826 |
msgid "Enable this email notification"
|
827 |
msgstr ""
|
@@ -830,7 +830,7 @@ msgstr ""
|
|
830 |
#: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
|
831 |
#: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
|
832 |
#: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
|
833 |
-
#: core/lib/wpbc_all_translations.php:
|
834 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
|
835 |
#: inc/_ps/admin/page-email-edit.php:205
|
836 |
msgid "Copy(ies)"
|
@@ -838,14 +838,14 @@ msgstr ""
|
|
838 |
|
839 |
#: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
|
840 |
#: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
|
841 |
-
#: core/lib/wpbc_all_translations.php:
|
842 |
#: inc/_ps/admin/page-email-edit.php:191
|
843 |
msgid "Enable / disable sending email(s) to additional addresses"
|
844 |
msgstr ""
|
845 |
|
846 |
#: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
|
847 |
#: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
|
848 |
-
#: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:
|
849 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
850 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
|
851 |
msgid "To"
|
@@ -856,7 +856,7 @@ msgstr ""
|
|
856 |
#: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
|
857 |
#: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
|
858 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
|
859 |
-
#: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:
|
860 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
861 |
#: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
|
862 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
|
@@ -873,7 +873,7 @@ msgstr ""
|
|
873 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
|
874 |
#: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
|
875 |
#: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1147
|
876 |
-
#: core/admin/page-form-free.php:2071 core/lib/wpbc_all_translations.php:
|
877 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
878 |
#: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
|
879 |
#: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
|
@@ -891,7 +891,7 @@ msgstr ""
|
|
891 |
|
892 |
#: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
|
893 |
#: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
|
894 |
-
#: core/lib/wpbc_all_translations.php:
|
895 |
#: inc/_ps/admin/page-email-edit.php:216
|
896 |
msgid "You can put multiple emails separated by"
|
897 |
msgstr ""
|
@@ -903,12 +903,12 @@ msgstr ""
|
|
903 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
904 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
|
905 |
#: core/admin/wpbc-toolbar-tiny.php:430 core/admin/wpbc-toolbar-tiny.php:1801
|
906 |
-
#: core/lib/wpbc_all_translations.php:
|
907 |
#: core/sync/wpbc-gcal-class.php:641 core/sync/wpbc-gcal-class.php:664
|
908 |
#: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
|
909 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
910 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
911 |
-
#: inc/_ps/wpbc-booking-select-widget.php:140 js/wpbc-gutenberg.js:
|
912 |
msgid "Title"
|
913 |
msgstr ""
|
914 |
|
@@ -918,7 +918,7 @@ msgstr ""
|
|
918 |
#: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
|
919 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
920 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
|
921 |
-
#: core/admin/wpbc-toolbar-tiny.php:430 core/lib/wpbc_all_translations.php:
|
922 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
923 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
924 |
#: inc/_ps/form/class-wpbc-field-help-button.php:73
|
@@ -938,18 +938,18 @@ msgstr ""
|
|
938 |
#: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
|
939 |
#: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
|
940 |
#: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:594
|
941 |
-
#: core/lib/wpbc_all_translations.php:
|
942 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
943 |
#: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
|
944 |
#: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
|
945 |
msgid "From"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:
|
949 |
msgid "Email Address will be used in the FROM field of response to Visitor."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:
|
953 |
#: core/wpbc-activation.php:998
|
954 |
msgid "Your booking has been approved"
|
955 |
msgstr ""
|
@@ -957,7 +957,7 @@ msgstr ""
|
|
957 |
#: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
|
958 |
#: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
|
959 |
#: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
|
960 |
-
#: core/lib/wpbc_all_translations.php:
|
961 |
#: inc/_ps/admin/page-email-edit.php:312
|
962 |
msgid "Subject"
|
963 |
msgstr ""
|
@@ -965,13 +965,13 @@ msgstr ""
|
|
965 |
#: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
|
966 |
#: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
|
967 |
#: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
|
968 |
-
#: core/lib/wpbc_all_translations.php:
|
969 |
#: inc/_ps/admin/page-email-edit.php:313
|
970 |
#, php-format
|
971 |
msgid "Type your email %ssubject%s for the booking confimation message."
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:
|
975 |
#: core/wpbc-activation.php:1000
|
976 |
#, php-format
|
977 |
msgid ""
|
@@ -979,7 +979,7 @@ msgid ""
|
|
979 |
"you, %s"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:
|
983 |
#: core/wpbc-activation.php:1002
|
984 |
#, php-format
|
985 |
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
@@ -988,7 +988,7 @@ msgstr ""
|
|
988 |
#: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
|
989 |
#: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
|
990 |
#: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
|
991 |
-
#: core/lib/wpbc_all_translations.php:
|
992 |
#: inc/_ps/admin/page-email-edit.php:330
|
993 |
msgid "Content"
|
994 |
msgstr ""
|
@@ -996,7 +996,7 @@ msgstr ""
|
|
996 |
#: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
|
997 |
#: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
|
998 |
#: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
|
999 |
-
#: core/lib/wpbc_all_translations.php:
|
1000 |
#: inc/_ps/admin/page-email-edit.php:331
|
1001 |
msgid "Type your email message content. "
|
1002 |
msgstr ""
|
@@ -1004,7 +1004,7 @@ msgstr ""
|
|
1004 |
#: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
|
1005 |
#: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
|
1006 |
#: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
|
1007 |
-
#: core/lib/wpbc_all_translations.php:
|
1008 |
#: inc/_ps/admin/page-email-edit.php:352
|
1009 |
msgid "Email Heading"
|
1010 |
msgstr ""
|
@@ -1012,7 +1012,7 @@ msgstr ""
|
|
1012 |
#: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
|
1013 |
#: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
|
1014 |
#: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
|
1015 |
-
#: core/lib/wpbc_all_translations.php:
|
1016 |
#: inc/_ps/admin/page-email-edit.php:353
|
1017 |
msgid "Enter main heading contained within the email notification."
|
1018 |
msgstr ""
|
@@ -1020,7 +1020,7 @@ msgstr ""
|
|
1020 |
#: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
|
1021 |
#: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
|
1022 |
#: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
|
1023 |
-
#: core/lib/wpbc_all_translations.php:
|
1024 |
#: inc/_ps/admin/page-email-edit.php:362
|
1025 |
msgid "Email Footer Text"
|
1026 |
msgstr ""
|
@@ -1028,7 +1028,7 @@ msgstr ""
|
|
1028 |
#: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
|
1029 |
#: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
|
1030 |
#: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
|
1031 |
-
#: core/lib/wpbc_all_translations.php:
|
1032 |
#: inc/_ps/admin/page-email-edit.php:363
|
1033 |
msgid "Enter text contained within footer of the email notification"
|
1034 |
msgstr ""
|
@@ -1036,7 +1036,7 @@ msgstr ""
|
|
1036 |
#: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
|
1037 |
#: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
|
1038 |
#: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
|
1039 |
-
#: core/lib/wpbc_all_translations.php:
|
1040 |
#: inc/_ps/admin/page-email-edit.php:373
|
1041 |
msgid "Email template"
|
1042 |
msgstr ""
|
@@ -1044,7 +1044,7 @@ msgstr ""
|
|
1044 |
#: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
|
1045 |
#: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
|
1046 |
#: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
|
1047 |
-
#: core/lib/wpbc_all_translations.php:
|
1048 |
#: inc/_ps/admin/page-email-edit.php:374
|
1049 |
msgid "Choose email template."
|
1050 |
msgstr ""
|
@@ -1052,7 +1052,7 @@ msgstr ""
|
|
1052 |
#: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
|
1053 |
#: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
|
1054 |
#: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
|
1055 |
-
#: core/lib/wpbc_all_translations.php:
|
1056 |
#: inc/_ps/admin/page-email-edit.php:378
|
1057 |
msgid "Plain (without styles)"
|
1058 |
msgstr ""
|
@@ -1060,7 +1060,7 @@ msgstr ""
|
|
1060 |
#: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
|
1061 |
#: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
|
1062 |
#: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
|
1063 |
-
#: core/lib/wpbc_all_translations.php:
|
1064 |
#: inc/_ps/admin/page-email-edit.php:379
|
1065 |
msgid "Standard 1 column"
|
1066 |
msgstr ""
|
@@ -1068,7 +1068,7 @@ msgstr ""
|
|
1068 |
#: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
|
1069 |
#: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
|
1070 |
#: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
|
1071 |
-
#: core/lib/wpbc_all_translations.php:
|
1072 |
#: inc/_ps/admin/page-email-edit.php:386
|
1073 |
#, php-format
|
1074 |
msgid "You can override this email template in this folder %s"
|
@@ -1077,7 +1077,7 @@ msgstr ""
|
|
1077 |
#: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
|
1078 |
#: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
|
1079 |
#: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
|
1080 |
-
#: core/lib/wpbc_all_translations.php:
|
1081 |
#: inc/_ps/admin/page-email-edit.php:396
|
1082 |
msgid "Base Color"
|
1083 |
msgstr ""
|
@@ -1085,7 +1085,7 @@ msgstr ""
|
|
1085 |
#: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
|
1086 |
#: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
|
1087 |
#: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
|
1088 |
-
#: core/lib/wpbc_all_translations.php:
|
1089 |
#: inc/_ps/admin/page-email-edit.php:397
|
1090 |
msgid "The base color for email templates."
|
1091 |
msgstr ""
|
@@ -1102,7 +1102,7 @@ msgstr ""
|
|
1102 |
#: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
|
1103 |
#: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
|
1104 |
#: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
|
1105 |
-
#: core/lib/wpbc_all_translations.php:
|
1106 |
#: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
|
1107 |
#: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
|
1108 |
#: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
|
@@ -1113,7 +1113,7 @@ msgstr ""
|
|
1113 |
#: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
|
1114 |
#: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
|
1115 |
#: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
|
1116 |
-
#: core/lib/wpbc_all_translations.php:
|
1117 |
#: inc/_ps/admin/page-email-edit.php:405
|
1118 |
msgid "Background Color"
|
1119 |
msgstr ""
|
@@ -1121,7 +1121,7 @@ msgstr ""
|
|
1121 |
#: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
|
1122 |
#: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
|
1123 |
#: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
|
1124 |
-
#: core/lib/wpbc_all_translations.php:
|
1125 |
#: inc/_ps/admin/page-email-edit.php:406
|
1126 |
msgid "The background color for email templates."
|
1127 |
msgstr ""
|
@@ -1129,7 +1129,7 @@ msgstr ""
|
|
1129 |
#: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
|
1130 |
#: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
|
1131 |
#: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
|
1132 |
-
#: core/lib/wpbc_all_translations.php:
|
1133 |
#: inc/_ps/admin/page-email-edit.php:414
|
1134 |
msgid "Email Body Background Color"
|
1135 |
msgstr ""
|
@@ -1137,7 +1137,7 @@ msgstr ""
|
|
1137 |
#: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
|
1138 |
#: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
|
1139 |
#: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
|
1140 |
-
#: core/lib/wpbc_all_translations.php:
|
1141 |
#: inc/_ps/admin/page-email-edit.php:415
|
1142 |
msgid "The main body background color for email templates."
|
1143 |
msgstr ""
|
@@ -1145,7 +1145,7 @@ msgstr ""
|
|
1145 |
#: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
|
1146 |
#: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
|
1147 |
#: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
|
1148 |
-
#: core/lib/wpbc_all_translations.php:
|
1149 |
#: inc/_ps/admin/page-email-edit.php:423
|
1150 |
msgid "Email Body Text Colour"
|
1151 |
msgstr ""
|
@@ -1153,7 +1153,7 @@ msgstr ""
|
|
1153 |
#: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
|
1154 |
#: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
|
1155 |
#: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
|
1156 |
-
#: core/lib/wpbc_all_translations.php:
|
1157 |
#: inc/_ps/admin/page-email-edit.php:424
|
1158 |
msgid "The main body text color for email templates."
|
1159 |
msgstr ""
|
@@ -1161,7 +1161,7 @@ msgstr ""
|
|
1161 |
#: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
|
1162 |
#: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
|
1163 |
#: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
|
1164 |
-
#: core/lib/wpbc_all_translations.php:
|
1165 |
#: inc/_ps/admin/page-email-edit.php:439
|
1166 |
msgid "Email format"
|
1167 |
msgstr ""
|
@@ -1169,7 +1169,7 @@ msgstr ""
|
|
1169 |
#: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
|
1170 |
#: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
|
1171 |
#: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
|
1172 |
-
#: core/lib/wpbc_all_translations.php:
|
1173 |
#: inc/_ps/admin/page-email-edit.php:440
|
1174 |
msgid "Choose which format of email to send."
|
1175 |
msgstr ""
|
@@ -1177,7 +1177,7 @@ msgstr ""
|
|
1177 |
#: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
|
1178 |
#: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
|
1179 |
#: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
|
1180 |
-
#: core/lib/wpbc_all_translations.php:
|
1181 |
#: inc/_ps/admin/page-email-edit.php:444
|
1182 |
msgid "Plain text"
|
1183 |
msgstr ""
|
@@ -1185,7 +1185,7 @@ msgstr ""
|
|
1185 |
#: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
|
1186 |
#: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
|
1187 |
#: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
|
1188 |
-
#: core/lib/wpbc_all_translations.php:
|
1189 |
#: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:678
|
1190 |
#: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:1123
|
1191 |
msgid "HTML"
|
@@ -1194,7 +1194,7 @@ msgstr ""
|
|
1194 |
#: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
|
1195 |
#: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
|
1196 |
#: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
|
1197 |
-
#: core/lib/wpbc_all_translations.php:
|
1198 |
#: inc/_ps/admin/page-email-edit.php:452
|
1199 |
msgid "Multipart"
|
1200 |
msgstr ""
|
@@ -1202,7 +1202,7 @@ msgstr ""
|
|
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:
|
1206 |
#: inc/_ps/admin/page-email-edit.php:479
|
1207 |
#, php-format
|
1208 |
msgid ""
|
@@ -1213,13 +1213,13 @@ msgstr ""
|
|
1213 |
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1214 |
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1215 |
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1216 |
-
#: core/lib/wpbc_all_translations.php:
|
1217 |
#: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
|
1218 |
msgid "here"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
#: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:329
|
1222 |
-
#: core/admin/wpbc-toolbars.php:550 core/lib/wpbc_all_translations.php:
|
1223 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2732 inc/_ps/personal.php:358
|
1224 |
#: inc/_ps/wpbc-print.php:118
|
1225 |
msgid "Approved"
|
@@ -1229,23 +1229,23 @@ msgstr ""
|
|
1229 |
#: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:513
|
1230 |
#: core/admin/page-email-new-admin.php:514 core/admin/page-email-new-admin.php:538
|
1231 |
#: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
|
1232 |
-
#: core/lib/wpbc_all_translations.php:
|
1233 |
#: inc/_ps/admin/page-email-edit.php:557
|
1234 |
msgid "Emails Settings"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:
|
1238 |
msgid "Customization of email template, which is sent to Visitor after approval of booking"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:
|
1242 |
msgid "Email is sent to Visitor after Approval of booking."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
#: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
|
1246 |
#: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:686
|
1247 |
#: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
|
1248 |
-
#: core/lib/wpbc_all_translations.php:
|
1249 |
#: inc/_ps/admin/page-email-edit.php:701
|
1250 |
msgid "Header / Footer"
|
1251 |
msgstr ""
|
@@ -1253,7 +1253,7 @@ msgstr ""
|
|
1253 |
#: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
|
1254 |
#: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:693
|
1255 |
#: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
|
1256 |
-
#: core/lib/wpbc_all_translations.php:
|
1257 |
#: inc/_ps/admin/page-email-edit.php:708
|
1258 |
msgid "Email Styles"
|
1259 |
msgstr ""
|
@@ -1264,7 +1264,7 @@ msgstr ""
|
|
1264 |
#: core/admin/page-form-free.php:1149 core/admin/page-form-timeslots.php:768
|
1265 |
#: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
|
1266 |
#: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:178
|
1267 |
-
#: core/lib/wpbc_all_translations.php:
|
1268 |
#: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
|
1269 |
#: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
|
1270 |
#: inc/_ps/admin/page-email-edit.php:720
|
@@ -1274,7 +1274,7 @@ msgstr ""
|
|
1274 |
#: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
|
1275 |
#: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:709
|
1276 |
#: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
|
1277 |
-
#: core/lib/wpbc_all_translations.php:
|
1278 |
#: inc/_ps/admin/page-email-edit.php:724
|
1279 |
msgid "Send Test Email"
|
1280 |
msgstr ""
|
@@ -1290,7 +1290,7 @@ msgstr ""
|
|
1290 |
#: core/admin/page-ics-general.php:416 core/admin/page-ics-import.php:203
|
1291 |
#: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:142
|
1292 |
#: core/admin/page-settings.php:290 core/admin/wpbc-toolbars.php:1826
|
1293 |
-
#: core/lib/wpbc_all_translations.php:
|
1294 |
#: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:445
|
1295 |
#: inc/_bl/admin/page-search.php:545 inc/_bm/admin/page-availability.php:1024
|
1296 |
#: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
|
@@ -1315,7 +1315,7 @@ msgstr ""
|
|
1315 |
#: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:729
|
1316 |
#: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
|
1317 |
#: core/admin/page-form-free.php:1148 core/admin/wpbc-dashboard.php:471
|
1318 |
-
#: core/lib/wpbc_all_translations.php:
|
1319 |
#: inc/_ps/admin/page-email-edit.php:744
|
1320 |
msgid "Type"
|
1321 |
msgstr ""
|
@@ -1326,7 +1326,7 @@ msgstr ""
|
|
1326 |
#: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
|
1327 |
#: core/admin/page-settings.php:136 core/admin/page-settings.php:282
|
1328 |
#: core/admin/wpbc-toolbars.php:434 core/admin/wpbc-toolbars.php:440
|
1329 |
-
#: core/lib/wpbc_all_translations.php:
|
1330 |
#: inc/_bl/admin/page-search.php:523 inc/_bm/admin/page-cost-advanced.php:155
|
1331 |
#: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
|
1332 |
#: inc/_ps/admin/page-settings-form.php:181
|
@@ -1339,7 +1339,7 @@ msgstr ""
|
|
1339 |
#: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
|
1340 |
#: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:826
|
1341 |
#: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
|
1342 |
-
#: core/lib/wpbc_all_translations.php:
|
1343 |
#: inc/_ps/admin/page-email-edit.php:833
|
1344 |
msgid "Email sent to "
|
1345 |
msgstr ""
|
@@ -1347,7 +1347,7 @@ msgstr ""
|
|
1347 |
#: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
|
1348 |
#: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:828
|
1349 |
#: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
|
1350 |
-
#: core/lib/wpbc_all_translations.php:
|
1351 |
#: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
|
1352 |
msgid "Email had not sent. Some error occuered."
|
1353 |
msgstr ""
|
@@ -1355,7 +1355,7 @@ msgstr ""
|
|
1355 |
#: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
|
1356 |
#: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:912
|
1357 |
#: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
|
1358 |
-
#: core/lib/wpbc_all_translations.php:
|
1359 |
#: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:951
|
1360 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
|
1361 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:885
|
@@ -1370,7 +1370,7 @@ msgstr ""
|
|
1370 |
#: core/admin/page-email-new-admin.php:974 core/admin/page-email-new-admin.php:977
|
1371 |
#: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
|
1372 |
#: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
|
1373 |
-
#: core/lib/wpbc_all_translations.php:
|
1374 |
#: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
|
1375 |
#: inc/_ps/admin/page-email-edit.php:914
|
1376 |
msgid "If empty then title defined as WordPress"
|
@@ -1379,7 +1379,7 @@ msgstr ""
|
|
1379 |
#: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
|
1380 |
#: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:994
|
1381 |
#: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
|
1382 |
-
#: core/lib/wpbc_all_translations.php:
|
1383 |
#: inc/_ps/admin/page-email-edit.php:931
|
1384 |
msgid ""
|
1385 |
"Email different from website DNS, its can be a reason of not delivery emails. Please use the "
|
@@ -1387,51 +1387,51 @@ msgid ""
|
|
1387 |
msgstr ""
|
1388 |
|
1389 |
#: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
|
1390 |
-
#: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:
|
1391 |
#: core/wpbc-activation.php:1009
|
1392 |
msgid "Your booking has been declined"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
#: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
|
1396 |
-
#: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:
|
1397 |
#: core/wpbc-activation.php:1010
|
1398 |
#, php-format
|
1399 |
msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:
|
1403 |
-
#: core/lib/wpbc_all_translations.php:
|
1404 |
#: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
|
1405 |
#: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
|
1406 |
-
#: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:
|
1407 |
#: inc/_ps/admin/page-resources.php:318 inc/_ps/personal.php:175
|
1408 |
msgid "Deleted"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: core/admin/page-email-deleted.php:560 core/lib/wpbc_all_translations.php:
|
1412 |
msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:
|
1416 |
msgid "Email is sent to Visitor after Deleting of booking."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:
|
1420 |
msgid ""
|
1421 |
"Customization of email template, which is sent to Visitor, when booking status is set to Pending"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:
|
1425 |
msgid "Email is sent to Visitor after booking set as Pending."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
#: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
|
1429 |
-
#: core/admin/wpbc-class-listing.php:302 core/lib/wpbc_all_translations.php:
|
1430 |
#: core/wpbc-activation.php:980 core/wpbc-activation.php:987
|
1431 |
msgid "New booking"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:
|
1435 |
#: core/wpbc-activation.php:981
|
1436 |
#, php-format
|
1437 |
msgid ""
|
@@ -1439,29 +1439,29 @@ msgid ""
|
|
1439 |
"booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: core/admin/page-email-new-admin.php:512 core/lib/wpbc_all_translations.php:
|
1443 |
#: core/wpbc-functions.php:1990
|
1444 |
msgid "Emails"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
#: core/admin/page-email-new-admin.php:537 core/admin/page-email-new-visitor.php:537
|
1448 |
-
#: core/lib/wpbc_all_translations.php:
|
1449 |
msgid "New"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:
|
1453 |
msgid "admin"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:
|
1457 |
msgid "Customization of email template, which is sending to Admin after new booking"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: core/admin/page-email-new-admin.php:679 core/lib/wpbc_all_translations.php:
|
1461 |
msgid "Email is sending to Admin after creation of booking."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:
|
1465 |
#: core/wpbc-activation.php:989
|
1466 |
#, php-format
|
1467 |
msgid ""
|
@@ -1469,7 +1469,7 @@ msgid ""
|
|
1469 |
"edit this booking at this page: %s Thank you, %s"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:
|
1473 |
#: core/wpbc-activation.php:991
|
1474 |
#, php-format
|
1475 |
msgid ""
|
@@ -1477,62 +1477,62 @@ msgid ""
|
|
1477 |
"%s"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:
|
1481 |
msgid "visitor"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:
|
1485 |
msgid "Customization of email template, which is sending to Visitor after new booking"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:
|
1489 |
msgid "Email is sending to Visitor after creation of booking."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
#: core/admin/page-email-trash.php:563 core/admin/wpbc-toolbars.php:994
|
1493 |
-
#: core/lib/wpbc_all_translations.php:
|
1494 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2769
|
1495 |
msgid "Trash / Reject"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: core/admin/page-email-trash.php:565 core/lib/wpbc_all_translations.php:
|
1499 |
msgid "Customization of email template, which is sent to Visitor after rejecting of booking"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:
|
1503 |
msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
#: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
|
1507 |
-
#: core/admin/page-settings.php:217 core/lib/wpbc_all_translations.php:
|
1508 |
#: core/wpbc-functions.php:1982 inc/_ps/admin/page-settings-form.php:46
|
1509 |
msgid "Form"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:
|
1513 |
#: inc/_ps/admin/page-settings-form.php:47
|
1514 |
msgid "Fields Settings"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:
|
1518 |
#: inc/_ps/admin/page-settings-form.php:48
|
1519 |
msgid "Customizaton of Form Fields"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
#: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
|
1523 |
-
#: core/lib/wpbc_all_translations.php:
|
1524 |
msgid "Check Premium Features"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:
|
1528 |
msgid "Upgrade to higher versions"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:
|
1532 |
msgid "Form Field Configuration"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: core/admin/page-form-free.php:190 core/lib/wpbc_all_translations.php:
|
1536 |
#, php-format
|
1537 |
msgid ""
|
1538 |
"You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in "
|
@@ -1540,21 +1540,21 @@ msgid ""
|
|
1540 |
msgstr ""
|
1541 |
|
1542 |
#: core/admin/page-form-free.php:298 core/admin/page-form-free.php:421
|
1543 |
-
#: core/admin/page-form-free.php:579 core/lib/wpbc_all_translations.php:
|
1544 |
#: inc/_ps/personal.php:2100 inc/_ps/wpbc-form-templates.php:42 inc/_ps/wpbc-form-templates.php:61
|
1545 |
#: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
|
1546 |
#: inc/_ps/wpbc-form-templates.php:127
|
1547 |
msgid "Send"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: core/admin/page-form-free.php:852 core/lib/wpbc_all_translations.php:
|
1551 |
msgid "Reset to default form"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
#: core/admin/page-form-free.php:856 core/admin/page-form-free.php:1466
|
1555 |
#: core/admin/wpbc-class-listing.php:396 core/admin/wpbc-class-listing.php:402
|
1556 |
#: core/admin/wpbc-toolbars.php:997 core/admin/wpbc-toolbars.php:1014
|
1557 |
-
#: core/admin/wpbc-toolbars.php:1078 core/lib/wpbc_all_translations.php:
|
1558 |
#: inc/_bl/admin/page-coupons.php:236 inc/_bl/admin/page-coupons.php:808
|
1559 |
#: inc/_bm/admin/page-availability.php:274 inc/_bm/admin/page-cost-valuation.php:354
|
1560 |
#: inc/_bm/admin/page-cost.php:529 inc/_bm/admin/page-seasons.php:221
|
@@ -1564,39 +1564,39 @@ msgid "Do you really want to do this ?"
|
|
1564 |
msgstr ""
|
1565 |
|
1566 |
#: core/admin/page-form-free.php:884 core/admin/page-form-free.php:2177
|
1567 |
-
#: core/lib/wpbc_all_translations.php:
|
1568 |
msgid "Add New Field"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
#: core/admin/page-form-free.php:901 core/admin/page-form-free.php:936
|
1572 |
-
#: core/lib/wpbc_all_translations.php:
|
1573 |
msgid "Select"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: core/admin/page-form-free.php:901 core/lib/wpbc_all_translations.php:
|
1577 |
msgid "Form Field"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: core/admin/page-form-free.php:923 core/lib/wpbc_all_translations.php:
|
1581 |
#: inc/_ps/form/class-wpbc-form-help.php:141
|
1582 |
msgid "Standard Fields"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: core/admin/page-form-free.php:926 core/lib/wpbc_all_translations.php:
|
1586 |
#: inc/_ps/form/class-wpbc-form-help.php:147
|
1587 |
msgid "Text"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: core/admin/page-form-free.php:946 core/lib/wpbc_all_translations.php:
|
1591 |
#: inc/_ps/form/class-wpbc-form-help.php:156
|
1592 |
msgid "Textarea"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: core/admin/page-form-free.php:956 core/lib/wpbc_all_translations.php:
|
1596 |
msgid "Checkbox"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: core/admin/page-form-free.php:971 core/lib/wpbc_all_translations.php:
|
1600 |
#: inc/_ps/form/class-wpbc-form-help.php:486
|
1601 |
msgid "Advanced Fields"
|
1602 |
msgstr ""
|
@@ -1604,52 +1604,52 @@ msgstr ""
|
|
1604 |
#: core/admin/page-form-free.php:975 core/admin/page-form-free.php:1991
|
1605 |
#: core/admin/page-form-free.php:1992 core/admin/page-form-timeslots.php:106
|
1606 |
#: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
|
1607 |
-
#: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:
|
1608 |
#: inc/_ps/admin/page-settings-form.php:373 inc/_ps/admin/page-settings-form.php:383
|
1609 |
#: inc/_ps/admin/page-settings-form.php:393
|
1610 |
msgid "Time Slots"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: core/admin/page-form-free.php:1033 core/lib/wpbc_all_translations.php:
|
1614 |
msgid "View"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: core/admin/page-form-free.php:1052 core/lib/wpbc_all_translations.php:
|
1618 |
msgid "Standard Forms"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: core/admin/page-form-free.php:1055 core/lib/wpbc_all_translations.php:
|
1622 |
msgid "Form under calendar"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: core/admin/page-form-free.php:1065 core/lib/wpbc_all_translations.php:
|
1626 |
msgid "Form at right side of calendar"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: core/admin/page-form-free.php:1075 core/lib/wpbc_all_translations.php:
|
1630 |
msgid "Form and calendar are centered"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: core/admin/page-form-free.php:1085 core/lib/wpbc_all_translations.php:
|
1634 |
msgid "Form for dark background"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
#: core/admin/page-form-free.php:1145 core/admin/page-form-free.php:2050
|
1638 |
-
#: core/lib/wpbc_all_translations.php:
|
1639 |
msgid "Active"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: core/admin/page-form-free.php:1146 core/lib/wpbc_all_translations.php:
|
1643 |
msgid "Field Label"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
#: core/admin/page-form-free.php:1148 core/admin/page-form-free.php:2116
|
1647 |
-
#: core/lib/wpbc_all_translations.php:
|
1648 |
msgid "Name"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
#: core/admin/page-form-free.php:1225 core/admin/page-form-free.php:1663
|
1652 |
-
#: core/admin/page-form-free.php:1724 core/lib/wpbc_all_translations.php:
|
1653 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2639
|
1654 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2697 inc/_bl/admin/page-coupons.php:215
|
1655 |
#: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
|
@@ -1660,34 +1660,34 @@ msgid "Edit"
|
|
1660 |
msgstr ""
|
1661 |
|
1662 |
#: core/admin/page-form-free.php:1226 core/admin/page-form-free.php:1664
|
1663 |
-
#: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:
|
1664 |
msgid "Remove"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: core/admin/page-form-free.php:1894 core/lib/wpbc_all_translations.php:
|
1668 |
#: inc/_ps/form/class-wpbc-form-help.php:88
|
1669 |
msgid "Shortcodes"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: core/admin/page-form-free.php:1895 core/lib/wpbc_all_translations.php:
|
1673 |
#: inc/_ps/form/class-wpbc-form-help.php:89
|
1674 |
msgid ""
|
1675 |
"You can generate the form fields for your form (at the left side) by selection specific field in "
|
1676 |
"the above selectbox."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: core/admin/page-form-free.php:1896 core/lib/wpbc_all_translations.php:
|
1680 |
#: inc/_ps/form/class-wpbc-form-help.php:90
|
1681 |
#, php-format
|
1682 |
msgid "Please read more about the booking form fields configuration %shere%s."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: core/admin/page-form-free.php:1898 core/lib/wpbc_all_translations.php:
|
1686 |
#: inc/_ps/form/class-wpbc-form-help.php:99
|
1687 |
msgid "Default Form Templates"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: core/admin/page-form-free.php:1899 core/lib/wpbc_all_translations.php:
|
1691 |
#: inc/_ps/form/class-wpbc-form-help.php:100
|
1692 |
#, php-format
|
1693 |
msgid ""
|
@@ -1697,93 +1697,93 @@ msgid ""
|
|
1697 |
"reset both forms: Booking Form and Content of Booking Fields form."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: core/admin/page-form-free.php:2029 core/lib/wpbc_all_translations.php:
|
1701 |
#: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
|
1702 |
#: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
|
1703 |
msgid "First Name"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: core/admin/page-form-free.php:2051 core/lib/wpbc_all_translations.php:
|
1707 |
msgid "Show / hide field in booking form"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: core/admin/page-form-free.php:2072 core/lib/wpbc_all_translations.php:
|
1711 |
msgid "Set field as required"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
#: core/admin/page-form-free.php:2092 core/admin/page-form-timeslots.php:784
|
1715 |
#: core/admin/wpbc-toolbar-tiny.php:428 core/admin/wpbc-toolbar-tiny.php:1219
|
1716 |
-
#: core/lib/wpbc_all_translations.php:
|
1717 |
-
#: js/wpbc-gutenberg.js:
|
1718 |
msgid "Label"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: core/admin/page-form-free.php:2121 core/lib/wpbc_all_translations.php:
|
1722 |
#, php-format
|
1723 |
msgid "Type only %sunique field name%s, that is not using in form"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: core/admin/page-form-free.php:2142 core/lib/wpbc_all_translations.php:
|
1727 |
msgid "Values"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: core/admin/page-form-free.php:2147 core/lib/wpbc_all_translations.php:
|
1731 |
msgid "Enter dropdown options. One option per line."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
#: core/admin/page-form-free.php:2182 core/admin/wpbc-toolbar-tiny.php:298
|
1735 |
#: core/admin/wpbc-toolbars.php:710 core/admin/wpbc-toolbars.php:915
|
1736 |
-
#: core/admin/wpbc-toolbars.php:1536 core/lib/wpbc_all_translations.php:
|
1737 |
#: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:105 inc/_bs/s-toolbar.php:209
|
1738 |
#: inc/_ps/p-toolbar.php:508 inc/_ps/p-toolbar.php:553
|
1739 |
msgid "Close"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: core/admin/page-form-free.php:2196 core/lib/wpbc_all_translations.php:
|
1743 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2698 inc/_bm/m-toolbar.php:
|
1744 |
-
#: inc/_bm/m-toolbar.php:
|
1745 |
#: inc/_ps/p-toolbar.php:472
|
1746 |
msgid "Cancel"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:
|
1750 |
msgid "in 24 hour format"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:
|
1754 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
|
1755 |
#: inc/_ps/form/class-wpbc-field-help-select.php:119
|
1756 |
msgid "One option per line"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:
|
1760 |
msgid "Titles"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:
|
1764 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
|
1765 |
#: inc/_ps/form/class-wpbc-field-help-select.php:137
|
1766 |
msgid "One title per line"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:
|
1770 |
msgid "Visible options in selectbox"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:
|
1774 |
msgid "Reset times by"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
#: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
|
1778 |
#: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
|
1779 |
-
#: core/admin/wpbc-toolbar-tiny.php:634 core/lib/wpbc_all_translations.php:
|
1780 |
#: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
|
1781 |
#: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
|
1782 |
msgid "hours"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
#: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
|
1786 |
-
#: core/lib/wpbc_all_translations.php:
|
1787 |
#: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
|
1788 |
#: inc/_bs/admin/api-settings-s.php:901
|
1789 |
msgid "hour"
|
@@ -1791,7 +1791,7 @@ msgstr ""
|
|
1791 |
|
1792 |
#: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
|
1793 |
#: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
|
1794 |
-
#: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:
|
1795 |
#: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
|
1796 |
#: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
|
1797 |
#: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
|
@@ -1804,12 +1804,12 @@ msgstr ""
|
|
1804 |
#: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
|
1805 |
#: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
|
1806 |
#: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
|
1807 |
-
#: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:
|
1808 |
#: core/wpbc-js.php:131 inc/_ps/personal.php:268
|
1809 |
msgid "Processing"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:
|
1813 |
msgid "+ Add Time Slot"
|
1814 |
msgstr ""
|
1815 |
|
@@ -1818,7 +1818,7 @@ msgstr ""
|
|
1818 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1819 |
#: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
|
1820 |
#: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
|
1821 |
-
#: core/lib/wpbc_all_translations.php:
|
1822 |
msgid "Sync"
|
1823 |
msgstr ""
|
1824 |
|
@@ -1827,7 +1827,7 @@ msgstr ""
|
|
1827 |
#: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
|
1828 |
#: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
|
1829 |
#: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:469
|
1830 |
-
#: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:
|
1831 |
#: core/sync/wpbc-gcal.php:465
|
1832 |
msgid "Import"
|
1833 |
msgstr ""
|
@@ -1836,28 +1836,28 @@ msgstr ""
|
|
1836 |
#: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
|
1837 |
#: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:264
|
1838 |
#: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
|
1839 |
-
#: core/lib/wpbc_all_translations.php:
|
1840 |
msgid "Export"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
|
1844 |
-
#: core/lib/wpbc_all_translations.php:
|
1845 |
msgid "feed"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
#: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
|
1849 |
-
#: core/lib/wpbc_all_translations.php:
|
1850 |
#: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:767
|
1851 |
msgid "Warning!"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:
|
1855 |
#, php-format
|
1856 |
msgid "This feature require %s"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
#: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
|
1860 |
-
#: core/lib/wpbc_all_translations.php:
|
1861 |
#: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
|
1862 |
#: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
|
1863 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
|
@@ -1871,119 +1871,119 @@ msgstr ""
|
|
1871 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:892
|
1872 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:831 inc/gateways/sage/wpbc-gw-sage.php:882
|
1873 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1112
|
1874 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1119 js/wpbc-gutenberg.js:
|
1875 |
-
#: js/wpbc-gutenberg.js:
|
1876 |
msgid "Important!"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
#: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
|
1880 |
-
#: core/lib/wpbc_all_translations.php:
|
1881 |
#, php-format
|
1882 |
msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
#: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
|
1886 |
-
#: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:
|
1887 |
msgid "How it works"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
#: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
|
1891 |
-
#: core/lib/wpbc_all_translations.php:
|
1892 |
msgid ".ics feed URL"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:
|
1896 |
#: inc/_ps/admin/br-table-export-feeds.php:69
|
1897 |
msgid "Open in new window"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:
|
1901 |
msgid "Please enter URL for generating .ics feed"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:
|
1905 |
msgid "This .ics feed of bookings starting from today for 1 year"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
#: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:875
|
1909 |
#: core/admin/wpbc-toolbar-tiny.php:1090 core/admin/wpbc-toolbar-tiny.php:1171
|
1910 |
-
#: core/lib/wpbc_all_translations.php:
|
1911 |
#: inc/_ps/wpbc-booking-select-widget.php:188
|
1912 |
msgid "None"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:
|
1916 |
msgid "Event Title"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
#: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
|
1920 |
-
#: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:
|
1921 |
#, php-format
|
1922 |
msgid "Select field for assigning to %sevent property%s"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:
|
1926 |
msgid "Event Description (optional field)"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:
|
1930 |
msgid "Location"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
#: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:206
|
1934 |
-
#: core/lib/wpbc_all_translations.php:
|
1935 |
#: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:628 inc/_ps/admin/activation-p.php:45
|
1936 |
msgid "Default"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:
|
1940 |
#: core/sync/wpbc-gcal.php:309
|
1941 |
msgid "Timezone"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:
|
1945 |
#: core/sync/wpbc-gcal.php:343
|
1946 |
msgid "Select a city in your required timezone, if you are having problems with dates and times."
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:
|
1950 |
#: inc/_bs/admin/api-settings-s.php:314
|
1951 |
msgid "Use check in/out time"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:
|
1955 |
msgid "Use check in/out time of plugin, during import .ics feeds"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:
|
1959 |
msgid "Append check out day"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:
|
1963 |
msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: core/admin/page-ics-general.php:188 core/lib/wpbc_all_translations.php:
|
1967 |
msgid "Export only approved bookings"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: core/admin/page-ics-general.php:189 core/lib/wpbc_all_translations.php:
|
1971 |
msgid "Enable of export only approved bookings in .ics feeds"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: core/admin/page-ics-general.php:201 core/lib/wpbc_all_translations.php:
|
1975 |
msgid "Force import"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: core/admin/page-ics-general.php:202 core/lib/wpbc_all_translations.php:
|
1979 |
msgid "Import bookings without checking, if such bookings already have been imported."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: core/admin/page-ics-general.php:210 core/lib/wpbc_all_translations.php:
|
1983 |
msgid "Trash all imported bookings before new import"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: core/admin/page-ics-general.php:211 core/lib/wpbc_all_translations.php:
|
1987 |
msgid ""
|
1988 |
"Move all previously imported bookings to trash before new import bookings. Its can resolve "
|
1989 |
"issue of updating deleted and edited events in external sources. Its work only, if you are using "
|
@@ -1991,23 +1991,23 @@ msgid ""
|
|
1991 |
msgstr ""
|
1992 |
|
1993 |
#: core/admin/page-ics-general.php:281 core/admin/page-settings.php:74
|
1994 |
-
#: core/lib/wpbc_all_translations.php:
|
1995 |
msgid "General"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1999 |
#: core/admin/page-ics-general.php:390 core/admin/page-import-gcal.php:485
|
2000 |
#: core/admin/page-settings.php:75 core/admin/page-settings.php:76
|
2001 |
-
#: core/lib/wpbc_all_translations.php:
|
2002 |
msgid "General Settings"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: core/admin/page-ics-general.php:397 core/lib/wpbc_all_translations.php:
|
2006 |
msgid "Assign events fields to specific booking form field"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
#: core/admin/page-ics-general.php:406 core/admin/page-settings.php:121
|
2010 |
-
#: core/admin/page-settings.php:252 core/lib/wpbc_all_translations.php:
|
2011 |
#: inc/_bl/admin/page-search.php:539 inc/_bl/admin/page-search.php:735
|
2012 |
#: inc/_bl/admin/page-search.php:780 inc/_bl/wpbc-search-availability.php:167
|
2013 |
#: inc/_bl/wpbc-search-availability.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:921
|
@@ -2017,47 +2017,47 @@ msgstr ""
|
|
2017 |
msgid "Advanced"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:
|
2021 |
msgid "feeds"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
#: core/admin/page-ics-import.php:438 core/admin/wpbc-sql.php:592
|
2025 |
-
#: core/admin/wpbc-toolbar-tiny.php:331 core/lib/wpbc_all_translations.php:
|
2026 |
#: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:965 inc/_ps/p-toolbar.php:996
|
2027 |
msgid "parent resource"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:
|
2031 |
msgid "Enter URL to .ics feed"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: core/admin/page-ics-import.php:465 core/lib/wpbc_all_translations.php:
|
2035 |
msgid "Choose file"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: core/admin/page-ics-import.php:466 core/lib/wpbc_all_translations.php:
|
2039 |
msgid "Insert file URL"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: core/admin/page-ics-import.php:467 core/lib/wpbc_all_translations.php:
|
2043 |
msgid "Upload / Select "
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: core/admin/page-ics-import.php:504 core/lib/wpbc_all_translations.php:
|
2047 |
msgid "What does .ics feeds import/export mean?"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: core/admin/page-ics-import.php:512 core/lib/wpbc_all_translations.php:
|
2051 |
#, php-format
|
2052 |
msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: core/admin/page-ics-import.php:520 core/lib/wpbc_all_translations.php:
|
2056 |
msgid "and any other calendar that uses .ics format"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
#: core/admin/page-ics-import.php:534 core/class/wpbc-class-welcome.php:911
|
2060 |
-
#: core/lib/wpbc_all_translations.php:
|
2061 |
#, php-format
|
2062 |
msgid ""
|
2063 |
".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
|
@@ -2065,34 +2065,34 @@ msgid ""
|
|
2065 |
"calendars updated and synchronized."
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: core/admin/page-ics-import.php:555 core/lib/wpbc_all_translations.php:
|
2069 |
msgid "Is it automatic process?"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: core/admin/page-ics-import.php:565 core/lib/wpbc_all_translations.php:
|
2073 |
msgid ""
|
2074 |
"By default .ics import is not automatic process. You need to set up CRON script on your server "
|
2075 |
"to periodically access front-end page(s) with import .ics feeds shortcodes."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: core/admin/page-ics-import.php:584 core/lib/wpbc_all_translations.php:
|
2079 |
msgid "How to start import of .ics feeds (files)?"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
#: core/admin/page-ics-import.php:591 core/admin/page-ics-import.php:638
|
2083 |
-
#: core/lib/wpbc_all_translations.php:
|
2084 |
#, php-format
|
2085 |
msgid "Install %s plugin."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: core/admin/page-ics-import.php:595 core/lib/wpbc_all_translations.php:
|
2089 |
#, php-format
|
2090 |
msgid ""
|
2091 |
"Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
|
2092 |
"configuration%s"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: core/admin/page-ics-import.php:604 core/lib/wpbc_all_translations.php:
|
2096 |
#, php-format
|
2097 |
msgid ""
|
2098 |
"Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
|
@@ -2100,26 +2100,26 @@ msgid ""
|
|
2100 |
"accessing such different pages with different time intervals."
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: core/admin/page-ics-import.php:613 core/lib/wpbc_all_translations.php:
|
2104 |
msgid "Or you can import .ics feed or file directly at current page."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: core/admin/page-ics-import.php:620 core/lib/wpbc_all_translations.php:
|
2108 |
#, php-format
|
2109 |
msgid ""
|
2110 |
"If you have inserted import shortcodes from %s, then you can configure your CRON for "
|
2111 |
"periodically access these pages and import .ics feeds."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: core/admin/page-ics-import.php:631 core/lib/wpbc_all_translations.php:
|
2115 |
msgid "How to start export of .ics feeds (files)?"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: core/admin/page-ics-import.php:642 core/lib/wpbc_all_translations.php:
|
2119 |
msgid "Configure ULR feed(s) at this settings page."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: core/admin/page-ics-import.php:647 core/lib/wpbc_all_translations.php:
|
2123 |
#, php-format
|
2124 |
msgid ""
|
2125 |
"Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
|
@@ -2127,26 +2127,26 @@ msgid ""
|
|
2127 |
"website."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: core/admin/page-ics-import.php:656 core/lib/wpbc_all_translations.php:
|
2131 |
msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: core/admin/page-ics-import.php:711 core/lib/wpbc_all_translations.php:
|
2135 |
#: core/sync/wpbc-gcal-class.php:492 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:441
|
2136 |
msgid "Done"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:
|
2140 |
msgid "Activate auto import"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:
|
2144 |
#, php-format
|
2145 |
msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
#: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:567
|
2149 |
-
#: core/admin/wpbc-toolbars.php:801 core/lib/wpbc_all_translations.php:
|
2150 |
#: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
|
2151 |
#: inc/_bm/admin/page-cost-early-late-booking.php:230
|
2152 |
#: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
|
@@ -2161,7 +2161,7 @@ msgstr ""
|
|
2161 |
#: core/admin/wpbc-toolbars.php:571 core/admin/wpbc-toolbars.php:572
|
2162 |
#: core/admin/wpbc-toolbars.php:802 core/admin/wpbc-toolbars.php:803
|
2163 |
#: core/admin/wpbc-toolbars.php:804 core/admin/wpbc-toolbars.php:805
|
2164 |
-
#: core/admin/wpbc-toolbars.php:806 core/lib/wpbc_all_translations.php:
|
2165 |
#: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:94
|
2166 |
#: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
|
2167 |
#: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
|
@@ -2172,23 +2172,23 @@ msgstr ""
|
|
2172 |
msgid "days"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:
|
2176 |
msgid "Import events every"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:
|
2180 |
msgid "Select time duration of import requests."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:
|
2184 |
msgid "Google API Key"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:
|
2188 |
msgid "Please enter your Google API key. This field required to import events."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:
|
2192 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:369
|
2193 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:407
|
2194 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:438 inc/gateways/ideal/wpbc-gw-ideal.php:422
|
@@ -2199,175 +2199,175 @@ msgstr ""
|
|
2199 |
msgid "Note:"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:
|
2203 |
#, php-format
|
2204 |
msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:
|
2208 |
#: inc/_ps/admin/br-table-import-gcal-p.php:148
|
2209 |
msgid "Google Calendar ID"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:
|
2213 |
#: core/sync/wpbc-gcal.php:295
|
2214 |
msgid "Maximum number"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:
|
2218 |
#: core/sync/wpbc-gcal.php:298
|
2219 |
msgid "You can specify the maximum number of events to import during one session."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
#: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
|
2223 |
-
#: core/lib/wpbc_all_translations.php:
|
2224 |
msgid "Now"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
#: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
|
2228 |
-
#: core/lib/wpbc_all_translations.php:
|
2229 |
msgid "00:00 today"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
#: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
|
2233 |
-
#: core/lib/wpbc_all_translations.php:
|
2234 |
msgid "Start of current week"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
#: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
|
2238 |
-
#: core/lib/wpbc_all_translations.php:
|
2239 |
msgid "Start of current month"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
#: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
|
2243 |
-
#: core/lib/wpbc_all_translations.php:
|
2244 |
msgid "End of current month"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:
|
2248 |
#: core/sync/wpbc-gcal.php:189
|
2249 |
msgid "The start of time"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
#: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
|
2253 |
-
#: core/lib/wpbc_all_translations.php:
|
2254 |
msgid "Specific date / time"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:
|
2258 |
#: core/sync/wpbc-gcal.php:197
|
2259 |
msgid "Select option, when to start retrieving events."
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
|
2263 |
-
#: core/lib/wpbc_all_translations.php:
|
2264 |
msgid "Offset"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
#: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
|
2268 |
-
#: core/lib/wpbc_all_translations.php:
|
2269 |
msgid "Enter date / time"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
#: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
|
2273 |
-
#: core/lib/wpbc_all_translations.php:
|
2274 |
msgid "seconds"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
#: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
|
2278 |
-
#: core/lib/wpbc_all_translations.php:
|
2279 |
msgid ""
|
2280 |
"You can specify an additional offset from you chosen start point. The offset can be negative."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
#: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
|
2284 |
-
#: core/lib/wpbc_all_translations.php:
|
2285 |
#, php-format
|
2286 |
msgid "Type your date in format %s. Example: %s"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:
|
2290 |
#: core/sync/wpbc-gcal.php:253
|
2291 |
msgid "The end of time"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
#: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:614
|
2295 |
-
#: core/lib/wpbc_all_translations.php:
|
2296 |
msgid "Until"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:
|
2300 |
#: core/sync/wpbc-gcal.php:261
|
2301 |
msgid "Select option, when to stop retrieving events."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:
|
2305 |
msgid "To get Google Calendar API key please follow this instruction"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:
|
2309 |
#, php-format
|
2310 |
msgid "Go to Google Developer Console: %s."
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:
|
2314 |
msgid "Give your project a name and click \"Create\"."
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:
|
2318 |
msgid "In the sidebar click on \"APIs & auth\"."
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:
|
2322 |
msgid "Click APIs and make sure \"Calendar API\" is set to ON."
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:
|
2326 |
msgid "Now click on \"Credentials\" in the sidebar."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:
|
2330 |
msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:
|
2334 |
msgid "On the popup click the button \"Server Key\" and click \"Create\"."
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:
|
2338 |
#, php-format
|
2339 |
msgid ""
|
2340 |
"You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
|
2341 |
"%sGoogle API Key%s field at this page."
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:
|
2345 |
msgid "Set Your Calendar to Public"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
#: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
|
2349 |
-
#: core/lib/wpbc_all_translations.php:
|
2350 |
msgid "Navigate to your Google calendars."
|
2351 |
msgstr ""
|
2352 |
|
2353 |
#: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
|
2354 |
-
#: core/lib/wpbc_all_translations.php:
|
2355 |
msgid "Open the settings for the calendar."
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:
|
2359 |
msgid "Click the \"Share this Calendar\" link."
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:
|
2363 |
msgid "Click the checkbox to make calendar public. Do not check the other option."
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:
|
2367 |
msgid "Find Your Calendar ID"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:
|
2371 |
#, php-format
|
2372 |
msgid ""
|
2373 |
"Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
|
@@ -2375,33 +2375,33 @@ msgid ""
|
|
2375 |
msgstr ""
|
2376 |
|
2377 |
#: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
|
2378 |
-
#: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:
|
2379 |
#: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
|
2380 |
msgid "Import Google Calendar Events"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
#: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
|
2384 |
-
#: core/lib/wpbc_all_translations.php:
|
2385 |
msgid "Auto import events"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
#: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
|
2389 |
-
#: core/lib/wpbc_all_translations.php:
|
2390 |
msgid "Default settings for retrieving events"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:
|
2394 |
msgid "Google Calendar - General Settings"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
#: core/admin/page-settings.php:88 core/admin/page-settings.php:203
|
2398 |
-
#: core/admin/wpbc-toolbar-tiny.php:242 core/lib/wpbc_all_translations.php:
|
2399 |
#: inc/_ps/form/class-wpbc-form-help.php:115
|
2400 |
msgid "Calendar"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
#: core/admin/page-settings.php:93 core/admin/page-settings.php:210
|
2404 |
-
#: core/lib/wpbc_all_translations.php:
|
2405 |
#: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
|
2406 |
#: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
|
2407 |
#: inc/_ps/wpbc-form-templates.php:307 inc/_ps/wpbc-form-templates.php:333
|
@@ -2410,47 +2410,47 @@ msgid "Availability"
|
|
2410 |
msgstr ""
|
2411 |
|
2412 |
#: core/admin/page-settings.php:103 core/admin/page-settings.php:224
|
2413 |
-
#: core/lib/wpbc_all_translations.php:
|
2414 |
msgid "Booking Admin Panel"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
#: core/admin/page-settings.php:108 core/admin/page-settings.php:231
|
2418 |
-
#: core/lib/wpbc_all_translations.php:
|
2419 |
msgid "Timeline"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: core/admin/page-settings.php:116 core/lib/wpbc_all_translations.php:
|
2423 |
msgid "Auto cancellation / approval"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
#: core/admin/page-settings.php:126 core/admin/page-settings.php:268
|
2427 |
-
#: core/lib/wpbc_all_translations.php:
|
2428 |
msgid "Plugin Menu"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: core/admin/page-settings.php:131 core/lib/wpbc_all_translations.php:
|
2432 |
msgid "Uninstall"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: core/admin/page-settings.php:243 core/lib/wpbc_all_translations.php:
|
2436 |
msgid "Auto cancellation / auto approval of bookings"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:
|
2440 |
msgid "Information"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: core/admin/page-settings.php:275 core/lib/wpbc_all_translations.php:
|
2444 |
msgid "Uninstall / deactivation"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
#: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
|
2448 |
-
#: core/lib/wpbc_all_translations.php:
|
2449 |
msgid "Upgrade"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
#: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1520
|
2453 |
-
#: core/admin/wpbc-toolbar-tiny.php:1529 core/lib/wpbc_all_translations.php:
|
2454 |
#: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
|
2455 |
#: inc/_bl/wpbc-search-availability.php:669 inc/_bl/wpdev-booking-search-widget.php:75
|
2456 |
#: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
|
@@ -2460,346 +2460,346 @@ msgstr ""
|
|
2460 |
msgid "Nothing Found"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:
|
2464 |
#: inc/_ps/wpbc-print.php:83
|
2465 |
msgid "Labels"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:
|
2469 |
msgid "Booking Data"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:
|
2473 |
msgid "Booking Dates"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:
|
2477 |
msgid "Show ALL dates of booking"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:
|
2481 |
msgid "Show only check in/out dates"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: core/admin/wpbc-class-listing.php:221 core/lib/wpbc_all_translations.php:
|
2485 |
msgid "Resource not exist"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:
|
2489 |
#: inc/_bs/lib_s.php:295 inc/_bs/lib_s.php:310
|
2490 |
msgid "Unknown"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
#: core/admin/wpbc-class-listing.php:331 core/admin/wpbc-toolbars.php:765
|
2494 |
-
#: core/lib/wpbc_all_translations.php:
|
2495 |
msgid "In Trash / Rejected"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: core/admin/wpbc-class-listing.php:334 core/lib/wpbc_all_translations.php:
|
2499 |
msgid "Imported"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: core/admin/wpbc-class-listing.php:398 core/lib/wpbc_all_translations.php:
|
2503 |
msgid "Reject - move to trash"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
#: core/admin/wpbc-class-listing.php:404 core/admin/wpbc-toolbars.php:1011
|
2507 |
-
#: core/lib/wpbc_all_translations.php:
|
2508 |
msgid "Restore"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: core/admin/wpbc-class-listing.php:408 core/lib/wpbc_all_translations.php:
|
2512 |
msgid "Do you really want to delete this booking ?"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: core/admin/wpbc-class-listing.php:410 core/lib/wpbc_all_translations.php:
|
2516 |
#: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
|
2517 |
msgid "Completely Delete"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
#: core/admin/wpbc-class-listing.php:419 core/admin/wpbc-toolbars.php:949
|
2521 |
-
#: core/lib/wpbc_all_translations.php:
|
2522 |
msgid "Approve"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
#: core/admin/wpbc-class-listing.php:424 core/admin/wpbc-toolbars.php:967
|
2526 |
-
#: core/lib/wpbc_all_translations.php:
|
2527 |
msgid "Do you really want to set booking as pending ?"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: core/admin/wpbc-class-listing.php:435 core/lib/wpbc_all_translations.php:
|
2531 |
#: inc/_bs/lib_s.php:338
|
2532 |
msgid "Created"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
#: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:227
|
2536 |
-
#: core/lib/wpbc_all_translations.php:
|
2537 |
#: core/wpbc-functions.php:1850 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
|
2538 |
#: core/wpbc.php:189
|
2539 |
msgid "Booking Calendar"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
#: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
|
2543 |
-
#: core/lib/wpbc_all_translations.php:
|
2544 |
msgid "Video guide"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:
|
2548 |
msgid "Support"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:
|
2552 |
msgid "Getting Started"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:
|
2556 |
msgid "Help Info"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
#: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:441
|
2560 |
-
#: core/lib/wpbc_all_translations.php:
|
2561 |
msgid "FAQ"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:
|
2565 |
msgid "Contact email"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:
|
2569 |
msgid "Rate plugin (thanks:)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:
|
2573 |
msgid "Current version"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:
|
2577 |
msgid "Demo"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:
|
2581 |
msgid "Version"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:
|
2585 |
msgid "Used for"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:
|
2589 |
msgid "websites"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:
|
2593 |
msgid "website"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:
|
2597 |
msgid "Release date"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:
|
2601 |
msgid "Explore Premium Features"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:
|
2605 |
msgid "Statistic"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:
|
2609 |
msgid "New (unverified) booking(s)"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:
|
2613 |
msgid "Pending booking(s)"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:
|
2617 |
msgid "Agenda"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:
|
2621 |
msgid "New booking(s) made today"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:
|
2625 |
msgid "Bookings for today"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
#: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2463
|
2629 |
-
#: core/lib/wpbc_all_translations.php:
|
2630 |
msgid "Insert booking calendar"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
#: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2464
|
2634 |
-
#: core/lib/wpbc_all_translations.php:
|
2635 |
msgid "Booking calendar"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: core/admin/wpbc-toolbar-tiny.php:225 core/lib/wpbc_all_translations.php:
|
2639 |
msgid "Insert Shortcode"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:
|
2643 |
#: inc/_ps/admin/api-settings-p.php:197
|
2644 |
msgid "TimeLine"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: core/admin/wpbc-toolbar-tiny.php:244 core/lib/wpbc_all_translations.php:
|
2648 |
msgid "Resources Selection"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:
|
2652 |
-
#: core/wpbc-functions.php:2017 inc/_bl/admin/page-search.php:353 inc/_bl/biz_l.php:
|
2653 |
-
#: inc/_bl/biz_l.php:
|
2654 |
msgid "Search"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:
|
2658 |
msgid "Only Form"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:
|
2662 |
#: inc/_ps/form/class-wpbc-form-help.php:754
|
2663 |
msgid "Other"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: core/admin/wpbc-toolbar-tiny.php:298 core/lib/wpbc_all_translations.php:
|
2667 |
msgid "Insert into page"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
#: core/admin/wpbc-toolbar-tiny.php:371 core/admin/wpbc-toolbar-tiny.php:1151
|
2671 |
-
#: core/lib/wpbc_all_translations.php:
|
2672 |
#: inc/_ps/p-toolbar.php:736
|
2673 |
msgid "Booking resources"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: core/admin/wpbc-toolbar-tiny.php:372 core/lib/wpbc_all_translations.php:
|
2677 |
msgid "Select booking resources. Please use CTRL to select multiple booking resources."
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:
|
2681 |
-
#: js/wpbc-gutenberg.js:
|
2682 |
msgid "View mode"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: core/admin/wpbc-toolbar-tiny.php:407 core/lib/wpbc_all_translations.php:
|
2686 |
msgid "Select type of view format"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
#: core/admin/wpbc-toolbar-tiny.php:429 core/admin/wpbc-toolbar-tiny.php:438
|
2690 |
-
#: core/admin/wpbc-toolbars.php:785 core/lib/wpbc_all_translations.php:
|
2691 |
msgid "All bookings"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: core/admin/wpbc-toolbar-tiny.php:461 core/lib/wpbc_all_translations.php:
|
2695 |
msgid "Select number of months to scroll after loading"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: core/admin/wpbc-toolbar-tiny.php:482 core/lib/wpbc_all_translations.php:
|
2699 |
-
#: js/wpbc-gutenberg.js:
|
2700 |
msgid "Number of days to scroll"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: core/admin/wpbc-toolbar-tiny.php:483 core/lib/wpbc_all_translations.php:
|
2704 |
msgid "Select number of days to scroll after loading"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
#: core/admin/wpbc-toolbar-tiny.php:503 core/admin/wpbc-toolbars.php:1503
|
2708 |
-
#: core/lib/wpbc_all_translations.php:
|
2709 |
msgid "Start Date"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: core/admin/wpbc-toolbar-tiny.php:581 core/lib/wpbc_all_translations.php:
|
2713 |
msgid "Select start date"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
#: core/admin/wpbc-toolbar-tiny.php:674 core/admin/wpbc-toolbar-tiny.php:917
|
2717 |
#: core/admin/wpbc-toolbar-tiny.php:1591 core/admin/wpbc-toolbar-tiny.php:1783
|
2718 |
-
#: core/lib/wpbc_all_translations.php:
|
2719 |
#: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:937
|
2720 |
-
#: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:
|
2721 |
-
#: js/wpbc-gutenberg.js:
|
2722 |
msgid "Booking resource"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
#: core/admin/wpbc-toolbar-tiny.php:675 core/admin/wpbc-toolbar-tiny.php:918
|
2726 |
#: core/admin/wpbc-toolbar-tiny.php:1592 core/admin/wpbc-toolbar-tiny.php:1784
|
2727 |
-
#: core/lib/wpbc_all_translations.php:
|
2728 |
msgid "Select booking resource"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
#: core/admin/wpbc-toolbar-tiny.php:699 core/admin/wpbc-toolbar-tiny.php:1200
|
2732 |
-
#: core/admin/wpbc-toolbar-tiny.php:1616 core/lib/wpbc_all_translations.php:
|
2733 |
#: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
|
2734 |
msgid "Select default custom booking form"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
#: core/admin/wpbc-toolbar-tiny.php:710 core/admin/wpbc-toolbar-tiny.php:940
|
2738 |
#: core/admin/wpbc-toolbar-tiny.php:1288 core/admin/wpbc-toolbars.php:1618
|
2739 |
-
#: core/lib/wpbc_all_translations.php:
|
2740 |
#: inc/_ps/wpbc-booking-select-widget.php:201
|
2741 |
msgid "Visible months"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
#: core/admin/wpbc-toolbar-tiny.php:711 core/admin/wpbc-toolbar-tiny.php:941
|
2745 |
-
#: core/admin/wpbc-toolbar-tiny.php:1289 core/lib/wpbc_all_translations.php:
|
2746 |
msgid "Select number of month to show for calendar."
|
2747 |
msgstr ""
|
2748 |
|
2749 |
#: core/admin/wpbc-toolbar-tiny.php:731 core/admin/wpbc-toolbar-tiny.php:961
|
2750 |
-
#: core/admin/wpbc-toolbar-tiny.php:1307 core/lib/wpbc_all_translations.php:
|
2751 |
msgid "Start month:"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
#: core/admin/wpbc-toolbar-tiny.php:789 core/admin/wpbc-toolbar-tiny.php:1019
|
2755 |
-
#: core/admin/wpbc-toolbar-tiny.php:1365 core/lib/wpbc_all_translations.php:
|
2756 |
msgid "Select start month of calendar"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
#: core/admin/wpbc-toolbar-tiny.php:796 core/admin/wpbc-toolbar-tiny.php:1026
|
2760 |
-
#: core/admin/wpbc-toolbar-tiny.php:1258 core/lib/wpbc_all_translations.php:
|
2761 |
msgid "Show advanced settings"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
#: core/admin/wpbc-toolbar-tiny.php:797 core/admin/wpbc-toolbar-tiny.php:1027
|
2765 |
-
#: core/admin/wpbc-toolbar-tiny.php:1259 core/lib/wpbc_all_translations.php:
|
2766 |
msgid "Hide advanced settings"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
#: core/admin/wpbc-toolbar-tiny.php:807 core/admin/wpbc-toolbar-tiny.php:1037
|
2770 |
-
#: core/admin/wpbc-toolbar-tiny.php:1269 core/lib/wpbc_all_translations.php:
|
2771 |
#, php-format
|
2772 |
msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
#: core/admin/wpbc-toolbar-tiny.php:808 core/admin/wpbc-toolbar-tiny.php:1038
|
2776 |
-
#: core/lib/wpbc_all_translations.php:
|
2777 |
#, php-format
|
2778 |
msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
#: core/admin/wpbc-toolbar-tiny.php:818 core/admin/wpbc-toolbar-tiny.php:1048
|
2782 |
#: core/admin/wpbc-toolbar-tiny.php:1372 core/admin/wpbc-toolbars.php:242
|
2783 |
-
#: core/lib/wpbc_all_translations.php:
|
2784 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:
|
2785 |
-
#: js/wpbc-gutenberg.js:
|
2786 |
msgid "Options"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
#: core/admin/wpbc-toolbar-tiny.php:839 core/admin/wpbc-toolbar-tiny.php:1069
|
2790 |
-
#: core/admin/wpbc-toolbar-tiny.php:1393 core/lib/wpbc_all_translations.php:
|
2791 |
#, php-format
|
2792 |
msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
#: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:1073
|
2796 |
-
#: core/admin/wpbc-toolbar-tiny.php:1397 core/lib/wpbc_all_translations.php:
|
2797 |
msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: core/admin/wpbc-toolbar-tiny.php:844 core/admin/wpbc-toolbar-tiny.php:852
|
2801 |
#: core/admin/wpbc-toolbar-tiny.php:1074 core/admin/wpbc-toolbar-tiny.php:1398
|
2802 |
-
#: core/lib/wpbc_all_translations.php:
|
2803 |
#: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
|
2804 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
|
2805 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
|
@@ -2807,7 +2807,7 @@ msgid "Description"
|
|
2807 |
msgstr ""
|
2808 |
|
2809 |
#: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:1075
|
2810 |
-
#: core/admin/wpbc-toolbar-tiny.php:1399 core/lib/wpbc_all_translations.php:
|
2811 |
msgid ""
|
2812 |
"Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
|
2813 |
"to use percentage for width: 100%)"
|
@@ -2815,22 +2815,22 @@ msgstr ""
|
|
2815 |
|
2816 |
#: core/admin/wpbc-toolbar-tiny.php:846 core/admin/wpbc-toolbar-tiny.php:854
|
2817 |
#: core/admin/wpbc-toolbar-tiny.php:1076 core/admin/wpbc-toolbar-tiny.php:1400
|
2818 |
-
#: core/lib/wpbc_all_translations.php:
|
2819 |
msgid "Code Example"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: core/admin/wpbc-toolbar-tiny.php:851 core/lib/wpbc_all_translations.php:
|
2823 |
msgid ""
|
2824 |
"Specify that during certain seasons (or days of week), the specific minimum number of days must "
|
2825 |
"be booked. "
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: core/admin/wpbc-toolbar-tiny.php:853 core/lib/wpbc_all_translations.php:
|
2829 |
msgid ""
|
2830 |
"Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
-
#: core/admin/wpbc-toolbar-tiny.php:860 core/lib/wpbc_all_translations.php:
|
2834 |
#, php-format
|
2835 |
msgid ""
|
2836 |
"Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
|
@@ -2838,18 +2838,18 @@ msgid ""
|
|
2838 |
msgstr ""
|
2839 |
|
2840 |
#: core/admin/wpbc-toolbar-tiny.php:883 core/admin/wpbc-toolbar-tiny.php:1098
|
2841 |
-
#: core/lib/wpbc_all_translations.php:
|
2842 |
msgid "Aggregate booking dates from other resources"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
#: core/admin/wpbc-toolbar-tiny.php:884 core/admin/wpbc-toolbar-tiny.php:1099
|
2846 |
-
#: core/lib/wpbc_all_translations.php:
|
2847 |
msgid ""
|
2848 |
"Select booking resources, for getting booking dates from them and set such dates as unavailable "
|
2849 |
"in destination calendar."
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: core/admin/wpbc-toolbar-tiny.php:1130 core/lib/wpbc_all_translations.php:
|
2853 |
#: inc/_bl/admin/page-search.php:478 inc/_bl/admin/page-search.php:511
|
2854 |
#: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
|
2855 |
#: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
|
@@ -2863,7 +2863,7 @@ msgstr ""
|
|
2863 |
msgid "Note!"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: core/admin/wpbc-toolbar-tiny.php:1131 core/lib/wpbc_all_translations.php:
|
2867 |
#, php-format
|
2868 |
msgid ""
|
2869 |
"This shortcode %s is using for selection of the booking form of specific booking resources in "
|
@@ -2871,159 +2871,159 @@ msgid ""
|
|
2871 |
msgstr ""
|
2872 |
|
2873 |
#: core/admin/wpbc-toolbar-tiny.php:1144 core/admin/wpbc-toolbars.php:1666
|
2874 |
-
#: core/lib/wpbc_all_translations.php:
|
2875 |
#: inc/_ps/wpbc-booking-select-widget.php:163
|
2876 |
msgid "All"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: core/admin/wpbc-toolbar-tiny.php:1153 core/lib/wpbc_all_translations.php:
|
2880 |
#: inc/_ps/wpbc-booking-select-widget.php:175
|
2881 |
msgid ""
|
2882 |
"Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
|
2883 |
"resources."
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: core/admin/wpbc-toolbar-tiny.php:1178 core/lib/wpbc_all_translations.php:
|
2887 |
#: inc/_ps/wpbc-booking-select-widget.php:181
|
2888 |
msgid "Preselected resource"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: core/admin/wpbc-toolbar-tiny.php:1179 core/lib/wpbc_all_translations.php:
|
2892 |
msgid "Define preselected resource."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: core/admin/wpbc-toolbar-tiny.php:1204 core/lib/wpbc_all_translations.php:
|
2896 |
#: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1222
|
2897 |
msgid "Default Form"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
#: core/admin/wpbc-toolbar-tiny.php:1220 core/admin/wpbc-toolbar-tiny.php:1229
|
2901 |
-
#: core/lib/wpbc_all_translations.php:
|
2902 |
msgid "Please select the resource:"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: core/admin/wpbc-toolbar-tiny.php:1221 core/lib/wpbc_all_translations.php:
|
2906 |
msgid "Title near your select box."
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:
|
2910 |
#: inc/_ps/wpbc-booking-select-widget.php:247
|
2911 |
msgid "First option title"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:
|
2915 |
-
#: inc/_ps/personal.php:543 js/wpbc-gutenberg.js:
|
2916 |
msgid "Please Select"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:
|
2920 |
#: inc/_ps/wpbc-booking-select-widget.php:254
|
2921 |
msgid "First option in dropdown list."
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:
|
2925 |
#: inc/_ps/wpbc-booking-select-widget.php:256
|
2926 |
msgid "Please leave it empty if you want to skip it."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
#: core/admin/wpbc-toolbar-tiny.php:1430 core/admin/wpbc-toolbar-tiny.php:1710
|
2930 |
-
#: core/lib/wpbc_all_translations.php:
|
2931 |
msgid "Select shortcode to insert"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:
|
2935 |
msgid "Search form"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: core/admin/wpbc-toolbar-tiny.php:1445 core/lib/wpbc_all_translations.php:
|
2939 |
#: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:659
|
2940 |
#: inc/_bl/wpbc-search-availability.php:674
|
2941 |
msgid "Search results"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: core/admin/wpbc-toolbar-tiny.php:1464 core/lib/wpbc_all_translations.php:
|
2945 |
msgid "Check this box to show search results on other page"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: core/admin/wpbc-toolbar-tiny.php:1481 core/lib/wpbc_all_translations.php:
|
2949 |
msgid "URL of search results:"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: core/admin/wpbc-toolbar-tiny.php:1483 core/lib/wpbc_all_translations.php:
|
2953 |
msgid "Type the URL of search results page."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: core/admin/wpbc-toolbar-tiny.php:1500 core/lib/wpbc_all_translations.php:
|
2957 |
msgid "Title of Search results:"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
#: core/admin/wpbc-toolbar-tiny.php:1501 core/admin/wpbc-toolbar-tiny.php:1510
|
2961 |
-
#: core/lib/wpbc_all_translations.php:
|
2962 |
msgid "Result(s) Found"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:
|
2966 |
msgid "Type the title of Search results."
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:
|
2970 |
msgid "show number of search results"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: core/admin/wpbc-toolbar-tiny.php:1519 core/lib/wpbc_all_translations.php:
|
2974 |
msgid "Nothing Found Message:"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: core/admin/wpbc-toolbar-tiny.php:1521 core/lib/wpbc_all_translations.php:
|
2978 |
msgid "Type the message, when nothing found."
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: core/admin/wpbc-toolbar-tiny.php:1541 core/lib/wpbc_all_translations.php:
|
2982 |
msgid "Search only for users:"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: core/admin/wpbc-toolbar-tiny.php:1543 core/lib/wpbc_all_translations.php:
|
2986 |
msgid ""
|
2987 |
"Type IDs of the users (separated by comma \",\") for searching availability only for these "
|
2988 |
"users, or leave it blank for searching for all users."
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: core/admin/wpbc-toolbar-tiny.php:1563 core/lib/wpbc_all_translations.php:
|
2992 |
#, php-format
|
2993 |
msgid ""
|
2994 |
"This shortcode %s is using for showing the search results at specific page, if the search form "
|
2995 |
"is submit showing the search results at different page"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: core/admin/wpbc-toolbar-tiny.php:1625 core/lib/wpbc_all_translations.php:
|
2999 |
msgid "date"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: core/admin/wpbc-toolbar-tiny.php:1685 core/lib/wpbc_all_translations.php:
|
3003 |
msgid "Define date for booking"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:
|
3007 |
#: inc/_ps/p-toolbar.php:237
|
3008 |
msgid "Edit Booking"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: core/admin/wpbc-toolbar-tiny.php:1726 core/lib/wpbc_all_translations.php:
|
3012 |
msgid "Show listing of customer bookings"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:
|
3016 |
msgid "Show info about Booking Resource"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:
|
3020 |
#, php-format
|
3021 |
msgid ""
|
3022 |
"This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
|
3023 |
"%s or make %spayment%s after receiving an admin email payment request"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: core/admin/wpbc-toolbar-tiny.php:1746 core/lib/wpbc_all_translations.php:
|
3027 |
#, php-format
|
3028 |
msgid ""
|
3029 |
"The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
|
@@ -3031,396 +3031,396 @@ msgid ""
|
|
3031 |
msgstr ""
|
3032 |
|
3033 |
#: core/admin/wpbc-toolbar-tiny.php:1747 core/admin/wpbc-toolbar-tiny.php:1763
|
3034 |
-
#: core/lib/wpbc_all_translations.php:
|
3035 |
#, php-format
|
3036 |
msgid "Email templates, which use shortcodes: %s, will be linked to this page"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
-
#: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:
|
3040 |
#, php-format
|
3041 |
msgid ""
|
3042 |
"This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: core/admin/wpbc-toolbar-tiny.php:1762 core/lib/wpbc_all_translations.php:
|
3046 |
#, php-format
|
3047 |
msgid ""
|
3048 |
"The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
|
3049 |
"settings page%s must link to this page"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:
|
3053 |
#, php-format
|
3054 |
msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:
|
3058 |
msgid "Trick"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: core/admin/wpbc-toolbar-tiny.php:1805 core/lib/wpbc_all_translations.php:
|
3062 |
#: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
|
3063 |
#: inc/_ps/admin/br-table-import-gcal-p.php:63
|
3064 |
msgid "Capacity"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#: core/admin/wpbc-toolbar-tiny.php:1811 core/lib/wpbc_all_translations.php:
|
3068 |
msgid "Select type of info to show."
|
3069 |
msgstr ""
|
3070 |
|
3071 |
#: core/admin/wpbc-toolbar-tiny.php:2121 core/admin/wpbc-toolbar-tiny.php:2164
|
3072 |
#: core/admin/wpbc-toolbar-tiny.php:2248 core/admin/wpbc-toolbar-tiny.php:2337
|
3073 |
-
#: core/lib/wpbc_all_translations.php:
|
3074 |
msgid "No booking resources"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:
|
3078 |
msgid "Filters"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: core/admin/wpbc-toolbars.php:350 core/lib/wpbc_all_translations.php:
|
3082 |
msgid "Expand Advanced Toolbar"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: core/admin/wpbc-toolbars.php:357 core/lib/wpbc_all_translations.php:
|
3086 |
msgid "Collapse Advanced Toolbar"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: core/admin/wpbc-toolbars.php:379 core/lib/wpbc_all_translations.php:
|
3090 |
msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: core/admin/wpbc-toolbars.php:380 core/lib/wpbc_all_translations.php:
|
3094 |
msgid "Emails sending"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: core/admin/wpbc-toolbars.php:405 core/lib/wpbc_all_translations.php:
|
3098 |
msgid "Booking ID"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
#: core/admin/wpbc-toolbars.php:408 core/admin/wpbc-toolbars.php:2249
|
3102 |
-
#: core/lib/wpbc_all_translations.php:
|
3103 |
msgid "Go"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: core/admin/wpbc-toolbars.php:442 core/lib/wpbc_all_translations.php:
|
3107 |
msgid "Technical Support"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: core/admin/wpbc-toolbars.php:444 core/lib/wpbc_all_translations.php:
|
3111 |
msgid "About Booking Calendar"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
#: core/admin/wpbc-toolbars.php:511 core/admin/wpbc-toolbars.php:691
|
3115 |
#: core/admin/wpbc-toolbars.php:896 core/admin/wpbc-toolbars.php:1516
|
3116 |
-
#: core/lib/wpbc_all_translations.php:
|
3117 |
msgid "Apply"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: core/admin/wpbc-toolbars.php:512 core/lib/wpbc_all_translations.php:
|
3121 |
msgid "Refresh booking listing"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
-
#: core/admin/wpbc-toolbars.php:526 core/lib/wpbc_all_translations.php:
|
3125 |
msgid "Reset filter to default values"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
#: core/admin/wpbc-toolbars.php:552 core/admin/wpbc-toolbars.php:767
|
3129 |
-
#: core/lib/wpbc_all_translations.php:
|
3130 |
msgid "Any"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
#: core/admin/wpbc-toolbars.php:573 core/admin/wpbc-toolbars.php:807
|
3134 |
-
#: core/lib/wpbc_all_translations.php:
|
3135 |
msgid "week"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
#: core/admin/wpbc-toolbars.php:574 core/admin/wpbc-toolbars.php:808
|
3139 |
-
#: core/lib/wpbc_all_translations.php:
|
3140 |
msgid "weeks"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
#: core/admin/wpbc-toolbars.php:575 core/admin/wpbc-toolbars.php:809
|
3144 |
-
#: core/lib/wpbc_all_translations.php:
|
3145 |
msgid "month"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
#: core/admin/wpbc-toolbars.php:576 core/admin/wpbc-toolbars.php:577
|
3149 |
#: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:810
|
3150 |
#: core/admin/wpbc-toolbars.php:811 core/admin/wpbc-toolbars.php:812
|
3151 |
-
#: core/lib/wpbc_all_translations.php:
|
3152 |
msgid "months"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
#: core/admin/wpbc-toolbars.php:586 core/admin/wpbc-toolbars.php:821
|
3156 |
-
#: core/lib/wpbc_all_translations.php:
|
3157 |
msgid "Filter bookings by booking dates"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: core/admin/wpbc-toolbars.php:590 core/lib/wpbc_all_translations.php:
|
3161 |
msgid "Current dates"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
#: core/admin/wpbc-toolbars.php:591 core/admin/wpbc-toolbars.php:825
|
3165 |
-
#: core/lib/wpbc_all_translations.php:
|
3166 |
msgid "Today"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:
|
3170 |
msgid "Previous dates"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
#: core/admin/wpbc-toolbars.php:593 core/admin/wpbc-toolbars.php:826
|
3174 |
-
#: core/lib/wpbc_all_translations.php:
|
3175 |
msgid "All dates"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: core/admin/wpbc-toolbars.php:595 core/lib/wpbc_all_translations.php:
|
3179 |
msgid "Today check in/out"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: core/admin/wpbc-toolbars.php:596 core/lib/wpbc_all_translations.php:
|
3183 |
msgid "Check In - Tomorrow"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: core/admin/wpbc-toolbars.php:597 core/lib/wpbc_all_translations.php:
|
3187 |
msgid "Check Out - Tomorrow"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: core/admin/wpbc-toolbars.php:602 core/lib/wpbc_all_translations.php:
|
3191 |
#: core/wpbc-functions.php:2527
|
3192 |
msgid "Next"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
#: core/admin/wpbc-toolbars.php:626 core/admin/wpbc-toolbars.php:831
|
3196 |
-
#: core/lib/wpbc_all_translations.php:
|
3197 |
msgid "Prior"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
#: core/admin/wpbc-toolbars.php:666 core/admin/wpbc-toolbars.php:871
|
3201 |
-
#: core/lib/wpbc_all_translations.php:
|
3202 |
msgid "Check-in"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
#: core/admin/wpbc-toolbars.php:678 core/admin/wpbc-toolbars.php:883
|
3206 |
-
#: core/lib/wpbc_all_translations.php:
|
3207 |
msgid "Check-out"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: core/admin/wpbc-toolbars.php:750 core/lib/wpbc_all_translations.php:
|
3211 |
msgid "Order by"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: core/admin/wpbc-toolbars.php:764 core/lib/wpbc_all_translations.php:
|
3215 |
msgid "Exist"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: core/admin/wpbc-toolbars.php:786 core/lib/wpbc_all_translations.php:
|
3219 |
msgid "New bookings"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: core/admin/wpbc-toolbars.php:823 core/lib/wpbc_all_translations.php:
|
3223 |
msgid "Creation"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: core/admin/wpbc-toolbars.php:950 core/lib/wpbc_all_translations.php:
|
3227 |
msgid "Approve selected bookings"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: core/admin/wpbc-toolbars.php:965 core/lib/wpbc_all_translations.php:
|
3231 |
msgid "Set selected bookings as pending"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: core/admin/wpbc-toolbars.php:995 core/lib/wpbc_all_translations.php:
|
3235 |
msgid "Reject booking - move selected bookings to trash"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: core/admin/wpbc-toolbars.php:1012 core/lib/wpbc_all_translations.php:
|
3239 |
msgid "Restore selected bookings"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: core/admin/wpbc-toolbars.php:1028 core/lib/wpbc_all_translations.php:
|
3243 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2667 inc/_bl/admin/page-coupons.php:216
|
3244 |
#: inc/_bl/admin/page-coupons.php:222 inc/_bm/admin/page-availability.php:240
|
3245 |
#: inc/_bm/admin/page-availability.php:246 inc/_bm/admin/page-cost-valuation.php:567
|
3246 |
#: inc/_bm/admin/page-cost.php:223 inc/_bm/admin/page-cost.php:233
|
3247 |
-
#: inc/_bm/admin/page-seasons.php:201 inc/_bm/admin/page-seasons.php:207 inc/_bm/m-toolbar.php:
|
3248 |
#: inc/_ps/admin/page-resources.php:189 inc/_ps/admin/page-resources.php:195
|
3249 |
msgid "Delete"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: core/admin/wpbc-toolbars.php:1029 core/lib/wpbc_all_translations.php:
|
3253 |
msgid "Delete selected bookings"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: core/admin/wpbc-toolbars.php:1031 core/lib/wpbc_all_translations.php:
|
3257 |
#: core/sync/wpbc-gcal-class.php:706
|
3258 |
msgid "Do you really want to delete selected booking(s) ?"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: core/admin/wpbc-toolbars.php:1047 core/lib/wpbc_all_translations.php:
|
3262 |
msgid "Reason of cancellation"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: core/admin/wpbc-toolbars.php:1075 core/admin/wpbc-toolbars.php:1076 core/lib/wpbc-ajax.php:
|
3266 |
-
#: core/lib/wpbc_all_translations.php:
|
3267 |
msgid "Empty Trash"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: core/admin/wpbc-toolbars.php:1106 core/lib/wpbc_all_translations.php:
|
3271 |
msgid "Read All"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: core/admin/wpbc-toolbars.php:1107 core/lib/wpbc_all_translations.php:
|
3275 |
msgid "Mark as read all bookings"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: core/admin/wpbc-toolbars.php:1120 core/lib/wpbc_all_translations.php:
|
3279 |
msgid "Read"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: core/admin/wpbc-toolbars.php:1121 core/lib/wpbc_all_translations.php:
|
3283 |
msgid "Mark as read selected bookings"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: core/admin/wpbc-toolbars.php:1135 core/lib/wpbc_all_translations.php:
|
3287 |
msgid "Unread"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: core/admin/wpbc-toolbars.php:1136 core/lib/wpbc_all_translations.php:
|
3291 |
msgid "Mark as Unread selected bookings"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
#: core/admin/wpbc-toolbars.php:1185 core/admin/wpbc-toolbars.php:1245
|
3295 |
-
#: core/lib/wpbc_all_translations.php:
|
3296 |
msgid "Show day"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
#: core/admin/wpbc-toolbars.php:1202 core/admin/wpbc-toolbars.php:1259
|
3300 |
-
#: core/lib/wpbc_all_translations.php:
|
3301 |
msgid "Show week"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
#: core/admin/wpbc-toolbars.php:1219 core/admin/wpbc-toolbars.php:1273
|
3305 |
-
#: core/lib/wpbc_all_translations.php:
|
3306 |
msgid "Show month"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: core/admin/wpbc-toolbars.php:1287 core/lib/wpbc_all_translations.php:
|
3310 |
msgid "Show 2 months"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
#: core/admin/wpbc-toolbars.php:1344 core/admin/wpbc-toolbars.php:1358
|
3314 |
-
#: core/admin/wpbc-toolbars.php:1405 core/lib/wpbc_all_translations.php:
|
3315 |
msgid "Previous 4 weeks"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
#: core/admin/wpbc-toolbars.php:1345 core/admin/wpbc-toolbars.php:1359
|
3319 |
-
#: core/admin/wpbc-toolbars.php:1406 core/lib/wpbc_all_translations.php:
|
3320 |
msgid "Previous week"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
#: core/admin/wpbc-toolbars.php:1346 core/admin/wpbc-toolbars.php:1360
|
3324 |
-
#: core/admin/wpbc-toolbars.php:1407 core/lib/wpbc_all_translations.php:
|
3325 |
msgid "Current week"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
#: core/admin/wpbc-toolbars.php:1347 core/admin/wpbc-toolbars.php:1361
|
3329 |
-
#: core/admin/wpbc-toolbars.php:1408 core/lib/wpbc_all_translations.php:
|
3330 |
msgid "Next week"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
#: core/admin/wpbc-toolbars.php:1348 core/admin/wpbc-toolbars.php:1362
|
3334 |
-
#: core/admin/wpbc-toolbars.php:1409 core/lib/wpbc_all_translations.php:
|
3335 |
msgid "Next 4 weeks"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
#: core/admin/wpbc-toolbars.php:1372 core/admin/wpbc-toolbars.php:1422
|
3339 |
-
#: core/admin/wpbc-toolbars.php:1437 core/lib/wpbc_all_translations.php:
|
3340 |
msgid "Previous 3 months"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
#: core/admin/wpbc-toolbars.php:1373 core/admin/wpbc-toolbars.php:1423
|
3344 |
-
#: core/admin/wpbc-toolbars.php:1438 core/lib/wpbc_all_translations.php:
|
3345 |
msgid "Previous month"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
#: core/admin/wpbc-toolbars.php:1374 core/admin/wpbc-toolbars.php:1424
|
3349 |
-
#: core/admin/wpbc-toolbars.php:1439 core/lib/wpbc_all_translations.php:
|
3350 |
msgid "Current month"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
#: core/admin/wpbc-toolbars.php:1375 core/admin/wpbc-toolbars.php:1425
|
3354 |
-
#: core/admin/wpbc-toolbars.php:1440 core/lib/wpbc_all_translations.php:
|
3355 |
msgid "Next month"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
#: core/admin/wpbc-toolbars.php:1376 core/admin/wpbc-toolbars.php:1426
|
3359 |
-
#: core/admin/wpbc-toolbars.php:1441 core/lib/wpbc_all_translations.php:
|
3360 |
msgid "Next 3 months"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:
|
3364 |
msgid "Previous 7 days"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:
|
3368 |
msgid "Previous day"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:
|
3372 |
msgid "Current day"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: core/admin/wpbc-toolbars.php:1393 core/lib/wpbc_all_translations.php:
|
3376 |
msgid "Next day"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: core/admin/wpbc-toolbars.php:1394 core/lib/wpbc_all_translations.php:
|
3380 |
msgid "Next 7 days"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: core/admin/wpbc-toolbars.php:1665 core/lib/wpbc_all_translations.php:
|
3384 |
msgid "Number of months in one row"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: core/admin/wpbc-toolbars.php:1710 core/lib/wpbc_all_translations.php:
|
3388 |
msgid "Calendar width"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: core/admin/wpbc-toolbars.php:1758 core/lib/wpbc_all_translations.php:
|
3392 |
msgid "Calendar cell height"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
#: core/admin/wpbc-toolbars.php:1867 core/admin/wpbc-toolbars.php:1868
|
3396 |
-
#: core/lib/wpbc_all_translations.php:
|
3397 |
msgid "Send email notification to customer about this operation"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
#: core/admin/wpbc-toolbars.php:1910 core/admin/wpbc-toolbars.php:1911
|
3401 |
-
#: core/lib/wpbc_all_translations.php:
|
3402 |
msgid "Add to Google Calendar"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: core/admin/wpbc-toolbars.php:2109 core/lib/wpbc_all_translations.php:
|
3406 |
#: inc/gateways/page-gateways.php:1419 inc/gateways/page-gateways.php:1437
|
3407 |
msgid "Total"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: core/admin/wpbc-toolbars.php:2245 core/lib/wpbc_all_translations.php:
|
3411 |
msgid "ID or Title"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: core/any/api-emails.php:508 core/lib/wpbc_all_translations.php:
|
3415 |
msgid "Email copy to"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
#: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
|
3419 |
-
#: core/lib/wpbc_all_translations.php:
|
3420 |
msgid "Dismiss"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:
|
3424 |
#, php-format
|
3425 |
msgid ""
|
3426 |
"Probably you updated your paid version of Booking Calendar by free version or update process "
|
@@ -3428,283 +3428,283 @@ msgid ""
|
|
3428 |
msgstr ""
|
3429 |
|
3430 |
#: core/class/wpbc-class-welcome.php:1851 core/class/wpbc-class-welcome.php:2337
|
3431 |
-
#: core/lib/wpbc_all_translations.php:
|
3432 |
msgid "Purchase"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
#: core/class/wpbc-class-welcome.php:1851 core/class/wpbc-class-welcome.php:2337
|
3436 |
-
#: core/lib/wpbc_all_translations.php:
|
3437 |
msgid "Upgrade Now"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
#: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:67
|
3441 |
-
#: core/lib/wpbc-ajax.php:82 core/lib/wpbc_all_translations.php:
|
3442 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:1113
|
3443 |
#, php-format
|
3444 |
msgid ""
|
3445 |
"%sError!%s Request do not pass security check! Please refresh the page and try one more time."
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: core/lib/wpbc-ajax.php:138 core/lib/wpbc_all_translations.php:
|
3449 |
msgid "Set as Unread"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:
|
3453 |
msgid "Set as Read"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: core/lib/wpbc-ajax.php:189 core/lib/wpbc_all_translations.php:
|
3457 |
msgid "Approved by:"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
-
#: core/lib/wpbc-ajax.php:189 core/lib/wpbc_all_translations.php:
|
3461 |
msgid "Declined by:"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: core/lib/wpbc-ajax.php:
|
3465 |
msgid "Set as Approved"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: core/lib/wpbc-ajax.php:
|
3469 |
msgid "Set as Pending"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: core/lib/wpbc-ajax.php:
|
3473 |
msgid "Reason for cancellation here"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: core/lib/wpbc-ajax.php:
|
3477 |
msgid "Reason of cancellation here"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: core/lib/wpbc-ajax.php:
|
3481 |
msgid "Moved to trash"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: core/lib/wpbc-ajax.php:
|
3485 |
msgid "Restored"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: core/lib/wpbc-ajax.php:
|
3489 |
#, php-format
|
3490 |
msgid "Deleted %d bookings from trash"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: core/lib/wpbc-ajax.php:
|
3494 |
msgid "Saved"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:
|
3498 |
msgid "The code you entered is incorrect"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: core/lib/wpbc-booking-new.php:139 core/lib/wpbc_all_translations.php:
|
3502 |
msgid "Updating..."
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#: core/lib/wpbc-booking-new.php:164 core/lib/wpbc_all_translations.php:
|
3506 |
#: inc/_ps/personal.php:2385 inc/_ps/personal.php:2576
|
3507 |
msgid "Updated successfully"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: core/lib/wpbc-booking-new.php:
|
3511 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:878
|
3512 |
msgid "Error!"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: core/lib/wpbc-booking-new.php:
|
3516 |
msgid ""
|
3517 |
"Probably these date(s) just was booking by other visitor. Please reload this page and make "
|
3518 |
"booking again."
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: core/lib/wpbc_all_translations.php:
|
3522 |
msgid "Timeline type"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: core/lib/wpbc_all_translations.php:
|
3526 |
msgid "Select type of timeline to load"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#: core/lib/wpbc_all_translations.php:
|
3530 |
msgid "Flex Timeline"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
-
#: core/lib/wpbc_all_translations.php:
|
3534 |
msgid "Old Timeline"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
#: core/lib/wpbc_all_translations.php:
|
3538 |
msgid "Trash"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
-
#: core/lib/wpbc_all_translations.php:
|
3542 |
msgid "Move to trash"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
-
#: core/lib/wpbc_all_translations.php:
|
3546 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:98 core/timeline/v2/wpbc-class-timeline_v2.php:107
|
3547 |
msgid "Mon"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: core/lib/wpbc_all_translations.php:
|
3551 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:99 core/timeline/v2/wpbc-class-timeline_v2.php:108
|
3552 |
msgid "Tue"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#: core/lib/wpbc_all_translations.php:
|
3556 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:100 core/timeline/v2/wpbc-class-timeline_v2.php:109
|
3557 |
msgid "Wed"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: core/lib/wpbc_all_translations.php:
|
3561 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:101 core/timeline/v2/wpbc-class-timeline_v2.php:110
|
3562 |
msgid "Thu"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
-
#: core/lib/wpbc_all_translations.php:
|
3566 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:102 core/timeline/v2/wpbc-class-timeline_v2.php:111
|
3567 |
msgid "Fri"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: core/lib/wpbc_all_translations.php:
|
3571 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:103 core/timeline/v2/wpbc-class-timeline_v2.php:112
|
3572 |
msgid "Sat"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: core/lib/wpbc_all_translations.php:
|
3576 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:104 core/timeline/v2/wpbc-class-timeline_v2.php:113
|
3577 |
msgid "Sun"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: core/lib/wpbc_all_translations.php:
|
3581 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:1441 inc/_ps/wpbc-form-templates.php:155
|
3582 |
msgid "Times"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
-
#: core/lib/wpbc_all_translations.php:
|
3586 |
msgid "Decline"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
-
#: core/lib/wpbc_all_translations.php:
|
3590 |
msgid "Pay"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: core/lib/wpbc_all_translations.php:
|
3594 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2760 core/wpbc-functions.php:1999
|
3595 |
#: inc/_bs/lib_s.php:43 inc/_bs/lib_s.php:272 inc/_bs/lib_s.php:274
|
3596 |
#: inc/_ps/admin/page-settings-form.php:352 inc/_ps/admin/page-settings-form.php:363
|
3597 |
msgid "Payment"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
-
#: core/lib/wpbc_all_translations.php:
|
3601 |
msgid "In Trash"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#: core/lib/wpbc_all_translations.php:
|
3605 |
msgid "Move selected bookings to trash"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: core/lib/wpbc_all_translations.php:
|
3609 |
msgid ""
|
3610 |
"Check the box, if you want to use syntax highlighter during customization booking form at "
|
3611 |
"Settings - Form page."
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: core/lib/wpbc_all_translations.php:
|
3615 |
msgid "Show 3 months"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: core/lib/wpbc_all_translations.php:
|
3619 |
msgid "Show year"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: core/lib/wpbc_all_translations.php:
|
3623 |
msgid "Number of months"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: core/lib/wpbc_all_translations.php:
|
3627 |
msgid "Paid OK"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: core/lib/wpbc_all_translations.php:
|
3631 |
msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: core/lib/wpbc_all_translations.php:
|
3635 |
#, php-format
|
3636 |
msgid ""
|
3637 |
"Probabaly you updated your paid version of Booking Calendar by free version or update process "
|
3638 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#: core/lib/wpbc_all_translations.php:
|
3642 |
msgid "Copy to admin"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#: core/lib/wpbc_all_translations.php:
|
3646 |
msgid "Enable / disable sending copy of this email notification to admin"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
-
#: core/lib/wpbc_all_translations.php:
|
3650 |
msgid "Customization of email template, which is sending to Visitor after approval of booking"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#: core/lib/wpbc_all_translations.php:
|
3654 |
msgid "Email is sending to Visitor after Approval of booking."
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#: core/lib/wpbc_all_translations.php:
|
3658 |
msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: core/lib/wpbc_all_translations.php:
|
3662 |
msgid "Email is sending to Visitor after Deleting of booking."
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#: core/lib/wpbc_all_translations.php:
|
3666 |
msgid ""
|
3667 |
"Customization of email template, which is sending to Visitor, when booking status is set to "
|
3668 |
"Pending"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
-
#: core/lib/wpbc_all_translations.php:
|
3672 |
msgid "Email is sending to Visitor after booking set as Pending."
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: core/lib/wpbc_all_translations.php:
|
3676 |
msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#: core/lib/wpbc_all_translations.php:
|
3680 |
msgid "Confgure ULR feed(s) at this settings page."
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#: core/lib/wpbc_all_translations.php:
|
3684 |
msgid "Reject"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
-
#: core/lib/wpbc_all_translations.php:
|
3688 |
msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
-
#: core/lib/wpbc_all_translations.php:
|
3692 |
msgid "Google Calendar"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
-
#: core/lib/wpbc_all_translations.php:
|
3696 |
msgid "Events Import"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: core/lib/wpbc_all_translations.php:
|
3700 |
msgid "Import Settings"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: core/lib/wpbc_all_translations.php:
|
3704 |
msgid "Customization of synchronization with Google Calendar"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: core/lib/wpbc_all_translations.php:
|
3708 |
#: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
|
3709 |
#: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
|
3710 |
#: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
|
@@ -3719,71 +3719,71 @@ msgstr ""
|
|
3719 |
msgid "Error"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: core/lib/wpbc_all_translations.php:
|
3723 |
msgid "does not exist"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: core/lib/wpbc_all_translations.php:
|
3727 |
msgid "Calendar is loading..."
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: core/lib/wpbc_all_translations.php:
|
3731 |
#: core/lib/wpdev-booking-class.php:745 inc/_ps/personal.php:898 inc/_ps/personal.php:909
|
3732 |
msgid "Wrong booking hash in URL (probably expired)"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
-
#: core/lib/wpbc_all_translations.php:
|
3736 |
msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
|
3737 |
msgstr ""
|
3738 |
|
3739 |
-
#: core/lib/wpbc_all_translations.php:
|
3740 |
#, php-format
|
3741 |
msgid ""
|
3742 |
"%sWarning! Booking calendar for this booking resource are already at the page, please check more "
|
3743 |
"about this issue at %sthis page%s"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: core/lib/wpbc_all_translations.php:
|
3747 |
#: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
|
3748 |
msgid "You need to use special shortcode [bookingedit] for booking editing."
|
3749 |
msgstr ""
|
3750 |
|
3751 |
-
#: core/lib/wpbc_all_translations.php:
|
3752 |
#: core/lib/wpdev-booking-class.php:1229 core/lib/wpdev-booking-class.php:1231
|
3753 |
#: inc/_ps/hash/wpbc-hash-functions.php:106 inc/_ps/hash/wpbc-hash-functions.php:134
|
3754 |
#: inc/_ps/hash/wpbc-hash-functions.php:162 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1531
|
3755 |
msgid "Wrong booking hash in URL. Probably hash is expired."
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: core/lib/wpbc_all_translations.php:
|
3759 |
-
#: core/lib/wpdev-booking-class.php:1235 js/wpbc-gutenberg.js:
|
3760 |
msgid "You do not set any parameters for booking editing"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: core/lib/wpbc_all_translations.php:
|
3764 |
#: core/lib/wpdev-booking-class.php:1237
|
3765 |
#, php-format
|
3766 |
msgid "Please check more about configuration at %sthis page%s"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: core/lib/wpbc_all_translations.php:
|
3770 |
msgid "Booking form with calendar"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: core/lib/wpbc_all_translations.php:
|
3774 |
msgid "Only availability calendar"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: core/lib/wpbc_all_translations.php:
|
3778 |
msgid "Footer"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: core/lib/wpbc_all_translations.php:
|
3782 |
#, php-format
|
3783 |
msgid "Example: %sMake booking here%s"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: core/lib/wpbc_all_translations.php:
|
3787 |
#: inc/_ps/wpbc-booking-select-widget.php:263
|
3788 |
#, php-format
|
3789 |
msgid ""
|
@@ -3791,103 +3791,103 @@ msgid ""
|
|
3791 |
"at the same page, then the last will not be visible."
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: core/lib/wpbc_all_translations.php:
|
3795 |
#, php-format
|
3796 |
msgid "%sSeveral widgets are supported at %spaid versions%s."
|
3797 |
msgstr ""
|
3798 |
|
3799 |
-
#: core/lib/wpbc_all_translations.php:
|
3800 |
msgid "Importing Feed"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: core/lib/wpbc_all_translations.php:
|
3804 |
msgid "Data Parsing"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: core/lib/wpbc_all_translations.php:
|
3808 |
msgid ""
|
3809 |
"Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
|
3810 |
"correct."
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: core/lib/wpbc_all_translations.php:
|
3814 |
msgid "The feed could not be found (404). Please ensure your feed URL is correct."
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: core/lib/wpbc_all_translations.php:
|
3818 |
msgid ""
|
3819 |
"Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
|
3820 |
"calendar."
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: core/lib/wpbc_all_translations.php:
|
3824 |
#, php-format
|
3825 |
msgid ""
|
3826 |
"The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#: core/lib/wpbc_all_translations.php:
|
3830 |
#: core/sync/wpbc-gcal-class.php:694
|
3831 |
msgid "GID"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: core/lib/wpbc_all_translations.php:
|
3835 |
msgid "Selection"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: core/lib/wpbc_all_translations.php:
|
3839 |
msgid "Location:"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: core/lib/wpbc_all_translations.php:
|
3843 |
msgid "Reload page"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: core/lib/wpbc_all_translations.php:
|
3847 |
msgid "Delete selected booking(s)"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: core/lib/wpbc_all_translations.php:
|
3851 |
msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: core/lib/wpbc_all_translations.php:
|
3855 |
msgid "Retrieve Google Calendar Events "
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: core/lib/wpbc_all_translations.php:
|
3859 |
msgid "Please configure settings for import Google Calendar events"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: core/lib/wpbc_all_translations.php:
|
3863 |
msgid "Configure"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: core/lib/wpbc_all_translations.php:
|
3867 |
#, php-format
|
3868 |
msgid "%s Found %s not indexed bookings %s"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#: core/lib/wpbc_all_translations.php:
|
3872 |
#, php-format
|
3873 |
msgid "%s Finish getting sort dates. %s"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: core/lib/wpbc_all_translations.php:
|
3877 |
#, php-format
|
3878 |
msgid "Updated booking: %s"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: core/lib/wpbc_all_translations.php:
|
3882 |
msgid "Booking form"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: core/lib/wpbc_all_translations.php:
|
3886 |
#: inc/_ps/admin/page-email-edit.php:310
|
3887 |
msgid "The reservation has been modified"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: core/lib/wpbc_all_translations.php:
|
3891 |
#: inc/_ps/admin/page-email-edit.php:324
|
3892 |
#, php-format
|
3893 |
msgid ""
|
@@ -3895,23 +3895,23 @@ msgid ""
|
|
3895 |
"Thank you, %s"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: core/lib/wpbc_all_translations.php:
|
3899 |
#: inc/_bs/admin/api-settings-s.php:376
|
3900 |
msgid "Booked Times:"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: core/lib/wpbc_all_translations.php:
|
3904 |
msgid ""
|
3905 |
"This booking canceled because we did not receive payment and the administrator did not approve "
|
3906 |
"it."
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: core/lib/wpbc_all_translations.php:
|
3910 |
#: inc/_bs/admin/page-email-payment.php:314
|
3911 |
msgid "You need to make payment for this reservation"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: core/lib/wpbc_all_translations.php:
|
3915 |
#: inc/_bs/admin/page-email-payment.php:328
|
3916 |
#, php-format
|
3917 |
msgid ""
|
@@ -3919,33 +3919,33 @@ msgid ""
|
|
3919 |
"Thank you, %s"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: core/lib/wpbc_all_translations.php:
|
3923 |
#: inc/_bm/admin/api-settings-m.php:247
|
3924 |
msgid "Cost: "
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: core/lib/wpbc_all_translations.php:
|
3928 |
#: inc/_bl/admin/api-settings-l.php:75
|
3929 |
msgid "Available: "
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: core/lib/wpbc_all_translations.php:
|
3933 |
msgid "Booking system"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: core/lib/wpbc_all_translations.php:
|
3937 |
msgid ""
|
3938 |
"You can use (in subject and content of email template) any shortcodes, which you used in the "
|
3939 |
"booking form. Use the shortcodes in the same way as you used them in the content form at "
|
3940 |
"Settings Fields page."
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: core/lib/wpbc_all_translations.php:
|
3944 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
|
3945 |
msgid "You can use following shortcodes in content of this template"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: core/lib/wpbc_all_translations.php:
|
3949 |
#: inc/gateways/page-gateways.php:1068
|
3950 |
#, php-format
|
3951 |
msgid ""
|
@@ -3953,392 +3953,392 @@ msgid ""
|
|
3953 |
"Fields page"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: core/lib/wpbc_all_translations.php:
|
3957 |
#, php-format
|
3958 |
msgid "%s - inserting data info about the booking"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: core/lib/wpbc_all_translations.php:
|
3962 |
#, php-format
|
3963 |
msgid "%s - inserting the dates of booking"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: core/lib/wpbc_all_translations.php:
|
3967 |
#, php-format
|
3968 |
msgid "%s - inserting check-in date (first day of reservation),"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: core/lib/wpbc_all_translations.php:
|
3972 |
#, php-format
|
3973 |
msgid "%s - inserting check-out date (last day of reservation),"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#: core/lib/wpbc_all_translations.php:
|
3977 |
#, php-format
|
3978 |
msgid "%s - inserting the number of booking dates "
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: core/lib/wpbc_all_translations.php:
|
3982 |
#, php-format
|
3983 |
msgid "%s - inserting ID of booking "
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: core/lib/wpbc_all_translations.php:
|
3987 |
#, php-format
|
3988 |
msgid "%s or %s - inserting the title of the booking resource "
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: core/lib/wpbc_all_translations.php:
|
3992 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
|
3993 |
#, php-format
|
3994 |
msgid "%s - inserting the cost of booking "
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: core/lib/wpbc_all_translations.php:
|
3998 |
#, php-format
|
3999 |
msgid "%s - inserting your site URL "
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: core/lib/wpbc_all_translations.php:
|
4003 |
#, php-format
|
4004 |
msgid "%s - inserting IP address of the user who made this action "
|
4005 |
msgstr ""
|
4006 |
|
4007 |
-
#: core/lib/wpbc_all_translations.php:
|
4008 |
#, php-format
|
4009 |
msgid ""
|
4010 |
"%s - inserting contents of the User-Agent: header from the current request, if there is one "
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: core/lib/wpbc_all_translations.php:
|
4014 |
#, php-format
|
4015 |
msgid "%s - inserting address of the page (if any), where visitor make this action "
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: core/lib/wpbc_all_translations.php:
|
4019 |
#, php-format
|
4020 |
msgid "%s - inserting date of this action "
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: core/lib/wpbc_all_translations.php:
|
4024 |
#, php-format
|
4025 |
msgid "%s - inserting time of this action "
|
4026 |
msgstr ""
|
4027 |
|
4028 |
-
#: core/lib/wpbc_all_translations.php:
|
4029 |
#, php-format
|
4030 |
msgid "%s - inserting moderate link of new booking "
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: core/lib/wpbc_all_translations.php:
|
4034 |
#, php-format
|
4035 |
msgid ""
|
4036 |
"%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
|
4037 |
"parameter for setting different %s of this page. Example: %s )"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: core/lib/wpbc_all_translations.php:
|
4041 |
#, php-format
|
4042 |
msgid ""
|
4043 |
"%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
|
4044 |
"%s parameter for setting different %s of this page. Example: %s )"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: core/lib/wpbc_all_translations.php:
|
4048 |
#, php-format
|
4049 |
msgid ""
|
4050 |
"%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
|
4051 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: core/lib/wpbc_all_translations.php:
|
4055 |
#, php-format
|
4056 |
msgid "%s - add the reason for booking payment, you can enter it before sending email, "
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#: core/lib/wpbc_all_translations.php:
|
4060 |
#, php-format
|
4061 |
msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: core/lib/wpbc_all_translations.php:
|
4065 |
msgid "Configuration in several languages"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: core/lib/wpbc_all_translations.php:
|
4069 |
#, php-format
|
4070 |
msgid "%s - start new translation section, where %s - locale of translation"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#: core/lib/wpbc_all_translations.php:
|
4074 |
#, php-format
|
4075 |
msgid "Example #1: %s - start French translation section"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: core/lib/wpbc_all_translations.php:
|
4079 |
#, php-format
|
4080 |
msgid "Example #2: \"%s\" - English and French translation of some message"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#: core/lib/wpbc_all_translations.php:
|
4084 |
msgid "yes"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: core/lib/wpbc_all_translations.php:
|
4088 |
msgid "no"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
-
#: core/lib/wpbc_all_translations.php:
|
4092 |
#: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:586
|
4093 |
msgid "Costs and Rates"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: core/lib/wpbc_all_translations.php:
|
4097 |
#: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
|
4098 |
#: inc/gateways/page-gateways.php:92
|
4099 |
msgid "Advanced Cost"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: core/lib/wpbc_all_translations.php:
|
4103 |
#: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
|
4104 |
msgid "Coupons"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: core/lib/wpbc_all_translations.php:
|
4108 |
#: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
|
4109 |
msgid "Season Filters"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: core/lib/wpbc_all_translations.php:
|
4113 |
msgid "Warning! Some error occur, during sending registration request."
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: core/lib/wpbc_all_translations.php:
|
4117 |
msgid ""
|
4118 |
"Please refresh this page and if the same error appear again contact support by email (with info "
|
4119 |
"about order number and website) for finishing the registrations"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: core/lib/wpbc_all_translations.php:
|
4123 |
#, php-format
|
4124 |
msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
-
#: core/lib/wpbc_all_translations.php:
|
4128 |
msgid "Changes saved."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
-
#: core/lib/wpbc_all_translations.php:
|
4132 |
msgid "Click to toggle"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
-
#: core/lib/wpbc_all_translations.php:
|
4136 |
msgid "Prev"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: core/lib/wpbc_all_translations.php:
|
4140 |
msgid "We’ve assembled some links to get you started:"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: core/lib/wpbc_all_translations.php:
|
4144 |
msgid "Get Started"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#: core/lib/wpbc_all_translations.php:
|
4148 |
#, php-format
|
4149 |
msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: core/lib/wpbc_all_translations.php:
|
4153 |
#, php-format
|
4154 |
msgid "or add booking calendar %sWidget%s to your sidebar."
|
4155 |
msgstr ""
|
4156 |
|
4157 |
-
#: core/lib/wpbc_all_translations.php:
|
4158 |
#, php-format
|
4159 |
msgid "Check %show todo%s that and what %sshortcodes%s are available."
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: core/lib/wpbc_all_translations.php:
|
4163 |
#, php-format
|
4164 |
msgid "Add new booking from your post/page or from %sAdmin Panel%s."
|
4165 |
msgstr ""
|
4166 |
|
4167 |
-
#: core/lib/wpbc_all_translations.php:
|
4168 |
msgid "Next Steps"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
-
#: core/lib/wpbc_all_translations.php:
|
4172 |
#, php-format
|
4173 |
msgid "Check %sBooking Listing%s page for new bookings."
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: core/lib/wpbc_all_translations.php:
|
4177 |
#, php-format
|
4178 |
msgid "Configure booking %sSettings%s."
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#: core/lib/wpbc_all_translations.php:
|
4182 |
#, php-format
|
4183 |
msgid "Configure predefined set of your %sForm Fields%s."
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: core/lib/wpbc_all_translations.php:
|
4187 |
#, php-format
|
4188 |
msgid "Configure your predefined %sEmail Templates%s."
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: core/lib/wpbc_all_translations.php:
|
4192 |
msgid "Have a questions?"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: core/lib/wpbc_all_translations.php:
|
4196 |
#, php-format
|
4197 |
msgid "Check out our %sHelp%s"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: core/lib/wpbc_all_translations.php:
|
4201 |
#, php-format
|
4202 |
msgid "See %sFAQ%s."
|
4203 |
msgstr ""
|
4204 |
|
4205 |
-
#: core/lib/wpbc_all_translations.php:
|
4206 |
#, php-format
|
4207 |
msgid "Still having questions? Contact %sSupport%s."
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: core/lib/wpbc_all_translations.php:
|
4211 |
#, php-format
|
4212 |
msgid "Need even more functionality? Check %s higher versions %s"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
#: core/lib/wpbc_all_translations.php:
|
4216 |
msgid "This field is required"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
-
#: core/lib/wpbc_all_translations.php:
|
4220 |
msgid "This checkbox must be checked"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
#: core/lib/wpbc_all_translations.php:
|
4224 |
msgid "At least one option must be selected"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: core/lib/wpbc_all_translations.php:
|
4228 |
msgid "Incorrect email field"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: core/lib/wpbc_all_translations.php:
|
4232 |
msgid "Your emails do not match"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: core/lib/wpbc_all_translations.php:
|
4236 |
msgid "Please, select booking date(s) at Calendar."
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: core/lib/wpbc_all_translations.php:
|
4240 |
msgid "Deleting"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: core/lib/wpbc_all_translations.php:
|
4244 |
msgid "Updating"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: core/lib/wpbc_all_translations.php:
|
4248 |
msgid "Saving"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: core/lib/wpbc_all_translations.php:
|
4252 |
msgid "Booking"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#: core/lib/wpbc_all_translations.php:
|
4256 |
msgid "Action is not allowed!"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: core/lib/wpbc_all_translations.php:
|
4260 |
#: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
|
4261 |
#: inc/_bl/admin/page-search.php:770 inc/_bm/admin/api-settings-m.php:567 inc/_bm/m-toolbar.php:62
|
4262 |
-
#: inc/_bm/m-toolbar.php:
|
4263 |
#: inc/_ps/wpbc-booking-select-widget.php:230
|
4264 |
msgid "Standard"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#: core/lib/wpbc_all_translations.php:
|
4268 |
#: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
|
4269 |
#: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
|
4270 |
msgid "Superior"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: core/lib/wpbc_all_translations.php:
|
4274 |
#: inc/_bs/admin/activation-s.php:93
|
4275 |
msgid "Resource #1"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: core/lib/wpbc_all_translations.php:
|
4279 |
#: inc/_bl/admin/activation-l.php:125
|
4280 |
msgid "Presidential Suite"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
-
#: core/lib/wpbc_all_translations.php:
|
4284 |
#: inc/_bs/admin/activation-s.php:94
|
4285 |
msgid "Resource #2"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: core/lib/wpbc_all_translations.php:
|
4289 |
#: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
|
4290 |
msgid "Royal Villa"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
#: core/lib/wpbc_all_translations.php:
|
4294 |
#: inc/_bs/admin/activation-s.php:95
|
4295 |
msgid "Resource #3"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: core/lib/wpbc_all_translations.php:
|
4299 |
msgid ""
|
4300 |
"Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
|
4301 |
"for search results"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: core/lib/wpbc_all_translations.php:
|
4305 |
msgid ""
|
4306 |
"Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
|
4307 |
"1 search results"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: core/lib/wpbc_all_translations.php:
|
4311 |
msgid "Show availability in tooltip"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: core/lib/wpbc_all_translations.php:
|
4315 |
msgid ""
|
4316 |
"Check this box to display the available number of booking resources with a tooltip, when mouse "
|
4317 |
"hovers over each day on the calendar(s)."
|
4318 |
msgstr ""
|
4319 |
|
4320 |
-
#: core/lib/wpbc_all_translations.php:
|
4321 |
msgid "Availability Title"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: core/lib/wpbc_all_translations.php:
|
4325 |
#, php-format
|
4326 |
msgid "Type your %savailability%s description"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
-
#: core/lib/wpbc_all_translations.php:
|
4330 |
#: inc/_bs/admin/api-settings-s.php:516
|
4331 |
msgid "Auto-cancel bookings"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: core/lib/wpbc_all_translations.php:
|
4335 |
#: inc/_bl/admin/api-settings-l.php:131
|
4336 |
msgid ""
|
4337 |
"Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
|
4338 |
"date(s)"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
-
#: core/lib/wpbc_all_translations.php:
|
4342 |
#: inc/_bl/admin/api-settings-l.php:289
|
4343 |
msgid ""
|
4344 |
"Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
|
@@ -4346,128 +4346,128 @@ msgid ""
|
|
4346 |
"approved booking, will be automatically canceled!"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: core/lib/wpbc_all_translations.php:
|
4350 |
msgid "Set capacity based on number of visitors"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
-
#: core/lib/wpbc_all_translations.php:
|
4354 |
msgid ""
|
4355 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
4356 |
"selected visitors."
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: core/lib/wpbc_all_translations.php:
|
4360 |
#: inc/_ps/admin/api-settings-p.php:330 inc/_ps/admin/api-settings-p.php:343
|
4361 |
#, php-format
|
4362 |
msgid "Please read more info about configuration of this parameter %shere%s"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
-
#: core/lib/wpbc_all_translations.php:
|
4366 |
msgid ""
|
4367 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
4368 |
"resource items remaining for each day."
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: core/lib/wpbc_all_translations.php:
|
4372 |
#, php-format
|
4373 |
msgid ""
|
4374 |
"Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
|
4375 |
"of visitors specified on the booking form."
|
4376 |
msgstr ""
|
4377 |
|
4378 |
-
#: core/lib/wpbc_all_translations.php:
|
4379 |
msgid ""
|
4380 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
4381 |
"for the resource, which can be at free booking resource items."
|
4382 |
msgstr ""
|
4383 |
|
4384 |
-
#: core/lib/wpbc_all_translations.php:
|
4385 |
#, php-format
|
4386 |
msgid ""
|
4387 |
"Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
|
4388 |
"visitors specified on the booking form."
|
4389 |
msgstr ""
|
4390 |
|
4391 |
-
#: core/lib/wpbc_all_translations.php:
|
4392 |
msgid "Disable bookings in different booking resources"
|
4393 |
msgstr ""
|
4394 |
|
4395 |
-
#: core/lib/wpbc_all_translations.php:
|
4396 |
msgid ""
|
4397 |
"Check this box to dissable reservations, which can be stored in different booking resources."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: core/lib/wpbc_all_translations.php:
|
4401 |
msgid ""
|
4402 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
4403 |
"show."
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: core/lib/wpbc_all_translations.php:
|
4407 |
#: inc/_ps/p-toolbar.php:1213
|
4408 |
msgid "Parent"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: core/lib/wpbc_all_translations.php:
|
4412 |
#: inc/_ps/p-toolbar.php:1231
|
4413 |
msgid "Priority"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: core/lib/wpbc_all_translations.php:
|
4417 |
msgid "Max visitors"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: core/lib/wpbc_all_translations.php:
|
4421 |
msgid "Single"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#: core/lib/wpbc_all_translations.php:
|
4425 |
msgid "Child"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: core/lib/wpbc_all_translations.php:
|
4429 |
msgid "Setting coupons for discount"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: core/lib/wpbc_all_translations.php:
|
4433 |
-
#: inc/_bm/m-toolbar.php:
|
4434 |
msgid "Create dates filter"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
-
#: core/lib/wpbc_all_translations.php:
|
4438 |
#: inc/_bl/admin/page-coupons.php:871
|
4439 |
msgid "Add New Discount Coupon"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: core/lib/wpbc_all_translations.php:
|
4443 |
#: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
|
4444 |
#: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
|
4445 |
msgid "Bulk Actions"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: core/lib/wpbc_all_translations.php:
|
4449 |
#: inc/_bl/admin/page-coupons.php:1170
|
4450 |
msgid "Coupon Code"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
-
#: core/lib/wpbc_all_translations.php:
|
4454 |
#: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
|
4455 |
msgid "Savings"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: core/lib/wpbc_all_translations.php:
|
4459 |
msgid "Minimum Cost"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: core/lib/wpbc_all_translations.php:
|
4463 |
msgid "Expiration"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: core/lib/wpbc_all_translations.php:
|
4467 |
msgid "Number of usage"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
-
#: core/lib/wpbc_all_translations.php:
|
4471 |
#: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
|
4472 |
#: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
|
4473 |
#: inc/_bm/admin/page-cost.php:648 inc/_bm/admin/page-seasons.php:565
|
@@ -4476,285 +4476,285 @@ msgstr ""
|
|
4476 |
msgid "Select Booking Resource"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
-
#: core/lib/wpbc_all_translations.php:
|
4480 |
#: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
|
4481 |
#: inc/_ps/p-toolbar.php:722
|
4482 |
msgid "All resources"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#: core/lib/wpbc_all_translations.php:
|
4486 |
#: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
|
4487 |
msgid "Coupon"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: core/lib/wpbc_all_translations.php:
|
4491 |
msgid "Enter coupon code."
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: core/lib/wpbc_all_translations.php:
|
4495 |
msgid "Enter number of fixed or percentage savings."
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: core/lib/wpbc_all_translations.php:
|
4499 |
msgid "Expiration Date"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
-
#: core/lib/wpbc_all_translations.php:
|
4503 |
msgid "Select Expiration Date of the coupon."
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: core/lib/wpbc_all_translations.php:
|
4507 |
msgid "Minimum Booking Cost"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: core/lib/wpbc_all_translations.php:
|
4511 |
msgid "Enter minimum booking cost, when coupon is applicable."
|
4512 |
msgstr ""
|
4513 |
|
4514 |
-
#: core/lib/wpbc_all_translations.php:
|
4515 |
msgid "Maximum number of usage"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: core/lib/wpbc_all_translations.php:
|
4519 |
msgid "Enter maximum number of times, when coupon is applicable."
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: core/lib/wpbc_all_translations.php:
|
4523 |
msgid "Select booking resources, where is possible to apply this coupon code."
|
4524 |
msgstr ""
|
4525 |
|
4526 |
-
#: core/lib/wpbc_all_translations.php:
|
4527 |
#: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
|
4528 |
#: inc/_ps/p-toolbar.php:1157
|
4529 |
msgid "Add New"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
-
#: core/lib/wpbc_all_translations.php:
|
4533 |
#: inc/_bl/admin/page-search.php:126 inc/_bm/admin/page-cost-advanced.php:692
|
4534 |
#: inc/_ps/admin/page-settings-form.php:673 inc/gateways/page-gateways.php:1067
|
4535 |
msgid "Use these shortcodes for customization: "
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: core/lib/wpbc_all_translations.php:
|
4539 |
#, php-format
|
4540 |
msgid "%s - search inside posts/pages which are part of this category, "
|
4541 |
msgstr ""
|
4542 |
|
4543 |
-
#: core/lib/wpbc_all_translations.php:
|
4544 |
#, php-format
|
4545 |
msgid "%s - search inside posts/pages which have this tag, "
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: core/lib/wpbc_all_translations.php:
|
4549 |
#: inc/_bl/admin/page-search.php:142
|
4550 |
#, php-format
|
4551 |
msgid "%s - check-in date, "
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: core/lib/wpbc_all_translations.php:
|
4555 |
#: inc/_bl/admin/page-search.php:143
|
4556 |
#, php-format
|
4557 |
msgid "%s - check-out date, "
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: core/lib/wpbc_all_translations.php:
|
4561 |
#, php-format
|
4562 |
msgid "%s - default selection number of visitors, "
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: core/lib/wpbc_all_translations.php:
|
4566 |
#, php-format
|
4567 |
msgid "Example: %s - custom number of visitor selections\""
|
4568 |
msgstr ""
|
4569 |
|
4570 |
-
#: core/lib/wpbc_all_translations.php:
|
4571 |
#, php-format
|
4572 |
msgid "%s - search button, "
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: core/lib/wpbc_all_translations.php:
|
4576 |
#: inc/_bl/admin/page-search.php:148
|
4577 |
msgid "HTML tags is accepted."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: core/lib/wpbc_all_translations.php:
|
4581 |
#, php-format
|
4582 |
msgid "%s - resource title, "
|
4583 |
msgstr ""
|
4584 |
|
4585 |
-
#: core/lib/wpbc_all_translations.php:
|
4586 |
#: inc/_bl/admin/page-search.php:129
|
4587 |
#, php-format
|
4588 |
msgid "%s - link to the page with booking form, "
|
4589 |
msgstr ""
|
4590 |
|
4591 |
-
#: core/lib/wpbc_all_translations.php:
|
4592 |
#, php-format
|
4593 |
msgid "%s - availability of booking resource, "
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: core/lib/wpbc_all_translations.php:
|
4597 |
#, php-format
|
4598 |
msgid "%s - maximum number of visitors for the booking resource, "
|
4599 |
msgstr ""
|
4600 |
|
4601 |
-
#: core/lib/wpbc_all_translations.php:
|
4602 |
#, php-format
|
4603 |
msgid "%s - cost of booking the resource, "
|
4604 |
msgstr ""
|
4605 |
|
4606 |
-
#: core/lib/wpbc_all_translations.php:
|
4607 |
#, php-format
|
4608 |
msgid "%s - featured image, taken from the featured image associated with the post, "
|
4609 |
msgstr ""
|
4610 |
|
4611 |
-
#: core/lib/wpbc_all_translations.php:
|
4612 |
#, php-format
|
4613 |
msgid "%s - booking info, taken from the excerpt associated with the post, "
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: core/lib/wpbc_all_translations.php:
|
4617 |
#: inc/_ps/form/class-wpbc-form-help.php:677
|
4618 |
msgid "Full cost of the booking."
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: core/lib/wpbc_all_translations.php:
|
4622 |
#: inc/_ps/form/class-wpbc-form-help.php:679
|
4623 |
msgid "Cost of the booking for the selected dates only."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
-
#: core/lib/wpbc_all_translations.php:
|
4627 |
#: inc/_ps/form/class-wpbc-form-help.php:681
|
4628 |
msgid "Additional cost, which depends on the fields selection in the form."
|
4629 |
msgstr ""
|
4630 |
|
4631 |
-
#: core/lib/wpbc_all_translations.php:
|
4632 |
#: inc/_ps/form/class-wpbc-form-help.php:683
|
4633 |
msgid "The deposit cost of the booking."
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: core/lib/wpbc_all_translations.php:
|
4637 |
#: inc/_ps/form/class-wpbc-form-help.php:685
|
4638 |
msgid "Balance cost of the booking - difference between deposit and full cost."
|
4639 |
msgstr ""
|
4640 |
|
4641 |
-
#: core/lib/wpbc_all_translations.php:
|
4642 |
msgid "hour(s)"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#: core/lib/wpbc_all_translations.php:
|
4646 |
#: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
|
4647 |
msgid "day(s)"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
-
#: core/lib/wpbc_all_translations.php:
|
4651 |
msgid "Cache expiration"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: core/lib/wpbc_all_translations.php:
|
4655 |
msgid "Select time of cache expiration"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: core/lib/wpbc_all_translations.php:
|
4659 |
#: inc/_bl/admin/page-search.php:355
|
4660 |
msgid "Search Settings"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#: core/lib/wpbc_all_translations.php:
|
4664 |
msgid "Cache Updated"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
-
#: core/lib/wpbc_all_translations.php:
|
4668 |
#: inc/_bl/admin/page-search.php:487
|
4669 |
msgid "Search Availability Form"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: core/lib/wpbc_all_translations.php:
|
4673 |
-
#: inc/_bl/admin/page-search.php:505 js/wpbc-gutenberg.js:
|
4674 |
msgid "Search Results"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: core/lib/wpbc_all_translations.php:
|
4678 |
#: inc/_bl/admin/page-search.php:532
|
4679 |
msgid "Search Cache"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: core/lib/wpbc_all_translations.php:
|
4683 |
#, php-format
|
4684 |
msgid ""
|
4685 |
"If you do not see search results at front-end side of your website, please check troubleshooting "
|
4686 |
"instruction %shere%s"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: core/lib/wpbc_all_translations.php:
|
4690 |
msgid "CSS customization of search form and search results you can make at this file"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: core/lib/wpbc_all_translations.php:
|
4694 |
#: inc/_bl/admin/page-search.php:748
|
4695 |
msgid "Select Template"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
-
#: core/lib/wpbc_all_translations.php:
|
4699 |
msgid "Inlinee Search Form Template"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: core/lib/wpbc_all_translations.php:
|
4703 |
msgid "Horizontal Search Form Template"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
-
#: core/lib/wpbc_all_translations.php:
|
4707 |
msgid "Standard Search Form Template"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
-
#: core/lib/wpbc_all_translations.php:
|
4711 |
#: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
|
4712 |
#: inc/_ps/admin/page-settings-form.php:507
|
4713 |
msgid "Reset"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: core/lib/wpbc_all_translations.php:
|
4717 |
#: inc/_ps/admin/page-settings-form.php:508
|
4718 |
msgid "Reset current Form"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: core/lib/wpbc_all_translations.php:
|
4722 |
msgid "Cache will expire:"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: core/lib/wpbc_all_translations.php:
|
4726 |
#, php-format
|
4727 |
msgid "Found: %s booking forms inside of posts or pages "
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: core/lib/wpbc_all_translations.php:
|
4731 |
msgid "Page"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: core/lib/wpbc_all_translations.php:
|
4735 |
msgid "Reset Search Cache"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: core/lib/wpbc_all_translations.php:
|
4739 |
msgid ""
|
4740 |
"Try selecting fewer visitors. The number of visitors may be more than the number of available "
|
4741 |
"units on selected day(s)!"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
-
#: core/lib/wpbc_all_translations.php:
|
4745 |
msgid "coupon"
|
4746 |
msgstr ""
|
4747 |
|
4748 |
-
#: core/lib/wpbc_all_translations.php:
|
4749 |
msgid "discount"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
-
#: core/lib/wpbc_all_translations.php:
|
4753 |
msgid "Please select check-in and check-out days!"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
-
#: core/lib/wpbc_all_translations.php:
|
4757 |
-
#: inc/_bl/biz_l.php:
|
4758 |
#, php-format
|
4759 |
msgid ""
|
4760 |
"Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
|
@@ -4762,173 +4762,173 @@ msgid ""
|
|
4762 |
"page and try other days."
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: core/lib/wpbc_all_translations.php:
|
4766 |
#, php-format
|
4767 |
msgid "The folowing pending booking(s): %s deleted."
|
4768 |
msgstr ""
|
4769 |
|
4770 |
-
#: core/lib/wpbc_all_translations.php:
|
4771 |
msgid "Book now"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: core/lib/wpbc_all_translations.php:
|
4775 |
#: inc/_bl/wpdev-booking-search-widget.php:67
|
4776 |
msgid "Search availability"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#: core/lib/wpbc_all_translations.php:
|
4780 |
msgid "Search results."
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#: core/lib/wpbc_all_translations.php:
|
4784 |
msgid "Nothing found."
|
4785 |
msgstr ""
|
4786 |
|
4787 |
-
#: core/lib/wpbc_all_translations.php:
|
4788 |
msgid "Title of search widget"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
-
#: core/lib/wpbc_all_translations.php:
|
4792 |
msgid "Title of search results"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
-
#: core/lib/wpbc_all_translations.php:
|
4796 |
#, php-format
|
4797 |
msgid "Please type the %sTitle of search results%s."
|
4798 |
msgstr ""
|
4799 |
|
4800 |
-
#: core/lib/wpbc_all_translations.php:
|
4801 |
msgid "Nothing found message"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: core/lib/wpbc_all_translations.php:
|
4805 |
#, php-format
|
4806 |
msgid "Please type the %smessage ,what is showing, when nothing found%s."
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#: core/lib/wpbc_all_translations.php:
|
4810 |
msgid "URL of Search Results"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: core/lib/wpbc_all_translations.php:
|
4814 |
#, php-format
|
4815 |
msgid ""
|
4816 |
"Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
|
4817 |
"show."
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: core/lib/wpbc_all_translations.php:
|
4821 |
#: inc/_mu/multiuser.php:634
|
4822 |
msgid "Weekend"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
-
#: core/lib/wpbc_all_translations.php:
|
4826 |
#: inc/_mu/multiuser.php:636
|
4827 |
msgid "High season"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: core/lib/wpbc_all_translations.php:
|
4831 |
msgid "Limit available days from today"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: core/lib/wpbc_all_translations.php:
|
4835 |
msgid "Select number of available days in calendar start from today."
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: core/lib/wpbc_all_translations.php:
|
4839 |
msgid "Unavailable time before / after booking"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: core/lib/wpbc_all_translations.php:
|
4843 |
msgid ""
|
4844 |
"This feature is applying only for bookings for specific timeslots, or if activated check in/out "
|
4845 |
"time option."
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: core/lib/wpbc_all_translations.php:
|
4849 |
#: inc/_bm/admin/api-settings-m.php:134
|
4850 |
msgid "Before booking"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: core/lib/wpbc_all_translations.php:
|
4854 |
#: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
|
4855 |
#: inc/_bm/admin/api-settings-m.php:144
|
4856 |
msgid "Select unavailable time interval."
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: core/lib/wpbc_all_translations.php:
|
4860 |
#: inc/_bm/admin/api-settings-m.php:143
|
4861 |
msgid "After booking"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
-
#: core/lib/wpbc_all_translations.php:
|
4865 |
msgid "Showing cost in date cell"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
-
#: core/lib/wpbc_all_translations.php:
|
4869 |
#, php-format
|
4870 |
msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: core/lib/wpbc_all_translations.php:
|
4874 |
msgid "Currency symbol"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: core/lib/wpbc_all_translations.php:
|
4878 |
#, php-format
|
4879 |
msgid ""
|
4880 |
"Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
|
4881 |
"currency symbols%s"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
-
#: core/lib/wpbc_all_translations.php:
|
4885 |
msgid "Showing cost in tooltip"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: core/lib/wpbc_all_translations.php:
|
4889 |
msgid ""
|
4890 |
" Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
|
4891 |
"calendar(s)."
|
4892 |
msgstr ""
|
4893 |
|
4894 |
-
#: core/lib/wpbc_all_translations.php:
|
4895 |
msgid "Cost Title"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
-
#: core/lib/wpbc_all_translations.php:
|
4899 |
#, php-format
|
4900 |
msgid "Type your %scost%s description"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
-
#: core/lib/wpbc_all_translations.php:
|
4904 |
-
#: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:
|
4905 |
msgid "Custom Forms"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: core/lib/wpbc_all_translations.php:
|
4909 |
msgid "Configuration of availability for booking resources"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: core/lib/wpbc_all_translations.php:
|
4913 |
msgid "Availability Settings"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: core/lib/wpbc_all_translations.php:
|
4917 |
#: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1186
|
4918 |
msgid "Show Children Resources"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
-
#: core/lib/wpbc_all_translations.php:
|
4922 |
#: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1188
|
4923 |
msgid "Hide Children Resources"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
-
#: core/lib/wpbc_all_translations.php:
|
4927 |
#: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
|
4928 |
msgid "Set Availability"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#: core/lib/wpbc_all_translations.php:
|
4932 |
#: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
|
4933 |
#, php-format
|
4934 |
msgid ""
|
@@ -4936,681 +4936,681 @@ msgid ""
|
|
4936 |
"booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
|
4937 |
msgstr ""
|
4938 |
|
4939 |
-
#: core/lib/wpbc_all_translations.php:
|
4940 |
#: inc/_bm/admin/page-cost.php:581 inc/_ps/admin/page-resources.php:463
|
4941 |
msgid "Resource Name"
|
4942 |
msgstr ""
|
4943 |
|
4944 |
-
#: core/lib/wpbc_all_translations.php:
|
4945 |
#: inc/_bm/admin/page-availability.php:895
|
4946 |
msgid "All days"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
-
#: core/lib/wpbc_all_translations.php:
|
4950 |
#: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
|
4951 |
#: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
|
4952 |
#: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
|
4953 |
msgid "available"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
-
#: core/lib/wpbc_all_translations.php:
|
4957 |
#: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
|
4958 |
#: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
|
4959 |
#: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
|
4960 |
msgid "unavailable"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: core/lib/wpbc_all_translations.php:
|
4964 |
#, php-format
|
4965 |
msgid "and %s on seasons:"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: core/lib/wpbc_all_translations.php:
|
4969 |
#, php-format
|
4970 |
msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: core/lib/wpbc_all_translations.php:
|
4974 |
#: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
|
4975 |
#: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
|
4976 |
#: inc/_bm/admin/page-cost-valuation.php:148
|
4977 |
msgid "Hide season filters"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
-
#: core/lib/wpbc_all_translations.php:
|
4981 |
#: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
|
4982 |
#: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
|
4983 |
#: inc/_bm/admin/page-cost-valuation.php:153
|
4984 |
msgid "Show all exist season filters"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
-
#: core/lib/wpbc_all_translations.php:
|
4988 |
#: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:870
|
4989 |
msgid "Enabled"
|
4990 |
msgstr ""
|
4991 |
|
4992 |
-
#: core/lib/wpbc_all_translations.php:
|
4993 |
msgid "Customization of additional cost, which depend from form fields"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
-
#: core/lib/wpbc_all_translations.php:
|
4997 |
msgid "Advanced Cost Settings"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
-
#: core/lib/wpbc_all_translations.php:
|
5001 |
msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
|
5002 |
msgstr ""
|
5003 |
|
5004 |
-
#: core/lib/wpbc_all_translations.php:
|
5005 |
#, php-format
|
5006 |
msgid ""
|
5007 |
"Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
|
5008 |
"%sbooking form%s."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: core/lib/wpbc_all_translations.php:
|
5012 |
#: inc/_bm/admin/page-cost-deposit.php:181
|
5013 |
msgid "Deposit type"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
-
#: core/lib/wpbc_all_translations.php:
|
5017 |
msgid "of total cost"
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#: core/lib/wpbc_all_translations.php:
|
5021 |
#: inc/_bs/admin/api-settings-s.php:898
|
5022 |
msgid "night"
|
5023 |
msgstr ""
|
5024 |
|
5025 |
-
#: core/lib/wpbc_all_translations.php:
|
5026 |
msgid "as additional sum"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
-
#: core/lib/wpbc_all_translations.php:
|
5030 |
msgid "Enter additional cost in formats:"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
-
#: core/lib/wpbc_all_translations.php:
|
5034 |
#, php-format
|
5035 |
msgid ""
|
5036 |
"For example, if the original cost of the booking is %s, then after applying additional costs the "
|
5037 |
"total cost will be folowing"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
-
#: core/lib/wpbc_all_translations.php:
|
5041 |
msgid "Enter fixed cost"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
-
#: core/lib/wpbc_all_translations.php:
|
5045 |
#: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
|
5046 |
#: inc/_bm/admin/page-cost-advanced.php:681
|
5047 |
#, php-format
|
5048 |
msgid "%s, then total cost will be %s"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#: core/lib/wpbc_all_translations.php:
|
5052 |
msgid "Enter percentage of the entire booking"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: core/lib/wpbc_all_translations.php:
|
5056 |
msgid "Enter fixed amount for each selected day"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: core/lib/wpbc_all_translations.php:
|
5060 |
#, php-format
|
5061 |
msgid "%s, then total cost will be (if selected 3 days) %s"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
-
#: core/lib/wpbc_all_translations.php:
|
5065 |
#: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
|
5066 |
#: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
|
5067 |
msgid "or"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: core/lib/wpbc_all_translations.php:
|
5071 |
msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
-
#: core/lib/wpbc_all_translations.php:
|
5075 |
#: inc/_bm/admin/page-cost-advanced.php:687
|
5076 |
#, php-format
|
5077 |
msgid "Please check more info about configuration of this cost settings on this %spage%s."
|
5078 |
msgstr ""
|
5079 |
|
5080 |
-
#: core/lib/wpbc_all_translations.php:
|
5081 |
msgid "Set Deposit"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
-
#: core/lib/wpbc_all_translations.php:
|
5085 |
msgid "deposit payment for booking resource"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
-
#: core/lib/wpbc_all_translations.php:
|
5089 |
#: inc/_bm/admin/page-cost-deposit.php:162
|
5090 |
msgid "Deposit amount"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
-
#: core/lib/wpbc_all_translations.php:
|
5094 |
#: inc/_bm/admin/page-cost-early-late-booking.php:203
|
5095 |
#: inc/_bm/admin/page-cost-early-late-booking.php:404
|
5096 |
msgid "fixed total in"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: core/lib/wpbc_all_translations.php:
|
5100 |
#: inc/_bm/admin/page-cost-early-late-booking.php:204
|
5101 |
#: inc/_bm/admin/page-cost-early-late-booking.php:405
|
5102 |
msgid "of payment"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: core/lib/wpbc_all_translations.php:
|
5106 |
#: inc/_bm/admin/page-cost-early-late-booking.php:213
|
5107 |
#: inc/_bm/admin/page-cost-early-late-booking.php:414
|
5108 |
msgid "Conditions"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: core/lib/wpbc_all_translations.php:
|
5112 |
#, php-format
|
5113 |
msgid ""
|
5114 |
"Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: core/lib/wpbc_all_translations.php:
|
5118 |
#, php-format
|
5119 |
msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: core/lib/wpbc_all_translations.php:
|
5123 |
#: inc/_bm/admin/page-cost-early-late-booking.php:280
|
5124 |
#: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
|
5125 |
msgid "Any days"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
-
#: core/lib/wpbc_all_translations.php:
|
5129 |
msgid "Deposit payment total"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
-
#: core/lib/wpbc_all_translations.php:
|
5133 |
msgid "Set Rates"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
-
#: core/lib/wpbc_all_translations.php:
|
5137 |
#: inc/_bm/admin/page-cost.php:676 inc/_bm/admin/page-cost.php:677
|
5138 |
msgid "Rates"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
-
#: core/lib/wpbc_all_translations.php:
|
5142 |
msgid "Seasonal price"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
-
#: core/lib/wpbc_all_translations.php:
|
5146 |
#: inc/_bm/admin/page-cost-valuation.php:198
|
5147 |
msgid "Season"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
-
#: core/lib/wpbc_all_translations.php:
|
5151 |
#, php-format
|
5152 |
msgid ""
|
5153 |
"Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
|
5154 |
"booking resource (%s) or %sAdd a new seasonal filter%s"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
-
#: core/lib/wpbc_all_translations.php:
|
5158 |
#: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
|
5159 |
msgid "Set Valuation Days"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: core/lib/wpbc_all_translations.php:
|
5163 |
#: inc/_mu/admin/page-users.php:437
|
5164 |
msgid "Status"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#: core/lib/wpbc_all_translations.php:
|
5168 |
msgid "Costs"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: core/lib/wpbc_all_translations.php:
|
5172 |
msgid "Add new cost"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: core/lib/wpbc_all_translations.php:
|
5176 |
#, php-format
|
5177 |
msgid ""
|
5178 |
"Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
|
5179 |
"the list."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: core/lib/wpbc_all_translations.php:
|
5183 |
#, php-format
|
5184 |
msgid ""
|
5185 |
"Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
|
5186 |
"terms %s"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
-
#: core/lib/wpbc_all_translations.php:
|
5190 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
|
5191 |
msgid "Together"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: core/lib/wpbc_all_translations.php:
|
5195 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
|
5196 |
#: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
|
5197 |
msgid "For"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
-
#: core/lib/wpbc_all_translations.php:
|
5201 |
#, php-format
|
5202 |
msgid "%s and %s terms have higher priority than a range %s days."
|
5203 |
msgstr ""
|
5204 |
|
5205 |
-
#: core/lib/wpbc_all_translations.php:
|
5206 |
#, php-format
|
5207 |
msgid "%s - definition of check-out date."
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: core/lib/wpbc_all_translations.php:
|
5211 |
#: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
|
5212 |
#: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
|
5213 |
#: inc/_ps/form/class-wpbc-form-help.php:535
|
5214 |
msgid "Example"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
-
#: core/lib/wpbc_all_translations.php:
|
5218 |
msgid ""
|
5219 |
"Specific cost will take affect, only if it active (the box at the left side is checked) and if "
|
5220 |
"\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#: core/lib/wpbc_all_translations.php:
|
5224 |
#: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
|
5225 |
#: inc/_bm/biz_m.php:252
|
5226 |
msgid " for all days!"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: core/lib/wpbc_all_translations.php:
|
5230 |
#: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
|
5231 |
msgid "from the cost of 1 day "
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: core/lib/wpbc_all_translations.php:
|
5235 |
#: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
|
5236 |
msgid "per 1 day"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: core/lib/wpbc_all_translations.php:
|
5240 |
#: inc/_bm/admin/page-seasons.php:1564
|
5241 |
msgid "to"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
-
#: core/lib/wpbc_all_translations.php:
|
5245 |
#: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
|
5246 |
#, php-format
|
5247 |
msgid "Additional cost in %s per 1 day"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: core/lib/wpbc_all_translations.php:
|
5251 |
msgid "Customization of rates, valuation days cost and deposit amount "
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: core/lib/wpbc_all_translations.php:
|
5255 |
msgid "Costs and Rates Settings"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: core/lib/wpbc_all_translations.php:
|
5259 |
#: inc/_bm/admin/page-cost.php:228
|
5260 |
msgid "Set Rate"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: core/lib/wpbc_all_translations.php:
|
5264 |
#: inc/_bm/admin/page-cost.php:230
|
5265 |
msgid "Set Deposit Amount"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
-
#: core/lib/wpbc_all_translations.php:
|
5269 |
#: inc/_bm/admin/page-cost.php:684
|
5270 |
msgid "Valuation days"
|
5271 |
msgstr ""
|
5272 |
|
5273 |
-
#: core/lib/wpbc_all_translations.php:
|
5274 |
#: inc/_bm/admin/page-cost.php:691 inc/gateways/page-gateways.php:1435
|
5275 |
msgid "Deposit"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: core/lib/wpbc_all_translations.php:
|
5279 |
msgid "Customizaton of Season Filters"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: core/lib/wpbc_all_translations.php:
|
5283 |
#: inc/_bm/admin/page-seasons.php:815
|
5284 |
msgid "Specific Dates Filter"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: core/lib/wpbc_all_translations.php:
|
5288 |
#: inc/_bm/admin/page-seasons.php:821
|
5289 |
msgid "Conditional Dates Filter"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: core/lib/wpbc_all_translations.php:
|
5293 |
#: inc/_bm/admin/page-seasons.php:1257
|
5294 |
msgid "Filter Name"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
-
#: core/lib/wpbc_all_translations.php:
|
5298 |
#: inc/_bm/admin/page-seasons.php:1258
|
5299 |
msgid "Type filter name"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: core/lib/wpbc_all_translations.php:
|
5303 |
msgid "Weekdays"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#: core/lib/wpbc_all_translations.php:
|
5307 |
msgid "Months"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
-
#: core/lib/wpbc_all_translations.php:
|
5311 |
#: inc/_bm/admin/page-seasons.php:1283
|
5312 |
msgid "January"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
-
#: core/lib/wpbc_all_translations.php:
|
5316 |
#: inc/_bm/admin/page-seasons.php:1284
|
5317 |
msgid "February"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: core/lib/wpbc_all_translations.php:
|
5321 |
#: inc/_bm/admin/page-seasons.php:1285
|
5322 |
msgid "March"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
-
#: core/lib/wpbc_all_translations.php:
|
5326 |
#: inc/_bm/admin/page-seasons.php:1286
|
5327 |
msgid "April"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
-
#: core/lib/wpbc_all_translations.php:
|
5331 |
#: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
|
5332 |
msgid "May"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
-
#: core/lib/wpbc_all_translations.php:
|
5336 |
#: inc/_bm/admin/page-seasons.php:1288
|
5337 |
msgid "June"
|
5338 |
msgstr ""
|
5339 |
|
5340 |
-
#: core/lib/wpbc_all_translations.php:
|
5341 |
#: inc/_bm/admin/page-seasons.php:1289
|
5342 |
msgid "July"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: core/lib/wpbc_all_translations.php:
|
5346 |
#: inc/_bm/admin/page-seasons.php:1290
|
5347 |
msgid "August"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#: core/lib/wpbc_all_translations.php:
|
5351 |
#: inc/_bm/admin/page-seasons.php:1291
|
5352 |
msgid "September"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
-
#: core/lib/wpbc_all_translations.php:
|
5356 |
#: inc/_bm/admin/page-seasons.php:1292
|
5357 |
msgid "October"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: core/lib/
|
5361 |
#: inc/_bm/admin/page-seasons.php:1293
|
5362 |
msgid "November"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: core/lib/
|
5366 |
#: inc/_bm/admin/page-seasons.php:1294
|
5367 |
msgid "December"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
-
#: core/lib/wpbc_all_translations1.php:
|
5371 |
msgid "Years"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: core/lib/wpbc_all_translations1.php:
|
5375 |
#: inc/_bm/admin/page-seasons.php:1487
|
5376 |
msgid "Mo"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#: core/lib/wpbc_all_translations1.php:
|
5380 |
#: inc/_bm/admin/page-seasons.php:1487
|
5381 |
msgid "Tu"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
-
#: core/lib/wpbc_all_translations1.php:
|
5385 |
#: inc/_bm/admin/page-seasons.php:1487
|
5386 |
msgid "We"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
-
#: core/lib/wpbc_all_translations1.php:
|
5390 |
#: inc/_bm/admin/page-seasons.php:1487
|
5391 |
msgid "Th"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#: core/lib/wpbc_all_translations1.php:
|
5395 |
#: inc/_bm/admin/page-seasons.php:1487
|
5396 |
msgid "Fr"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#: core/lib/wpbc_all_translations1.php:
|
5400 |
#: inc/_bm/admin/page-seasons.php:1487
|
5401 |
msgid "Sa"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: core/lib/wpbc_all_translations1.php:
|
5405 |
#: inc/_bm/admin/page-seasons.php:1487
|
5406 |
msgid "Su"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
-
#: core/lib/wpbc_all_translations1.php:
|
5410 |
msgid "Jan"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: core/lib/wpbc_all_translations1.php:
|
5414 |
msgid "Feb"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: core/lib/wpbc_all_translations1.php:
|
5418 |
msgid "Mar"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: core/lib/wpbc_all_translations1.php:
|
5422 |
msgid "Apr"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: core/lib/wpbc_all_translations1.php:
|
5426 |
msgid "Jun"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: core/lib/wpbc_all_translations1.php:
|
5430 |
msgid "Jul"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: core/lib/wpbc_all_translations1.php:
|
5434 |
msgid "Aug"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: core/lib/wpbc_all_translations1.php:
|
5438 |
msgid "Sep"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: core/lib/wpbc_all_translations1.php:
|
5442 |
msgid "Oct"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: core/lib/wpbc_all_translations1.php:
|
5446 |
msgid "Nov"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: core/lib/wpbc_all_translations1.php:
|
5450 |
msgid "Dec"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: core/lib/wpbc_all_translations1.php:
|
5454 |
#: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
|
5455 |
#: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
|
5456 |
msgid "No days"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: core/lib/wpbc_all_translations1.php:
|
5460 |
msgid "time"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: core/lib/wpbc_all_translations1.php:
|
5464 |
msgid "Every"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#: core/lib/wpbc_all_translations1.php:
|
5468 |
msgid "Each day "
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: core/lib/wpbc_all_translations1.php:
|
5472 |
msgid "on each day "
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: core/lib/wpbc_all_translations1.php:
|
5476 |
msgid "On each "
|
5477 |
msgstr ""
|
5478 |
|
5479 |
-
#: core/lib/wpbc_all_translations1.php:
|
5480 |
msgid "on each "
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: core/lib/wpbc_all_translations1.php:
|
5484 |
msgid "of every month "
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: core/lib/wpbc_all_translations1.php:
|
5488 |
msgid "of"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: core/lib/wpbc_all_translations1.php:
|
5492 |
msgid "for all days!"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: core/lib/wpbc_all_translations1.php:
|
5496 |
msgid "Standard booking resource cost"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: core/lib/wpbc_all_translations1.php:
|
5500 |
msgid "Total booking resource cost"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: core/lib/wpbc_all_translations1.php:
|
5504 |
msgid "Delete selected booking form"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: core/lib/wpbc_all_translations1.php:
|
5508 |
msgid "Do you really want to delete selected booking form ?"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: core/lib/wpbc_all_translations1.php:
|
5512 |
msgid "Add New Custom Form"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: core/lib/wpbc_all_translations1.php:
|
5516 |
msgid "Type the name of booking form"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: core/lib/wpbc_all_translations1.php:
|
5520 |
msgid "Create"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: core/lib/wpbc_all_translations1.php:
|
5524 |
msgid "Create new form"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: core/lib/wpbc_all_translations1.php:
|
5528 |
msgid "There are no extended booking forms"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: core/lib/wpbc_all_translations1.php:
|
5532 |
msgid "Create conditional days filter"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
-
#: core/lib/wpbc_all_translations1.php:
|
5536 |
#: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
|
5537 |
msgid "Apartment#1"
|
5538 |
msgstr ""
|
5539 |
|
5540 |
-
#: core/lib/wpbc_all_translations1.php:
|
5541 |
#: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
|
5542 |
msgid "Apartment#2"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#: core/lib/wpbc_all_translations1.php:
|
5546 |
#: inc/_ps/admin/activation-p.php:48
|
5547 |
msgid "Apartment#3"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: core/lib/wpbc_all_translations1.php:
|
5551 |
msgid "Range days"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: core/lib/wpbc_all_translations1.php:
|
5555 |
#, php-format
|
5556 |
msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: core/lib/wpbc_all_translations1.php:
|
5560 |
#, php-format
|
5561 |
msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
-
#: core/lib/wpbc_all_translations1.php:
|
5565 |
#: inc/_bs/admin/api-settings-s.php:138
|
5566 |
msgid "Days selection number"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#: core/lib/wpbc_all_translations1.php:
|
5570 |
#, php-format
|
5571 |
msgid "Type your %snumber of days for range selection%s"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
-
#: core/lib/wpbc_all_translations1.php:
|
5575 |
#: inc/_bs/admin/api-settings-s.php:211
|
5576 |
msgid "Specific day(s) of week"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: core/lib/wpbc_all_translations1.php:
|
5580 |
#: inc/_bs/admin/api-settings-s.php:215
|
5581 |
msgid "Any day of week"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: core/lib/wpbc_all_translations1.php:
|
5585 |
#: inc/_bs/admin/api-settings-s.php:223
|
5586 |
msgid "Start day of range"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
-
#: core/lib/wpbc_all_translations1.php:
|
5590 |
#: inc/_bs/admin/api-settings-s.php:252
|
5591 |
msgid "Select your start day of range selection at week"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: core/lib/wpbc_all_translations1.php:
|
5595 |
#: inc/_bs/admin/api-settings-s.php:157
|
5596 |
msgid "Min"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: core/lib/wpbc_all_translations1.php:
|
5600 |
#: inc/_bs/admin/api-settings-s.php:175
|
5601 |
msgid "Max"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: core/lib/wpbc_all_translations1.php:
|
5605 |
#, php-format
|
5606 |
msgid "Select your %sminimum and maximum number of days for range selection%s"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: core/lib/wpbc_all_translations1.php:
|
5610 |
msgid "Specific days selections"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: core/lib/wpbc_all_translations1.php:
|
5614 |
#, php-format
|
5615 |
msgid ""
|
5616 |
"Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
|
@@ -5618,633 +5618,633 @@ msgid ""
|
|
5618 |
"this: %s) or combination (example:%s, its the same like this: %s)"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: core/lib/wpbc_all_translations1.php:
|
5622 |
msgid "Use time selections as recurrent time slots"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: core/lib/wpbc_all_translations1.php:
|
5626 |
msgid ""
|
5627 |
"Check this box if you want to use recurrent time to reserve several days. This means that middle "
|
5628 |
"days will be partially booked by actual times, otherwise the time in the booking form will be "
|
5629 |
"used as check-in/check-out time for the first and last day of the reservation."
|
5630 |
msgstr ""
|
5631 |
|
5632 |
-
#: core/lib/wpbc_all_translations1.php:
|
5633 |
msgid "Check this option, to use check in/out time during booking process. "
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#: core/lib/wpbc_all_translations1.php:
|
5637 |
#, php-format
|
5638 |
msgid "%s Important!%s This will overwrite any times selection in your booking form."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
-
#: core/lib/wpbc_all_translations1.php:
|
5642 |
msgid "Check-in time"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
-
#: core/lib/wpbc_all_translations1.php:
|
5646 |
#, php-format
|
5647 |
msgid "Type your %sCheck-in%s time of booking"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: core/lib/wpbc_all_translations1.php:
|
5651 |
msgid "Check-Out time"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: core/lib/wpbc_all_translations1.php:
|
5655 |
#, php-format
|
5656 |
msgid "Type your %sCheck-Out%s time of booking"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: core/lib/wpbc_all_translations1.php:
|
5660 |
msgid "Change over days as triangles"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#: core/lib/wpbc_all_translations1.php:
|
5664 |
msgid "Check this option, to show change over days as triangles. "
|
5665 |
msgstr ""
|
5666 |
|
5667 |
-
#: core/lib/wpbc_all_translations1.php:
|
5668 |
msgid "Title of booked timeslot(s)"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#: core/lib/wpbc_all_translations1.php:
|
5672 |
#, php-format
|
5673 |
msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: core/lib/wpbc_all_translations1.php:
|
5677 |
msgid "Time Format"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
-
#: core/lib/wpbc_all_translations1.php:
|
5681 |
#, php-format
|
5682 |
msgid ""
|
5683 |
"Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
-
#: core/lib/wpbc_all_translations1.php:
|
5687 |
msgid "Auto approve all new bookings"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#: core/lib/wpbc_all_translations1.php:
|
5691 |
#, php-format
|
5692 |
msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: core/lib/wpbc_all_translations1.php:
|
5696 |
#, php-format
|
5697 |
msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
|
5698 |
msgstr ""
|
5699 |
|
5700 |
-
#: core/lib/wpbc_all_translations1.php:
|
5701 |
msgid "Cancel bookings older"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
-
#: core/lib/wpbc_all_translations1.php:
|
5705 |
msgid "Cancel only pending, unpaid bookings, which are older than this selection."
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: core/lib/wpbc_all_translations1.php:
|
5709 |
msgid "Cancellation email sent"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: core/lib/wpbc_all_translations1.php:
|
5713 |
#, php-format
|
5714 |
msgid "Check this box to %ssend%s cancellation email for this resource."
|
5715 |
msgstr ""
|
5716 |
|
5717 |
-
#: core/lib/wpbc_all_translations1.php:
|
5718 |
#: inc/_bs/admin/api-settings-s.php:560
|
5719 |
msgid "Reason for cancellation"
|
5720 |
msgstr ""
|
5721 |
|
5722 |
-
#: core/lib/wpbc_all_translations1.php:
|
5723 |
#, php-format
|
5724 |
msgid "Type the reason for %scancellation%s for the email template."
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: core/lib/wpbc_all_translations1.php:
|
5728 |
msgid "Payment request"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#: core/lib/wpbc_all_translations1.php:
|
5732 |
msgid "Customization of email template, which is sending to Visitor after payment request"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#: core/lib/wpbc_all_translations1.php:
|
5736 |
msgid "Email with Payment Request which is sending to Visitor."
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: core/lib/wpbc_all_translations1.php:
|
5740 |
msgid "Error! Please reset your check-in/check-out dates above."
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: core/lib/wpbc_all_translations1.php:
|
5744 |
msgid ""
|
5745 |
"Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
|
5746 |
"another date or time."
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: core/lib/wpbc_all_translations1.php:
|
5750 |
msgid ""
|
5751 |
"End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
|
5752 |
"also be earlier that the start time, if only 1 day was selected! Please choose another date or "
|
5753 |
"time."
|
5754 |
msgstr ""
|
5755 |
|
5756 |
-
#: core/lib/wpbc_all_translations1.php:
|
5757 |
msgid "The time(s) may be booked, or already in the past!"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#: core/lib/wpbc_all_translations1.php:
|
5761 |
msgid "Cost saved successfully"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#: core/lib/wpbc_all_translations1.php:
|
5765 |
msgid "Cost is not correct. It must be greater than 0"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
-
#: core/lib/wpbc_all_translations1.php:
|
5769 |
msgid "Request has been sent"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
-
#: core/lib/wpbc_all_translations1.php:
|
5773 |
msgid "Request has failed"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
-
#: core/lib/wpbc_all_translations1.php:
|
5777 |
msgid "The payment status is changed successfully"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
-
#: core/lib/wpbc_all_translations1.php:
|
5781 |
msgid "The changing of payment status is failed"
|
5782 |
msgstr ""
|
5783 |
|
5784 |
-
#: core/lib/wpbc_all_translations1.php:
|
5785 |
msgid "deposit"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
-
#: core/lib/wpbc_all_translations1.php:
|
5789 |
msgid "Total cost"
|
5790 |
msgstr ""
|
5791 |
|
5792 |
-
#: core/lib/wpbc_all_translations1.php:
|
5793 |
msgid "balance"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
-
#: core/lib/wpbc_all_translations1.php:
|
5797 |
#: inc/_bs/s-toolbar.php:94
|
5798 |
msgid "Payment status"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
-
#: core/lib/wpbc_all_translations1.php:
|
5802 |
msgid "Any Status"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
-
#: core/lib/wpbc_all_translations1.php:
|
5806 |
msgid "Unknown Status"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
-
#: core/lib/wpbc_all_translations1.php:
|
5810 |
msgid "Not Completed"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
-
#: core/lib/wpbc_all_translations1.php:
|
5814 |
#: inc/_bs/lib_s.php:333
|
5815 |
msgid "Failed"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
-
#: core/lib/wpbc_all_translations1.php:
|
5819 |
msgid "min"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: core/lib/wpbc_all_translations1.php:
|
5823 |
msgid "max"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
-
#: core/lib/wpbc_all_translations1.php:
|
5827 |
#: inc/_bs/lib_s.php:326
|
5828 |
msgid "Completed"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
-
#: core/lib/wpbc_all_translations1.php:
|
5832 |
msgid "In-Progress"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
-
#: core/lib/wpbc_all_translations1.php:
|
5836 |
msgid "Partially paid"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
-
#: core/lib/wpbc_all_translations1.php:
|
5840 |
msgid "Cancelled"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: core/lib/wpbc_all_translations1.php:
|
5844 |
msgid "Refunded"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: core/lib/wpbc_all_translations1.php:
|
5848 |
msgid "Fraud"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: core/lib/wpbc_all_translations1.php:
|
5852 |
msgid "!Paid OK"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: core/lib/wpbc_all_translations1.php:
|
5856 |
msgid "Unknown status"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: core/lib/wpbc_all_translations1.php:
|
5860 |
msgid "Processed"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: core/lib/wpbc_all_translations1.php:
|
5864 |
msgid "Canceled_Reversal"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: core/lib/wpbc_all_translations1.php:
|
5868 |
msgid "Denied"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: core/lib/wpbc_all_translations1.php:
|
5872 |
msgid "Expired"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: core/lib/wpbc_all_translations1.php:
|
5876 |
msgid "Partially_Refunded"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: core/lib/wpbc_all_translations1.php:
|
5880 |
msgid "Reversed"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: core/lib/wpbc_all_translations1.php:
|
5884 |
msgid "Voided"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#: core/lib/wpbc_all_translations1.php:
|
5888 |
msgid "Not authed"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#: core/lib/wpbc_all_translations1.php:
|
5892 |
msgid "Malformed"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#: core/lib/wpbc_all_translations1.php:
|
5896 |
msgid "Invalid"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#: core/lib/wpbc_all_translations1.php:
|
5900 |
msgid "Abort"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#: core/lib/wpbc_all_translations1.php:
|
5904 |
msgid "Rejected"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
-
#: core/lib/wpbc_all_translations1.php:
|
5908 |
msgid "Suspended"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
-
#: core/lib/wpbc_all_translations1.php:
|
5912 |
msgid "Send payment request to visitor"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: core/lib/wpbc_all_translations1.php:
|
5916 |
#: inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:131 inc/_ps/p-toolbar.php:507
|
5917 |
msgid "Print"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
-
#: core/lib/wpbc_all_translations1.php:
|
5921 |
msgid "Save cost"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
-
#: core/lib/wpbc_all_translations1.php:
|
5925 |
msgid "Change status"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
-
#: core/lib/wpbc_all_translations1.php:
|
5929 |
msgid "Send payment request to customer"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
-
#: core/lib/wpbc_all_translations1.php:
|
5933 |
#, php-format
|
5934 |
msgid "Type your %sreason for payment%s request"
|
5935 |
msgstr ""
|
5936 |
|
5937 |
-
#: core/lib/wpbc_all_translations1.php:
|
5938 |
msgid "Send Request"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
-
#: core/lib/wpbc_all_translations1.php:
|
5942 |
msgid "Auto-fill form"
|
5943 |
msgstr ""
|
5944 |
|
5945 |
-
#: core/lib/wpbc_all_translations1.php:
|
5946 |
msgid "Suite"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
-
#: core/lib/wpbc_all_translations1.php:
|
5950 |
#: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
|
5951 |
msgid "User"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
-
#: core/lib/wpbc_all_translations1.php:
|
5955 |
#: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
|
5956 |
#: inc/_mu/admin/page-users.php:599
|
5957 |
msgid "Super Admin"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
-
#: core/lib/wpbc_all_translations1.php:
|
5961 |
#: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
|
5962 |
#: inc/_mu/admin/page-users.php:607
|
5963 |
msgid "Regular User"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
-
#: core/lib/wpbc_all_translations1.php:
|
5967 |
msgid "Inactive User"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
-
#: core/lib/wpbc_all_translations1.php:
|
5971 |
#: inc/_mu/admin/page-users.php:433
|
5972 |
msgid "Users"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: core/lib/wpbc_all_translations1.php:
|
5976 |
msgid "Manage Users"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: core/lib/wpbc_all_translations1.php:
|
5980 |
msgid "Users Settings"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: core/lib/wpbc_all_translations1.php:
|
5984 |
#: inc/_mu/multiuser.php:649
|
5985 |
msgid "User is Activated"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: core/lib/wpbc_all_translations1.php:
|
5989 |
#: inc/_mu/multiuser.php:699
|
5990 |
msgid "User is Deactivated"
|
5991 |
msgstr ""
|
5992 |
|
5993 |
-
#: core/lib/wpbc_all_translations1.php:
|
5994 |
msgid "User Role"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: core/lib/wpbc_all_translations1.php:
|
5998 |
#: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
|
5999 |
msgid "Set user as"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
-
#: core/lib/wpbc_all_translations1.php:
|
6003 |
msgid "Unlimited"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
-
#: core/lib/wpbc_all_translations1.php:
|
6007 |
#: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
|
6008 |
#: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
|
6009 |
#: inc/_mu/admin/page-users.php:602
|
6010 |
msgid "Do you really want"
|
6011 |
msgstr ""
|
6012 |
|
6013 |
-
#: core/lib/wpbc_all_translations1.php:
|
6014 |
msgid "make user active"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#: core/lib/wpbc_all_translations1.php:
|
6018 |
msgid "Activate"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#: core/lib/wpbc_all_translations1.php:
|
6022 |
msgid "make user inactive"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
-
#: core/lib/wpbc_all_translations1.php:
|
6026 |
msgid "Deactivate"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#: core/lib/wpbc_all_translations1.php:
|
6030 |
msgid "delete configuration"
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#: core/lib/wpbc_all_translations1.php:
|
6034 |
msgid "Delete settings"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
-
#: core/lib/wpbc_all_translations1.php:
|
6038 |
msgid "delete all booking data"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
-
#: core/lib/wpbc_all_translations1.php:
|
6042 |
msgid "Delete data"
|
6043 |
msgstr ""
|
6044 |
|
6045 |
-
#: core/lib/wpbc_all_translations1.php:
|
6046 |
msgid "Work days"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
-
#: core/lib/wpbc_all_translations1.php:
|
6050 |
#, php-format
|
6051 |
msgid ""
|
6052 |
"%sYou do not have permissions for this page.%s Your account is not active, please contact "
|
6053 |
"administrator.%s"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: core/lib/wpbc_all_translations1.php:
|
6057 |
#, php-format
|
6058 |
msgid "%sYou do not have permissions for this booking resources.%s"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
-
#: core/lib/wpbc_all_translations1.php:
|
6062 |
#, php-format
|
6063 |
msgid "%sNo this booking resources.%s"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
-
#: core/lib/wpbc_all_translations1.php:
|
6067 |
msgid "Please, reserve an apartment with fresh flowers."
|
6068 |
msgstr ""
|
6069 |
|
6070 |
-
#: core/lib/wpbc_all_translations1.php:
|
6071 |
msgid "Default booking resource"
|
6072 |
msgstr ""
|
6073 |
|
6074 |
-
#: core/lib/wpbc_all_translations1.php:
|
6075 |
msgid "Select your default booking resource."
|
6076 |
msgstr ""
|
6077 |
|
6078 |
-
#: core/lib/wpbc_all_translations1.php:
|
6079 |
msgid "Resources number per page"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
-
#: core/lib/wpbc_all_translations1.php:
|
6083 |
msgid "Select number of booking resources (single or parent) per page at Resource menu page"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
-
#: core/lib/wpbc_all_translations1.php:
|
6087 |
#: inc/_ps/admin/api-settings-p.php:197
|
6088 |
msgid "Booking title"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
-
#: core/lib/wpbc_all_translations1.php:
|
6092 |
msgid "admin panel"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
-
#: core/lib/wpbc_all_translations1.php:
|
6096 |
#, php-format
|
6097 |
msgid ""
|
6098 |
"Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
|
6099 |
"the shortcodes from the bottom form of Settings Fields page)."
|
6100 |
msgstr ""
|
6101 |
|
6102 |
-
#: core/lib/wpbc_all_translations1.php:
|
6103 |
msgid "front panel"
|
6104 |
msgstr ""
|
6105 |
|
6106 |
-
#: core/lib/wpbc_all_translations1.php:
|
6107 |
#, php-format
|
6108 |
msgid ""
|
6109 |
"Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
|
6110 |
"from the bottom form of Settings Fields page."
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: core/lib/wpbc_all_translations1.php:
|
6114 |
msgid "Booking details in popover"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: core/lib/wpbc_all_translations1.php:
|
6118 |
#, php-format
|
6119 |
msgid ""
|
6120 |
"Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
|
6121 |
"side."
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: core/lib/wpbc_all_translations1.php:
|
6125 |
msgid "semicolon"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: core/lib/wpbc_all_translations1.php:
|
6129 |
msgid "comma"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
-
#: core/lib/wpbc_all_translations1.php:
|
6133 |
msgid "CSV data separator"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
-
#: core/lib/wpbc_all_translations1.php:
|
6137 |
msgid "Select separator of data for export bookings to CSV."
|
6138 |
msgstr ""
|
6139 |
|
6140 |
-
#: core/lib/wpbc_all_translations1.php:
|
6141 |
-
#: js/wpbc-gutenberg.js:
|
6142 |
msgid "URL to edit bookings"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: core/lib/wpbc_all_translations1.php:
|
6146 |
#, php-format
|
6147 |
msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: core/lib/wpbc_all_translations1.php:
|
6151 |
msgid "Change hash after the booking is approved"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
-
#: core/lib/wpbc_all_translations1.php:
|
6155 |
msgid ""
|
6156 |
"Check this box if you want to change the booking hash after approval. When checked, visitor will "
|
6157 |
"not be able to edit or cancel the booking."
|
6158 |
msgstr ""
|
6159 |
|
6160 |
-
#: core/lib/wpbc_all_translations1.php:
|
6161 |
msgid "Modified"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
-
#: core/lib/wpbc_all_translations1.php:
|
6165 |
msgid "Customization of email template, which is sending after modification of booking"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: core/lib/wpbc_all_translations1.php:
|
6169 |
msgid "Email is sending to Visitor after Editing of booking."
|
6170 |
msgstr ""
|
6171 |
|
6172 |
-
#: core/lib/wpbc_all_translations1.php:
|
6173 |
msgid "Customizaton of booking resources"
|
6174 |
msgstr ""
|
6175 |
|
6176 |
-
#: core/lib/wpbc_all_translations1.php:
|
6177 |
#: inc/_ps/admin/page-settings-form.php:157
|
6178 |
msgid "Form fields"
|
6179 |
msgstr ""
|
6180 |
|
6181 |
-
#: core/lib/wpbc_all_translations1.php:
|
6182 |
msgid "Content of Booking Fields"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
-
#: core/lib/wpbc_all_translations1.php:
|
6186 |
msgid "Generate tag"
|
6187 |
msgstr ""
|
6188 |
|
6189 |
-
#: core/lib/wpbc_all_translations1.php:
|
6190 |
#, php-format
|
6191 |
msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
|
6192 |
msgstr ""
|
6193 |
|
6194 |
-
#: core/lib/wpbc_all_translations1.php:
|
6195 |
msgid "Form Template"
|
6196 |
msgstr ""
|
6197 |
|
6198 |
-
#: core/lib/wpbc_all_translations1.php:
|
6199 |
msgid "Standard Templates"
|
6200 |
msgstr ""
|
6201 |
|
6202 |
-
#: core/lib/wpbc_all_translations1.php:
|
6203 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111
|
6204 |
msgid "Columns"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
-
#: core/lib/wpbc_all_translations1.php:
|
6208 |
msgid "Advanced Templates"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
-
#: core/lib/wpbc_all_translations1.php:
|
6212 |
msgid "Wizard (several steps)"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
-
#: core/lib/wpbc_all_translations1.php:
|
6216 |
msgid "Time slots for different weekdays"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
-
#: core/lib/wpbc_all_translations1.php:
|
6220 |
#: inc/_ps/admin/page-settings-form.php:447
|
6221 |
msgid "Hints"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
-
#: core/lib/wpbc_all_translations1.php:
|
6225 |
msgid "Reset Form"
|
6226 |
msgstr ""
|
6227 |
|
6228 |
-
#: core/lib/wpbc_all_translations1.php:
|
6229 |
msgid "Both"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
-
#: core/lib/wpbc_all_translations1.php:
|
6233 |
msgid "Reset Booking Form and Content of Booking Fields Form"
|
6234 |
msgstr ""
|
6235 |
|
6236 |
-
#: core/lib/wpbc_all_translations1.php:
|
6237 |
#: inc/gateways/page-gateways.php:1069
|
6238 |
#, php-format
|
6239 |
msgid "%s - inserting data from fields of booking form"
|
6240 |
msgstr ""
|
6241 |
|
6242 |
-
#: core/lib/wpbc_all_translations1.php:
|
6243 |
#, php-format
|
6244 |
msgid "%s - inserting new line"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
-
#: core/lib/wpbc_all_translations1.php:
|
6248 |
#: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:1124
|
6249 |
#, php-format
|
6250 |
msgid ""
|
@@ -6252,138 +6252,138 @@ msgid ""
|
|
6252 |
"that all \"open\" tags (like %s) are closed (like this %s)."
|
6253 |
msgstr ""
|
6254 |
|
6255 |
-
#: core/lib/wpbc_all_translations1.php:
|
6256 |
msgid "Upgrade to higher version"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
-
#: core/lib/wpbc_all_translations1.php:
|
6260 |
msgid "No results found."
|
6261 |
msgstr ""
|
6262 |
|
6263 |
-
#: core/lib/wpbc_all_translations1.php:
|
6264 |
#, php-format
|
6265 |
msgid "Wrap each item with %s tag"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
-
#: core/lib/wpbc_all_translations1.php:
|
6269 |
msgid "Put a label before field"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
-
#: core/lib/wpbc_all_translations1.php:
|
6273 |
#, php-format
|
6274 |
msgid "Make it %sexclusive%s"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
-
#: core/lib/wpbc_all_translations1.php:
|
6278 |
#: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
|
6279 |
#: inc/_ps/form/class-wpbc-field-help-text.php:194
|
6280 |
msgid "Default value"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
-
#: core/lib/wpbc_all_translations1.php:
|
6284 |
#, php-format
|
6285 |
msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
-
#: core/lib/wpbc_all_translations1.php:
|
6289 |
#: inc/_ps/form/class-wpbc-field-help-select.php:111
|
6290 |
#: inc/_ps/form/class-wpbc-field-help-text.php:177
|
6291 |
msgid "required"
|
6292 |
msgstr ""
|
6293 |
|
6294 |
-
#: core/lib/wpbc_all_translations1.php:
|
6295 |
#: inc/_ps/form/class-wpbc-field-help-select.php:129
|
6296 |
msgid "Titles of options"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
#: core/lib/wpbc_all_translations1.php:
|
6300 |
#: inc/_ps/form/class-wpbc-field-help-select.php:86
|
6301 |
#, php-format
|
6302 |
msgid "One Value from %sOptions%s list"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
-
#: core/lib/wpbc_all_translations1.php:
|
6306 |
#, php-format
|
6307 |
msgid "Allow %smultiple%s selections"
|
6308 |
msgstr ""
|
6309 |
|
6310 |
-
#: core/lib/wpbc_all_translations1.php:
|
6311 |
#, php-format
|
6312 |
msgid "Set as %srequired%s"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
-
#: core/lib/wpbc_all_translations1.php:
|
6316 |
msgid "Placeholder"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#: core/lib/wpbc_all_translations1.php:
|
6320 |
msgid "Class"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#: core/lib/wpbc_all_translations1.php:
|
6324 |
msgid "Size"
|
6325 |
msgstr ""
|
6326 |
|
6327 |
-
#: core/lib/wpbc_all_translations1.php:
|
6328 |
msgid "Maxlength"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
-
#: core/lib/wpbc_all_translations1.php:
|
6332 |
msgid "Copy and paste this shortcode into the form at left side"
|
6333 |
msgstr ""
|
6334 |
|
6335 |
-
#: core/lib/wpbc_all_translations1.php:
|
6336 |
#, php-format
|
6337 |
msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
-
#: core/lib/wpbc_all_translations1.php:
|
6341 |
msgid "Rows"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: core/lib/wpbc_all_translations1.php:
|
6345 |
msgid "General Information"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
-
#: core/lib/wpbc_all_translations1.php:
|
6349 |
msgid "Required Fields in Booking Form"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
-
#: core/lib/wpbc_all_translations1.php:
|
6353 |
#, php-format
|
6354 |
msgid "You must to have this shortcode:%s in the form."
|
6355 |
msgstr ""
|
6356 |
|
6357 |
-
#: core/lib/wpbc_all_translations1.php:
|
6358 |
msgid ""
|
6359 |
"You can insert several calendars of different resources into the form allowing you to book "
|
6360 |
"several resources during one booking process."
|
6361 |
msgstr ""
|
6362 |
|
6363 |
-
#: core/lib/wpbc_all_translations1.php:
|
6364 |
#, php-format
|
6365 |
msgid "Example: %s."
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: core/lib/wpbc_all_translations1.php:
|
6369 |
#, php-format
|
6370 |
msgid ""
|
6371 |
"where %s – default calendar %s (you can select desired resource of calendar by inserting "
|
6372 |
"shortcode into page)%s"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
-
#: core/lib/wpbc_all_translations1.php:
|
6376 |
#: inc/_ps/form/class-wpbc-form-help.php:123
|
6377 |
#, php-format
|
6378 |
msgid "%s – calendar of booking resource with %s"
|
6379 |
msgstr ""
|
6380 |
|
6381 |
-
#: core/lib/wpbc_all_translations1.php:
|
6382 |
#, php-format
|
6383 |
msgid "Please check more about this feature %shere%s."
|
6384 |
msgstr ""
|
6385 |
|
6386 |
-
#: core/lib/wpbc_all_translations1.php:
|
6387 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
|
6388 |
#: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
|
6389 |
#: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
|
@@ -6393,82 +6393,82 @@ msgstr ""
|
|
6393 |
msgid "You can %suse this shortcode only once%s in the form."
|
6394 |
msgstr ""
|
6395 |
|
6396 |
-
#: core/lib/wpbc_all_translations1.php:
|
6397 |
msgid "Email Field"
|
6398 |
msgstr ""
|
6399 |
|
6400 |
-
#: core/lib/wpbc_all_translations1.php:
|
6401 |
#, php-format
|
6402 |
msgid "You must have this shortcode:%s in the booking form."
|
6403 |
msgstr ""
|
6404 |
|
6405 |
-
#: core/lib/wpbc_all_translations1.php:
|
6406 |
msgid "This is the primary email field, which is used for sending emails to visitors."
|
6407 |
msgstr ""
|
6408 |
|
6409 |
-
#: core/lib/wpbc_all_translations1.php:
|
6410 |
msgid "Drop Down"
|
6411 |
msgstr ""
|
6412 |
|
6413 |
-
#: core/lib/wpbc_all_translations1.php:
|
6414 |
msgid "Checkbox(es)"
|
6415 |
msgstr ""
|
6416 |
|
6417 |
-
#: core/lib/wpbc_all_translations1.php:
|
6418 |
msgid "Radio Button(s)"
|
6419 |
msgstr ""
|
6420 |
|
6421 |
-
#: core/lib/wpbc_all_translations1.php:
|
6422 |
#, php-format
|
6423 |
msgid "Insert %s shortcode to prevent SPAM bookings."
|
6424 |
msgstr ""
|
6425 |
|
6426 |
-
#: core/lib/wpbc_all_translations1.php:
|
6427 |
msgid "Submit Button"
|
6428 |
msgstr ""
|
6429 |
|
6430 |
-
#: core/lib/wpbc_all_translations1.php:
|
6431 |
msgid "Times Fields"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
-
#: core/lib/wpbc_all_translations1.php:
|
6435 |
msgid "Time Slot List"
|
6436 |
msgstr ""
|
6437 |
|
6438 |
-
#: core/lib/wpbc_all_translations1.php:
|
6439 |
#: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
|
6440 |
#: inc/_ps/form/class-wpbc-form-help.php:379
|
6441 |
#, php-format
|
6442 |
msgid "Select the %s using the predefined %sTime List%s."
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: core/lib/wpbc_all_translations1.php:
|
6446 |
msgid "Time Slot"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
-
#: core/lib/wpbc_all_translations1.php:
|
6450 |
#, php-format
|
6451 |
msgid ""
|
6452 |
"Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
|
6453 |
"slots, this time field will %sdisable booked times slots%s (set them as grayed)."
|
6454 |
msgstr ""
|
6455 |
|
6456 |
-
#: core/lib/wpbc_all_translations1.php:
|
6457 |
#, php-format
|
6458 |
msgid "It works only in %ssingle day selection%s mode."
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: core/lib/wpbc_all_translations1.php:
|
6462 |
msgid ""
|
6463 |
"Also some early versions of the IE do not support disabling of the options in the selectboxes."
|
6464 |
msgstr ""
|
6465 |
|
6466 |
-
#: core/lib/wpbc_all_translations1.php:
|
6467 |
msgid ""
|
6468 |
"Even if visitor selects the booked timeslot, system will not allow them to make the booking."
|
6469 |
msgstr ""
|
6470 |
|
6471 |
-
#: core/lib/wpbc_all_translations1.php:
|
6472 |
#: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
|
6473 |
#, php-format
|
6474 |
msgid ""
|
@@ -6476,117 +6476,117 @@ msgid ""
|
|
6476 |
"Time)%s only."
|
6477 |
msgstr ""
|
6478 |
|
6479 |
-
#: core/lib/wpbc_all_translations1.php:
|
6480 |
#, php-format
|
6481 |
msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
|
6482 |
msgstr ""
|
6483 |
|
6484 |
-
#: core/lib/wpbc_all_translations1.php:
|
6485 |
msgid "Start Time - Text field"
|
6486 |
msgstr ""
|
6487 |
|
6488 |
-
#: core/lib/wpbc_all_translations1.php:
|
6489 |
#: inc/_ps/form/class-wpbc-form-help.php:288
|
6490 |
#, php-format
|
6491 |
msgid "Enter %s in text field."
|
6492 |
msgstr ""
|
6493 |
|
6494 |
-
#: core/lib/wpbc_all_translations1.php:
|
6495 |
#: inc/_ps/admin/api-settings-p.php:115 inc/_ps/form/class-wpbc-form-help.php:275
|
6496 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
|
6497 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6498 |
msgid "Start Time"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
-
#: core/lib/wpbc_all_translations1.php:
|
6502 |
#: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
|
6503 |
#, php-format
|
6504 |
msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
|
6505 |
msgstr ""
|
6506 |
|
6507 |
-
#: core/lib/wpbc_all_translations1.php:
|
6508 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6509 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6510 |
#, php-format
|
6511 |
msgid "You can also use the %s in the form."
|
6512 |
msgstr ""
|
6513 |
|
6514 |
-
#: core/lib/wpbc_all_translations1.php:
|
6515 |
#: inc/_ps/admin/api-settings-p.php:134 inc/_ps/form/class-wpbc-form-help.php:279
|
6516 |
#: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
|
6517 |
#: inc/_ps/form/class-wpbc-form-help.php:340
|
6518 |
msgid "End Time"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
-
#: core/lib/wpbc_all_translations1.php:
|
6522 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6523 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
|
6524 |
msgid "Duration Time"
|
6525 |
msgstr ""
|
6526 |
|
6527 |
-
#: core/lib/wpbc_all_translations1.php:
|
6528 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6529 |
#: inc/_ps/form/class-wpbc-form-help.php:344
|
6530 |
msgid "fields"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: core/lib/wpbc_all_translations1.php:
|
6534 |
msgid "End Time - Text field"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
#: core/lib/wpbc_all_translations1.php:
|
6538 |
msgid "Start Time - Drop Down list"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: core/lib/wpbc_all_translations1.php:
|
6542 |
#, php-format
|
6543 |
msgid ""
|
6544 |
"Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
|
6545 |
"Time)%s only."
|
6546 |
msgstr ""
|
6547 |
|
6548 |
-
#: core/lib/wpbc_all_translations1.php:
|
6549 |
msgid "End Time - Drop Down list"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
-
#: core/lib/wpbc_all_translations1.php:
|
6553 |
msgid "Duration Time - Drop Down list"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#: core/lib/wpbc_all_translations1.php:
|
6557 |
msgid "field"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
-
#: core/lib/wpbc_all_translations1.php:
|
6561 |
msgid "Different time slots, for the different week days"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: core/lib/wpbc_all_translations1.php:
|
6565 |
msgid ""
|
6566 |
"This feature provides the possibility to use the different time slot selections in the booking "
|
6567 |
"form for the different week days or different days - which are assigned to the specific season "
|
6568 |
"filters. So each week day (day of specific season filter) can have a different time slots list."
|
6569 |
msgstr ""
|
6570 |
|
6571 |
-
#: core/lib/wpbc_all_translations1.php:
|
6572 |
#: inc/_ps/form/class-wpbc-form-help.php:568
|
6573 |
msgid "Configuration"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
-
#: core/lib/wpbc_all_translations1.php:
|
6577 |
#: inc/_ps/form/class-wpbc-form-help.php:569
|
6578 |
#, php-format
|
6579 |
msgid "The general structure of the configuration %scondition rule%s is as follows"
|
6580 |
msgstr ""
|
6581 |
|
6582 |
-
#: core/lib/wpbc_all_translations1.php:
|
6583 |
#: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
|
6584 |
#: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
|
6585 |
#: inc/_ps/form/class-wpbc-form-help.php:619
|
6586 |
msgid "Parameters"
|
6587 |
msgstr ""
|
6588 |
|
6589 |
-
#: core/lib/wpbc_all_translations1.php:
|
6590 |
#: inc/_ps/form/class-wpbc-form-help.php:576
|
6591 |
#, php-format
|
6592 |
msgid ""
|
@@ -6596,7 +6596,7 @@ msgid ""
|
|
6596 |
"conditions. Please check more about it, in the examples."
|
6597 |
msgstr ""
|
6598 |
|
6599 |
-
#: core/lib/wpbc_all_translations1.php:
|
6600 |
#: inc/_ps/form/class-wpbc-form-help.php:577
|
6601 |
#, php-format
|
6602 |
msgid ""
|
@@ -6607,7 +6607,7 @@ msgid ""
|
|
6607 |
"filter in the Season Filters page."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: core/lib/wpbc_all_translations1.php:
|
6611 |
#, php-format
|
6612 |
msgid ""
|
6613 |
"%svalue%s – value of the specific conditions. If the value is true, the content of the "
|
@@ -6616,47 +6616,47 @@ msgid ""
|
|
6616 |
"at initial stage, when the date in calendar is not yet selected."
|
6617 |
msgstr ""
|
6618 |
|
6619 |
-
#: core/lib/wpbc_all_translations1.php:
|
6620 |
#: inc/_ps/form/class-wpbc-form-help.php:580
|
6621 |
msgid "Examples"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
-
#: core/lib/wpbc_all_translations1.php:
|
6625 |
#: inc/_ps/form/class-wpbc-form-help.php:581
|
6626 |
msgid "Week days conditions."
|
6627 |
msgstr ""
|
6628 |
|
6629 |
-
#: core/lib/wpbc_all_translations1.php:
|
6630 |
#: inc/_ps/form/class-wpbc-form-help.php:597
|
6631 |
msgid "default value, if no dates are selected, or none exist conditions are true."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: core/lib/wpbc_all_translations1.php:
|
6635 |
#: inc/_ps/form/class-wpbc-form-help.php:475
|
6636 |
msgid "You can use the several values, separated by comma."
|
6637 |
msgstr ""
|
6638 |
|
6639 |
-
#: core/lib/wpbc_all_translations1.php:
|
6640 |
#: inc/_ps/form/class-wpbc-form-help.php:607
|
6641 |
msgid "Season filters conditions."
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: core/lib/wpbc_all_translations1.php:
|
6645 |
#: inc/_ps/form/class-wpbc-form-help.php:620
|
6646 |
msgid "Season filter on the Season Filters page,"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: core/lib/wpbc_all_translations1.php:
|
6650 |
#: inc/_ps/form/class-wpbc-form-help.php:621
|
6651 |
msgid "Season filter on the Season Filters page"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
-
#: core/lib/wpbc_all_translations1.php:
|
6655 |
#: inc/_ps/form/class-wpbc-form-help.php:624
|
6656 |
msgid "Additional info"
|
6657 |
msgstr ""
|
6658 |
|
6659 |
-
#: core/lib/wpbc_all_translations1.php:
|
6660 |
#: inc/_ps/form/class-wpbc-form-help.php:625
|
6661 |
#, php-format
|
6662 |
msgid ""
|
@@ -6664,103 +6664,103 @@ msgid ""
|
|
6664 |
"section."
|
6665 |
msgstr ""
|
6666 |
|
6667 |
-
#: core/lib/wpbc_all_translations1.php:
|
6668 |
#: inc/_ps/form/class-wpbc-form-help.php:626
|
6669 |
#, php-format
|
6670 |
msgid "Please check more about this feature at %sthis page%s"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
-
#: core/lib/wpbc_all_translations1.php:
|
6674 |
msgid "Time Field"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
-
#: core/lib/wpbc_all_translations1.php:
|
6678 |
#, php-format
|
6679 |
msgid "Enter the %sTime%s using the text field."
|
6680 |
msgstr ""
|
6681 |
|
6682 |
-
#: core/lib/wpbc_all_translations1.php:
|
6683 |
msgid "This field does not impact to availability (booking for the specific time) ."
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#: core/lib/wpbc_all_translations1.php:
|
6687 |
msgid "The value of this field is just saved into DB."
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#: core/lib/wpbc_all_translations1.php:
|
6691 |
msgid "Country List"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#: core/lib/wpbc_all_translations1.php:
|
6695 |
msgid "Select the country from the predefined country list."
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#: core/lib/wpbc_all_translations1.php:
|
6699 |
#, php-format
|
6700 |
msgid "You can customize the country list at this file: %s"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
-
#: core/lib/wpbc_all_translations1.php:
|
6704 |
msgid "You can insert this field with default selected value."
|
6705 |
msgstr ""
|
6706 |
|
6707 |
-
#: core/lib/wpbc_all_translations1.php:
|
6708 |
#, php-format
|
6709 |
msgid "Example: %s - %s\"United States\"%s is selected by default."
|
6710 |
msgstr ""
|
6711 |
|
6712 |
-
#: core/lib/wpbc_all_translations1.php:
|
6713 |
msgid "Language Sections"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: core/lib/wpbc_all_translations1.php:
|
6717 |
msgid "Plugin support configurations of the booking form are available in different languages."
|
6718 |
msgstr ""
|
6719 |
|
6720 |
-
#: core/lib/wpbc_all_translations1.php:
|
6721 |
msgid "The active language of the booking form depends on the active locale of the site."
|
6722 |
msgstr ""
|
6723 |
|
6724 |
-
#: core/lib/wpbc_all_translations1.php:
|
6725 |
msgid ""
|
6726 |
"Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
|
6727 |
msgstr ""
|
6728 |
|
6729 |
-
#: core/lib/wpbc_all_translations1.php:
|
6730 |
msgid "Usage"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
-
#: core/lib/wpbc_all_translations1.php:
|
6734 |
#, php-format
|
6735 |
msgid "start new translation section in specific language, where %s - locale of the translation."
|
6736 |
msgstr ""
|
6737 |
|
6738 |
-
#: core/lib/wpbc_all_translations1.php:
|
6739 |
msgid "English and French translation"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
-
#: core/lib/wpbc_all_translations1.php:
|
6743 |
msgid "of configuration booking form in English and French languages"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
-
#: core/lib/wpbc_all_translations1.php:
|
6747 |
msgid ""
|
6748 |
"Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
|
6749 |
"translation\" page. Required WPML 3.2 with String Translation plugin."
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: core/lib/wpbc_all_translations1.php:
|
6753 |
msgid "Different form fields, for the different week days"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: core/lib/wpbc_all_translations1.php:
|
6757 |
msgid ""
|
6758 |
"This feature provides the possibility to show the different form fields or any other HTML "
|
6759 |
"content in the booking form, depending on the selection of specific week day in calendar or "
|
6760 |
"different days, which are assigned to the specific season filters"
|
6761 |
msgstr ""
|
6762 |
|
6763 |
-
#: core/lib/wpbc_all_translations1.php:
|
6764 |
#, php-format
|
6765 |
msgid ""
|
6766 |
"%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
|
@@ -6769,54 +6769,54 @@ msgid ""
|
|
6769 |
"at initial stage, when the date in calendar is not yet selected."
|
6770 |
msgstr ""
|
6771 |
|
6772 |
-
#: core/lib/wpbc_all_translations1.php:
|
6773 |
msgid "You can use several values, separated by comma."
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: core/lib/wpbc_all_translations1.php:
|
6777 |
msgid "You can use several values, separated by a comma."
|
6778 |
msgstr ""
|
6779 |
|
6780 |
-
#: core/lib/wpbc_all_translations1.php:
|
6781 |
msgid "Cost Fields"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
-
#: core/lib/wpbc_all_translations1.php:
|
6785 |
msgid "Cost Correction Field"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
-
#: core/lib/wpbc_all_translations1.php:
|
6789 |
#, php-format
|
6790 |
msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
|
6791 |
msgstr ""
|
6792 |
|
6793 |
-
#: core/lib/wpbc_all_translations1.php:
|
6794 |
#, php-format
|
6795 |
msgid "Use this field for %scorrecting the cost%s during adding new booking."
|
6796 |
msgstr ""
|
6797 |
|
6798 |
-
#: core/lib/wpbc_all_translations1.php:
|
6799 |
msgid "Discount Coupon field"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#: core/lib/wpbc_all_translations1.php:
|
6803 |
msgid "Please use this field for possibility to use coupon discounts by your visitors."
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#: core/lib/wpbc_all_translations1.php:
|
6807 |
#, php-format
|
6808 |
msgid "You can configure the discount coupon codes at this %spage%s."
|
6809 |
msgstr ""
|
6810 |
|
6811 |
-
#: core/lib/wpbc_all_translations1.php:
|
6812 |
msgid "Hints for your form"
|
6813 |
msgstr ""
|
6814 |
|
6815 |
-
#: core/lib/wpbc_all_translations1.php:
|
6816 |
msgid "Cost Hints"
|
6817 |
msgstr ""
|
6818 |
|
6819 |
-
#: core/lib/wpbc_all_translations1.php:
|
6820 |
#: inc/_ps/form/class-wpbc-form-help.php:697
|
6821 |
#, php-format
|
6822 |
msgid ""
|
@@ -6824,16 +6824,16 @@ msgid ""
|
|
6824 |
"calendar or options in checkboxes or selectboxes)%s."
|
6825 |
msgstr ""
|
6826 |
|
6827 |
-
#: core/lib/wpbc_all_translations1.php:
|
6828 |
msgid "Dates and Times Hints"
|
6829 |
msgstr ""
|
6830 |
|
6831 |
-
#: core/lib/wpbc_all_translations1.php:
|
6832 |
#: inc/gateways/page-gateways.php:1094
|
6833 |
msgid "Selected Check In date."
|
6834 |
msgstr ""
|
6835 |
|
6836 |
-
#: core/lib/wpbc_all_translations1.php:
|
6837 |
#: inc/_bm/admin/page-cost-advanced.php:698 inc/_ps/form/class-wpbc-form-help.php:700
|
6838 |
#: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
|
6839 |
#: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
|
@@ -6848,91 +6848,91 @@ msgstr ""
|
|
6848 |
msgid "Example:"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
-
#: core/lib/wpbc_all_translations1.php:
|
6852 |
#: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:1097
|
6853 |
msgid "Selected Check Out date."
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#: core/lib/wpbc_all_translations1.php:
|
6857 |
#: inc/gateways/page-gateways.php:1100
|
6858 |
msgid "Selected Start Time."
|
6859 |
msgstr ""
|
6860 |
|
6861 |
-
#: core/lib/wpbc_all_translations1.php:
|
6862 |
#: inc/gateways/page-gateways.php:1103
|
6863 |
msgid "Selected End Time."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: core/lib/wpbc_all_translations1.php:
|
6867 |
#: inc/gateways/page-gateways.php:1106
|
6868 |
msgid "All selected dates."
|
6869 |
msgstr ""
|
6870 |
|
6871 |
-
#: core/lib/wpbc_all_translations1.php:
|
6872 |
#: inc/gateways/page-gateways.php:1109
|
6873 |
msgid "All selected dates with times."
|
6874 |
msgstr ""
|
6875 |
|
6876 |
-
#: core/lib/wpbc_all_translations1.php:
|
6877 |
#: inc/gateways/page-gateways.php:1112
|
6878 |
msgid "All selected dates in \"short\" format."
|
6879 |
msgstr ""
|
6880 |
|
6881 |
-
#: core/lib/wpbc_all_translations1.php:
|
6882 |
#: inc/gateways/page-gateways.php:1115
|
6883 |
msgid "All selected dates with times in \"short\" format.."
|
6884 |
msgstr ""
|
6885 |
|
6886 |
-
#: core/lib/wpbc_all_translations1.php:
|
6887 |
#: inc/_ps/form/class-wpbc-form-help.php:726 inc/gateways/page-gateways.php:1118
|
6888 |
msgid "Number of selected days."
|
6889 |
msgstr ""
|
6890 |
|
6891 |
-
#: core/lib/wpbc_all_translations1.php:
|
6892 |
#: inc/_ps/form/class-wpbc-form-help.php:729 inc/gateways/page-gateways.php:1121
|
6893 |
msgid "Number of selected nights."
|
6894 |
msgstr ""
|
6895 |
|
6896 |
-
#: core/lib/wpbc_all_translations1.php:
|
6897 |
msgid "Other Hints"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
-
#: core/lib/wpbc_all_translations1.php:
|
6901 |
#: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:1072
|
6902 |
msgid "title of booking resource"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#: core/lib/wpbc_all_translations1.php:
|
6906 |
msgid "ID of booking resource."
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#: core/lib/wpbc_all_translations1.php:
|
6910 |
msgid "cost of booking resource."
|
6911 |
msgstr ""
|
6912 |
|
6913 |
-
#: core/lib/wpbc_all_translations1.php:
|
6914 |
msgid "capacity of booking resource."
|
6915 |
msgstr ""
|
6916 |
|
6917 |
-
#: core/lib/wpbc_all_translations1.php:
|
6918 |
msgid "maximum number of visitors per booking resource."
|
6919 |
msgstr ""
|
6920 |
|
6921 |
-
#: core/lib/wpbc_all_translations1.php:
|
6922 |
msgid "Tips and Tricks"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
-
#: core/lib/wpbc_all_translations1.php:
|
6926 |
#, php-format
|
6927 |
msgid "%sEmail verification field%s."
|
6928 |
msgstr ""
|
6929 |
|
6930 |
-
#: core/lib/wpbc_all_translations1.php:
|
6931 |
#, php-format
|
6932 |
msgid "%sDescription of usage%s."
|
6933 |
msgstr ""
|
6934 |
|
6935 |
-
#: core/lib/wpbc_all_translations1.php:
|
6936 |
#, php-format
|
6937 |
msgid ""
|
6938 |
"To create verification email, you need to use special CSS class in other email field. This CSS "
|
@@ -6940,257 +6940,257 @@ msgid ""
|
|
6940 |
"field: %s"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
-
#: core/lib/wpbc_all_translations1.php:
|
6944 |
#, php-format
|
6945 |
msgid "%sExample%s."
|
6946 |
msgstr ""
|
6947 |
|
6948 |
-
#: core/lib/wpbc_all_translations1.php:
|
6949 |
msgid "confirmation email field of the primary email field"
|
6950 |
msgstr ""
|
6951 |
|
6952 |
-
#: core/lib/wpbc_all_translations1.php:
|
6953 |
msgid "Generate Tag"
|
6954 |
msgstr ""
|
6955 |
|
6956 |
-
#: core/lib/wpbc_all_translations1.php:
|
6957 |
msgid "Select option to configure or show help info about tags"
|
6958 |
msgstr ""
|
6959 |
|
6960 |
-
#: core/lib/wpbc_all_translations1.php:
|
6961 |
msgid "Keyword"
|
6962 |
msgstr ""
|
6963 |
|
6964 |
-
#: core/lib/wpbc_all_translations1.php:
|
6965 |
msgid "Enter Keyword here"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
-
#: core/lib/wpbc_all_translations1.php:
|
6969 |
msgid ""
|
6970 |
"Save filter settings as default template (Please, click Apply filter button, before saving!)"
|
6971 |
msgstr ""
|
6972 |
|
6973 |
-
#: core/lib/wpbc_all_translations1.php:
|
6974 |
msgid "Save as Default"
|
6975 |
msgstr ""
|
6976 |
|
6977 |
-
#: core/lib/wpbc_all_translations1.php:
|
6978 |
msgid "Delete your previously saved default filer template!"
|
6979 |
msgstr ""
|
6980 |
|
6981 |
-
#: core/lib/wpbc_all_translations1.php:
|
6982 |
msgid "Delete template"
|
6983 |
msgstr ""
|
6984 |
|
6985 |
-
#: core/lib/wpbc_all_translations1.php:
|
6986 |
msgid "Print bookings listing"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
-
#: core/lib/wpbc_all_translations1.php:
|
6990 |
msgid "Export only current page of bookings to CSV format"
|
6991 |
msgstr ""
|
6992 |
|
6993 |
-
#: core/lib/wpbc_all_translations1.php:
|
6994 |
msgid "Export All"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
-
#: core/lib/wpbc_all_translations1.php:
|
6998 |
msgid "Export All bookings to CSV format"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
-
#: core/lib/wpbc_all_translations1.php:
|
7002 |
msgid "Edit Note"
|
7003 |
msgstr ""
|
7004 |
|
7005 |
-
#: core/lib/wpbc_all_translations1.php:
|
7006 |
msgid "Change Language"
|
7007 |
msgstr ""
|
7008 |
|
7009 |
-
#: core/lib/wpbc_all_translations1.php:
|
7010 |
msgid "Default Locale"
|
7011 |
msgstr ""
|
7012 |
|
7013 |
-
#: core/lib/wpbc_all_translations1.php:
|
7014 |
msgid "Change Resource"
|
7015 |
msgstr ""
|
7016 |
|
7017 |
-
#: core/lib/wpbc_all_translations1.php:
|
7018 |
#: inc/_ps/personal.php:2133
|
7019 |
msgid "Duplicate Booking"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
-
#: core/lib/wpbc_all_translations1.php:
|
7023 |
msgid "Save"
|
7024 |
msgstr ""
|
7025 |
|
7026 |
-
#: core/lib/wpbc_all_translations1.php:
|
7027 |
msgid "Change"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
-
#: core/lib/wpbc_all_translations1.php:
|
7031 |
msgid "Print bookings"
|
7032 |
msgstr ""
|
7033 |
|
7034 |
-
#: core/lib/wpbc_all_translations1.php:
|
7035 |
msgid "Export bookings"
|
7036 |
msgstr ""
|
7037 |
|
7038 |
-
#: core/lib/wpbc_all_translations1.php:
|
7039 |
msgid "Download the CSV file of exported booking data"
|
7040 |
msgstr ""
|
7041 |
|
7042 |
-
#: core/lib/wpbc_all_translations1.php:
|
7043 |
msgid "Download"
|
7044 |
msgstr ""
|
7045 |
|
7046 |
-
#: core/lib/wpbc_all_translations1.php:
|
7047 |
msgid "Clear booking resources selection"
|
7048 |
msgstr ""
|
7049 |
|
7050 |
-
#: core/lib/wpbc_all_translations1.php:
|
7051 |
msgid "Apply booking resources selection"
|
7052 |
msgstr ""
|
7053 |
|
7054 |
-
#: core/lib/wpbc_all_translations1.php:
|
7055 |
msgid ""
|
7056 |
"Please note, its not possible to add new resources, if \"All resources\" option is selected. "
|
7057 |
"Please clear the selection, then add new resources."
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#: core/lib/wpbc_all_translations1.php:
|
7061 |
msgid "Add New Booking Resource(s)"
|
7062 |
msgstr ""
|
7063 |
|
7064 |
-
#: core/lib/wpbc_all_translations1.php:
|
7065 |
msgid "Enter name of booking resource"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
-
#: core/lib/wpbc_all_translations1.php:
|
7069 |
msgid "Resources count"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: core/lib/wpbc_all_translations1.php:
|
7073 |
msgid "This booking resources does not exist"
|
7074 |
msgstr ""
|
7075 |
|
7076 |
-
#: core/lib/wpbc_all_translations1.php:
|
7077 |
msgid "Generating columns"
|
7078 |
msgstr ""
|
7079 |
|
7080 |
-
#: core/lib/wpbc_all_translations1.php:
|
7081 |
msgid "Exporting booking data"
|
7082 |
msgstr ""
|
7083 |
|
7084 |
-
#: core/lib/wpbc_all_translations1.php:
|
7085 |
msgid "Generating content of file"
|
7086 |
msgstr ""
|
7087 |
|
7088 |
-
#: core/lib/wpbc_all_translations1.php:
|
7089 |
msgid "Saving to file"
|
7090 |
msgstr ""
|
7091 |
|
7092 |
-
#: core/lib/wpbc_all_translations1.php:
|
7093 |
msgid "The booking was canceled by the visitor."
|
7094 |
msgstr ""
|
7095 |
|
7096 |
-
#: core/lib/wpbc_all_translations1.php:
|
7097 |
msgid "The booking has been canceled successfully"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
-
#: core/lib/wpbc_all_translations1.php:
|
7101 |
msgid "Incorrect date format"
|
7102 |
msgstr ""
|
7103 |
|
7104 |
-
#: core/lib/wpbc_all_translations1.php:
|
7105 |
msgid "Change your Booking"
|
7106 |
msgstr ""
|
7107 |
|
7108 |
-
#: core/lib/wpbc_all_translations1.php:
|
7109 |
msgid "Cancel Booking"
|
7110 |
msgstr ""
|
7111 |
|
7112 |
-
#: core/lib/wpbc_all_translations1.php:
|
7113 |
msgid "Warning! The resource was not changed. Current dates are already booked there."
|
7114 |
msgstr ""
|
7115 |
|
7116 |
-
#: core/lib/wpbc_all_translations1.php:
|
7117 |
msgid "The booking has been duplicated successfully"
|
7118 |
msgstr ""
|
7119 |
|
7120 |
-
#: core/lib/wpbc_all_translations1.php:
|
7121 |
msgid "Warning! Operation failed. Current dates are already booked there."
|
7122 |
msgstr ""
|
7123 |
|
7124 |
-
#: core/lib/wpbc_all_translations1.php:
|
7125 |
msgid "Sending request..."
|
7126 |
msgstr ""
|
7127 |
|
7128 |
-
#: core/lib/wpbc_all_translations1.php:
|
7129 |
msgid "Order number"
|
7130 |
msgstr ""
|
7131 |
|
7132 |
-
#: core/lib/wpbc_all_translations1.php:
|
7133 |
msgid "Register"
|
7134 |
msgstr ""
|
7135 |
|
7136 |
-
#: core/lib/wpbc_all_translations1.php:
|
7137 |
msgid ""
|
7138 |
"Please, enter order number of your purchased version, which you received to your billing email."
|
7139 |
msgstr ""
|
7140 |
|
7141 |
-
#: core/lib/wpbc_all_translations1.php:
|
7142 |
#, php-format
|
7143 |
msgid "If you will get any difficulties or have a questions, please contact by email %s"
|
7144 |
msgstr ""
|
7145 |
|
7146 |
-
#: core/lib/wpbc_all_translations1.php:
|
7147 |
msgid "Default form"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
-
#: core/lib/wpbc_all_translations1.php:
|
7151 |
#, php-format
|
7152 |
msgid ""
|
7153 |
"There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
|
7154 |
"version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
|
7155 |
msgstr ""
|
7156 |
|
7157 |
-
#: core/lib/wpbc_all_translations1.php:
|
7158 |
#, php-format
|
7159 |
msgid "You can request the new update of plugin on %1$sthis page%2$s."
|
7160 |
msgstr ""
|
7161 |
|
7162 |
-
#: core/lib/wpbc_all_translations1.php:
|
7163 |
msgid "Upgrade Notice"
|
7164 |
msgstr ""
|
7165 |
|
7166 |
-
#: core/lib/wpbc_all_translations1.php:
|
7167 |
#, php-format
|
7168 |
msgid "Version %s By %s"
|
7169 |
msgstr ""
|
7170 |
|
7171 |
-
#: core/lib/wpbc_all_translations1.php:
|
7172 |
msgid "View details"
|
7173 |
msgstr ""
|
7174 |
|
7175 |
-
#: core/lib/wpbc_all_translations1.php:
|
7176 |
#: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
|
7177 |
#: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
|
7178 |
msgid "First Name (required)"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
#: core/lib/wpbc_all_translations1.php:
|
7182 |
#: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
|
7183 |
#: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
|
7184 |
msgid "Last Name (required)"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
-
#: core/lib/wpbc_all_translations1.php:
|
7188 |
#: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
|
7189 |
#: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
|
7190 |
msgid "Email (required)"
|
7191 |
msgstr ""
|
7192 |
|
7193 |
-
#: core/lib/wpbc_all_translations1.php:
|
7194 |
#: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
|
7195 |
#: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
|
7196 |
#: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
|
@@ -7199,21 +7199,21 @@ msgstr ""
|
|
7199 |
msgid "Phone"
|
7200 |
msgstr ""
|
7201 |
|
7202 |
-
#: core/lib/wpbc_all_translations1.php:
|
7203 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7204 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
|
7205 |
#: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
|
7206 |
msgid "Adults"
|
7207 |
msgstr ""
|
7208 |
|
7209 |
-
#: core/lib/wpbc_all_translations1.php:
|
7210 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7211 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
|
7212 |
#: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
|
7213 |
msgid "Children"
|
7214 |
msgstr ""
|
7215 |
|
7216 |
-
#: core/lib/wpbc_all_translations1.php:
|
7217 |
#: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
|
7218 |
#: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
|
7219 |
#: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
|
@@ -7221,116 +7221,116 @@ msgstr ""
|
|
7221 |
msgid "Details"
|
7222 |
msgstr ""
|
7223 |
|
7224 |
-
#: core/lib/wpbc_all_translations1.php:
|
7225 |
#: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
|
7226 |
#: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
|
7227 |
msgid "I Accept term and conditions"
|
7228 |
msgstr ""
|
7229 |
|
7230 |
-
#: core/lib/wpbc_all_translations1.php:
|
7231 |
#: inc/_ps/wpbc-form-templates.php:68
|
7232 |
msgid "Select Times"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
-
#: core/lib/wpbc_all_translations1.php:
|
7236 |
#: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
|
7237 |
#: inc/_ps/wpbc-form-templates.php:118
|
7238 |
msgid "Address (required)"
|
7239 |
msgstr ""
|
7240 |
|
7241 |
-
#: core/lib/wpbc_all_translations1.php:
|
7242 |
#: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
|
7243 |
#: inc/_ps/wpbc-form-templates.php:119
|
7244 |
msgid "City (required)"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
-
#: core/lib/wpbc_all_translations1.php:
|
7248 |
#: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
|
7249 |
#: inc/_ps/wpbc-form-templates.php:120
|
7250 |
msgid "Post code (required)"
|
7251 |
msgstr ""
|
7252 |
|
7253 |
-
#: core/lib/wpbc_all_translations1.php:
|
7254 |
#: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
|
7255 |
#: inc/_ps/wpbc-form-templates.php:121
|
7256 |
msgid "Country (required)"
|
7257 |
msgstr ""
|
7258 |
|
7259 |
-
#: core/lib/wpbc_all_translations1.php:
|
7260 |
msgid "night(s)"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: core/lib/wpbc_all_translations1.php:
|
7264 |
#: inc/_ps/wpbc-form-templates.php:112
|
7265 |
msgid "Full cost of the booking"
|
7266 |
msgstr ""
|
7267 |
|
7268 |
-
#: core/lib/wpbc_all_translations1.php:
|
7269 |
#: inc/_ps/wpbc-form-templates.php:194
|
7270 |
msgid "Visitors"
|
7271 |
msgstr ""
|
7272 |
|
7273 |
-
#: core/lib/wpbc_all_translations1.php:
|
7274 |
#: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
|
7275 |
#: inc/_ps/wpbc-form-templates.php:187
|
7276 |
msgid "Last Name"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
-
#: core/lib/wpbc_all_translations1.php:
|
7280 |
#: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
|
7281 |
#: inc/_ps/wpbc-form-templates.php:188
|
7282 |
msgid "Email"
|
7283 |
msgstr ""
|
7284 |
|
7285 |
-
#: core/lib/wpbc_all_translations1.php:
|
7286 |
#: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
|
7287 |
msgid "Address"
|
7288 |
msgstr ""
|
7289 |
|
7290 |
-
#: core/lib/wpbc_all_translations1.php:
|
7291 |
#: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
|
7292 |
msgid "City"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
-
#: core/lib/wpbc_all_translations1.php:
|
7296 |
#: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
|
7297 |
msgid "Post code"
|
7298 |
msgstr ""
|
7299 |
|
7300 |
-
#: core/lib/wpbc_all_translations1.php:
|
7301 |
#: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
|
7302 |
#: inc/gateways/page-gateways.php:361
|
7303 |
msgid "Country"
|
7304 |
msgstr ""
|
7305 |
|
7306 |
-
#: core/lib/wpbc_all_translations1.php:
|
7307 |
#: inc/_ps/wpbc-form-templates.php:242 inc/_ps/wpbc-form-templates.php:252
|
7308 |
#: inc/_ps/wpbc-form-templates.php:262 inc/_ps/wpbc-form-templates.php:272
|
7309 |
msgid "Check in"
|
7310 |
msgstr ""
|
7311 |
|
7312 |
-
#: core/lib/wpbc_all_translations1.php:
|
7313 |
#: inc/_ps/wpbc-form-templates.php:243 inc/_ps/wpbc-form-templates.php:253
|
7314 |
#: inc/_ps/wpbc-form-templates.php:263 inc/_ps/wpbc-form-templates.php:273
|
7315 |
msgid "Check out"
|
7316 |
msgstr ""
|
7317 |
|
7318 |
-
#: core/lib/wpbc_all_translations1.php:
|
7319 |
#: inc/_ps/wpbc-form-templates.php:244 inc/_ps/wpbc-form-templates.php:254
|
7320 |
#: inc/_ps/wpbc-form-templates.php:264 inc/_ps/wpbc-form-templates.php:274
|
7321 |
msgid "Guests"
|
7322 |
msgstr ""
|
7323 |
|
7324 |
-
#: core/lib/wpbc_all_translations1.php:
|
7325 |
#: inc/_ps/wpbc-form-templates.php:334 inc/_ps/wpbc-form-templates.php:351
|
7326 |
msgid "Max. persons"
|
7327 |
msgstr ""
|
7328 |
|
7329 |
-
#: core/lib/wpbc_all_translations1.php:
|
7330 |
msgid "Data"
|
7331 |
msgstr ""
|
7332 |
|
7333 |
-
#: core/lib/wpbc_all_translations1.php:
|
7334 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
|
7335 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:318
|
7336 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
|
@@ -7338,20 +7338,20 @@ msgstr ""
|
|
7338 |
msgid "Enable this payment gateway"
|
7339 |
msgstr ""
|
7340 |
|
7341 |
-
#: core/lib/wpbc_all_translations1.php:
|
7342 |
msgid "API Login ID"
|
7343 |
msgstr ""
|
7344 |
|
7345 |
-
#: core/lib/wpbc_all_translations1.php:
|
7346 |
#, php-format
|
7347 |
msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
|
7348 |
msgstr ""
|
7349 |
|
7350 |
-
#: core/lib/wpbc_all_translations1.php:
|
7351 |
msgid "Transaction Key"
|
7352 |
msgstr ""
|
7353 |
|
7354 |
-
#: core/lib/wpbc_all_translations1.php:
|
7355 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:529
|
7356 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:546
|
7357 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:561
|
@@ -7359,97 +7359,97 @@ msgstr ""
|
|
7359 |
msgid "This parameter have to assigned to you by %s"
|
7360 |
msgstr ""
|
7361 |
|
7362 |
-
#: core/lib/wpbc_all_translations1.php:
|
7363 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
|
7364 |
#: inc/gateways/sage/wpbc-gw-sage.php:424
|
7365 |
msgid "Chose payment mode"
|
7366 |
msgstr ""
|
7367 |
|
7368 |
-
#: core/lib/wpbc_all_translations1.php:
|
7369 |
msgid ""
|
7370 |
"Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
|
7371 |
"for using Developer account."
|
7372 |
msgstr ""
|
7373 |
|
7374 |
-
#: core/lib/wpbc_all_translations1.php:
|
7375 |
msgid ""
|
7376 |
"Transactions posted against live merchant accounts using either of the above testing methods are "
|
7377 |
"not submitted to financial institutions for authorization and are not stored in the Merchant "
|
7378 |
"Interface."
|
7379 |
msgstr ""
|
7380 |
|
7381 |
-
#: core/lib/wpbc_all_translations1.php:
|
7382 |
msgid "Developer Test"
|
7383 |
msgstr ""
|
7384 |
|
7385 |
-
#: core/lib/wpbc_all_translations1.php:
|
7386 |
msgid "Live Test"
|
7387 |
msgstr ""
|
7388 |
|
7389 |
-
#: core/lib/wpbc_all_translations1.php:
|
7390 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:429
|
7391 |
msgid "Live"
|
7392 |
msgstr ""
|
7393 |
|
7394 |
-
#: core/lib/wpbc_all_translations1.php:
|
7395 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
|
7396 |
msgid "Transaction type"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
-
#: core/lib/wpbc_all_translations1.php:
|
7400 |
msgid "Select transaction type, which supported by the payment gateway."
|
7401 |
msgstr ""
|
7402 |
|
7403 |
-
#: core/lib/wpbc_all_translations1.php:
|
7404 |
msgid "Authorization and Capture"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
-
#: core/lib/wpbc_all_translations1.php:
|
7408 |
msgid "Authorization Only"
|
7409 |
msgstr ""
|
7410 |
|
7411 |
-
#: core/lib/wpbc_all_translations1.php:
|
7412 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:438 inc/gateways/sage/wpbc-gw-sage.php:453
|
7413 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:582
|
7414 |
msgid "U.S. Dollars"
|
7415 |
msgstr ""
|
7416 |
|
7417 |
-
#: core/lib/wpbc_all_translations1.php:
|
7418 |
#: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:583
|
7419 |
msgid "Pounds Sterling"
|
7420 |
msgstr ""
|
7421 |
|
7422 |
-
#: core/lib/wpbc_all_translations1.php:
|
7423 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
|
7424 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:584
|
7425 |
msgid "Euros"
|
7426 |
msgstr ""
|
7427 |
|
7428 |
-
#: core/lib/wpbc_all_translations1.php:
|
7429 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
|
7430 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:585
|
7431 |
msgid "Canadian Dollars"
|
7432 |
msgstr ""
|
7433 |
|
7434 |
-
#: core/lib/wpbc_all_translations1.php:
|
7435 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:369 inc/gateways/paypal/wpbc-gw-paypal.php:466
|
7436 |
#: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:726
|
7437 |
msgid "Accepted Currency"
|
7438 |
msgstr ""
|
7439 |
|
7440 |
-
#: core/lib/wpbc_all_translations1.php:
|
7441 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:370 inc/gateways/paypal/wpbc-gw-paypal.php:467
|
7442 |
#: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:727
|
7443 |
msgid "The currency code that gateway will process the payment in."
|
7444 |
msgstr ""
|
7445 |
|
7446 |
-
#: core/lib/wpbc_all_translations1.php:
|
7447 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:730
|
7448 |
msgid ""
|
7449 |
"Setting the currency that is not supported by the payment processor will result in an error."
|
7450 |
msgstr ""
|
7451 |
|
7452 |
-
#: core/lib/wpbc_all_translations1.php:
|
7453 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:419
|
7454 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1052 inc/gateways/ideal/wpbc-gw-ideal.php:309
|
7455 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
|
@@ -7464,21 +7464,21 @@ msgstr ""
|
|
7464 |
msgid "Pay via"
|
7465 |
msgstr ""
|
7466 |
|
7467 |
-
#: core/lib/wpbc_all_translations1.php:
|
7468 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:381
|
7469 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
|
7470 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:750
|
7471 |
msgid "Payment button title"
|
7472 |
msgstr ""
|
7473 |
|
7474 |
-
#: core/lib/wpbc_all_translations1.php:
|
7475 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
|
7476 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
|
7477 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:751
|
7478 |
msgid "Enter the title of the payment button"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
-
#: core/lib/wpbc_all_translations1.php:
|
7482 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:433
|
7483 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1048 inc/gateways/ideal/wpbc-gw-ideal.php:471
|
7484 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
|
@@ -7493,104 +7493,104 @@ msgstr ""
|
|
7493 |
msgid "Payment for booking %s on these day(s): %s"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
-
#: core/lib/wpbc_all_translations1.php:
|
7497 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:395
|
7498 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
|
7499 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:764
|
7500 |
msgid "Payment description at gateway website"
|
7501 |
msgstr ""
|
7502 |
|
7503 |
-
#: core/lib/wpbc_all_translations1.php:
|
7504 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:396
|
7505 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
|
7506 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:765
|
7507 |
msgid "Enter the service name or the reason for the payment here."
|
7508 |
msgstr ""
|
7509 |
|
7510 |
-
#: core/lib/wpbc_all_translations1.php:
|
7511 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:397
|
7512 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
|
7513 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:766
|
7514 |
msgid "You can use any shortcodes, which you have used in content of booking fields data form."
|
7515 |
msgstr ""
|
7516 |
|
7517 |
-
#: core/lib/wpbc_all_translations1.php:
|
7518 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:400
|
7519 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
|
7520 |
#, php-format
|
7521 |
msgid "This field support only up to %s characters by payment system."
|
7522 |
msgstr ""
|
7523 |
|
7524 |
-
#: core/lib/wpbc_all_translations1.php:
|
7525 |
msgid "Activate Relay Response"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
-
#: core/lib/wpbc_all_translations1.php:
|
7529 |
msgid ""
|
7530 |
"Indicate to the payment gateway that you would like to receive the transaction response to your "
|
7531 |
"site."
|
7532 |
msgstr ""
|
7533 |
|
7534 |
-
#: core/lib/wpbc_all_translations1.php:
|
7535 |
msgid ""
|
7536 |
"You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
|
7537 |
"Interface, if a Relay Response is activated here."
|
7538 |
msgstr ""
|
7539 |
|
7540 |
-
#: core/lib/wpbc_all_translations1.php:
|
7541 |
msgid "MD5 Hash value"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: core/lib/wpbc_all_translations1.php:
|
7545 |
msgid ""
|
7546 |
"Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
|
7547 |
msgstr ""
|
7548 |
|
7549 |
-
#: core/lib/wpbc_all_translations1.php:
|
7550 |
msgid "To configure MD5 Hash value in Relay Response for your transactions"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
-
#: core/lib/wpbc_all_translations1.php:
|
7554 |
msgid "Log on to the Merchant Interface"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
-
#: core/lib/wpbc_all_translations1.php:
|
7558 |
msgid "Click Settings under Account in the main menu on the left"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: core/lib/wpbc_all_translations1.php:
|
7562 |
msgid "Click MD5-Hash in the Security Settings section"
|
7563 |
msgstr ""
|
7564 |
|
7565 |
-
#: core/lib/wpbc_all_translations1.php:
|
7566 |
msgid "Enter this value"
|
7567 |
msgstr ""
|
7568 |
|
7569 |
-
#: core/lib/wpbc_all_translations1.php:
|
7570 |
msgid "Click Submit"
|
7571 |
msgstr ""
|
7572 |
|
7573 |
-
#: core/lib/wpbc_all_translations1.php:
|
7574 |
#, php-format
|
7575 |
msgid ""
|
7576 |
"For more information about configuring Relay Response in the Merchant Interface, please see the "
|
7577 |
"%sMerchant Integration Guide%s"
|
7578 |
msgstr ""
|
7579 |
|
7580 |
-
#: core/lib/wpbc_all_translations1.php:
|
7581 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:421
|
7582 |
#: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:790
|
7583 |
msgid "Return URL after Successful order"
|
7584 |
msgstr ""
|
7585 |
|
7586 |
-
#: core/lib/wpbc_all_translations1.php:
|
7587 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:437
|
7588 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
|
7589 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:808
|
7590 |
msgid "The URL where visitor will be redirected after completing payment."
|
7591 |
msgstr ""
|
7592 |
|
7593 |
-
#: core/lib/wpbc_all_translations1.php:
|
7594 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:438
|
7595 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
|
7596 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:809
|
@@ -7598,20 +7598,20 @@ msgstr ""
|
|
7598 |
msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
|
7599 |
msgstr ""
|
7600 |
|
7601 |
-
#: core/lib/wpbc_all_translations1.php:
|
7602 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:452
|
7603 |
#: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:824
|
7604 |
msgid "Return URL after Failed order"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
-
#: core/lib/wpbc_all_translations1.php:
|
7608 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:468
|
7609 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
|
7610 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:842
|
7611 |
msgid "The URL where the visitor will be redirected after completing payment."
|
7612 |
msgstr ""
|
7613 |
|
7614 |
-
#: core/lib/wpbc_all_translations1.php:
|
7615 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:469
|
7616 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
|
7617 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:843
|
@@ -7619,21 +7619,21 @@ msgstr ""
|
|
7619 |
msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
|
7620 |
msgstr ""
|
7621 |
|
7622 |
-
#: core/lib/wpbc_all_translations1.php:
|
7623 |
msgid "Automatically approve booking"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
-
#: core/lib/wpbc_all_translations1.php:
|
7627 |
msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
|
7628 |
msgstr ""
|
7629 |
|
7630 |
-
#: core/lib/wpbc_all_translations1.php:
|
7631 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/paypal/wpbc-gw-paypal.php:640
|
7632 |
#: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:857
|
7633 |
msgid "This will not work, if the visitor leaves the payment page."
|
7634 |
msgstr ""
|
7635 |
|
7636 |
-
#: core/lib/wpbc_all_translations1.php:
|
7637 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7638 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7639 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
|
@@ -7647,11 +7647,11 @@ msgstr ""
|
|
7647 |
msgid "%s Settings"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: core/lib/wpbc_all_translations1.php:
|
7651 |
msgid "Integration of authorizenet payment system"
|
7652 |
msgstr ""
|
7653 |
|
7654 |
-
#: core/lib/wpbc_all_translations1.php:
|
7655 |
#, php-format
|
7656 |
msgid ""
|
7657 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
@@ -7659,233 +7659,233 @@ msgid ""
|
|
7659 |
"gateway."
|
7660 |
msgstr ""
|
7661 |
|
7662 |
-
#: core/lib/wpbc_all_translations1.php:
|
7663 |
msgid ""
|
7664 |
"Please configure all fields inside the Billing form fields tab at this page, when using a "
|
7665 |
"European payment processor"
|
7666 |
msgstr ""
|
7667 |
|
7668 |
-
#: core/lib/wpbc_all_translations1.php:
|
7669 |
msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
|
7670 |
msgstr ""
|
7671 |
|
7672 |
-
#: core/lib/wpbc_all_translations1.php:
|
7673 |
#, php-format
|
7674 |
msgid "%s - Server Integration Method (SIM)"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
-
#: core/lib/wpbc_all_translations1.php:
|
7678 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
|
7679 |
msgid "Payment method description that the customer will see on your payment page."
|
7680 |
msgstr ""
|
7681 |
|
7682 |
-
#: core/lib/wpbc_all_translations1.php:
|
7683 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
|
7684 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7685 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7686 |
msgid "Bank Transfer"
|
7687 |
msgstr ""
|
7688 |
|
7689 |
-
#: core/lib/wpbc_all_translations1.php:
|
7690 |
msgid "Integration of Bank Transfer payment system"
|
7691 |
msgstr ""
|
7692 |
|
7693 |
-
#: core/lib/wpbc_all_translations1.php:
|
7694 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
|
7695 |
msgid "Account details"
|
7696 |
msgstr ""
|
7697 |
|
7698 |
-
#: core/lib/wpbc_all_translations1.php:
|
7699 |
#, php-format
|
7700 |
msgid "Allow payments by %sdirect bank / wire transfer%s"
|
7701 |
msgstr ""
|
7702 |
|
7703 |
-
#: core/lib/wpbc_all_translations1.php:
|
7704 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
|
7705 |
msgid "Its only show fixed payment details."
|
7706 |
msgstr ""
|
7707 |
|
7708 |
-
#: core/lib/wpbc_all_translations1.php:
|
7709 |
msgid "Sort Code"
|
7710 |
msgstr ""
|
7711 |
|
7712 |
-
#: core/lib/wpbc_all_translations1.php:
|
7713 |
#, php-format
|
7714 |
msgid ""
|
7715 |
"Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
|
7716 |
"the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
-
#: core/lib/wpbc_all_translations1.php:
|
7720 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
|
7721 |
msgid "Account Number"
|
7722 |
msgstr ""
|
7723 |
|
7724 |
-
#: core/lib/wpbc_all_translations1.php:
|
7725 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
|
7726 |
msgid "IBAN"
|
7727 |
msgstr ""
|
7728 |
|
7729 |
-
#: core/lib/wpbc_all_translations1.php:
|
7730 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
|
7731 |
msgid "BIC / Swift"
|
7732 |
msgstr ""
|
7733 |
|
7734 |
-
#: core/lib/wpbc_all_translations1.php:
|
7735 |
msgid "Account Name"
|
7736 |
msgstr ""
|
7737 |
|
7738 |
-
#: core/lib/wpbc_all_translations1.php:
|
7739 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:324
|
7740 |
msgid "Bank Name"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
-
#: core/lib/wpbc_all_translations1.php:
|
7744 |
msgid "BSB"
|
7745 |
msgstr ""
|
7746 |
|
7747 |
-
#: core/lib/wpbc_all_translations1.php:
|
7748 |
msgid "Bank Transit Number"
|
7749 |
msgstr ""
|
7750 |
|
7751 |
-
#: core/lib/wpbc_all_translations1.php:
|
7752 |
msgid "IFSC"
|
7753 |
msgstr ""
|
7754 |
|
7755 |
-
#: core/lib/wpbc_all_translations1.php:
|
7756 |
msgid "Branch Sort"
|
7757 |
msgstr ""
|
7758 |
|
7759 |
-
#: core/lib/wpbc_all_translations1.php:
|
7760 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
|
7761 |
msgid "Bank Code"
|
7762 |
msgstr ""
|
7763 |
|
7764 |
-
#: core/lib/wpbc_all_translations1.php:
|
7765 |
msgid "Routing Number"
|
7766 |
msgstr ""
|
7767 |
|
7768 |
-
#: core/lib/wpbc_all_translations1.php:
|
7769 |
msgid "Branch Code"
|
7770 |
msgstr ""
|
7771 |
|
7772 |
-
#: core/lib/wpbc_all_translations1.php:
|
7773 |
#, php-format
|
7774 |
msgid "%s - inserting all bank accounts details"
|
7775 |
msgstr ""
|
7776 |
|
7777 |
-
#: core/lib/wpbc_all_translations1.php:
|
7778 |
#, php-format
|
7779 |
msgid "%s - inserting account name"
|
7780 |
msgstr ""
|
7781 |
|
7782 |
-
#: core/lib/wpbc_all_translations1.php:
|
7783 |
#, php-format
|
7784 |
msgid "%s - inserting account number"
|
7785 |
msgstr ""
|
7786 |
|
7787 |
-
#: core/lib/wpbc_all_translations1.php:
|
7788 |
#, php-format
|
7789 |
msgid "%s - inserting bank name "
|
7790 |
msgstr ""
|
7791 |
|
7792 |
-
#: core/lib/wpbc_all_translations1.php:
|
7793 |
#, php-format
|
7794 |
msgid "%s - inserting sort code "
|
7795 |
msgstr ""
|
7796 |
|
7797 |
-
#: core/lib/wpbc_all_translations1.php:
|
7798 |
#, php-format
|
7799 |
msgid "%s - inserting IBAN "
|
7800 |
msgstr ""
|
7801 |
|
7802 |
-
#: core/lib/wpbc_all_translations1.php:
|
7803 |
#, php-format
|
7804 |
msgid "%s - inserting BIC "
|
7805 |
msgstr ""
|
7806 |
|
7807 |
-
#: core/lib/wpbc_all_translations1.php:
|
7808 |
msgid ""
|
7809 |
"You can use any shortcodes, that you can use in payment description form at Settings Payment "
|
7810 |
"General page"
|
7811 |
msgstr ""
|
7812 |
|
7813 |
-
#: core/lib/wpbc_all_translations1.php:
|
7814 |
msgid "+ Add Account"
|
7815 |
msgstr ""
|
7816 |
|
7817 |
-
#: core/lib/wpbc_all_translations1.php:
|
7818 |
msgid "Remove selected account(s)"
|
7819 |
msgstr ""
|
7820 |
|
7821 |
-
#: core/lib/wpbc_all_translations1.php:
|
7822 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:570
|
7823 |
msgid "Successful payment"
|
7824 |
msgstr ""
|
7825 |
|
7826 |
-
#: core/lib/wpbc_all_translations1.php:
|
7827 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:573
|
7828 |
msgid " Parameters are incorrect,"
|
7829 |
msgstr ""
|
7830 |
|
7831 |
-
#: core/lib/wpbc_all_translations1.php:
|
7832 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:575
|
7833 |
msgid "Cannot find the record"
|
7834 |
msgstr ""
|
7835 |
|
7836 |
-
#: core/lib/wpbc_all_translations1.php:
|
7837 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:577
|
7838 |
msgid "Amount different"
|
7839 |
msgstr ""
|
7840 |
|
7841 |
-
#: core/lib/wpbc_all_translations1.php:
|
7842 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:579
|
7843 |
msgid "Payment failed"
|
7844 |
msgstr ""
|
7845 |
|
7846 |
-
#: core/lib/wpbc_all_translations1.php:
|
7847 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:581
|
7848 |
msgid "Payment status updated by Mobile88 Admin(Fail)"
|
7849 |
msgstr ""
|
7850 |
|
7851 |
-
#: core/lib/wpbc_all_translations1.php:
|
7852 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:583
|
7853 |
msgid "Connection Error"
|
7854 |
msgstr ""
|
7855 |
|
7856 |
-
#: core/lib/wpbc_all_translations1.php:
|
7857 |
msgid "Merchant Code"
|
7858 |
msgstr ""
|
7859 |
|
7860 |
-
#: core/lib/wpbc_all_translations1.php:
|
7861 |
msgid "Enter your iPay88 Merchant Code."
|
7862 |
msgstr ""
|
7863 |
|
7864 |
-
#: core/lib/wpbc_all_translations1.php:
|
7865 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:343
|
7866 |
msgid "Merchant Key"
|
7867 |
msgstr ""
|
7868 |
|
7869 |
-
#: core/lib/wpbc_all_translations1.php:
|
7870 |
msgid "Enter your iPay88 Merchant Key."
|
7871 |
msgstr ""
|
7872 |
|
7873 |
-
#: core/lib/wpbc_all_translations1.php:
|
7874 |
msgid "Malaysian Ringgit"
|
7875 |
msgstr ""
|
7876 |
|
7877 |
-
#: core/lib/wpbc_all_translations1.php:
|
7878 |
#: inc/gateways/sage/wpbc-gw-sage.php:471
|
7879 |
msgid "Philippine Pesos"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
-
#: core/lib/wpbc_all_translations1.php:
|
7883 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:479 inc/gateways/paypal/wpbc-gw-paypal.php:637
|
7884 |
#: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:854
|
7885 |
msgid "Automatically approve/cancel booking"
|
7886 |
msgstr ""
|
7887 |
|
7888 |
-
#: core/lib/wpbc_all_translations1.php:
|
7889 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:480 inc/gateways/paypal/wpbc-gw-paypal.php:638
|
7890 |
#: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:855
|
7891 |
msgid ""
|
@@ -7893,11 +7893,11 @@ msgid ""
|
|
7893 |
"automatically cancel the booking, when visitor makes a payment cancellation."
|
7894 |
msgstr ""
|
7895 |
|
7896 |
-
#: core/lib/wpbc_all_translations1.php:
|
7897 |
msgid "Integration of iPay88 payment system"
|
7898 |
msgstr ""
|
7899 |
|
7900 |
-
#: core/lib/wpbc_all_translations1.php:
|
7901 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:832 inc/gateways/sage/wpbc-gw-sage.php:883
|
7902 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1113
|
7903 |
#, php-format
|
@@ -7906,734 +7906,734 @@ msgid ""
|
|
7906 |
"tab."
|
7907 |
msgstr ""
|
7908 |
|
7909 |
-
#: core/lib/wpbc_all_translations1.php:
|
7910 |
msgid "for 1 day"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
-
#: core/lib/wpbc_all_translations1.php:
|
7914 |
msgid "for 1 night"
|
7915 |
msgstr ""
|
7916 |
|
7917 |
-
#: core/lib/wpbc_all_translations1.php:
|
7918 |
msgid "fixed sum"
|
7919 |
msgstr ""
|
7920 |
|
7921 |
-
#: core/lib/wpbc_all_translations1.php:
|
7922 |
msgid "for 1 hour"
|
7923 |
msgstr ""
|
7924 |
|
7925 |
-
#: core/lib/wpbc_all_translations1.php:
|
7926 |
msgid "Set the cost"
|
7927 |
msgstr ""
|
7928 |
|
7929 |
-
#: core/lib/wpbc_all_translations1.php:
|
7930 |
msgid " Select your cost configuration."
|
7931 |
msgstr ""
|
7932 |
|
7933 |
-
#: core/lib/wpbc_all_translations1.php:
|
7934 |
msgid "Time impact to cost"
|
7935 |
msgstr ""
|
7936 |
|
7937 |
-
#: core/lib/wpbc_all_translations1.php:
|
7938 |
#, php-format
|
7939 |
msgid ""
|
7940 |
"Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
|
7941 |
"calculation%s."
|
7942 |
msgstr ""
|
7943 |
|
7944 |
-
#: core/lib/wpbc_all_translations1.php:
|
7945 |
msgid ""
|
7946 |
"Check this box if you want that specific additional cost, which configured as percentage for "
|
7947 |
"some option, apply to other additional fixed costs and not only to original booking cost."
|
7948 |
msgstr ""
|
7949 |
|
7950 |
-
#: core/lib/wpbc_all_translations1.php:
|
7951 |
#: inc/gateways/page-gateways.php:869
|
7952 |
msgid "Currency"
|
7953 |
msgstr ""
|
7954 |
|
7955 |
-
#: core/lib/wpbc_all_translations1.php:
|
7956 |
msgid ""
|
7957 |
"This is default currency that showing at your website. Specific payment gateway(s) can support "
|
7958 |
"or does not suport it."
|
7959 |
msgstr ""
|
7960 |
|
7961 |
-
#: core/lib/wpbc_all_translations1.php:
|
7962 |
#: inc/gateways/page-gateways.php:201 inc/gateways/page-gateways.php:921
|
7963 |
msgid "Important"
|
7964 |
msgstr ""
|
7965 |
|
7966 |
-
#: core/lib/wpbc_all_translations1.php:
|
7967 |
msgid "Check and configure currency at each activated payment gateway."
|
7968 |
msgstr ""
|
7969 |
|
7970 |
-
#: core/lib/wpbc_all_translations1.php:
|
7971 |
msgid "Currency Position"
|
7972 |
msgstr ""
|
7973 |
|
7974 |
-
#: core/lib/wpbc_all_translations1.php:
|
7975 |
msgid "Set position of the currency symbol."
|
7976 |
msgstr ""
|
7977 |
|
7978 |
-
#: core/lib/wpbc_all_translations1.php:
|
7979 |
msgid "Left"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
-
#: core/lib/wpbc_all_translations1.php:
|
7983 |
msgid "Right"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
-
#: core/lib/wpbc_all_translations1.php:
|
7987 |
msgid "Left with space"
|
7988 |
msgstr ""
|
7989 |
|
7990 |
-
#: core/lib/wpbc_all_translations1.php:
|
7991 |
msgid "Right with space"
|
7992 |
msgstr ""
|
7993 |
|
7994 |
-
#: core/lib/wpbc_all_translations1.php:
|
7995 |
msgid "Currency format"
|
7996 |
msgstr ""
|
7997 |
|
7998 |
-
#: core/lib/wpbc_all_translations1.php:
|
7999 |
msgid "Number of decimal points"
|
8000 |
msgstr ""
|
8001 |
|
8002 |
-
#: core/lib/wpbc_all_translations1.php:
|
8003 |
#: inc/gateways/page-gateways.php:269
|
8004 |
msgid "No separator"
|
8005 |
msgstr ""
|
8006 |
|
8007 |
-
#: core/lib/wpbc_all_translations1.php:
|
8008 |
#: inc/gateways/page-gateways.php:270
|
8009 |
msgid "Space"
|
8010 |
msgstr ""
|
8011 |
|
8012 |
-
#: core/lib/wpbc_all_translations1.php:
|
8013 |
#: inc/gateways/page-gateways.php:271
|
8014 |
msgid "Dot"
|
8015 |
msgstr ""
|
8016 |
|
8017 |
-
#: core/lib/wpbc_all_translations1.php:
|
8018 |
#: inc/gateways/page-gateways.php:272
|
8019 |
msgid "Comma"
|
8020 |
msgstr ""
|
8021 |
|
8022 |
-
#: core/lib/wpbc_all_translations1.php:
|
8023 |
msgid "Separator for the decimal point"
|
8024 |
msgstr ""
|
8025 |
|
8026 |
-
#: core/lib/wpbc_all_translations1.php:
|
8027 |
msgid "Thousands separator"
|
8028 |
msgstr ""
|
8029 |
|
8030 |
-
#: core/lib/wpbc_all_translations1.php:
|
8031 |
msgid "Please select"
|
8032 |
msgstr ""
|
8033 |
|
8034 |
-
#: core/lib/wpbc_all_translations1.php:
|
8035 |
msgid ""
|
8036 |
"Please select a field from your booking form. This field will be automatically assigned to the "
|
8037 |
"current field in the billing form."
|
8038 |
msgstr ""
|
8039 |
|
8040 |
-
#: core/lib/wpbc_all_translations1.php:
|
8041 |
msgid "Customer Email"
|
8042 |
msgstr ""
|
8043 |
|
8044 |
-
#: core/lib/wpbc_all_translations1.php:
|
8045 |
msgid "First Name(s)"
|
8046 |
msgstr ""
|
8047 |
|
8048 |
-
#: core/lib/wpbc_all_translations1.php:
|
8049 |
msgid "Last name"
|
8050 |
msgstr ""
|
8051 |
|
8052 |
-
#: core/lib/wpbc_all_translations1.php:
|
8053 |
msgid "Billing Address"
|
8054 |
msgstr ""
|
8055 |
|
8056 |
-
#: core/lib/wpbc_all_translations1.php:
|
8057 |
msgid "Billing City"
|
8058 |
msgstr ""
|
8059 |
|
8060 |
-
#: core/lib/wpbc_all_translations1.php:
|
8061 |
msgid "Post Code"
|
8062 |
msgstr ""
|
8063 |
|
8064 |
-
#: core/lib/wpbc_all_translations1.php:
|
8065 |
msgid "State"
|
8066 |
msgstr ""
|
8067 |
|
8068 |
-
#: core/lib/wpbc_all_translations1.php:
|
8069 |
msgid "Show booking details in payment form"
|
8070 |
msgstr ""
|
8071 |
|
8072 |
-
#: core/lib/wpbc_all_translations1.php:
|
8073 |
#, php-format
|
8074 |
msgid ""
|
8075 |
" Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
|
8076 |
msgstr ""
|
8077 |
|
8078 |
-
#: core/lib/wpbc_all_translations1.php:
|
8079 |
msgid "Configure booking details summary above the payment form"
|
8080 |
msgstr ""
|
8081 |
|
8082 |
-
#: core/lib/wpbc_all_translations1.php:
|
8083 |
msgid "Payments"
|
8084 |
msgstr ""
|
8085 |
|
8086 |
-
#: core/lib/wpbc_all_translations1.php:
|
8087 |
msgid "Customizaton of Payment"
|
8088 |
msgstr ""
|
8089 |
|
8090 |
-
#: core/lib/wpbc_all_translations1.php:
|
8091 |
msgid "Payment Gateways"
|
8092 |
msgstr ""
|
8093 |
|
8094 |
-
#: core/lib/wpbc_all_translations1.php:
|
8095 |
#: inc/gateways/page-gateways.php:609 inc/gateways/page-gateways.php:636
|
8096 |
msgid "Payment Settings"
|
8097 |
msgstr ""
|
8098 |
|
8099 |
-
#: core/lib/wpbc_all_translations1.php:
|
8100 |
msgid "Payment Gateways - General Settings"
|
8101 |
msgstr ""
|
8102 |
|
8103 |
-
#: core/lib/wpbc_all_translations1.php:
|
8104 |
#: inc/gateways/page-gateways.php:631
|
8105 |
msgid "Active Payment Gateways"
|
8106 |
msgstr ""
|
8107 |
|
8108 |
-
#: core/lib/wpbc_all_translations1.php:
|
8109 |
#: inc/gateways/page-gateways.php:652
|
8110 |
msgid "Billing form fields"
|
8111 |
msgstr ""
|
8112 |
|
8113 |
-
#: core/lib/wpbc_all_translations1.php:
|
8114 |
#: inc/gateways/page-gateways.php:666
|
8115 |
msgid "Payment Description"
|
8116 |
msgstr ""
|
8117 |
|
8118 |
-
#: core/lib/wpbc_all_translations1.php:
|
8119 |
msgid "Gateway"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
-
#: core/lib/wpbc_all_translations1.php:
|
8123 |
#, php-format
|
8124 |
msgid "Some currencies at payment gateways are different from main currency %s"
|
8125 |
msgstr ""
|
8126 |
|
8127 |
-
#: core/lib/wpbc_all_translations1.php:
|
8128 |
#, php-format
|
8129 |
msgid ""
|
8130 |
"Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
|
8131 |
"payment form without currency exchange! Its can be reason of wrong cost."
|
8132 |
msgstr ""
|
8133 |
|
8134 |
-
#: core/lib/wpbc_all_translations1.php:
|
8135 |
msgid "ID of booking"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
-
#: core/lib/wpbc_all_translations1.php:
|
8139 |
msgid "ID of booking resources"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
-
#: core/lib/wpbc_all_translations1.php:
|
8143 |
msgid "current date"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
-
#: core/lib/wpbc_all_translations1.php:
|
8147 |
msgid "current time"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
-
#: core/lib/wpbc_all_translations1.php:
|
8151 |
msgid "content data of this booking"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
-
#: core/lib/wpbc_all_translations1.php:
|
8155 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
|
8156 |
msgid "show amount to pay"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
-
#: core/lib/wpbc_all_translations1.php:
|
8160 |
msgid "total booking cost"
|
8161 |
msgstr ""
|
8162 |
|
8163 |
-
#: core/lib/wpbc_all_translations1.php:
|
8164 |
msgid "deposit cost"
|
8165 |
msgstr ""
|
8166 |
|
8167 |
-
#: core/lib/wpbc_all_translations1.php:
|
8168 |
msgid "balance cost"
|
8169 |
msgstr ""
|
8170 |
|
8171 |
-
#: core/lib/wpbc_all_translations1.php:
|
8172 |
msgid "original booking cost"
|
8173 |
msgstr ""
|
8174 |
|
8175 |
-
#: core/lib/wpbc_all_translations1.php:
|
8176 |
msgid "additional booking cost"
|
8177 |
msgstr ""
|
8178 |
|
8179 |
-
#: core/lib/wpbc_all_translations1.php:
|
8180 |
msgid "Amount to pay"
|
8181 |
msgstr ""
|
8182 |
|
8183 |
-
#: core/lib/wpbc_all_translations1.php:
|
8184 |
#, php-format
|
8185 |
msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
|
8186 |
msgstr ""
|
8187 |
|
8188 |
-
#: core/lib/wpbc_all_translations1.php:
|
8189 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
|
8190 |
msgid "Pay in Cash"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
-
#: core/lib/wpbc_all_translations1.php:
|
8194 |
msgid "Integration of Pay in Cash payment system"
|
8195 |
msgstr ""
|
8196 |
|
8197 |
-
#: core/lib/wpbc_all_translations1.php:
|
8198 |
#, php-format
|
8199 |
msgid "If you accept %scash payment%s, you can write details about it here"
|
8200 |
msgstr ""
|
8201 |
|
8202 |
-
#: core/lib/wpbc_all_translations1.php:
|
8203 |
#, php-format
|
8204 |
msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
-
#: core/lib/wpbc_all_translations1.php:
|
8208 |
msgid "Error IPN"
|
8209 |
msgstr ""
|
8210 |
|
8211 |
-
#: core/lib/wpbc_all_translations1.php:
|
8212 |
msgid "Verified IPN"
|
8213 |
msgstr ""
|
8214 |
|
8215 |
-
#: core/lib/wpbc_all_translations1.php:
|
8216 |
msgid "Invalid IPN"
|
8217 |
msgstr ""
|
8218 |
|
8219 |
-
#: core/lib/wpbc_all_translations1.php:
|
8220 |
msgid "Make payments with payPal - its fast, free and secure!"
|
8221 |
msgstr ""
|
8222 |
|
8223 |
-
#: core/lib/wpbc_all_translations1.php:
|
8224 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8225 |
msgid "Paypal Standard"
|
8226 |
msgstr ""
|
8227 |
|
8228 |
-
#: core/lib/wpbc_all_translations1.php:
|
8229 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8230 |
msgid "Paypal Pro Hosted Solution"
|
8231 |
msgstr ""
|
8232 |
|
8233 |
-
#: core/lib/wpbc_all_translations1.php:
|
8234 |
msgid "Account Type"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
-
#: core/lib/wpbc_all_translations1.php:
|
8238 |
msgid "Paypal Email address to receive payments"
|
8239 |
msgstr ""
|
8240 |
|
8241 |
-
#: core/lib/wpbc_all_translations1.php:
|
8242 |
msgid "This is the Paypal Email address where payments will be sent"
|
8243 |
msgstr ""
|
8244 |
|
8245 |
-
#: core/lib/wpbc_all_translations1.php:
|
8246 |
msgid "Secure Merchant ID"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
-
#: core/lib/wpbc_all_translations1.php:
|
8250 |
msgid "This is the Secure Merchant ID, which can be found on the profile page"
|
8251 |
msgstr ""
|
8252 |
|
8253 |
-
#: core/lib/wpbc_all_translations1.php:
|
8254 |
msgid ""
|
8255 |
" Indicates whether the transaction is payment on a final sale or an authorization for a final "
|
8256 |
"sale, to be captured later. "
|
8257 |
msgstr ""
|
8258 |
|
8259 |
-
#: core/lib/wpbc_all_translations1.php:
|
8260 |
msgid "Sale"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
-
#: core/lib/wpbc_all_translations1.php:
|
8264 |
msgid "Authorization"
|
8265 |
msgstr ""
|
8266 |
|
8267 |
-
#: core/lib/wpbc_all_translations1.php:
|
8268 |
msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
|
8269 |
msgstr ""
|
8270 |
|
8271 |
-
#: core/lib/wpbc_all_translations1.php:
|
8272 |
msgid "Sandbox"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
-
#: core/lib/wpbc_all_translations1.php:
|
8276 |
msgid "British Pound"
|
8277 |
msgstr ""
|
8278 |
|
8279 |
-
#: core/lib/wpbc_all_translations1.php:
|
8280 |
msgid "Japanese Yen"
|
8281 |
msgstr ""
|
8282 |
|
8283 |
-
#: core/lib/wpbc_all_translations1.php:
|
8284 |
#: inc/gateways/sage/wpbc-gw-sage.php:455
|
8285 |
msgid "Australian Dollars"
|
8286 |
msgstr ""
|
8287 |
|
8288 |
-
#: core/lib/wpbc_all_translations1.php:
|
8289 |
#: inc/gateways/sage/wpbc-gw-sage.php:457
|
8290 |
msgid "New Zealand Dollar"
|
8291 |
msgstr ""
|
8292 |
|
8293 |
-
#: core/lib/wpbc_all_translations1.php:
|
8294 |
#: inc/gateways/sage/wpbc-gw-sage.php:458
|
8295 |
msgid "Swiss Franc"
|
8296 |
msgstr ""
|
8297 |
|
8298 |
-
#: core/lib/wpbc_all_translations1.php:
|
8299 |
#: inc/gateways/sage/wpbc-gw-sage.php:459
|
8300 |
msgid "Hong Kong Dollar"
|
8301 |
msgstr ""
|
8302 |
|
8303 |
-
#: core/lib/wpbc_all_translations1.php:
|
8304 |
#: inc/gateways/sage/wpbc-gw-sage.php:460
|
8305 |
msgid "Singapore Dollar"
|
8306 |
msgstr ""
|
8307 |
|
8308 |
-
#: core/lib/wpbc_all_translations1.php:
|
8309 |
#: inc/gateways/sage/wpbc-gw-sage.php:461
|
8310 |
msgid "Swedish Krona"
|
8311 |
msgstr ""
|
8312 |
|
8313 |
-
#: core/lib/wpbc_all_translations1.php:
|
8314 |
#: inc/gateways/sage/wpbc-gw-sage.php:462
|
8315 |
msgid "Danish Krone"
|
8316 |
msgstr ""
|
8317 |
|
8318 |
-
#: core/lib/wpbc_all_translations1.php:
|
8319 |
#: inc/gateways/sage/wpbc-gw-sage.php:463
|
8320 |
msgid "Polish Zloty"
|
8321 |
msgstr ""
|
8322 |
|
8323 |
-
#: core/lib/wpbc_all_translations1.php:
|
8324 |
#: inc/gateways/sage/wpbc-gw-sage.php:464
|
8325 |
msgid "Norwegian Krone"
|
8326 |
msgstr ""
|
8327 |
|
8328 |
-
#: core/lib/wpbc_all_translations1.php:
|
8329 |
#: inc/gateways/sage/wpbc-gw-sage.php:465
|
8330 |
msgid "Hungarian Forint"
|
8331 |
msgstr ""
|
8332 |
|
8333 |
-
#: core/lib/wpbc_all_translations1.php:
|
8334 |
#: inc/gateways/sage/wpbc-gw-sage.php:466
|
8335 |
msgid "Czech Koruna"
|
8336 |
msgstr ""
|
8337 |
|
8338 |
-
#: core/lib/wpbc_all_translations1.php:
|
8339 |
msgid "Israeli New Shekel"
|
8340 |
msgstr ""
|
8341 |
|
8342 |
-
#: core/lib/wpbc_all_translations1.php:
|
8343 |
#: inc/gateways/sage/wpbc-gw-sage.php:468
|
8344 |
msgid "Mexican Peso"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
-
#: core/lib/wpbc_all_translations1.php:
|
8348 |
#: inc/gateways/sage/wpbc-gw-sage.php:469
|
8349 |
msgid "Brazilian Real (only for Brazilian users)"
|
8350 |
msgstr ""
|
8351 |
|
8352 |
-
#: core/lib/wpbc_all_translations1.php:
|
8353 |
#: inc/gateways/sage/wpbc-gw-sage.php:470
|
8354 |
msgid "Malaysian Ringgits (only for Malaysian users)"
|
8355 |
msgstr ""
|
8356 |
|
8357 |
-
#: core/lib/wpbc_all_translations1.php:
|
8358 |
#: inc/gateways/sage/wpbc-gw-sage.php:472
|
8359 |
msgid "Taiwan New Dollars"
|
8360 |
msgstr ""
|
8361 |
|
8362 |
-
#: core/lib/wpbc_all_translations1.php:
|
8363 |
#: inc/gateways/sage/wpbc-gw-sage.php:473
|
8364 |
msgid "Thai Baht"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
-
#: core/lib/wpbc_all_translations1.php:
|
8368 |
msgid "Turkish Lira (only for Turkish members)"
|
8369 |
msgstr ""
|
8370 |
|
8371 |
-
#: core/lib/wpbc_all_translations1.php:
|
8372 |
msgid "Custom button title"
|
8373 |
msgstr ""
|
8374 |
|
8375 |
-
#: core/lib/wpbc_all_translations1.php:
|
8376 |
msgid "Payment Button type"
|
8377 |
msgstr ""
|
8378 |
|
8379 |
-
#: core/lib/wpbc_all_translations1.php:
|
8380 |
msgid "Show Reference Text Box"
|
8381 |
msgstr ""
|
8382 |
|
8383 |
-
#: core/lib/wpbc_all_translations1.php:
|
8384 |
msgid "Check this box to show Reference Text Box"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
-
#: core/lib/wpbc_all_translations1.php:
|
8388 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
|
8389 |
msgid "Enter your phone number"
|
8390 |
msgstr ""
|
8391 |
|
8392 |
-
#: core/lib/wpbc_all_translations1.php:
|
8393 |
msgid "Reference Text Box Title"
|
8394 |
msgstr ""
|
8395 |
|
8396 |
-
#: core/lib/wpbc_all_translations1.php:
|
8397 |
msgid ""
|
8398 |
"Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
|
8399 |
msgstr ""
|
8400 |
|
8401 |
-
#: core/lib/wpbc_all_translations1.php:
|
8402 |
msgid "Return URL from PayPal"
|
8403 |
msgstr ""
|
8404 |
|
8405 |
-
#: core/lib/wpbc_all_translations1.php:
|
8406 |
msgid "Cancel Return URL from PayPal"
|
8407 |
msgstr ""
|
8408 |
|
8409 |
-
#: core/lib/wpbc_all_translations1.php:
|
8410 |
#, php-format
|
8411 |
msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
|
8412 |
msgstr ""
|
8413 |
|
8414 |
-
#: core/lib/wpbc_all_translations1.php:
|
8415 |
msgid "Follow these steps to configure it:"
|
8416 |
msgstr ""
|
8417 |
|
8418 |
-
#: core/lib/wpbc_all_translations1.php:
|
8419 |
msgid "Log in to your PayPal account."
|
8420 |
msgstr ""
|
8421 |
|
8422 |
-
#: core/lib/wpbc_all_translations1.php:
|
8423 |
msgid "Click the Profile subtab."
|
8424 |
msgstr ""
|
8425 |
|
8426 |
-
#: core/lib/wpbc_all_translations1.php:
|
8427 |
msgid "Click Website Payment Preferences in the Seller Preferences column."
|
8428 |
msgstr ""
|
8429 |
|
8430 |
-
#: core/lib/wpbc_all_translations1.php:
|
8431 |
msgid "Under Auto Return for Website Payments, click the On radio button."
|
8432 |
msgstr ""
|
8433 |
|
8434 |
-
#: core/lib/wpbc_all_translations1.php:
|
8435 |
msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
|
8436 |
msgstr ""
|
8437 |
|
8438 |
-
#: core/lib/wpbc_all_translations1.php:
|
8439 |
msgid ""
|
8440 |
"Instant Payment Notification (IPN) is a message service that notifies you of events related to "
|
8441 |
"PayPal transactions"
|
8442 |
msgstr ""
|
8443 |
|
8444 |
-
#: core/lib/wpbc_all_translations1.php:
|
8445 |
msgid "Sending email for verified transaction"
|
8446 |
msgstr ""
|
8447 |
|
8448 |
-
#: core/lib/wpbc_all_translations1.php:
|
8449 |
#, php-format
|
8450 |
msgid "Email for getting report for %sverified%s transactions."
|
8451 |
msgstr ""
|
8452 |
|
8453 |
-
#: core/lib/wpbc_all_translations1.php:
|
8454 |
msgid "Sending email for invalid transaction"
|
8455 |
msgstr ""
|
8456 |
|
8457 |
-
#: core/lib/wpbc_all_translations1.php:
|
8458 |
#, php-format
|
8459 |
msgid "Email for getting report for %sinvalid%s transactions."
|
8460 |
msgstr ""
|
8461 |
|
8462 |
-
#: core/lib/wpbc_all_translations1.php:
|
8463 |
msgid "Sending email if error occur during verification"
|
8464 |
msgstr ""
|
8465 |
|
8466 |
-
#: core/lib/wpbc_all_translations1.php:
|
8467 |
#, php-format
|
8468 |
msgid "Email for getting report for %ssome errors in verification process%s."
|
8469 |
msgstr ""
|
8470 |
|
8471 |
-
#: core/lib/wpbc_all_translations1.php:
|
8472 |
msgid "Use SSL connection"
|
8473 |
msgstr ""
|
8474 |
|
8475 |
-
#: core/lib/wpbc_all_translations1.php:
|
8476 |
msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
|
8477 |
msgstr ""
|
8478 |
|
8479 |
-
#: core/lib/wpbc_all_translations1.php:
|
8480 |
msgid "Use cURL posting"
|
8481 |
msgstr ""
|
8482 |
|
8483 |
-
#: core/lib/wpbc_all_translations1.php:
|
8484 |
msgid "Use the cURL for posting data, instead of fsockopen() function"
|
8485 |
msgstr ""
|
8486 |
|
8487 |
-
#: core/lib/wpbc_all_translations1.php:
|
8488 |
msgid " Follow these instructions to set up your listener at your PayPal account:"
|
8489 |
msgstr ""
|
8490 |
|
8491 |
-
#: core/lib/wpbc_all_translations1.php:
|
8492 |
msgid "Click Profile on the My Account tab."
|
8493 |
msgstr ""
|
8494 |
|
8495 |
-
#: core/lib/wpbc_all_translations1.php:
|
8496 |
msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
|
8497 |
msgstr ""
|
8498 |
|
8499 |
-
#: core/lib/wpbc_all_translations1.php:
|
8500 |
msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
|
8501 |
msgstr ""
|
8502 |
|
8503 |
-
#: core/lib/wpbc_all_translations1.php:
|
8504 |
msgid "Specify the URL for your listener in the Notification URL field as:"
|
8505 |
msgstr ""
|
8506 |
|
8507 |
-
#: core/lib/wpbc_all_translations1.php:
|
8508 |
msgid "Click Receive IPN messages (Enabled) to enable your listener."
|
8509 |
msgstr ""
|
8510 |
|
8511 |
-
#: core/lib/wpbc_all_translations1.php:
|
8512 |
msgid "Click Save."
|
8513 |
msgstr ""
|
8514 |
|
8515 |
-
#: core/lib/wpbc_all_translations1.php:
|
8516 |
msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
|
8517 |
msgstr ""
|
8518 |
|
8519 |
-
#: core/lib/wpbc_all_translations1.php:
|
8520 |
msgid "PayPal"
|
8521 |
msgstr ""
|
8522 |
|
8523 |
-
#: core/lib/wpbc_all_translations1.php:
|
8524 |
msgid "Integration of Paypal payment system"
|
8525 |
msgstr ""
|
8526 |
|
8527 |
-
#: core/lib/wpbc_all_translations1.php:
|
8528 |
msgid "PayPal IPN"
|
8529 |
msgstr ""
|
8530 |
|
8531 |
-
#: core/lib/wpbc_all_translations1.php:
|
8532 |
#, php-format
|
8533 |
msgid "Pay using %s payment service"
|
8534 |
msgstr ""
|
8535 |
|
8536 |
-
#: core/lib/wpbc_all_translations1.php:
|
8537 |
msgid "Vendor Name"
|
8538 |
msgstr ""
|
8539 |
|
8540 |
-
#: core/lib/wpbc_all_translations1.php:
|
8541 |
msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
|
8542 |
msgstr ""
|
8543 |
|
8544 |
-
#: core/lib/wpbc_all_translations1.php:
|
8545 |
msgid "XOR Encryption password"
|
8546 |
msgstr ""
|
8547 |
|
8548 |
-
#: core/lib/wpbc_all_translations1.php:
|
8549 |
msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
|
8550 |
msgstr ""
|
8551 |
|
8552 |
-
#: core/lib/wpbc_all_translations1.php:
|
8553 |
#: inc/gateways/sage/wpbc-gw-sage.php:425
|
8554 |
msgid "Select TEST for the Test Server and LIVE in the live environment"
|
8555 |
msgstr ""
|
8556 |
|
8557 |
-
#: core/lib/wpbc_all_translations1.php:
|
8558 |
#: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:501
|
8559 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
8560 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
8561 |
msgid "TEST"
|
8562 |
msgstr ""
|
8563 |
|
8564 |
-
#: core/lib/wpbc_all_translations1.php:
|
8565 |
#: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:502
|
8566 |
msgid "LIVE"
|
8567 |
msgstr ""
|
8568 |
|
8569 |
-
#: core/lib/wpbc_all_translations1.php:
|
8570 |
msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
|
8571 |
msgstr ""
|
8572 |
|
8573 |
-
#: core/lib/wpbc_all_translations1.php:
|
8574 |
msgid "PAYMENT"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
-
#: core/lib/wpbc_all_translations1.php:
|
8578 |
msgid "DEFERRED"
|
8579 |
msgstr ""
|
8580 |
|
8581 |
-
#: core/lib/wpbc_all_translations1.php:
|
8582 |
msgid "AUTHENTICATE"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
-
#: core/lib/wpbc_all_translations1.php:
|
8586 |
msgid "Yen"
|
8587 |
msgstr ""
|
8588 |
|
8589 |
-
#: core/lib/wpbc_all_translations1.php:
|
8590 |
msgid "Israeli Shekel"
|
8591 |
msgstr ""
|
8592 |
|
8593 |
-
#: core/lib/wpbc_all_translations1.php:
|
8594 |
msgid "Sage"
|
8595 |
msgstr ""
|
8596 |
|
8597 |
-
#: core/lib/wpbc_all_translations1.php:
|
8598 |
msgid "Integration of Sage payment system"
|
8599 |
msgstr ""
|
8600 |
|
8601 |
-
#: core/lib/wpbc_all_translations1.php:
|
8602 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1059
|
8603 |
#, php-format
|
8604 |
msgid "If you have no account on this system, please visit %s to create one."
|
8605 |
msgstr ""
|
8606 |
|
8607 |
-
#: core/lib/wpbc_all_translations1.php:
|
8608 |
msgid "Payment rejected"
|
8609 |
msgstr ""
|
8610 |
|
8611 |
-
#: core/lib/wpbc_all_translations1.php:
|
8612 |
msgid "Merchant ID"
|
8613 |
msgstr ""
|
8614 |
|
8615 |
-
#: core/lib/wpbc_all_translations1.php:
|
8616 |
msgid "Enter your iDEAL Merchant ID"
|
8617 |
msgstr ""
|
8618 |
|
8619 |
-
#: core/lib/wpbc_all_translations1.php:
|
8620 |
msgid "Enter your iDEAL Merchant Key."
|
8621 |
msgstr ""
|
8622 |
|
8623 |
-
#: core/lib/wpbc_all_translations1.php:
|
8624 |
#, php-format
|
8625 |
msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
|
8626 |
msgstr ""
|
8627 |
|
8628 |
-
#: core/lib/wpbc_all_translations1.php:
|
8629 |
msgid "Test with Simulator"
|
8630 |
msgstr ""
|
8631 |
|
8632 |
-
#: core/lib/wpbc_all_translations1.php:
|
8633 |
msgid "My Profile – Connection"
|
8634 |
msgstr ""
|
8635 |
|
8636 |
-
#: core/lib/wpbc_all_translations1.php:
|
8637 |
#, php-format
|
8638 |
msgid ""
|
8639 |
"If not supplied then the description as configured in the administration/management portal "
|
@@ -8641,285 +8641,285 @@ msgid ""
|
|
8641 |
"be applied."
|
8642 |
msgstr ""
|
8643 |
|
8644 |
-
#: core/lib/wpbc_all_translations1.php:
|
8645 |
msgid "Always use Description"
|
8646 |
msgstr ""
|
8647 |
|
8648 |
-
#: core/lib/wpbc_all_translations1.php:
|
8649 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:966
|
8650 |
#, php-format
|
8651 |
msgid "Integration of %s payment system"
|
8652 |
msgstr ""
|
8653 |
|
8654 |
-
#: core/lib/wpbc_all_translations1.php:
|
8655 |
#, php-format
|
8656 |
msgid "Processing your %s payments through %s"
|
8657 |
msgstr ""
|
8658 |
|
8659 |
-
#: core/lib/wpbc_all_translations1.php:
|
8660 |
#, php-format
|
8661 |
msgid "%s - inserting link for export booking to"
|
8662 |
msgstr ""
|
8663 |
|
8664 |
-
#: core/lib/wpbc_all_translations1.php:
|
8665 |
msgid ".ics Feed URL"
|
8666 |
msgstr ""
|
8667 |
|
8668 |
-
#: core/lib/wpbc_all_translations1.php:
|
8669 |
#: core/wpbc-emails.php:249 core/wpbc-emails.php:250 core/wpbc-emails.php:251
|
8670 |
#: core/wpbc-emails.php:252 core/wpbc-emails.php:253
|
8671 |
#, php-format
|
8672 |
msgid "%s - inserting modification date of booking "
|
8673 |
msgstr ""
|
8674 |
|
8675 |
-
#: core/lib/wpbc_all_translations1.php:
|
8676 |
msgid "Coupon discount value of the booking."
|
8677 |
msgstr ""
|
8678 |
|
8679 |
-
#: core/lib/wpbc_all_translations1.php:
|
8680 |
msgid "Stripe. Ouch, something went wrong!"
|
8681 |
msgstr ""
|
8682 |
|
8683 |
-
#: core/lib/wpbc_all_translations1.php:
|
8684 |
#, php-format
|
8685 |
msgid "Please pay %s"
|
8686 |
msgstr ""
|
8687 |
|
8688 |
-
#: core/lib/wpbc_all_translations1.php:
|
8689 |
msgid "Chose payment account"
|
8690 |
msgstr ""
|
8691 |
|
8692 |
-
#: core/lib/wpbc_all_translations1.php:
|
8693 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
8694 |
msgid "Publishable key"
|
8695 |
msgstr ""
|
8696 |
|
8697 |
-
#: core/lib/wpbc_all_translations1.php:
|
8698 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
8699 |
msgid "Secret key"
|
8700 |
msgstr ""
|
8701 |
|
8702 |
-
#: core/lib/wpbc_all_translations1.php:
|
8703 |
msgid "For more information:"
|
8704 |
msgstr ""
|
8705 |
|
8706 |
-
#: core/lib/wpbc_all_translations1.php:
|
8707 |
#, php-format
|
8708 |
msgid "require PHP version %s or newer!"
|
8709 |
msgstr ""
|
8710 |
|
8711 |
-
#: core/lib/wpbc_all_translations1.php:
|
8712 |
#, php-format
|
8713 |
msgid "%s - ID of booking resource, "
|
8714 |
msgstr ""
|
8715 |
|
8716 |
-
#: core/lib/wpbc_all_translations1.php:
|
8717 |
#, php-format
|
8718 |
msgid "%s - ID of page with booking form, "
|
8719 |
msgstr ""
|
8720 |
|
8721 |
-
#: core/lib/wpbc_all_translations1.php:
|
8722 |
msgid "Email with Payment Request which is sent to Visitor."
|
8723 |
msgstr ""
|
8724 |
|
8725 |
-
#: core/lib/wpbc_all_translations1.php:
|
8726 |
msgid "Customization of email template, which is sent after modification of booking"
|
8727 |
msgstr ""
|
8728 |
|
8729 |
-
#: core/lib/wpbc_all_translations1.php:
|
8730 |
msgid "Email is sent to Visitor after Editing of booking."
|
8731 |
msgstr ""
|
8732 |
|
8733 |
-
#: core/lib/wpbc_all_translations1.php:
|
8734 |
msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
|
8735 |
msgstr ""
|
8736 |
|
8737 |
-
#: core/lib/wpbc_all_translations1.php:
|
8738 |
msgid "My bookings"
|
8739 |
msgstr ""
|
8740 |
|
8741 |
-
#: core/lib/wpbc_all_translations1.php:
|
8742 |
#, php-format
|
8743 |
msgid ""
|
8744 |
"%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
|
8745 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
8746 |
msgstr ""
|
8747 |
|
8748 |
-
#: core/lib/wpbc_all_translations1.php:
|
8749 |
msgid "Inline Search Form Template"
|
8750 |
msgstr ""
|
8751 |
|
8752 |
-
#: core/lib/wpbc_all_translations1.php:
|
8753 |
msgid "Show booking details in tooltip"
|
8754 |
msgstr ""
|
8755 |
|
8756 |
-
#: core/lib/wpbc_all_translations1.php:
|
8757 |
#, php-format
|
8758 |
msgid ""
|
8759 |
"Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
|
8760 |
"calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
|
8761 |
msgstr ""
|
8762 |
|
8763 |
-
#: core/lib/wpbc_all_translations1.php:
|
8764 |
msgid "Booking details"
|
8765 |
msgstr ""
|
8766 |
|
8767 |
-
#: core/lib/wpbc_all_translations1.php:
|
8768 |
msgid "You can use the shortcodes from the bottom form of Settings Fields page."
|
8769 |
msgstr ""
|
8770 |
|
8771 |
-
#: core/lib/wpbc_all_translations1.php:
|
8772 |
msgid "This option can impact to speed of page loading."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
-
#: core/lib/wpbc_all_translations1.php:
|
8776 |
msgid ""
|
8777 |
"Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
|
8778 |
"mathematics operations"
|
8779 |
msgstr ""
|
8780 |
|
8781 |
-
#: core/lib/wpbc_all_translations1.php:
|
8782 |
#, php-format
|
8783 |
msgid "if selected %s"
|
8784 |
msgstr ""
|
8785 |
|
8786 |
-
#: core/lib/wpbc_all_translations1.php:
|
8787 |
msgid "Set check out date as available"
|
8788 |
msgstr ""
|
8789 |
|
8790 |
-
#: core/lib/wpbc_all_translations1.php:
|
8791 |
msgid "Check this option, to remove last selected day of saving to booking."
|
8792 |
msgstr ""
|
8793 |
|
8794 |
-
#: core/lib/wpbc_all_translations1.php:
|
8795 |
msgid "Auto approve bookings during import"
|
8796 |
msgstr ""
|
8797 |
|
8798 |
-
#: core/lib/wpbc_all_translations1.php:
|
8799 |
#, php-format
|
8800 |
msgid ""
|
8801 |
"Check this checkbox to activate auto approve of all bookings %sduring import from external "
|
8802 |
"source(s)%s."
|
8803 |
msgstr ""
|
8804 |
|
8805 |
-
#: core/lib/wpbc_all_translations1.php:
|
8806 |
msgid "Auto approve booking, if booking cost is zero"
|
8807 |
msgstr ""
|
8808 |
|
8809 |
-
#: core/lib/wpbc_all_translations1.php:
|
8810 |
#, php-format
|
8811 |
msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
|
8812 |
msgstr ""
|
8813 |
|
8814 |
-
#: core/lib/wpbc_all_translations1.php:
|
8815 |
msgid "Auto approve bookings after creation booking in admin panel"
|
8816 |
msgstr ""
|
8817 |
|
8818 |
-
#: core/lib/wpbc_all_translations1.php:
|
8819 |
#, php-format
|
8820 |
msgid ""
|
8821 |
"Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
|
8822 |
msgstr ""
|
8823 |
|
8824 |
-
#: core/lib/wpbc_all_translations1.php:
|
8825 |
msgid "Activate custom booking forms for regular users"
|
8826 |
msgstr ""
|
8827 |
|
8828 |
-
#: core/lib/wpbc_all_translations1.php:
|
8829 |
msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
|
8830 |
msgstr ""
|
8831 |
|
8832 |
-
#: core/lib/wpbc_all_translations1.php:
|
8833 |
msgid "Start / End time for Calendar Overview"
|
8834 |
msgstr ""
|
8835 |
|
8836 |
-
#: core/lib/wpbc_all_translations1.php:
|
8837 |
#, php-format
|
8838 |
msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
|
8839 |
msgstr ""
|
8840 |
|
8841 |
-
#: core/lib/wpbc_all_translations1.php:
|
8842 |
msgid "Show / hide notes"
|
8843 |
msgstr ""
|
8844 |
|
8845 |
-
#: core/lib/wpbc_all_translations1.php:
|
8846 |
msgid "Check this box if you want to open notes section by default in Booking Listing page."
|
8847 |
msgstr ""
|
8848 |
|
8849 |
-
#: core/lib/wpbc_all_translations1.php:
|
8850 |
-
#: js/wpbc-gutenberg.js:
|
8851 |
msgid "URL of page for customer bookings listing"
|
8852 |
msgstr ""
|
8853 |
|
8854 |
-
#: core/lib/wpbc_all_translations1.php:
|
8855 |
#, php-format
|
8856 |
msgid ""
|
8857 |
"Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
|
8858 |
msgstr ""
|
8859 |
|
8860 |
-
#: core/lib/wpbc_all_translations1.php:
|
8861 |
msgid "Do not show payment form, after submit booking form"
|
8862 |
msgstr ""
|
8863 |
|
8864 |
-
#: core/lib/wpbc_all_translations1.php:
|
8865 |
msgid "Check this box if you want to show payment form only after sending payment request by email"
|
8866 |
msgstr ""
|
8867 |
|
8868 |
-
#: core/lib/wpbc_all_translations1.php:
|
8869 |
msgid "Auto send payment request after creation booking in admin panel"
|
8870 |
msgstr ""
|
8871 |
|
8872 |
-
#: core/lib/wpbc_all_translations1.php:
|
8873 |
msgid ""
|
8874 |
"Check this box if you want automatically send payment request to visitor, if booking was made in "
|
8875 |
"admin panel"
|
8876 |
msgstr ""
|
8877 |
|
8878 |
-
#: core/lib/wpbc_all_translations1.php:
|
8879 |
msgid "Show deposit and total booking cost together"
|
8880 |
msgstr ""
|
8881 |
|
8882 |
-
#: core/lib/wpbc_all_translations1.php:
|
8883 |
msgid ""
|
8884 |
"Check this box if you want to show deposit amount and total booking cost, after submit of "
|
8885 |
"booking."
|
8886 |
msgstr ""
|
8887 |
|
8888 |
-
#: core/lib/wpbc_all_translations1.php:
|
8889 |
msgid ""
|
8890 |
"Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
|
8891 |
"not depend from the visitor choice of this payment. You need to check each such payment manually!"
|
8892 |
msgstr ""
|
8893 |
|
8894 |
-
#: core/lib/wpbc_all_translations1.php:
|
8895 |
msgid "Send email on cost changes"
|
8896 |
msgstr ""
|
8897 |
|
8898 |
-
#: core/lib/wpbc_all_translations1.php:
|
8899 |
msgid ""
|
8900 |
"Check this box if you want to send booking modification email, if cost of booking was edited in "
|
8901 |
"booking listing page."
|
8902 |
msgstr ""
|
8903 |
|
8904 |
-
#: core/lib/wpbc_all_translations1.php:
|
8905 |
#: inc/gateways/page-gateways.php:656
|
8906 |
msgid "Payment Options"
|
8907 |
msgstr ""
|
8908 |
|
8909 |
-
#: core/lib/wpbc_all_translations1.php:
|
8910 |
msgid "Times:"
|
8911 |
msgstr ""
|
8912 |
|
8913 |
-
#: core/lib/wpbc_all_translations1.php:
|
8914 |
msgid "Set Early / Late Booking"
|
8915 |
msgstr ""
|
8916 |
|
8917 |
-
#: core/lib/wpbc_all_translations1.php:
|
8918 |
#, php-format
|
8919 |
msgid "%sEarly booking discount%s for booking resource"
|
8920 |
msgstr ""
|
8921 |
|
8922 |
-
#: core/lib/wpbc_all_translations1.php:
|
8923 |
#: inc/_bm/admin/page-cost-early-late-booking.php:166
|
8924 |
#: inc/_bm/admin/page-cost-early-late-booking.php:185
|
8925 |
#: inc/_bm/admin/page-cost-early-late-booking.php:358
|
@@ -8928,410 +8928,410 @@ msgstr ""
|
|
8928 |
msgid "Discount"
|
8929 |
msgstr ""
|
8930 |
|
8931 |
-
#: core/lib/wpbc_all_translations1.php:
|
8932 |
#, php-format
|
8933 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
|
8934 |
msgstr ""
|
8935 |
|
8936 |
-
#: core/lib/wpbc_all_translations1.php:
|
8937 |
#: inc/_bm/admin/page-cost-early-late-booking.php:476
|
8938 |
#, php-format
|
8939 |
msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
|
8940 |
msgstr ""
|
8941 |
|
8942 |
-
#: core/lib/wpbc_all_translations1.php:
|
8943 |
#, php-format
|
8944 |
msgid "%sLast minute booking discount%s for booking resource"
|
8945 |
msgstr ""
|
8946 |
|
8947 |
-
#: core/lib/wpbc_all_translations1.php:
|
8948 |
#, php-format
|
8949 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
|
8950 |
msgstr ""
|
8951 |
|
8952 |
-
#: core/lib/wpbc_all_translations1.php:
|
8953 |
msgid "Early / Late Booking"
|
8954 |
msgstr ""
|
8955 |
|
8956 |
-
#: core/lib/wpbc_all_translations1.php:
|
8957 |
msgid "Set Early / Late Booking Amount"
|
8958 |
msgstr ""
|
8959 |
|
8960 |
-
#: core/lib/wpbc_all_translations1.php:
|
8961 |
msgid "Set Early / Late booking discount"
|
8962 |
msgstr ""
|
8963 |
|
8964 |
-
#: core/lib/wpbc_all_translations1.php:
|
8965 |
msgid "Early / Late"
|
8966 |
msgstr ""
|
8967 |
|
8968 |
-
#: core/lib/wpbc_all_translations1.php:
|
8969 |
msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
|
8970 |
msgstr ""
|
8971 |
|
8972 |
-
#: core/lib/wpbc_all_translations1.php:
|
8973 |
msgid "Configure Booking Calendar Block"
|
8974 |
msgstr ""
|
8975 |
|
8976 |
-
#: core/lib/wpbc_all_translations1.php:
|
8977 |
msgid "Click to Preview Block"
|
8978 |
msgstr ""
|
8979 |
|
8980 |
-
#: core/lib/wpbc_all_translations1.php:
|
8981 |
-
#: js/wpbc-gutenberg.js:
|
8982 |
msgid "Visible months number"
|
8983 |
msgstr ""
|
8984 |
|
8985 |
-
#: core/lib/wpbc_all_translations1.php:
|
8986 |
-
#: js/wpbc-gutenberg.js:
|
8987 |
msgid "Start month"
|
8988 |
msgstr ""
|
8989 |
|
8990 |
-
#: core/lib/wpbc_all_translations1.php:
|
8991 |
msgid "Custom booking form"
|
8992 |
msgstr ""
|
8993 |
|
8994 |
-
#: core/lib/wpbc_all_translations1.php:
|
8995 |
-
#: js/wpbc-gutenberg.js:
|
8996 |
msgid "Unavailable dates from other booking resources"
|
8997 |
msgstr ""
|
8998 |
|
8999 |
-
#: core/lib/wpbc_all_translations1.php:
|
9000 |
msgid "Availability Calendar"
|
9001 |
msgstr ""
|
9002 |
|
9003 |
-
#: core/lib/wpbc_all_translations1.php:
|
9004 |
msgid "Booking resource(s)"
|
9005 |
msgstr ""
|
9006 |
|
9007 |
-
#: core/lib/wpbc_all_translations1.php:
|
9008 |
msgid "Show from/to"
|
9009 |
msgstr ""
|
9010 |
|
9011 |
-
#: core/lib/wpbc_all_translations1.php:
|
9012 |
msgid "All booking resources"
|
9013 |
msgstr ""
|
9014 |
|
9015 |
-
#: core/lib/wpbc_all_translations1.php:
|
9016 |
msgid "Selection of Resources"
|
9017 |
msgstr ""
|
9018 |
|
9019 |
-
#: core/lib/wpbc_all_translations1.php:
|
9020 |
msgid "Selected booking resource (by default)"
|
9021 |
msgstr ""
|
9022 |
|
9023 |
-
#: core/lib/wpbc_all_translations1.php:
|
9024 |
msgid "Title of first option in list"
|
9025 |
msgstr ""
|
9026 |
|
9027 |
-
#: core/lib/wpbc_all_translations1.php:
|
9028 |
msgid "Custom booking form for all booking resources"
|
9029 |
msgstr ""
|
9030 |
|
9031 |
-
#: core/lib/wpbc_all_translations1.php:
|
9032 |
msgid "Booking Form (without calendar)"
|
9033 |
msgstr ""
|
9034 |
|
9035 |
-
#: core/lib/wpbc_all_translations1.php:
|
9036 |
msgid "Date for submit booking"
|
9037 |
msgstr ""
|
9038 |
|
9039 |
-
#: core/lib/wpbc_all_translations1.php:
|
9040 |
msgid "Search Availability form"
|
9041 |
msgstr ""
|
9042 |
|
9043 |
-
#: core/lib/wpbc_all_translations1.php:
|
9044 |
msgid "Show search results on other page"
|
9045 |
msgstr ""
|
9046 |
|
9047 |
-
#: core/lib/wpbc_all_translations1.php:
|
9048 |
msgid "Search results page must have this shortcode"
|
9049 |
msgstr ""
|
9050 |
|
9051 |
-
#: core/lib/wpbc_all_translations1.php:
|
9052 |
msgid "Show search results in the same page"
|
9053 |
msgstr ""
|
9054 |
|
9055 |
-
#: core/lib/wpbc_all_translations1.php:
|
9056 |
msgid "Search Results Title"
|
9057 |
msgstr ""
|
9058 |
|
9059 |
-
#: core/lib/wpbc_all_translations1.php:
|
9060 |
msgid "Title, if no search results"
|
9061 |
msgstr ""
|
9062 |
|
9063 |
-
#: core/lib/wpbc_all_translations1.php:
|
9064 |
msgid "Search in booking resources of WP users"
|
9065 |
msgstr ""
|
9066 |
|
9067 |
-
#: core/lib/wpbc_all_translations1.php:
|
9068 |
msgid "Show search results on this page, after redirection from search form at other page."
|
9069 |
msgstr ""
|
9070 |
|
9071 |
-
#: core/lib/wpbc_all_translations1.php:
|
9072 |
msgid "System Block"
|
9073 |
msgstr ""
|
9074 |
|
9075 |
-
#: core/lib/wpbc_all_translations1.php:
|
9076 |
msgid "Booking Calendar Editing"
|
9077 |
msgstr ""
|
9078 |
|
9079 |
-
#: core/lib/wpbc_all_translations1.php:
|
9080 |
msgid ""
|
9081 |
"This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
|
9082 |
"for ability to show payment form, after sending payment request."
|
9083 |
msgstr ""
|
9084 |
|
9085 |
-
#: core/lib/wpbc_all_translations1.php:
|
9086 |
msgid "Link to this page must be defined"
|
9087 |
msgstr ""
|
9088 |
|
9089 |
-
#: core/lib/wpbc_all_translations1.php:
|
9090 |
msgid "at this option"
|
9091 |
msgstr ""
|
9092 |
|
9093 |
-
#: core/lib/wpbc_all_translations1.php:
|
9094 |
msgid "You can not open this page directly. Please, use links in "
|
9095 |
msgstr ""
|
9096 |
|
9097 |
-
#: core/lib/wpbc_all_translations1.php:
|
9098 |
msgid "If you open this page directly, then you will see this error"
|
9099 |
msgstr ""
|
9100 |
|
9101 |
-
#: core/lib/wpbc_all_translations1.php:
|
9102 |
msgid "Customer Bookings Listing"
|
9103 |
msgstr ""
|
9104 |
|
9105 |
-
#: core/lib/wpbc_all_translations1.php:
|
9106 |
msgid ""
|
9107 |
"Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
|
9108 |
"which is sending after booking created."
|
9109 |
msgstr ""
|
9110 |
|
9111 |
-
#: core/lib/wpbc_all_translations1.php:
|
9112 |
msgid "Show Info of Booking Resource"
|
9113 |
msgstr ""
|
9114 |
|
9115 |
-
#: core/lib/wpbc_all_translations1.php:
|
9116 |
msgid "Click to edit"
|
9117 |
msgstr ""
|
9118 |
|
9119 |
-
#: core/lib/wpbc_all_translations1.php:
|
9120 |
msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
|
9121 |
msgstr ""
|
9122 |
|
9123 |
-
#: core/lib/wpbc_all_translations1.php:
|
9124 |
msgid "Sort search results by"
|
9125 |
msgstr ""
|
9126 |
|
9127 |
-
#: core/lib/wpbc_all_translations1.php:
|
9128 |
msgid "Select type of sorting search results"
|
9129 |
msgstr ""
|
9130 |
|
9131 |
-
#: core/lib/wpbc_all_translations1.php:
|
9132 |
#: inc/_bl/admin/page-search.php:181
|
9133 |
msgid "ID of booking resource"
|
9134 |
msgstr ""
|
9135 |
|
9136 |
-
#: core/lib/wpbc_all_translations1.php:
|
9137 |
#: inc/_bl/admin/page-search.php:183
|
9138 |
msgid "Title of booking resource"
|
9139 |
msgstr ""
|
9140 |
|
9141 |
-
#: core/lib/wpbc_all_translations1.php:
|
9142 |
#: inc/_bl/admin/page-search.php:185
|
9143 |
msgid "Priority field of booking resource"
|
9144 |
msgstr ""
|
9145 |
|
9146 |
-
#: core/lib/wpbc_all_translations1.php:
|
9147 |
#: inc/_bl/admin/page-search.php:187
|
9148 |
msgid "Cost of booking resource"
|
9149 |
msgstr ""
|
9150 |
|
9151 |
-
#: core/lib/wpbc_all_translations1.php:
|
9152 |
#: inc/_bl/admin/page-search.php:189
|
9153 |
msgid "Cost of booking"
|
9154 |
msgstr ""
|
9155 |
|
9156 |
-
#: core/lib/wpbc_all_translations1.php:
|
9157 |
msgid "Deactivate send email option at Add Booking page"
|
9158 |
msgstr ""
|
9159 |
|
9160 |
-
#: core/lib/wpbc_all_translations1.php:
|
9161 |
msgid ""
|
9162 |
"Check this box if you want to deactivate by default option \"Send email\" at Add Booking page."
|
9163 |
msgstr ""
|
9164 |
|
9165 |
-
#: core/lib/wpbc_all_translations1.php:
|
9166 |
msgid "Deactivate send email option at Booking Listing page"
|
9167 |
msgstr ""
|
9168 |
|
9169 |
-
#: core/lib/wpbc_all_translations1.php:
|
9170 |
msgid ""
|
9171 |
"Check this box if you want to deactivate by default option \"Send email\" at Booking Listing "
|
9172 |
"page."
|
9173 |
msgstr ""
|
9174 |
|
9175 |
-
#: core/lib/wpbc_all_translations1.php:
|
9176 |
msgid "Force change booking resource for exist booking"
|
9177 |
msgstr ""
|
9178 |
|
9179 |
-
#: core/lib/wpbc_all_translations1.php:
|
9180 |
msgid ""
|
9181 |
"Check this box if you want to skip checking availability of new booking resource during changing "
|
9182 |
"booking resource of exist booking at Booking Listing page."
|
9183 |
msgstr ""
|
9184 |
|
9185 |
-
#: core/lib/wpbc_all_translations1.php:
|
9186 |
msgid "Signature Key"
|
9187 |
msgstr ""
|
9188 |
|
9189 |
-
#: core/lib/wpbc_all_translations1.php:
|
9190 |
msgid "Please enter the Signature Key, which you generated in the settings of Merchant Interface."
|
9191 |
msgstr ""
|
9192 |
|
9193 |
-
#: core/lib/wpbc_all_translations1.php:
|
9194 |
msgid "To generate new Signature Key"
|
9195 |
msgstr ""
|
9196 |
|
9197 |
-
#: core/lib/wpbc_all_translations1.php:
|
9198 |
#, php-format
|
9199 |
msgid "Log on to the %sMerchant Interface%s"
|
9200 |
msgstr ""
|
9201 |
|
9202 |
-
#: core/lib/wpbc_all_translations1.php:
|
9203 |
msgid ""
|
9204 |
"In the merchant interface, go to Account > Settings > Security Settings > General Security "
|
9205 |
"Settings > API Credential & Keys"
|
9206 |
msgstr ""
|
9207 |
|
9208 |
-
#: core/lib/wpbc_all_translations1.php:
|
9209 |
msgid "Answer the secret question."
|
9210 |
msgstr ""
|
9211 |
|
9212 |
-
#: core/lib/wpbc_all_translations1.php:
|
9213 |
msgid "Select New Signature Key. Your signature key is displayed as a string."
|
9214 |
msgstr ""
|
9215 |
|
9216 |
-
#: core/lib/wpbc_all_translations1.php:
|
9217 |
msgid "Click Copy to Clipboard."
|
9218 |
msgstr ""
|
9219 |
|
9220 |
-
#: core/lib/wpbc_all_translations1.php:
|
9221 |
#, php-format
|
9222 |
msgid "For more information, please check %shere%s"
|
9223 |
msgstr ""
|
9224 |
|
9225 |
-
#: core/lib/wpbc_all_translations1.php:
|
9226 |
#, php-format
|
9227 |
msgid ""
|
9228 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
9229 |
"an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway."
|
9230 |
msgstr ""
|
9231 |
|
9232 |
-
#: core/lib/wpbc_all_translations1.php:
|
9233 |
msgid "Loading"
|
9234 |
msgstr ""
|
9235 |
|
9236 |
-
#: core/lib/wpbc_all_translations1.php:
|
9237 |
#, php-format
|
9238 |
msgid "%s - inserting link to approve booking in 1 mouse click "
|
9239 |
msgstr ""
|
9240 |
|
9241 |
-
#: core/lib/wpbc_all_translations1.php:
|
9242 |
#, php-format
|
9243 |
msgid "%s - inserting link to set booking as pending in 1 mouse click "
|
9244 |
msgstr ""
|
9245 |
|
9246 |
-
#: core/lib/wpbc_all_translations1.php:
|
9247 |
#, php-format
|
9248 |
msgid "%s - inserting link for move booking to trash in 1 mouse click "
|
9249 |
msgstr ""
|
9250 |
|
9251 |
-
#: core/lib/wpbc_all_translations1.php:
|
9252 |
msgid "Flex Search Form Template"
|
9253 |
msgstr ""
|
9254 |
|
9255 |
-
#: core/lib/wpbc_all_translations1.php:
|
9256 |
msgid "Flex"
|
9257 |
msgstr ""
|
9258 |
|
9259 |
-
#: core/lib/wpbc_all_translations1.php:
|
9260 |
#, php-format
|
9261 |
msgid "Booking %s have been approved."
|
9262 |
msgstr ""
|
9263 |
|
9264 |
-
#: core/lib/wpbc_all_translations1.php:
|
9265 |
#, php-format
|
9266 |
msgid "Booking %s have been set as pending."
|
9267 |
msgstr ""
|
9268 |
|
9269 |
-
#: core/lib/wpbc_all_translations1.php:
|
9270 |
#, php-format
|
9271 |
msgid "Booking %s have been moved to trash."
|
9272 |
msgstr ""
|
9273 |
|
9274 |
-
#: core/lib/wpbc_all_translations1.php:
|
9275 |
msgid "Find lost bookings"
|
9276 |
msgstr ""
|
9277 |
|
9278 |
-
#: core/lib/wpbc_all_translations1.php:
|
9279 |
#, php-format
|
9280 |
msgid "require correct configuration of this option: %sURL to edit bookings%s"
|
9281 |
msgstr ""
|
9282 |
|
9283 |
-
#: core/lib/wpbc_all_translations1.php:
|
9284 |
msgid "You may test your integration over HTTP. However, live integrations must use HTTPS."
|
9285 |
msgstr ""
|
9286 |
|
9287 |
-
#: core/lib/wpbc_all_translations1.php:
|
9288 |
msgid "Select date format for search form"
|
9289 |
msgstr ""
|
9290 |
|
9291 |
-
#: core/lib/wpbc_all_translations1.php:
|
9292 |
msgid "Logging of booking approving or rejection"
|
9293 |
msgstr ""
|
9294 |
|
9295 |
-
#: core/lib/wpbc_all_translations1.php:
|
9296 |
msgid ""
|
9297 |
"Check this box if you want to log approving or rejection of bookings and add it to your booking "
|
9298 |
"notes."
|
9299 |
msgstr ""
|
9300 |
|
9301 |
-
#: core/lib/wpbc_all_translations1.php:
|
9302 |
#, php-format
|
9303 |
msgid "%sFor Malaysia Only%s. iPay88 - Payment Switching Gateway integration %s"
|
9304 |
msgstr ""
|
9305 |
|
9306 |
-
#: core/lib/wpbc_all_translations1.php:
|
9307 |
msgid "Update cost, after booking editing in admin panel"
|
9308 |
msgstr ""
|
9309 |
|
9310 |
-
#: core/lib/wpbc_all_translations1.php:
|
9311 |
msgid ""
|
9312 |
"Check this box if you want to update cost after editing booking in admin panel, based on new "
|
9313 |
"booking data"
|
9314 |
msgstr ""
|
9315 |
|
9316 |
-
#: core/wpbc-emails.php:202
|
9317 |
#, php-format
|
9318 |
msgid "%s - inserting check-in date (only date without time) (first day of reservation),"
|
9319 |
msgstr ""
|
9320 |
|
9321 |
-
#: core/wpbc-emails.php:207
|
9322 |
#, php-format
|
9323 |
msgid "%s - inserting check-out date (only date without time) (last day of reservation),"
|
9324 |
msgstr ""
|
9325 |
|
9326 |
-
#: inc/_bl/admin/page-search.php:190
|
9327 |
msgid "Shuffle"
|
9328 |
msgstr ""
|
9329 |
|
9330 |
-
#: inc/gateways/page-gateways.php:175
|
9331 |
msgid "Apply discount coupon code directly to days cost"
|
9332 |
msgstr ""
|
9333 |
|
9334 |
-
#: inc/gateways/page-gateways.php:176
|
9335 |
msgid ""
|
9336 |
"Check this box if you want apply discount coupon codes directly to days cost, without additional "
|
9337 |
"costs."
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: booking\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2020-03-10 10:15+0200\n"
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
35 |
msgstr ""
|
36 |
|
37 |
#: core/admin/api-settings.php:94 core/admin/wpbc-toolbar-tiny.php:460
|
38 |
+
#: core/lib/wpbc_all_translations.php:6 js/wpbc-gutenberg.js:809
|
39 |
msgid "Number of months to scroll"
|
40 |
msgstr ""
|
41 |
|
136 |
#: core/lib/wpbc_all_translations.php:22 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:198
|
139 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1076 js/wpbc-gutenberg.js:1032
|
140 |
msgid "Note"
|
141 |
msgstr ""
|
142 |
|
168 |
#: core/admin/api-settings.php:275 core/admin/wpbc-toolbar-tiny.php:240
|
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:29
|
171 |
+
#: inc/_bm/m-toolbar.php:29 inc/_bm/m-toolbar.php:113 inc/_bm/m-toolbar.php:402
|
172 |
+
#: inc/_ps/lib_p.php:268 js/wpbc-gutenberg.js:565
|
173 |
msgid "Booking Form"
|
174 |
msgstr ""
|
175 |
|
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:752 core/lib/wpbc_all_translations.php:97
|
518 |
msgid "Use localized time format"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: core/admin/api-settings.php:753 core/lib/wpbc_all_translations.php:98
|
522 |
msgid ""
|
523 |
"This option useful only, if you have issue with translation of time format. If you activated "
|
524 |
"this option, at some servers possible issue with \"Daylight Saving Time\" - booked times can be "
|
525 |
"later on 1 hour."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: core/admin/api-settings.php:761 core/lib/wpbc_all_translations.php:99
|
529 |
msgid "Short days view"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: core/admin/api-settings.php:762 core/lib/wpbc_all_translations.php:100
|
533 |
msgid "Wide days view"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: core/admin/api-settings.php:767 core/lib/wpbc_all_translations.php:101
|
537 |
msgid "Dates view"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: core/admin/api-settings.php:768 core/lib/wpbc_all_translations.php:102
|
541 |
msgid "Select the default view for dates on the booking tables"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: core/admin/api-settings.php:784 core/lib/wpbc_all_translations.php:103
|
545 |
msgid "Show / hide hints"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: core/admin/api-settings.php:785 core/lib/wpbc_all_translations.php:104
|
549 |
msgid "Check this box if you want to show help hints on the admin panel."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: core/admin/api-settings.php:805 core/lib/wpbc_all_translations.php:105
|
553 |
msgid "Allow unlimited bookings per same day(s)"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: core/admin/api-settings.php:806 core/lib/wpbc_all_translations.php:106
|
557 |
#, php-format
|
558 |
msgid ""
|
559 |
"Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
|
561 |
"date(s)%s of other visitors."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: core/admin/api-settings.php:816 core/lib/wpbc_all_translations.php:107
|
565 |
#: inc/_bl/admin/api-settings-l.php:101
|
566 |
msgid "Use pending days as available"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: core/admin/api-settings.php:817 core/lib/wpbc_all_translations.php:108
|
570 |
#: inc/_bl/admin/api-settings-l.php:102
|
571 |
msgid "Check this box if you want to show the pending days as available in calendars"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: core/admin/api-settings.php:828 core/lib/wpbc_all_translations.php:109
|
575 |
msgid "Checking to prevent double booking, during submitting booking"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: core/admin/api-settings.php:829 core/lib/wpbc_all_translations.php:110
|
579 |
#, php-format
|
580 |
msgid ""
|
581 |
"Check this box, if you want to %sre-check if the selected dates available during submitting "
|
582 |
"booking%s."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: core/admin/api-settings.php:831 core/lib/wpbc_all_translations.php:111
|
586 |
msgid ""
|
587 |
"This feature useful to prevent double booking of the same date(s) or time(s), if several "
|
588 |
"visitors try to book the same date(s) in same calendar during the same time."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: core/admin/api-settings.php:832 core/lib/wpbc_all_translations.php:112
|
592 |
msgid "This feature does not work for booking resources with capacity higher than one."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: core/admin/api-settings.php:849 core/lib/wpbc_all_translations.php:113
|
596 |
msgid "Show advanced settings of JavaScript loading"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: core/admin/api-settings.php:850 core/lib/wpbc_all_translations.php:114
|
600 |
msgid "Hide advanced settings of JavaScript loading"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: core/admin/api-settings.php:858 core/lib/wpbc_all_translations.php:115
|
604 |
msgid "Disable Bootstrap loading on Front-End"
|
605 |
msgstr ""
|
606 |
|
607 |
#: core/admin/api-settings.php:859 core/admin/api-settings.php:868
|
608 |
+
#: core/lib/wpbc_all_translations.php:116
|
609 |
msgid ""
|
610 |
" If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
|
611 |
"of this script by this plugin."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: core/admin/api-settings.php:867 core/lib/wpbc_all_translations.php:117
|
615 |
msgid "Disable Bootstrap loading on Back-End"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: core/admin/api-settings.php:877 core/lib/wpbc_all_translations.php:118
|
619 |
msgid "Load JS and CSS files only on specific pages"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: core/admin/api-settings.php:878 core/lib/wpbc_all_translations.php:119
|
623 |
msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: core/admin/api-settings.php:888 core/lib/wpbc_all_translations.php:120
|
627 |
msgid "Relative URLs of pages, where to load plugin CSS and JS files"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: core/admin/api-settings.php:889 core/lib/wpbc_all_translations.php:121
|
631 |
#, php-format
|
632 |
msgid ""
|
633 |
"Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
|
634 |
"availability calendars). Please enter one URL per line. Example: %s"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: core/admin/api-settings.php:903 core/lib/wpbc_all_translations.php:122
|
638 |
msgid "Show system debugging log for beta features"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: core/admin/api-settings.php:904 core/lib/wpbc_all_translations.php:123
|
642 |
msgid "Activate this option only for testing beta features"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: core/admin/api-settings.php:920 core/lib/wpbc_all_translations.php:124
|
646 |
msgid "Show settings of powered by notice"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: core/admin/api-settings.php:921 core/lib/wpbc_all_translations.php:125
|
650 |
msgid "Hide settings of powered by notice"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: core/admin/api-settings.php:928 core/lib/wpbc_all_translations.php:126
|
654 |
msgid "Powered by notice"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: core/admin/api-settings.php:929 core/lib/wpbc_all_translations.php:127
|
658 |
msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: core/admin/api-settings.php:937 core/lib/wpbc_all_translations.php:128
|
662 |
msgid "Help and info notices"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: core/admin/api-settings.php:938 core/lib/wpbc_all_translations.php:129
|
666 |
msgid " Turn On/Off version notice and help info links at booking admin panel."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: core/admin/api-settings.php:966 core/lib/wpbc_all_translations.php:130
|
670 |
msgid "Plugin menu position"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: core/admin/api-settings.php:969 core/lib/wpbc_all_translations.php:131
|
674 |
msgid "Top"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: core/admin/api-settings.php:970 core/lib/wpbc_all_translations.php:132
|
678 |
msgid "Middle"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: core/admin/api-settings.php:971 core/lib/wpbc_all_translations.php:133
|
682 |
msgid "Bottom"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: core/admin/api-settings.php:982 core/lib/wpbc_all_translations.php:134
|
686 |
msgid "User permissions for plugin menu pages"
|
687 |
msgstr ""
|
688 |
|
689 |
#: core/admin/api-settings.php:997 core/admin/wpbc-toolbars.php:556
|
690 |
+
#: core/admin/wpbc-toolbars.php:771 core/lib/wpbc_all_translations.php:135
|
691 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:74 core/wpbc.php:136
|
692 |
msgid "Bookings"
|
693 |
msgstr ""
|
694 |
|
695 |
#: core/admin/api-settings.php:1006 core/admin/page-new.php:33 core/admin/page-new.php:34
|
696 |
#: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1847
|
697 |
+
#: core/lib/wpbc_all_translations.php:136 core/wpbc-functions.php:1908 core/wpbc.php:165
|
698 |
#: core/wpbc.php:166 core/wpbc.php:167
|
699 |
msgid "Add booking"
|
700 |
msgstr ""
|
701 |
|
702 |
#: core/admin/api-settings.php:1016 core/admin/page-import-gcal.php:491
|
703 |
+
#: core/lib/wpbc_all_translations.php:137 core/timeline/v2/wpbc-class-timeline_v2.php:72
|
704 |
#: core/wpbc-functions.php:1918 core/wpbc.php:176 core/wpbc.php:178
|
705 |
#: inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
|
706 |
#: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
|
710 |
msgid "Resources"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: core/admin/api-settings.php:1025 core/lib/wpbc_all_translations.php:138
|
714 |
#: core/wpbc-functions.php:1973 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
|
715 |
#: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
|
716 |
msgid "Settings"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: core/admin/api-settings.php:1026 core/lib/wpbc_all_translations.php:139
|
720 |
msgid "Select user access level for the menu pages of plugin"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: core/admin/api-settings.php:1037 core/lib/wpbc_all_translations.php:140 core/wpbc.php:204
|
724 |
msgid "Premium"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: core/admin/api-settings.php:1038 core/lib/wpbc_all_translations.php:141
|
728 |
msgid "Show / hide menu"
|
729 |
msgstr ""
|
730 |
|
731 |
#: core/admin/api-settings.php:1041 core/admin/wpbc-toolbar-tiny.php:591
|
732 |
#: core/admin/wpbc-toolbar-tiny.php:1810 core/admin/wpbc-toolbars.php:790
|
733 |
+
#: core/lib/wpbc_all_translations.php:142 core/lib/wpdev-booking-widget.php:104
|
734 |
+
#: js/wpbc-gutenberg.js:1332
|
735 |
msgid "Show"
|
736 |
msgstr ""
|
737 |
|
738 |
#: core/admin/api-settings.php:1042 core/class/wpbc-class-notices.php:104
|
739 |
+
#: core/lib/wpbc_all_translations.php:143 core/sync/wpbc-gcal-class.php:704
|
740 |
#: core/wpbc-functions.php:2377
|
741 |
msgid "Hide"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: core/admin/api-settings.php:1059 core/lib/wpbc_all_translations.php:144
|
745 |
msgid "Delete booking data, when plugin deactivated"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: core/admin/api-settings.php:1060 core/lib/wpbc_all_translations.php:145
|
749 |
msgid "Check this box to delete all booking data when you uninstal this plugin."
|
750 |
msgstr ""
|
751 |
|
752 |
#: core/admin/api-settings.php:1086 core/admin/page-form-free.php:986
|
753 |
+
#: core/lib/wpbc_all_translations.php:146 core/sync/wpbc-gcal-class.php:474
|
754 |
#: core/sync/wpbc-gcal-class.php:642 core/sync/wpbc-gcal-class.php:668
|
755 |
#: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
|
756 |
#: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
|
759 |
msgstr ""
|
760 |
|
761 |
#: core/admin/api-settings.php:1121 core/admin/page-settings.php:296
|
762 |
+
#: core/lib/wpbc_all_translations.php:147
|
763 |
msgid "Restore all dismissed windows"
|
764 |
msgstr ""
|
765 |
|
766 |
#: core/admin/api-settings.php:1245 core/admin/api-settings.php:1276
|
767 |
#: core/admin/api-settings.php:1308 core/admin/api-settings.php:1321
|
768 |
+
#: core/admin/api-settings.php:1354 core/lib/wpbc_all_translations.php:148
|
769 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:564
|
770 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/page-gateways.php:917
|
771 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
|
773 |
msgid "Warning"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: core/admin/api-settings.php:1246 core/lib/wpbc_all_translations.php:149
|
777 |
msgid ""
|
778 |
"You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
|
779 |
"the same date. Do you really want to do this?"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: core/admin/api-settings.php:1277 core/lib/wpbc_all_translations.php:150
|
783 |
msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
|
784 |
msgstr ""
|
785 |
|
786 |
#: core/admin/api-settings.php:1309 core/admin/api-settings.php:1322
|
787 |
+
#: core/lib/wpbc_all_translations.php:151
|
788 |
msgid ""
|
789 |
"You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
|
790 |
"really want to do this?"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: core/admin/api-settings.php:1355 core/lib/wpbc_all_translations.php:152
|
794 |
msgid ""
|
795 |
"If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
|
796 |
"you really want to do this?"
|
797 |
msgstr ""
|
798 |
|
799 |
#: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
|
800 |
+
#: core/admin/wpbc-toolbars.php:467 core/lib/wpbc_all_translations.php:153
|
801 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2630 core/wpbc-functions.php:1886
|
802 |
msgid "Booking Listing"
|
803 |
msgstr ""
|
805 |
#: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
|
806 |
#: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
|
807 |
#: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
|
808 |
+
#: core/lib/wpbc_all_translations.php:154 inc/_bm/admin/page-cost-deposit.php:134
|
809 |
#: inc/_bm/admin/page-cost-early-late-booking.php:138
|
810 |
#: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
|
811 |
#: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:297
|
821 |
#: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
|
822 |
#: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
|
823 |
#: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
|
824 |
+
#: core/lib/wpbc_all_translations.php:155 inc/_bs/admin/page-email-payment.php:180
|
825 |
#: inc/_ps/admin/page-email-edit.php:179
|
826 |
msgid "Enable this email notification"
|
827 |
msgstr ""
|
830 |
#: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
|
831 |
#: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
|
832 |
#: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
|
833 |
+
#: core/lib/wpbc_all_translations.php:156 inc/_bs/admin/page-email-payment.php:191
|
834 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
|
835 |
#: inc/_ps/admin/page-email-edit.php:205
|
836 |
msgid "Copy(ies)"
|
838 |
|
839 |
#: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
|
840 |
#: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
|
841 |
+
#: core/lib/wpbc_all_translations.php:157 inc/_bs/admin/page-email-payment.php:192
|
842 |
#: inc/_ps/admin/page-email-edit.php:191
|
843 |
msgid "Enable / disable sending email(s) to additional addresses"
|
844 |
msgstr ""
|
845 |
|
846 |
#: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
|
847 |
#: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
|
848 |
+
#: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:158
|
849 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
850 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
|
851 |
msgid "To"
|
856 |
#: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
|
857 |
#: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
|
858 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
|
859 |
+
#: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:159
|
860 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
861 |
#: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
|
862 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
|
873 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
|
874 |
#: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
|
875 |
#: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1147
|
876 |
+
#: core/admin/page-form-free.php:2071 core/lib/wpbc_all_translations.php:160
|
877 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
878 |
#: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
|
879 |
#: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
|
891 |
|
892 |
#: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
|
893 |
#: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
|
894 |
+
#: core/lib/wpbc_all_translations.php:161 inc/_bs/admin/page-email-payment.php:217
|
895 |
#: inc/_ps/admin/page-email-edit.php:216
|
896 |
msgid "You can put multiple emails separated by"
|
897 |
msgstr ""
|
903 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
904 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
|
905 |
#: core/admin/wpbc-toolbar-tiny.php:430 core/admin/wpbc-toolbar-tiny.php:1801
|
906 |
+
#: core/lib/wpbc_all_translations.php:162 core/lib/wpdev-booking-widget.php:96
|
907 |
#: core/sync/wpbc-gcal-class.php:641 core/sync/wpbc-gcal-class.php:664
|
908 |
#: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
|
909 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
910 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
911 |
+
#: inc/_ps/wpbc-booking-select-widget.php:140 js/wpbc-gutenberg.js:803
|
912 |
msgid "Title"
|
913 |
msgstr ""
|
914 |
|
918 |
#: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
|
919 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
920 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
|
921 |
+
#: core/admin/wpbc-toolbar-tiny.php:430 core/lib/wpbc_all_translations.php:163
|
922 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
923 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
924 |
#: inc/_ps/form/class-wpbc-field-help-button.php:73
|
938 |
#: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
|
939 |
#: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
|
940 |
#: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:594
|
941 |
+
#: core/lib/wpbc_all_translations.php:164 core/sync/wpbc-gcal.php:171
|
942 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
943 |
#: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
|
944 |
#: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
|
945 |
msgid "From"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:165
|
949 |
msgid "Email Address will be used in the FROM field of response to Visitor."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:166
|
953 |
#: core/wpbc-activation.php:998
|
954 |
msgid "Your booking has been approved"
|
955 |
msgstr ""
|
957 |
#: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
|
958 |
#: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
|
959 |
#: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
|
960 |
+
#: core/lib/wpbc_all_translations.php:167 inc/_bs/admin/page-email-payment.php:316
|
961 |
#: inc/_ps/admin/page-email-edit.php:312
|
962 |
msgid "Subject"
|
963 |
msgstr ""
|
965 |
#: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
|
966 |
#: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
|
967 |
#: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
|
968 |
+
#: core/lib/wpbc_all_translations.php:168 inc/_bs/admin/page-email-payment.php:317
|
969 |
#: inc/_ps/admin/page-email-edit.php:313
|
970 |
#, php-format
|
971 |
msgid "Type your email %ssubject%s for the booking confimation message."
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:169
|
975 |
#: core/wpbc-activation.php:1000
|
976 |
#, php-format
|
977 |
msgid ""
|
979 |
"you, %s"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:170
|
983 |
#: core/wpbc-activation.php:1002
|
984 |
#, php-format
|
985 |
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
988 |
#: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
|
989 |
#: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
|
990 |
#: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
|
991 |
+
#: core/lib/wpbc_all_translations.php:171 inc/_bs/admin/page-email-payment.php:334
|
992 |
#: inc/_ps/admin/page-email-edit.php:330
|
993 |
msgid "Content"
|
994 |
msgstr ""
|
996 |
#: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
|
997 |
#: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
|
998 |
#: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
|
999 |
+
#: core/lib/wpbc_all_translations.php:172 inc/_bs/admin/page-email-payment.php:335
|
1000 |
#: inc/_ps/admin/page-email-edit.php:331
|
1001 |
msgid "Type your email message content. "
|
1002 |
msgstr ""
|
1004 |
#: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
|
1005 |
#: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
|
1006 |
#: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
|
1007 |
+
#: core/lib/wpbc_all_translations.php:173 inc/_bs/admin/page-email-payment.php:356
|
1008 |
#: inc/_ps/admin/page-email-edit.php:352
|
1009 |
msgid "Email Heading"
|
1010 |
msgstr ""
|
1012 |
#: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
|
1013 |
#: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
|
1014 |
#: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
|
1015 |
+
#: core/lib/wpbc_all_translations.php:174 inc/_bs/admin/page-email-payment.php:357
|
1016 |
#: inc/_ps/admin/page-email-edit.php:353
|
1017 |
msgid "Enter main heading contained within the email notification."
|
1018 |
msgstr ""
|
1020 |
#: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
|
1021 |
#: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
|
1022 |
#: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
|
1023 |
+
#: core/lib/wpbc_all_translations.php:175 inc/_bs/admin/page-email-payment.php:366
|
1024 |
#: inc/_ps/admin/page-email-edit.php:362
|
1025 |
msgid "Email Footer Text"
|
1026 |
msgstr ""
|
1028 |
#: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
|
1029 |
#: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
|
1030 |
#: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
|
1031 |
+
#: core/lib/wpbc_all_translations.php:176 inc/_bs/admin/page-email-payment.php:367
|
1032 |
#: inc/_ps/admin/page-email-edit.php:363
|
1033 |
msgid "Enter text contained within footer of the email notification"
|
1034 |
msgstr ""
|
1036 |
#: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
|
1037 |
#: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
|
1038 |
#: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
|
1039 |
+
#: core/lib/wpbc_all_translations.php:177 inc/_bs/admin/page-email-payment.php:377
|
1040 |
#: inc/_ps/admin/page-email-edit.php:373
|
1041 |
msgid "Email template"
|
1042 |
msgstr ""
|
1044 |
#: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
|
1045 |
#: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
|
1046 |
#: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
|
1047 |
+
#: core/lib/wpbc_all_translations.php:178 inc/_bs/admin/page-email-payment.php:378
|
1048 |
#: inc/_ps/admin/page-email-edit.php:374
|
1049 |
msgid "Choose email template."
|
1050 |
msgstr ""
|
1052 |
#: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
|
1053 |
#: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
|
1054 |
#: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
|
1055 |
+
#: core/lib/wpbc_all_translations.php:179 inc/_bs/admin/page-email-payment.php:382
|
1056 |
#: inc/_ps/admin/page-email-edit.php:378
|
1057 |
msgid "Plain (without styles)"
|
1058 |
msgstr ""
|
1060 |
#: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
|
1061 |
#: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
|
1062 |
#: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
|
1063 |
+
#: core/lib/wpbc_all_translations.php:180 inc/_bs/admin/page-email-payment.php:383
|
1064 |
#: inc/_ps/admin/page-email-edit.php:379
|
1065 |
msgid "Standard 1 column"
|
1066 |
msgstr ""
|
1068 |
#: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
|
1069 |
#: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
|
1070 |
#: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
|
1071 |
+
#: core/lib/wpbc_all_translations.php:181 inc/_bs/admin/page-email-payment.php:390
|
1072 |
#: inc/_ps/admin/page-email-edit.php:386
|
1073 |
#, php-format
|
1074 |
msgid "You can override this email template in this folder %s"
|
1077 |
#: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
|
1078 |
#: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
|
1079 |
#: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
|
1080 |
+
#: core/lib/wpbc_all_translations.php:182 inc/_bs/admin/page-email-payment.php:400
|
1081 |
#: inc/_ps/admin/page-email-edit.php:396
|
1082 |
msgid "Base Color"
|
1083 |
msgstr ""
|
1085 |
#: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
|
1086 |
#: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
|
1087 |
#: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
|
1088 |
+
#: core/lib/wpbc_all_translations.php:183 inc/_bs/admin/page-email-payment.php:401
|
1089 |
#: inc/_ps/admin/page-email-edit.php:397
|
1090 |
msgid "The base color for email templates."
|
1091 |
msgstr ""
|
1102 |
#: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
|
1103 |
#: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
|
1104 |
#: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
|
1105 |
+
#: core/lib/wpbc_all_translations.php:184 inc/_bs/admin/page-email-payment.php:402
|
1106 |
#: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
|
1107 |
#: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
|
1108 |
#: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
|
1113 |
#: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
|
1114 |
#: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
|
1115 |
#: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
|
1116 |
+
#: core/lib/wpbc_all_translations.php:185 inc/_bs/admin/page-email-payment.php:409
|
1117 |
#: inc/_ps/admin/page-email-edit.php:405
|
1118 |
msgid "Background Color"
|
1119 |
msgstr ""
|
1121 |
#: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
|
1122 |
#: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
|
1123 |
#: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
|
1124 |
+
#: core/lib/wpbc_all_translations.php:186 inc/_bs/admin/page-email-payment.php:410
|
1125 |
#: inc/_ps/admin/page-email-edit.php:406
|
1126 |
msgid "The background color for email templates."
|
1127 |
msgstr ""
|
1129 |
#: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
|
1130 |
#: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
|
1131 |
#: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
|
1132 |
+
#: core/lib/wpbc_all_translations.php:187 inc/_bs/admin/page-email-payment.php:418
|
1133 |
#: inc/_ps/admin/page-email-edit.php:414
|
1134 |
msgid "Email Body Background Color"
|
1135 |
msgstr ""
|
1137 |
#: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
|
1138 |
#: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
|
1139 |
#: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
|
1140 |
+
#: core/lib/wpbc_all_translations.php:188 inc/_bs/admin/page-email-payment.php:419
|
1141 |
#: inc/_ps/admin/page-email-edit.php:415
|
1142 |
msgid "The main body background color for email templates."
|
1143 |
msgstr ""
|
1145 |
#: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
|
1146 |
#: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
|
1147 |
#: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
|
1148 |
+
#: core/lib/wpbc_all_translations.php:189 inc/_bs/admin/page-email-payment.php:427
|
1149 |
#: inc/_ps/admin/page-email-edit.php:423
|
1150 |
msgid "Email Body Text Colour"
|
1151 |
msgstr ""
|
1153 |
#: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
|
1154 |
#: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
|
1155 |
#: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
|
1156 |
+
#: core/lib/wpbc_all_translations.php:190 inc/_bs/admin/page-email-payment.php:428
|
1157 |
#: inc/_ps/admin/page-email-edit.php:424
|
1158 |
msgid "The main body text color for email templates."
|
1159 |
msgstr ""
|
1161 |
#: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
|
1162 |
#: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
|
1163 |
#: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
|
1164 |
+
#: core/lib/wpbc_all_translations.php:191 inc/_bs/admin/page-email-payment.php:443
|
1165 |
#: inc/_ps/admin/page-email-edit.php:439
|
1166 |
msgid "Email format"
|
1167 |
msgstr ""
|
1169 |
#: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
|
1170 |
#: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
|
1171 |
#: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
|
1172 |
+
#: core/lib/wpbc_all_translations.php:192 inc/_bs/admin/page-email-payment.php:444
|
1173 |
#: inc/_ps/admin/page-email-edit.php:440
|
1174 |
msgid "Choose which format of email to send."
|
1175 |
msgstr ""
|
1177 |
#: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
|
1178 |
#: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
|
1179 |
#: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
|
1180 |
+
#: core/lib/wpbc_all_translations.php:193 inc/_bs/admin/page-email-payment.php:448
|
1181 |
#: inc/_ps/admin/page-email-edit.php:444
|
1182 |
msgid "Plain text"
|
1183 |
msgstr ""
|
1185 |
#: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
|
1186 |
#: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
|
1187 |
#: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
|
1188 |
+
#: core/lib/wpbc_all_translations.php:194 inc/_bs/admin/page-email-payment.php:455
|
1189 |
#: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:678
|
1190 |
#: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:1123
|
1191 |
msgid "HTML"
|
1194 |
#: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
|
1195 |
#: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
|
1196 |
#: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
|
1197 |
+
#: core/lib/wpbc_all_translations.php:195 inc/_bs/admin/page-email-payment.php:456
|
1198 |
#: inc/_ps/admin/page-email-edit.php:452
|
1199 |
msgid "Multipart"
|
1200 |
msgstr ""
|
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:196 inc/_bs/admin/page-email-payment.php:483
|
1206 |
#: inc/_ps/admin/page-email-edit.php:479
|
1207 |
#, php-format
|
1208 |
msgid ""
|
1213 |
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1214 |
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1215 |
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1216 |
+
#: core/lib/wpbc_all_translations.php:197 core/sync/wpbc-gcal.php:406
|
1217 |
#: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
|
1218 |
msgid "here"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
#: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:329
|
1222 |
+
#: core/admin/wpbc-toolbars.php:550 core/lib/wpbc_all_translations.php:198
|
1223 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2732 inc/_ps/personal.php:358
|
1224 |
#: inc/_ps/wpbc-print.php:118
|
1225 |
msgid "Approved"
|
1229 |
#: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:513
|
1230 |
#: core/admin/page-email-new-admin.php:514 core/admin/page-email-new-admin.php:538
|
1231 |
#: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
|
1232 |
+
#: core/lib/wpbc_all_translations.php:199 inc/_bs/admin/page-email-payment.php:561
|
1233 |
#: inc/_ps/admin/page-email-edit.php:557
|
1234 |
msgid "Emails Settings"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:200
|
1238 |
msgid "Customization of email template, which is sent to Visitor after approval of booking"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:201
|
1242 |
msgid "Email is sent to Visitor after Approval of booking."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
#: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
|
1246 |
#: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:686
|
1247 |
#: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
|
1248 |
+
#: core/lib/wpbc_all_translations.php:202 inc/_bs/admin/page-email-payment.php:705
|
1249 |
#: inc/_ps/admin/page-email-edit.php:701
|
1250 |
msgid "Header / Footer"
|
1251 |
msgstr ""
|
1253 |
#: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
|
1254 |
#: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:693
|
1255 |
#: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
|
1256 |
+
#: core/lib/wpbc_all_translations.php:203 inc/_bs/admin/page-email-payment.php:712
|
1257 |
#: inc/_ps/admin/page-email-edit.php:708
|
1258 |
msgid "Email Styles"
|
1259 |
msgstr ""
|
1264 |
#: core/admin/page-form-free.php:1149 core/admin/page-form-timeslots.php:768
|
1265 |
#: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
|
1266 |
#: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:178
|
1267 |
+
#: core/lib/wpbc_all_translations.php:204 inc/_bl/admin/page-coupons.php:548
|
1268 |
#: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
|
1269 |
#: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
|
1270 |
#: inc/_ps/admin/page-email-edit.php:720
|
1274 |
#: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
|
1275 |
#: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:709
|
1276 |
#: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
|
1277 |
+
#: core/lib/wpbc_all_translations.php:205 inc/_bs/admin/page-email-payment.php:728
|
1278 |
#: inc/_ps/admin/page-email-edit.php:724
|
1279 |
msgid "Send Test Email"
|
1280 |
msgstr ""
|
1290 |
#: core/admin/page-ics-general.php:416 core/admin/page-ics-import.php:203
|
1291 |
#: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:142
|
1292 |
#: core/admin/page-settings.php:290 core/admin/wpbc-toolbars.php:1826
|
1293 |
+
#: core/lib/wpbc_all_translations.php:206 inc/_bl/admin/page-coupons.php:220
|
1294 |
#: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:445
|
1295 |
#: inc/_bl/admin/page-search.php:545 inc/_bm/admin/page-availability.php:1024
|
1296 |
#: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
|
1315 |
#: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:729
|
1316 |
#: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
|
1317 |
#: core/admin/page-form-free.php:1148 core/admin/wpbc-dashboard.php:471
|
1318 |
+
#: core/lib/wpbc_all_translations.php:207 inc/_bs/admin/page-email-payment.php:748
|
1319 |
#: inc/_ps/admin/page-email-edit.php:744
|
1320 |
msgid "Type"
|
1321 |
msgstr ""
|
1326 |
#: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
|
1327 |
#: core/admin/page-settings.php:136 core/admin/page-settings.php:282
|
1328 |
#: core/admin/wpbc-toolbars.php:434 core/admin/wpbc-toolbars.php:440
|
1329 |
+
#: core/lib/wpbc_all_translations.php:208 inc/_bl/admin/page-search.php:495
|
1330 |
#: inc/_bl/admin/page-search.php:523 inc/_bm/admin/page-cost-advanced.php:155
|
1331 |
#: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
|
1332 |
#: inc/_ps/admin/page-settings-form.php:181
|
1339 |
#: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
|
1340 |
#: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:826
|
1341 |
#: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
|
1342 |
+
#: core/lib/wpbc_all_translations.php:209 inc/_bs/admin/page-email-payment.php:837
|
1343 |
#: inc/_ps/admin/page-email-edit.php:833
|
1344 |
msgid "Email sent to "
|
1345 |
msgstr ""
|
1347 |
#: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
|
1348 |
#: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:828
|
1349 |
#: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
|
1350 |
+
#: core/lib/wpbc_all_translations.php:210 core/wpbc-emails.php:449
|
1351 |
#: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
|
1352 |
msgid "Email had not sent. Some error occuered."
|
1353 |
msgstr ""
|
1355 |
#: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
|
1356 |
#: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:912
|
1357 |
#: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
|
1358 |
+
#: core/lib/wpbc_all_translations.php:211 inc/_bs/admin/page-email-payment.php:854
|
1359 |
#: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:951
|
1360 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
|
1361 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:885
|
1370 |
#: core/admin/page-email-new-admin.php:974 core/admin/page-email-new-admin.php:977
|
1371 |
#: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
|
1372 |
#: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
|
1373 |
+
#: core/lib/wpbc_all_translations.php:212 inc/_bs/admin/page-email-payment.php:915
|
1374 |
#: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
|
1375 |
#: inc/_ps/admin/page-email-edit.php:914
|
1376 |
msgid "If empty then title defined as WordPress"
|
1379 |
#: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
|
1380 |
#: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:994
|
1381 |
#: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
|
1382 |
+
#: core/lib/wpbc_all_translations.php:213 inc/_bs/admin/page-email-payment.php:935
|
1383 |
#: inc/_ps/admin/page-email-edit.php:931
|
1384 |
msgid ""
|
1385 |
"Email different from website DNS, its can be a reason of not delivery emails. Please use the "
|
1387 |
msgstr ""
|
1388 |
|
1389 |
#: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
|
1390 |
+
#: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:214
|
1391 |
#: core/wpbc-activation.php:1009
|
1392 |
msgid "Your booking has been declined"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
#: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
|
1396 |
+
#: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:215
|
1397 |
#: core/wpbc-activation.php:1010
|
1398 |
#, php-format
|
1399 |
msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:436
|
1403 |
+
#: core/lib/wpbc_all_translations.php:216 inc/_bl/admin/page-coupons.php:378
|
1404 |
#: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
|
1405 |
#: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
|
1406 |
+
#: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:557
|
1407 |
#: inc/_ps/admin/page-resources.php:318 inc/_ps/personal.php:175
|
1408 |
msgid "Deleted"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: core/admin/page-email-deleted.php:560 core/lib/wpbc_all_translations.php:217
|
1412 |
msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:218
|
1416 |
msgid "Email is sent to Visitor after Deleting of booking."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:219
|
1420 |
msgid ""
|
1421 |
"Customization of email template, which is sent to Visitor, when booking status is set to Pending"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:220
|
1425 |
msgid "Email is sent to Visitor after booking set as Pending."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
#: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
|
1429 |
+
#: core/admin/wpbc-class-listing.php:302 core/lib/wpbc_all_translations.php:221
|
1430 |
#: core/wpbc-activation.php:980 core/wpbc-activation.php:987
|
1431 |
msgid "New booking"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:222
|
1435 |
#: core/wpbc-activation.php:981
|
1436 |
#, php-format
|
1437 |
msgid ""
|
1439 |
"booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: core/admin/page-email-new-admin.php:512 core/lib/wpbc_all_translations.php:223
|
1443 |
#: core/wpbc-functions.php:1990
|
1444 |
msgid "Emails"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
#: core/admin/page-email-new-admin.php:537 core/admin/page-email-new-visitor.php:537
|
1448 |
+
#: core/lib/wpbc_all_translations.php:224
|
1449 |
msgid "New"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:225
|
1453 |
msgid "admin"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:226
|
1457 |
msgid "Customization of email template, which is sending to Admin after new booking"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: core/admin/page-email-new-admin.php:679 core/lib/wpbc_all_translations.php:227
|
1461 |
msgid "Email is sending to Admin after creation of booking."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:228
|
1465 |
#: core/wpbc-activation.php:989
|
1466 |
#, php-format
|
1467 |
msgid ""
|
1469 |
"edit this booking at this page: %s Thank you, %s"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:229
|
1473 |
#: core/wpbc-activation.php:991
|
1474 |
#, php-format
|
1475 |
msgid ""
|
1477 |
"%s"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:230
|
1481 |
msgid "visitor"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:231
|
1485 |
msgid "Customization of email template, which is sending to Visitor after new booking"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:232
|
1489 |
msgid "Email is sending to Visitor after creation of booking."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
#: core/admin/page-email-trash.php:563 core/admin/wpbc-toolbars.php:994
|
1493 |
+
#: core/lib/wpbc_all_translations.php:233 core/timeline/v2/wpbc-class-timeline_v2.php:2659
|
1494 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2769
|
1495 |
msgid "Trash / Reject"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: core/admin/page-email-trash.php:565 core/lib/wpbc_all_translations.php:234
|
1499 |
msgid "Customization of email template, which is sent to Visitor after rejecting of booking"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:235
|
1503 |
msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
#: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
|
1507 |
+
#: core/admin/page-settings.php:217 core/lib/wpbc_all_translations.php:236
|
1508 |
#: core/wpbc-functions.php:1982 inc/_ps/admin/page-settings-form.php:46
|
1509 |
msgid "Form"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:237
|
1513 |
#: inc/_ps/admin/page-settings-form.php:47
|
1514 |
msgid "Fields Settings"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:238
|
1518 |
#: inc/_ps/admin/page-settings-form.php:48
|
1519 |
msgid "Customizaton of Form Fields"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
#: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
|
1523 |
+
#: core/lib/wpbc_all_translations.php:239
|
1524 |
msgid "Check Premium Features"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:240
|
1528 |
msgid "Upgrade to higher versions"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:241
|
1532 |
msgid "Form Field Configuration"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: core/admin/page-form-free.php:190 core/lib/wpbc_all_translations.php:242
|
1536 |
#, php-format
|
1537 |
msgid ""
|
1538 |
"You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in "
|
1540 |
msgstr ""
|
1541 |
|
1542 |
#: core/admin/page-form-free.php:298 core/admin/page-form-free.php:421
|
1543 |
+
#: core/admin/page-form-free.php:579 core/lib/wpbc_all_translations.php:243
|
1544 |
#: inc/_ps/personal.php:2100 inc/_ps/wpbc-form-templates.php:42 inc/_ps/wpbc-form-templates.php:61
|
1545 |
#: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
|
1546 |
#: inc/_ps/wpbc-form-templates.php:127
|
1547 |
msgid "Send"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: core/admin/page-form-free.php:852 core/lib/wpbc_all_translations.php:244
|
1551 |
msgid "Reset to default form"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
#: core/admin/page-form-free.php:856 core/admin/page-form-free.php:1466
|
1555 |
#: core/admin/wpbc-class-listing.php:396 core/admin/wpbc-class-listing.php:402
|
1556 |
#: core/admin/wpbc-toolbars.php:997 core/admin/wpbc-toolbars.php:1014
|
1557 |
+
#: core/admin/wpbc-toolbars.php:1078 core/lib/wpbc_all_translations.php:245
|
1558 |
#: inc/_bl/admin/page-coupons.php:236 inc/_bl/admin/page-coupons.php:808
|
1559 |
#: inc/_bm/admin/page-availability.php:274 inc/_bm/admin/page-cost-valuation.php:354
|
1560 |
#: inc/_bm/admin/page-cost.php:529 inc/_bm/admin/page-seasons.php:221
|
1564 |
msgstr ""
|
1565 |
|
1566 |
#: core/admin/page-form-free.php:884 core/admin/page-form-free.php:2177
|
1567 |
+
#: core/lib/wpbc_all_translations.php:246
|
1568 |
msgid "Add New Field"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
#: core/admin/page-form-free.php:901 core/admin/page-form-free.php:936
|
1572 |
+
#: core/lib/wpbc_all_translations.php:247 inc/_ps/admin/page-settings-form.php:312
|
1573 |
msgid "Select"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: core/admin/page-form-free.php:901 core/lib/wpbc_all_translations.php:248
|
1577 |
msgid "Form Field"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: core/admin/page-form-free.php:923 core/lib/wpbc_all_translations.php:249
|
1581 |
#: inc/_ps/form/class-wpbc-form-help.php:141
|
1582 |
msgid "Standard Fields"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: core/admin/page-form-free.php:926 core/lib/wpbc_all_translations.php:250
|
1586 |
#: inc/_ps/form/class-wpbc-form-help.php:147
|
1587 |
msgid "Text"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: core/admin/page-form-free.php:946 core/lib/wpbc_all_translations.php:251
|
1591 |
#: inc/_ps/form/class-wpbc-form-help.php:156
|
1592 |
msgid "Textarea"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: core/admin/page-form-free.php:956 core/lib/wpbc_all_translations.php:252
|
1596 |
msgid "Checkbox"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: core/admin/page-form-free.php:971 core/lib/wpbc_all_translations.php:253
|
1600 |
#: inc/_ps/form/class-wpbc-form-help.php:486
|
1601 |
msgid "Advanced Fields"
|
1602 |
msgstr ""
|
1604 |
#: core/admin/page-form-free.php:975 core/admin/page-form-free.php:1991
|
1605 |
#: core/admin/page-form-free.php:1992 core/admin/page-form-timeslots.php:106
|
1606 |
#: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
|
1607 |
+
#: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:254
|
1608 |
#: inc/_ps/admin/page-settings-form.php:373 inc/_ps/admin/page-settings-form.php:383
|
1609 |
#: inc/_ps/admin/page-settings-form.php:393
|
1610 |
msgid "Time Slots"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: core/admin/page-form-free.php:1033 core/lib/wpbc_all_translations.php:255
|
1614 |
msgid "View"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: core/admin/page-form-free.php:1052 core/lib/wpbc_all_translations.php:256
|
1618 |
msgid "Standard Forms"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: core/admin/page-form-free.php:1055 core/lib/wpbc_all_translations.php:257
|
1622 |
msgid "Form under calendar"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: core/admin/page-form-free.php:1065 core/lib/wpbc_all_translations.php:258
|
1626 |
msgid "Form at right side of calendar"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: core/admin/page-form-free.php:1075 core/lib/wpbc_all_translations.php:259
|
1630 |
msgid "Form and calendar are centered"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: core/admin/page-form-free.php:1085 core/lib/wpbc_all_translations.php:260
|
1634 |
msgid "Form for dark background"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
#: core/admin/page-form-free.php:1145 core/admin/page-form-free.php:2050
|
1638 |
+
#: core/lib/wpbc_all_translations.php:261
|
1639 |
msgid "Active"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: core/admin/page-form-free.php:1146 core/lib/wpbc_all_translations.php:262
|
1643 |
msgid "Field Label"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
#: core/admin/page-form-free.php:1148 core/admin/page-form-free.php:2116
|
1647 |
+
#: core/lib/wpbc_all_translations.php:263 inc/_ps/form/class-wpbc-field-help-text.php:177
|
1648 |
msgid "Name"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
#: core/admin/page-form-free.php:1225 core/admin/page-form-free.php:1663
|
1652 |
+
#: core/admin/page-form-free.php:1724 core/lib/wpbc_all_translations.php:264
|
1653 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2639
|
1654 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2697 inc/_bl/admin/page-coupons.php:215
|
1655 |
#: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
|
1660 |
msgstr ""
|
1661 |
|
1662 |
#: core/admin/page-form-free.php:1226 core/admin/page-form-free.php:1664
|
1663 |
+
#: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:265
|
1664 |
msgid "Remove"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: core/admin/page-form-free.php:1894 core/lib/wpbc_all_translations.php:266
|
1668 |
#: inc/_ps/form/class-wpbc-form-help.php:88
|
1669 |
msgid "Shortcodes"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: core/admin/page-form-free.php:1895 core/lib/wpbc_all_translations.php:267
|
1673 |
#: inc/_ps/form/class-wpbc-form-help.php:89
|
1674 |
msgid ""
|
1675 |
"You can generate the form fields for your form (at the left side) by selection specific field in "
|
1676 |
"the above selectbox."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: core/admin/page-form-free.php:1896 core/lib/wpbc_all_translations.php:268
|
1680 |
#: inc/_ps/form/class-wpbc-form-help.php:90
|
1681 |
#, php-format
|
1682 |
msgid "Please read more about the booking form fields configuration %shere%s."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: core/admin/page-form-free.php:1898 core/lib/wpbc_all_translations.php:269
|
1686 |
#: inc/_ps/form/class-wpbc-form-help.php:99
|
1687 |
msgid "Default Form Templates"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: core/admin/page-form-free.php:1899 core/lib/wpbc_all_translations.php:270
|
1691 |
#: inc/_ps/form/class-wpbc-form-help.php:100
|
1692 |
#, php-format
|
1693 |
msgid ""
|
1697 |
"reset both forms: Booking Form and Content of Booking Fields form."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: core/admin/page-form-free.php:2029 core/lib/wpbc_all_translations.php:271
|
1701 |
#: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
|
1702 |
#: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
|
1703 |
msgid "First Name"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: core/admin/page-form-free.php:2051 core/lib/wpbc_all_translations.php:272
|
1707 |
msgid "Show / hide field in booking form"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: core/admin/page-form-free.php:2072 core/lib/wpbc_all_translations.php:273
|
1711 |
msgid "Set field as required"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
#: core/admin/page-form-free.php:2092 core/admin/page-form-timeslots.php:784
|
1715 |
#: core/admin/wpbc-toolbar-tiny.php:428 core/admin/wpbc-toolbar-tiny.php:1219
|
1716 |
+
#: core/lib/wpbc_all_translations.php:274 inc/_ps/form/class-wpbc-field-help-button.php:73
|
1717 |
+
#: js/wpbc-gutenberg.js:883
|
1718 |
msgid "Label"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: core/admin/page-form-free.php:2121 core/lib/wpbc_all_translations.php:275
|
1722 |
#, php-format
|
1723 |
msgid "Type only %sunique field name%s, that is not using in form"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: core/admin/page-form-free.php:2142 core/lib/wpbc_all_translations.php:276
|
1727 |
msgid "Values"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: core/admin/page-form-free.php:2147 core/lib/wpbc_all_translations.php:277
|
1731 |
msgid "Enter dropdown options. One option per line."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
#: core/admin/page-form-free.php:2182 core/admin/wpbc-toolbar-tiny.php:298
|
1735 |
#: core/admin/wpbc-toolbars.php:710 core/admin/wpbc-toolbars.php:915
|
1736 |
+
#: core/admin/wpbc-toolbars.php:1536 core/lib/wpbc_all_translations.php:278
|
1737 |
#: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:105 inc/_bs/s-toolbar.php:209
|
1738 |
#: inc/_ps/p-toolbar.php:508 inc/_ps/p-toolbar.php:553
|
1739 |
msgid "Close"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: core/admin/page-form-free.php:2196 core/lib/wpbc_all_translations.php:279
|
1743 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2698 inc/_bm/m-toolbar.php:377
|
1744 |
+
#: inc/_bm/m-toolbar.php:378 inc/_ps/p-toolbar.php:387 inc/_ps/p-toolbar.php:439
|
1745 |
#: inc/_ps/p-toolbar.php:472
|
1746 |
msgid "Cancel"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:280
|
1750 |
msgid "in 24 hour format"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:281
|
1754 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
|
1755 |
#: inc/_ps/form/class-wpbc-field-help-select.php:119
|
1756 |
msgid "One option per line"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:282
|
1760 |
msgid "Titles"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:283
|
1764 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
|
1765 |
#: inc/_ps/form/class-wpbc-field-help-select.php:137
|
1766 |
msgid "One title per line"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:284
|
1770 |
msgid "Visible options in selectbox"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:285
|
1774 |
msgid "Reset times by"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
#: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
|
1778 |
#: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
|
1779 |
+
#: core/admin/wpbc-toolbar-tiny.php:634 core/lib/wpbc_all_translations.php:286
|
1780 |
#: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
|
1781 |
#: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
|
1782 |
msgid "hours"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
#: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
|
1786 |
+
#: core/lib/wpbc_all_translations.php:287 inc/_bm/admin/api-settings-m.php:98
|
1787 |
#: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
|
1788 |
#: inc/_bs/admin/api-settings-s.php:901
|
1789 |
msgid "hour"
|
1791 |
|
1792 |
#: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
|
1793 |
#: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
|
1794 |
+
#: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:288
|
1795 |
#: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
|
1796 |
#: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
|
1797 |
#: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
|
1804 |
#: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
|
1805 |
#: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
|
1806 |
#: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
|
1807 |
+
#: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:289
|
1808 |
#: core/wpbc-js.php:131 inc/_ps/personal.php:268
|
1809 |
msgid "Processing"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:290
|
1813 |
msgid "+ Add Time Slot"
|
1814 |
msgstr ""
|
1815 |
|
1818 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1819 |
#: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
|
1820 |
#: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
|
1821 |
+
#: core/lib/wpbc_all_translations.php:291 core/wpbc-functions.php:2007
|
1822 |
msgid "Sync"
|
1823 |
msgstr ""
|
1824 |
|
1827 |
#: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
|
1828 |
#: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
|
1829 |
#: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:469
|
1830 |
+
#: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:292
|
1831 |
#: core/sync/wpbc-gcal.php:465
|
1832 |
msgid "Import"
|
1833 |
msgstr ""
|
1836 |
#: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
|
1837 |
#: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:264
|
1838 |
#: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
|
1839 |
+
#: core/lib/wpbc_all_translations.php:293 inc/_ps/p-toolbar.php:173
|
1840 |
msgid "Export"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
|
1844 |
+
#: core/lib/wpbc_all_translations.php:294
|
1845 |
msgid "feed"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
#: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
|
1849 |
+
#: core/lib/wpbc_all_translations.php:295 core/sync/wpbc-gcal.php:398
|
1850 |
#: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:767
|
1851 |
msgid "Warning!"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:296
|
1855 |
#, php-format
|
1856 |
msgid "This feature require %s"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
#: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
|
1860 |
+
#: core/lib/wpbc_all_translations.php:297 inc/_bl/admin/api-settings-l.php:162
|
1861 |
#: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
|
1862 |
#: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
|
1863 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
|
1871 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:892
|
1872 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:831 inc/gateways/sage/wpbc-gw-sage.php:882
|
1873 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1112
|
1874 |
+
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1119 js/wpbc-gutenberg.js:1170
|
1875 |
+
#: js/wpbc-gutenberg.js:1256
|
1876 |
msgid "Important!"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
#: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
|
1880 |
+
#: core/lib/wpbc_all_translations.php:298
|
1881 |
#, php-format
|
1882 |
msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
#: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
|
1886 |
+
#: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:299
|
1887 |
msgid "How it works"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
#: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
|
1891 |
+
#: core/lib/wpbc_all_translations.php:300
|
1892 |
msgid ".ics feed URL"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:301
|
1896 |
#: inc/_ps/admin/br-table-export-feeds.php:69
|
1897 |
msgid "Open in new window"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:302
|
1901 |
msgid "Please enter URL for generating .ics feed"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:303
|
1905 |
msgid "This .ics feed of bookings starting from today for 1 year"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
#: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:875
|
1909 |
#: core/admin/wpbc-toolbar-tiny.php:1090 core/admin/wpbc-toolbar-tiny.php:1171
|
1910 |
+
#: core/lib/wpbc_all_translations.php:304 inc/_bm/admin/api-settings-m.php:60
|
1911 |
#: inc/_ps/wpbc-booking-select-widget.php:188
|
1912 |
msgid "None"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:305
|
1916 |
msgid "Event Title"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
#: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
|
1920 |
+
#: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:306
|
1921 |
#, php-format
|
1922 |
msgid "Select field for assigning to %sevent property%s"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:307
|
1926 |
msgid "Event Description (optional field)"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:308
|
1930 |
msgid "Location"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
#: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:206
|
1934 |
+
#: core/lib/wpbc_all_translations.php:309 core/sync/wpbc-gcal.php:314
|
1935 |
#: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:628 inc/_ps/admin/activation-p.php:45
|
1936 |
msgid "Default"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:310
|
1940 |
#: core/sync/wpbc-gcal.php:309
|
1941 |
msgid "Timezone"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:311
|
1945 |
#: core/sync/wpbc-gcal.php:343
|
1946 |
msgid "Select a city in your required timezone, if you are having problems with dates and times."
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:312
|
1950 |
#: inc/_bs/admin/api-settings-s.php:314
|
1951 |
msgid "Use check in/out time"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:313
|
1955 |
msgid "Use check in/out time of plugin, during import .ics feeds"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:314
|
1959 |
msgid "Append check out day"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:315
|
1963 |
msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: core/admin/page-ics-general.php:188 core/lib/wpbc_all_translations.php:316
|
1967 |
msgid "Export only approved bookings"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: core/admin/page-ics-general.php:189 core/lib/wpbc_all_translations.php:317
|
1971 |
msgid "Enable of export only approved bookings in .ics feeds"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: core/admin/page-ics-general.php:201 core/lib/wpbc_all_translations.php:318
|
1975 |
msgid "Force import"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: core/admin/page-ics-general.php:202 core/lib/wpbc_all_translations.php:319
|
1979 |
msgid "Import bookings without checking, if such bookings already have been imported."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: core/admin/page-ics-general.php:210 core/lib/wpbc_all_translations.php:320
|
1983 |
msgid "Trash all imported bookings before new import"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: core/admin/page-ics-general.php:211 core/lib/wpbc_all_translations.php:321
|
1987 |
msgid ""
|
1988 |
"Move all previously imported bookings to trash before new import bookings. Its can resolve "
|
1989 |
"issue of updating deleted and edited events in external sources. Its work only, if you are using "
|
1991 |
msgstr ""
|
1992 |
|
1993 |
#: core/admin/page-ics-general.php:281 core/admin/page-settings.php:74
|
1994 |
+
#: core/lib/wpbc_all_translations.php:322 inc/gateways/page-gateways.php:538
|
1995 |
msgid "General"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1999 |
#: core/admin/page-ics-general.php:390 core/admin/page-import-gcal.php:485
|
2000 |
#: core/admin/page-settings.php:75 core/admin/page-settings.php:76
|
2001 |
+
#: core/lib/wpbc_all_translations.php:323 core/wpbc.php:188
|
2002 |
msgid "General Settings"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: core/admin/page-ics-general.php:397 core/lib/wpbc_all_translations.php:324
|
2006 |
msgid "Assign events fields to specific booking form field"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
#: core/admin/page-ics-general.php:406 core/admin/page-settings.php:121
|
2010 |
+
#: core/admin/page-settings.php:252 core/lib/wpbc_all_translations.php:325
|
2011 |
#: inc/_bl/admin/page-search.php:539 inc/_bl/admin/page-search.php:735
|
2012 |
#: inc/_bl/admin/page-search.php:780 inc/_bl/wpbc-search-availability.php:167
|
2013 |
#: inc/_bl/wpbc-search-availability.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:921
|
2017 |
msgid "Advanced"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:326
|
2021 |
msgid "feeds"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
#: core/admin/page-ics-import.php:438 core/admin/wpbc-sql.php:592
|
2025 |
+
#: core/admin/wpbc-toolbar-tiny.php:331 core/lib/wpbc_all_translations.php:327
|
2026 |
#: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:965 inc/_ps/p-toolbar.php:996
|
2027 |
msgid "parent resource"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:328
|
2031 |
msgid "Enter URL to .ics feed"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: core/admin/page-ics-import.php:465 core/lib/wpbc_all_translations.php:329
|
2035 |
msgid "Choose file"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: core/admin/page-ics-import.php:466 core/lib/wpbc_all_translations.php:330
|
2039 |
msgid "Insert file URL"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: core/admin/page-ics-import.php:467 core/lib/wpbc_all_translations.php:331
|
2043 |
msgid "Upload / Select "
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: core/admin/page-ics-import.php:504 core/lib/wpbc_all_translations.php:332
|
2047 |
msgid "What does .ics feeds import/export mean?"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: core/admin/page-ics-import.php:512 core/lib/wpbc_all_translations.php:333
|
2051 |
#, php-format
|
2052 |
msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: core/admin/page-ics-import.php:520 core/lib/wpbc_all_translations.php:334
|
2056 |
msgid "and any other calendar that uses .ics format"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
#: core/admin/page-ics-import.php:534 core/class/wpbc-class-welcome.php:911
|
2060 |
+
#: core/lib/wpbc_all_translations.php:335
|
2061 |
#, php-format
|
2062 |
msgid ""
|
2063 |
".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
|
2065 |
"calendars updated and synchronized."
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: core/admin/page-ics-import.php:555 core/lib/wpbc_all_translations.php:336
|
2069 |
msgid "Is it automatic process?"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: core/admin/page-ics-import.php:565 core/lib/wpbc_all_translations.php:337
|
2073 |
msgid ""
|
2074 |
"By default .ics import is not automatic process. You need to set up CRON script on your server "
|
2075 |
"to periodically access front-end page(s) with import .ics feeds shortcodes."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: core/admin/page-ics-import.php:584 core/lib/wpbc_all_translations.php:338
|
2079 |
msgid "How to start import of .ics feeds (files)?"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
#: core/admin/page-ics-import.php:591 core/admin/page-ics-import.php:638
|
2083 |
+
#: core/lib/wpbc_all_translations.php:339
|
2084 |
#, php-format
|
2085 |
msgid "Install %s plugin."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: core/admin/page-ics-import.php:595 core/lib/wpbc_all_translations.php:340
|
2089 |
#, php-format
|
2090 |
msgid ""
|
2091 |
"Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
|
2092 |
"configuration%s"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: core/admin/page-ics-import.php:604 core/lib/wpbc_all_translations.php:341
|
2096 |
#, php-format
|
2097 |
msgid ""
|
2098 |
"Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
|
2100 |
"accessing such different pages with different time intervals."
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: core/admin/page-ics-import.php:613 core/lib/wpbc_all_translations.php:342
|
2104 |
msgid "Or you can import .ics feed or file directly at current page."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: core/admin/page-ics-import.php:620 core/lib/wpbc_all_translations.php:343
|
2108 |
#, php-format
|
2109 |
msgid ""
|
2110 |
"If you have inserted import shortcodes from %s, then you can configure your CRON for "
|
2111 |
"periodically access these pages and import .ics feeds."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: core/admin/page-ics-import.php:631 core/lib/wpbc_all_translations.php:344
|
2115 |
msgid "How to start export of .ics feeds (files)?"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: core/admin/page-ics-import.php:642 core/lib/wpbc_all_translations.php:345
|
2119 |
msgid "Configure ULR feed(s) at this settings page."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: core/admin/page-ics-import.php:647 core/lib/wpbc_all_translations.php:346
|
2123 |
#, php-format
|
2124 |
msgid ""
|
2125 |
"Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
|
2127 |
"website."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: core/admin/page-ics-import.php:656 core/lib/wpbc_all_translations.php:347
|
2131 |
msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: core/admin/page-ics-import.php:711 core/lib/wpbc_all_translations.php:348
|
2135 |
#: core/sync/wpbc-gcal-class.php:492 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:441
|
2136 |
msgid "Done"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:349
|
2140 |
msgid "Activate auto import"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:350
|
2144 |
#, php-format
|
2145 |
msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
#: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:567
|
2149 |
+
#: core/admin/wpbc-toolbars.php:801 core/lib/wpbc_all_translations.php:351 core/wpbc-emails.php:208
|
2150 |
#: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
|
2151 |
#: inc/_bm/admin/page-cost-early-late-booking.php:230
|
2152 |
#: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
|
2161 |
#: core/admin/wpbc-toolbars.php:571 core/admin/wpbc-toolbars.php:572
|
2162 |
#: core/admin/wpbc-toolbars.php:802 core/admin/wpbc-toolbars.php:803
|
2163 |
#: core/admin/wpbc-toolbars.php:804 core/admin/wpbc-toolbars.php:805
|
2164 |
+
#: core/admin/wpbc-toolbars.php:806 core/lib/wpbc_all_translations.php:352
|
2165 |
#: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:94
|
2166 |
#: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
|
2167 |
#: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
|
2172 |
msgid "days"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:353
|
2176 |
msgid "Import events every"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:354
|
2180 |
msgid "Select time duration of import requests."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:355
|
2184 |
msgid "Google API Key"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:356
|
2188 |
msgid "Please enter your Google API key. This field required to import events."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:357
|
2192 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:369
|
2193 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:407
|
2194 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:438 inc/gateways/ideal/wpbc-gw-ideal.php:422
|
2199 |
msgid "Note:"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:358
|
2203 |
#, php-format
|
2204 |
msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:359
|
2208 |
#: inc/_ps/admin/br-table-import-gcal-p.php:148
|
2209 |
msgid "Google Calendar ID"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:360
|
2213 |
#: core/sync/wpbc-gcal.php:295
|
2214 |
msgid "Maximum number"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:361
|
2218 |
#: core/sync/wpbc-gcal.php:298
|
2219 |
msgid "You can specify the maximum number of events to import during one session."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
#: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
|
2223 |
+
#: core/lib/wpbc_all_translations.php:362 core/sync/wpbc-gcal.php:184 core/sync/wpbc-gcal.php:248
|
2224 |
msgid "Now"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
#: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
|
2228 |
+
#: core/lib/wpbc_all_translations.php:363 core/sync/wpbc-gcal.php:185 core/sync/wpbc-gcal.php:249
|
2229 |
msgid "00:00 today"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
#: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
|
2233 |
+
#: core/lib/wpbc_all_translations.php:364 core/sync/wpbc-gcal.php:186 core/sync/wpbc-gcal.php:250
|
2234 |
msgid "Start of current week"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
#: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
|
2238 |
+
#: core/lib/wpbc_all_translations.php:365 core/sync/wpbc-gcal.php:187 core/sync/wpbc-gcal.php:251
|
2239 |
msgid "Start of current month"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
#: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
|
2243 |
+
#: core/lib/wpbc_all_translations.php:366 core/sync/wpbc-gcal.php:188 core/sync/wpbc-gcal.php:252
|
2244 |
msgid "End of current month"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:367
|
2248 |
#: core/sync/wpbc-gcal.php:189
|
2249 |
msgid "The start of time"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
#: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
|
2253 |
+
#: core/lib/wpbc_all_translations.php:368 core/sync/wpbc-gcal.php:190 core/sync/wpbc-gcal.php:254
|
2254 |
msgid "Specific date / time"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:369
|
2258 |
#: core/sync/wpbc-gcal.php:197
|
2259 |
msgid "Select option, when to start retrieving events."
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
|
2263 |
+
#: core/lib/wpbc_all_translations.php:370 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
|
2264 |
msgid "Offset"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
#: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
|
2268 |
+
#: core/lib/wpbc_all_translations.php:371 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
|
2269 |
msgid "Enter date / time"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
#: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
|
2273 |
+
#: core/lib/wpbc_all_translations.php:372 core/sync/wpbc-gcal.php:205 core/sync/wpbc-gcal.php:269
|
2274 |
msgid "seconds"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
#: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
|
2278 |
+
#: core/lib/wpbc_all_translations.php:373 core/sync/wpbc-gcal.php:215
|
2279 |
msgid ""
|
2280 |
"You can specify an additional offset from you chosen start point. The offset can be negative."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
#: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
|
2284 |
+
#: core/lib/wpbc_all_translations.php:374 core/sync/wpbc-gcal.php:218 core/sync/wpbc-gcal.php:282
|
2285 |
#, php-format
|
2286 |
msgid "Type your date in format %s. Example: %s"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:375
|
2290 |
#: core/sync/wpbc-gcal.php:253
|
2291 |
msgid "The end of time"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
#: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:614
|
2295 |
+
#: core/lib/wpbc_all_translations.php:376 core/sync/wpbc-gcal.php:235
|
2296 |
msgid "Until"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:377
|
2300 |
#: core/sync/wpbc-gcal.php:261
|
2301 |
msgid "Select option, when to stop retrieving events."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:378
|
2305 |
msgid "To get Google Calendar API key please follow this instruction"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:379
|
2309 |
#, php-format
|
2310 |
msgid "Go to Google Developer Console: %s."
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:380
|
2314 |
msgid "Give your project a name and click \"Create\"."
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:381
|
2318 |
msgid "In the sidebar click on \"APIs & auth\"."
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:382
|
2322 |
msgid "Click APIs and make sure \"Calendar API\" is set to ON."
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:383
|
2326 |
msgid "Now click on \"Credentials\" in the sidebar."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:384
|
2330 |
msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:385
|
2334 |
msgid "On the popup click the button \"Server Key\" and click \"Create\"."
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:386
|
2338 |
#, php-format
|
2339 |
msgid ""
|
2340 |
"You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
|
2341 |
"%sGoogle API Key%s field at this page."
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:387
|
2345 |
msgid "Set Your Calendar to Public"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
#: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
|
2349 |
+
#: core/lib/wpbc_all_translations.php:388
|
2350 |
msgid "Navigate to your Google calendars."
|
2351 |
msgstr ""
|
2352 |
|
2353 |
#: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
|
2354 |
+
#: core/lib/wpbc_all_translations.php:389
|
2355 |
msgid "Open the settings for the calendar."
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:390
|
2359 |
msgid "Click the \"Share this Calendar\" link."
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:391
|
2363 |
msgid "Click the checkbox to make calendar public. Do not check the other option."
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:392
|
2367 |
msgid "Find Your Calendar ID"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:393
|
2371 |
#, php-format
|
2372 |
msgid ""
|
2373 |
"Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
|
2375 |
msgstr ""
|
2376 |
|
2377 |
#: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
|
2378 |
+
#: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:394
|
2379 |
#: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
|
2380 |
msgid "Import Google Calendar Events"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
#: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
|
2384 |
+
#: core/lib/wpbc_all_translations.php:395
|
2385 |
msgid "Auto import events"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
#: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
|
2389 |
+
#: core/lib/wpbc_all_translations.php:396
|
2390 |
msgid "Default settings for retrieving events"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:397
|
2394 |
msgid "Google Calendar - General Settings"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
#: core/admin/page-settings.php:88 core/admin/page-settings.php:203
|
2398 |
+
#: core/admin/wpbc-toolbar-tiny.php:242 core/lib/wpbc_all_translations.php:398
|
2399 |
#: inc/_ps/form/class-wpbc-form-help.php:115
|
2400 |
msgid "Calendar"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
#: core/admin/page-settings.php:93 core/admin/page-settings.php:210
|
2404 |
+
#: core/lib/wpbc_all_translations.php:399 core/wpbc-functions.php:1954
|
2405 |
#: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
|
2406 |
#: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
|
2407 |
#: inc/_ps/wpbc-form-templates.php:307 inc/_ps/wpbc-form-templates.php:333
|
2410 |
msgstr ""
|
2411 |
|
2412 |
#: core/admin/page-settings.php:103 core/admin/page-settings.php:224
|
2413 |
+
#: core/lib/wpbc_all_translations.php:400
|
2414 |
msgid "Booking Admin Panel"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
#: core/admin/page-settings.php:108 core/admin/page-settings.php:231
|
2418 |
+
#: core/lib/wpbc_all_translations.php:401 js/wpbc-gutenberg.js:743
|
2419 |
msgid "Timeline"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: core/admin/page-settings.php:116 core/lib/wpbc_all_translations.php:402
|
2423 |
msgid "Auto cancellation / approval"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
#: core/admin/page-settings.php:126 core/admin/page-settings.php:268
|
2427 |
+
#: core/lib/wpbc_all_translations.php:403
|
2428 |
msgid "Plugin Menu"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: core/admin/page-settings.php:131 core/lib/wpbc_all_translations.php:404
|
2432 |
msgid "Uninstall"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: core/admin/page-settings.php:243 core/lib/wpbc_all_translations.php:405
|
2436 |
msgid "Auto cancellation / auto approval of bookings"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:406
|
2440 |
msgid "Information"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: core/admin/page-settings.php:275 core/lib/wpbc_all_translations.php:407
|
2444 |
msgid "Uninstall / deactivation"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
#: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
|
2448 |
+
#: core/lib/wpbc_all_translations.php:408 inc/_ps/admin/page-settings-up.php:38
|
2449 |
msgid "Upgrade"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
#: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1520
|
2453 |
+
#: core/admin/wpbc-toolbar-tiny.php:1529 core/lib/wpbc_all_translations.php:409
|
2454 |
#: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
|
2455 |
#: inc/_bl/wpbc-search-availability.php:669 inc/_bl/wpdev-booking-search-widget.php:75
|
2456 |
#: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
|
2460 |
msgid "Nothing Found"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:410
|
2464 |
#: inc/_ps/wpbc-print.php:83
|
2465 |
msgid "Labels"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:411
|
2469 |
msgid "Booking Data"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:412
|
2473 |
msgid "Booking Dates"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:413
|
2477 |
msgid "Show ALL dates of booking"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:414
|
2481 |
msgid "Show only check in/out dates"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: core/admin/wpbc-class-listing.php:221 core/lib/wpbc_all_translations.php:415
|
2485 |
msgid "Resource not exist"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:416
|
2489 |
#: inc/_bs/lib_s.php:295 inc/_bs/lib_s.php:310
|
2490 |
msgid "Unknown"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
#: core/admin/wpbc-class-listing.php:331 core/admin/wpbc-toolbars.php:765
|
2494 |
+
#: core/lib/wpbc_all_translations.php:417
|
2495 |
msgid "In Trash / Rejected"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: core/admin/wpbc-class-listing.php:334 core/lib/wpbc_all_translations.php:418
|
2499 |
msgid "Imported"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: core/admin/wpbc-class-listing.php:398 core/lib/wpbc_all_translations.php:419
|
2503 |
msgid "Reject - move to trash"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
#: core/admin/wpbc-class-listing.php:404 core/admin/wpbc-toolbars.php:1011
|
2507 |
+
#: core/lib/wpbc_all_translations.php:420 core/timeline/v2/wpbc-class-timeline_v2.php:2663
|
2508 |
msgid "Restore"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: core/admin/wpbc-class-listing.php:408 core/lib/wpbc_all_translations.php:421
|
2512 |
msgid "Do you really want to delete this booking ?"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: core/admin/wpbc-class-listing.php:410 core/lib/wpbc_all_translations.php:422
|
2516 |
#: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
|
2517 |
msgid "Completely Delete"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
#: core/admin/wpbc-class-listing.php:419 core/admin/wpbc-toolbars.php:949
|
2521 |
+
#: core/lib/wpbc_all_translations.php:423 core/timeline/v2/wpbc-class-timeline_v2.php:2673
|
2522 |
msgid "Approve"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
#: core/admin/wpbc-class-listing.php:424 core/admin/wpbc-toolbars.php:967
|
2526 |
+
#: core/lib/wpbc_all_translations.php:424
|
2527 |
msgid "Do you really want to set booking as pending ?"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: core/admin/wpbc-class-listing.php:435 core/lib/wpbc_all_translations.php:425
|
2531 |
#: inc/_bs/lib_s.php:338
|
2532 |
msgid "Created"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
#: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:227
|
2536 |
+
#: core/lib/wpbc_all_translations.php:426 core/lib/wpdev-booking-widget.php:14
|
2537 |
#: core/wpbc-functions.php:1850 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
|
2538 |
#: core/wpbc.php:189
|
2539 |
msgid "Booking Calendar"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
#: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
|
2543 |
+
#: core/lib/wpbc_all_translations.php:427
|
2544 |
msgid "Video guide"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:428
|
2548 |
msgid "Support"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:429
|
2552 |
msgid "Getting Started"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:430
|
2556 |
msgid "Help Info"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
#: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:441
|
2560 |
+
#: core/lib/wpbc_all_translations.php:431
|
2561 |
msgid "FAQ"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:432
|
2565 |
msgid "Contact email"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:433
|
2569 |
msgid "Rate plugin (thanks:)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:434
|
2573 |
msgid "Current version"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:435
|
2577 |
msgid "Demo"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:436
|
2581 |
msgid "Version"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:437
|
2585 |
msgid "Used for"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:438
|
2589 |
msgid "websites"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:439
|
2593 |
msgid "website"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:440
|
2597 |
msgid "Release date"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:441
|
2601 |
msgid "Explore Premium Features"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:442
|
2605 |
msgid "Statistic"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:443
|
2609 |
msgid "New (unverified) booking(s)"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:444
|
2613 |
msgid "Pending booking(s)"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:445
|
2617 |
msgid "Agenda"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:446
|
2621 |
msgid "New booking(s) made today"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:447
|
2625 |
msgid "Bookings for today"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
#: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2463
|
2629 |
+
#: core/lib/wpbc_all_translations.php:448
|
2630 |
msgid "Insert booking calendar"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
#: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2464
|
2634 |
+
#: core/lib/wpbc_all_translations.php:449
|
2635 |
msgid "Booking calendar"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: core/admin/wpbc-toolbar-tiny.php:225 core/lib/wpbc_all_translations.php:450
|
2639 |
msgid "Insert Shortcode"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:451
|
2643 |
#: inc/_ps/admin/api-settings-p.php:197
|
2644 |
msgid "TimeLine"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: core/admin/wpbc-toolbar-tiny.php:244 core/lib/wpbc_all_translations.php:452
|
2648 |
msgid "Resources Selection"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:453
|
2652 |
+
#: core/wpbc-functions.php:2017 inc/_bl/admin/page-search.php:353 inc/_bl/biz_l.php:755
|
2653 |
+
#: inc/_bl/biz_l.php:770
|
2654 |
msgid "Search"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:454
|
2658 |
msgid "Only Form"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:455
|
2662 |
#: inc/_ps/form/class-wpbc-form-help.php:754
|
2663 |
msgid "Other"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: core/admin/wpbc-toolbar-tiny.php:298 core/lib/wpbc_all_translations.php:456
|
2667 |
msgid "Insert into page"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
#: core/admin/wpbc-toolbar-tiny.php:371 core/admin/wpbc-toolbar-tiny.php:1151
|
2671 |
+
#: core/lib/wpbc_all_translations.php:457 core/wpbc.php:177 inc/_ps/admin/page-resources.php:40
|
2672 |
#: inc/_ps/p-toolbar.php:736
|
2673 |
msgid "Booking resources"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: core/admin/wpbc-toolbar-tiny.php:372 core/lib/wpbc_all_translations.php:458
|
2677 |
msgid "Select booking resources. Please use CTRL to select multiple booking resources."
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:459
|
2681 |
+
#: js/wpbc-gutenberg.js:800
|
2682 |
msgid "View mode"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: core/admin/wpbc-toolbar-tiny.php:407 core/lib/wpbc_all_translations.php:460
|
2686 |
msgid "Select type of view format"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
#: core/admin/wpbc-toolbar-tiny.php:429 core/admin/wpbc-toolbar-tiny.php:438
|
2690 |
+
#: core/admin/wpbc-toolbars.php:785 core/lib/wpbc_all_translations.php:461
|
2691 |
msgid "All bookings"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: core/admin/wpbc-toolbar-tiny.php:461 core/lib/wpbc_all_translations.php:462
|
2695 |
msgid "Select number of months to scroll after loading"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: core/admin/wpbc-toolbar-tiny.php:482 core/lib/wpbc_all_translations.php:463
|
2699 |
+
#: js/wpbc-gutenberg.js:806
|
2700 |
msgid "Number of days to scroll"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: core/admin/wpbc-toolbar-tiny.php:483 core/lib/wpbc_all_translations.php:464
|
2704 |
msgid "Select number of days to scroll after loading"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
#: core/admin/wpbc-toolbar-tiny.php:503 core/admin/wpbc-toolbars.php:1503
|
2708 |
+
#: core/lib/wpbc_all_translations.php:465 js/wpbc-gutenberg.js:812
|
2709 |
msgid "Start Date"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: core/admin/wpbc-toolbar-tiny.php:581 core/lib/wpbc_all_translations.php:466
|
2713 |
msgid "Select start date"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
#: core/admin/wpbc-toolbar-tiny.php:674 core/admin/wpbc-toolbar-tiny.php:917
|
2717 |
#: core/admin/wpbc-toolbar-tiny.php:1591 core/admin/wpbc-toolbar-tiny.php:1783
|
2718 |
+
#: core/lib/wpbc_all_translations.php:467 core/lib/wpdev-booking-widget.php:118
|
2719 |
#: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:937
|
2720 |
+
#: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:606 js/wpbc-gutenberg.js:696
|
2721 |
+
#: js/wpbc-gutenberg.js:963 js/wpbc-gutenberg.js:1329
|
2722 |
msgid "Booking resource"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
#: core/admin/wpbc-toolbar-tiny.php:675 core/admin/wpbc-toolbar-tiny.php:918
|
2726 |
#: core/admin/wpbc-toolbar-tiny.php:1592 core/admin/wpbc-toolbar-tiny.php:1784
|
2727 |
+
#: core/lib/wpbc_all_translations.php:468 inc/_ps/admin/br-table-import-gcal-p.php:184
|
2728 |
msgid "Select booking resource"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
#: core/admin/wpbc-toolbar-tiny.php:699 core/admin/wpbc-toolbar-tiny.php:1200
|
2732 |
+
#: core/admin/wpbc-toolbar-tiny.php:1616 core/lib/wpbc_all_translations.php:469
|
2733 |
#: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
|
2734 |
msgid "Select default custom booking form"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
#: core/admin/wpbc-toolbar-tiny.php:710 core/admin/wpbc-toolbar-tiny.php:940
|
2738 |
#: core/admin/wpbc-toolbar-tiny.php:1288 core/admin/wpbc-toolbars.php:1618
|
2739 |
+
#: core/lib/wpbc_all_translations.php:470 core/lib/wpdev-booking-widget.php:135
|
2740 |
#: inc/_ps/wpbc-booking-select-widget.php:201
|
2741 |
msgid "Visible months"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
#: core/admin/wpbc-toolbar-tiny.php:711 core/admin/wpbc-toolbar-tiny.php:941
|
2745 |
+
#: core/admin/wpbc-toolbar-tiny.php:1289 core/lib/wpbc_all_translations.php:471
|
2746 |
msgid "Select number of month to show for calendar."
|
2747 |
msgstr ""
|
2748 |
|
2749 |
#: core/admin/wpbc-toolbar-tiny.php:731 core/admin/wpbc-toolbar-tiny.php:961
|
2750 |
+
#: core/admin/wpbc-toolbar-tiny.php:1307 core/lib/wpbc_all_translations.php:472
|
2751 |
msgid "Start month:"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
#: core/admin/wpbc-toolbar-tiny.php:789 core/admin/wpbc-toolbar-tiny.php:1019
|
2755 |
+
#: core/admin/wpbc-toolbar-tiny.php:1365 core/lib/wpbc_all_translations.php:473
|
2756 |
msgid "Select start month of calendar"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
#: core/admin/wpbc-toolbar-tiny.php:796 core/admin/wpbc-toolbar-tiny.php:1026
|
2760 |
+
#: core/admin/wpbc-toolbar-tiny.php:1258 core/lib/wpbc_all_translations.php:474
|
2761 |
msgid "Show advanced settings"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
#: core/admin/wpbc-toolbar-tiny.php:797 core/admin/wpbc-toolbar-tiny.php:1027
|
2765 |
+
#: core/admin/wpbc-toolbar-tiny.php:1259 core/lib/wpbc_all_translations.php:475
|
2766 |
msgid "Hide advanced settings"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
#: core/admin/wpbc-toolbar-tiny.php:807 core/admin/wpbc-toolbar-tiny.php:1037
|
2770 |
+
#: core/admin/wpbc-toolbar-tiny.php:1269 core/lib/wpbc_all_translations.php:476
|
2771 |
#, php-format
|
2772 |
msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
#: core/admin/wpbc-toolbar-tiny.php:808 core/admin/wpbc-toolbar-tiny.php:1038
|
2776 |
+
#: core/lib/wpbc_all_translations.php:477
|
2777 |
#, php-format
|
2778 |
msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
#: core/admin/wpbc-toolbar-tiny.php:818 core/admin/wpbc-toolbar-tiny.php:1048
|
2782 |
#: core/admin/wpbc-toolbar-tiny.php:1372 core/admin/wpbc-toolbars.php:242
|
2783 |
+
#: core/lib/wpbc_all_translations.php:478 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
|
2784 |
+
#: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:621
|
2785 |
+
#: js/wpbc-gutenberg.js:708 js/wpbc-gutenberg.js:904
|
2786 |
msgid "Options"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
#: core/admin/wpbc-toolbar-tiny.php:839 core/admin/wpbc-toolbar-tiny.php:1069
|
2790 |
+
#: core/admin/wpbc-toolbar-tiny.php:1393 core/lib/wpbc_all_translations.php:479
|
2791 |
#, php-format
|
2792 |
msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
#: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:1073
|
2796 |
+
#: core/admin/wpbc-toolbar-tiny.php:1397 core/lib/wpbc_all_translations.php:480
|
2797 |
msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: core/admin/wpbc-toolbar-tiny.php:844 core/admin/wpbc-toolbar-tiny.php:852
|
2801 |
#: core/admin/wpbc-toolbar-tiny.php:1074 core/admin/wpbc-toolbar-tiny.php:1398
|
2802 |
+
#: core/lib/wpbc_all_translations.php:481 inc/_bm/admin/page-availability.php:510
|
2803 |
#: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
|
2804 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
|
2805 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
|
2807 |
msgstr ""
|
2808 |
|
2809 |
#: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:1075
|
2810 |
+
#: core/admin/wpbc-toolbar-tiny.php:1399 core/lib/wpbc_all_translations.php:482
|
2811 |
msgid ""
|
2812 |
"Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
|
2813 |
"to use percentage for width: 100%)"
|
2815 |
|
2816 |
#: core/admin/wpbc-toolbar-tiny.php:846 core/admin/wpbc-toolbar-tiny.php:854
|
2817 |
#: core/admin/wpbc-toolbar-tiny.php:1076 core/admin/wpbc-toolbar-tiny.php:1400
|
2818 |
+
#: core/lib/wpbc_all_translations.php:483
|
2819 |
msgid "Code Example"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: core/admin/wpbc-toolbar-tiny.php:851 core/lib/wpbc_all_translations.php:484
|
2823 |
msgid ""
|
2824 |
"Specify that during certain seasons (or days of week), the specific minimum number of days must "
|
2825 |
"be booked. "
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: core/admin/wpbc-toolbar-tiny.php:853 core/lib/wpbc_all_translations.php:485
|
2829 |
msgid ""
|
2830 |
"Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: core/admin/wpbc-toolbar-tiny.php:860 core/lib/wpbc_all_translations.php:486
|
2834 |
#, php-format
|
2835 |
msgid ""
|
2836 |
"Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
|
2838 |
msgstr ""
|
2839 |
|
2840 |
#: core/admin/wpbc-toolbar-tiny.php:883 core/admin/wpbc-toolbar-tiny.php:1098
|
2841 |
+
#: core/lib/wpbc_all_translations.php:487
|
2842 |
msgid "Aggregate booking dates from other resources"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
#: core/admin/wpbc-toolbar-tiny.php:884 core/admin/wpbc-toolbar-tiny.php:1099
|
2846 |
+
#: core/lib/wpbc_all_translations.php:488
|
2847 |
msgid ""
|
2848 |
"Select booking resources, for getting booking dates from them and set such dates as unavailable "
|
2849 |
"in destination calendar."
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: core/admin/wpbc-toolbar-tiny.php:1130 core/lib/wpbc_all_translations.php:489
|
2853 |
#: inc/_bl/admin/page-search.php:478 inc/_bl/admin/page-search.php:511
|
2854 |
#: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
|
2855 |
#: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
|
2863 |
msgid "Note!"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: core/admin/wpbc-toolbar-tiny.php:1131 core/lib/wpbc_all_translations.php:490
|
2867 |
#, php-format
|
2868 |
msgid ""
|
2869 |
"This shortcode %s is using for selection of the booking form of specific booking resources in "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
#: core/admin/wpbc-toolbar-tiny.php:1144 core/admin/wpbc-toolbars.php:1666
|
2874 |
+
#: core/lib/wpbc_all_translations.php:491 inc/_ps/admin/br-table-import-gcal-p.php:173
|
2875 |
#: inc/_ps/wpbc-booking-select-widget.php:163
|
2876 |
msgid "All"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
+
#: core/admin/wpbc-toolbar-tiny.php:1153 core/lib/wpbc_all_translations.php:492
|
2880 |
#: inc/_ps/wpbc-booking-select-widget.php:175
|
2881 |
msgid ""
|
2882 |
"Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
|
2883 |
"resources."
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: core/admin/wpbc-toolbar-tiny.php:1178 core/lib/wpbc_all_translations.php:493
|
2887 |
#: inc/_ps/wpbc-booking-select-widget.php:181
|
2888 |
msgid "Preselected resource"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: core/admin/wpbc-toolbar-tiny.php:1179 core/lib/wpbc_all_translations.php:494
|
2892 |
msgid "Define preselected resource."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: core/admin/wpbc-toolbar-tiny.php:1204 core/lib/wpbc_all_translations.php:495
|
2896 |
#: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1222
|
2897 |
msgid "Default Form"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
#: core/admin/wpbc-toolbar-tiny.php:1220 core/admin/wpbc-toolbar-tiny.php:1229
|
2901 |
+
#: core/lib/wpbc_all_translations.php:496
|
2902 |
msgid "Please select the resource:"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: core/admin/wpbc-toolbar-tiny.php:1221 core/lib/wpbc_all_translations.php:497
|
2906 |
msgid "Title near your select box."
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:498
|
2910 |
#: inc/_ps/wpbc-booking-select-widget.php:247
|
2911 |
msgid "First option title"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:499
|
2915 |
+
#: inc/_ps/personal.php:543 js/wpbc-gutenberg.js:837
|
2916 |
msgid "Please Select"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:500
|
2920 |
#: inc/_ps/wpbc-booking-select-widget.php:254
|
2921 |
msgid "First option in dropdown list."
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:501
|
2925 |
#: inc/_ps/wpbc-booking-select-widget.php:256
|
2926 |
msgid "Please leave it empty if you want to skip it."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
#: core/admin/wpbc-toolbar-tiny.php:1430 core/admin/wpbc-toolbar-tiny.php:1710
|
2930 |
+
#: core/lib/wpbc_all_translations.php:502
|
2931 |
msgid "Select shortcode to insert"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:503
|
2935 |
msgid "Search form"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: core/admin/wpbc-toolbar-tiny.php:1445 core/lib/wpbc_all_translations.php:504
|
2939 |
#: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:659
|
2940 |
#: inc/_bl/wpbc-search-availability.php:674
|
2941 |
msgid "Search results"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: core/admin/wpbc-toolbar-tiny.php:1464 core/lib/wpbc_all_translations.php:505
|
2945 |
msgid "Check this box to show search results on other page"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: core/admin/wpbc-toolbar-tiny.php:1481 core/lib/wpbc_all_translations.php:506
|
2949 |
msgid "URL of search results:"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: core/admin/wpbc-toolbar-tiny.php:1483 core/lib/wpbc_all_translations.php:507
|
2953 |
msgid "Type the URL of search results page."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: core/admin/wpbc-toolbar-tiny.php:1500 core/lib/wpbc_all_translations.php:508
|
2957 |
msgid "Title of Search results:"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
#: core/admin/wpbc-toolbar-tiny.php:1501 core/admin/wpbc-toolbar-tiny.php:1510
|
2961 |
+
#: core/lib/wpbc_all_translations.php:509 inc/_bl/wpdev-booking-search-widget.php:79
|
2962 |
msgid "Result(s) Found"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:510
|
2966 |
msgid "Type the title of Search results."
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:511
|
2970 |
msgid "show number of search results"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: core/admin/wpbc-toolbar-tiny.php:1519 core/lib/wpbc_all_translations.php:512
|
2974 |
msgid "Nothing Found Message:"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: core/admin/wpbc-toolbar-tiny.php:1521 core/lib/wpbc_all_translations.php:513
|
2978 |
msgid "Type the message, when nothing found."
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: core/admin/wpbc-toolbar-tiny.php:1541 core/lib/wpbc_all_translations.php:514
|
2982 |
msgid "Search only for users:"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: core/admin/wpbc-toolbar-tiny.php:1543 core/lib/wpbc_all_translations.php:515
|
2986 |
msgid ""
|
2987 |
"Type IDs of the users (separated by comma \",\") for searching availability only for these "
|
2988 |
"users, or leave it blank for searching for all users."
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: core/admin/wpbc-toolbar-tiny.php:1563 core/lib/wpbc_all_translations.php:516
|
2992 |
#, php-format
|
2993 |
msgid ""
|
2994 |
"This shortcode %s is using for showing the search results at specific page, if the search form "
|
2995 |
"is submit showing the search results at different page"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: core/admin/wpbc-toolbar-tiny.php:1625 core/lib/wpbc_all_translations.php:517
|
2999 |
msgid "date"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: core/admin/wpbc-toolbar-tiny.php:1685 core/lib/wpbc_all_translations.php:518
|
3003 |
msgid "Define date for booking"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:519
|
3007 |
#: inc/_ps/p-toolbar.php:237
|
3008 |
msgid "Edit Booking"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: core/admin/wpbc-toolbar-tiny.php:1726 core/lib/wpbc_all_translations.php:520
|
3012 |
msgid "Show listing of customer bookings"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:521
|
3016 |
msgid "Show info about Booking Resource"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:522
|
3020 |
#, php-format
|
3021 |
msgid ""
|
3022 |
"This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
|
3023 |
"%s or make %spayment%s after receiving an admin email payment request"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: core/admin/wpbc-toolbar-tiny.php:1746 core/lib/wpbc_all_translations.php:523
|
3027 |
#, php-format
|
3028 |
msgid ""
|
3029 |
"The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
|
3031 |
msgstr ""
|
3032 |
|
3033 |
#: core/admin/wpbc-toolbar-tiny.php:1747 core/admin/wpbc-toolbar-tiny.php:1763
|
3034 |
+
#: core/lib/wpbc_all_translations.php:524
|
3035 |
#, php-format
|
3036 |
msgid "Email templates, which use shortcodes: %s, will be linked to this page"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:525
|
3040 |
#, php-format
|
3041 |
msgid ""
|
3042 |
"This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: core/admin/wpbc-toolbar-tiny.php:1762 core/lib/wpbc_all_translations.php:526
|
3046 |
#, php-format
|
3047 |
msgid ""
|
3048 |
"The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
|
3049 |
"settings page%s must link to this page"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:527
|
3053 |
#, php-format
|
3054 |
msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
+
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:528
|
3058 |
msgid "Trick"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: core/admin/wpbc-toolbar-tiny.php:1805 core/lib/wpbc_all_translations.php:529
|
3062 |
#: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
|
3063 |
#: inc/_ps/admin/br-table-import-gcal-p.php:63
|
3064 |
msgid "Capacity"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: core/admin/wpbc-toolbar-tiny.php:1811 core/lib/wpbc_all_translations.php:530
|
3068 |
msgid "Select type of info to show."
|
3069 |
msgstr ""
|
3070 |
|
3071 |
#: core/admin/wpbc-toolbar-tiny.php:2121 core/admin/wpbc-toolbar-tiny.php:2164
|
3072 |
#: core/admin/wpbc-toolbar-tiny.php:2248 core/admin/wpbc-toolbar-tiny.php:2337
|
3073 |
+
#: core/lib/wpbc_all_translations.php:531
|
3074 |
msgid "No booking resources"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:532
|
3078 |
msgid "Filters"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
+
#: core/admin/wpbc-toolbars.php:350 core/lib/wpbc_all_translations.php:533
|
3082 |
msgid "Expand Advanced Toolbar"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: core/admin/wpbc-toolbars.php:357 core/lib/wpbc_all_translations.php:534
|
3086 |
msgid "Collapse Advanced Toolbar"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: core/admin/wpbc-toolbars.php:379 core/lib/wpbc_all_translations.php:535
|
3090 |
msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: core/admin/wpbc-toolbars.php:380 core/lib/wpbc_all_translations.php:536
|
3094 |
msgid "Emails sending"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: core/admin/wpbc-toolbars.php:405 core/lib/wpbc_all_translations.php:537
|
3098 |
msgid "Booking ID"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
#: core/admin/wpbc-toolbars.php:408 core/admin/wpbc-toolbars.php:2249
|
3102 |
+
#: core/lib/wpbc_all_translations.php:538
|
3103 |
msgid "Go"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: core/admin/wpbc-toolbars.php:442 core/lib/wpbc_all_translations.php:539
|
3107 |
msgid "Technical Support"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: core/admin/wpbc-toolbars.php:444 core/lib/wpbc_all_translations.php:540
|
3111 |
msgid "About Booking Calendar"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
#: core/admin/wpbc-toolbars.php:511 core/admin/wpbc-toolbars.php:691
|
3115 |
#: core/admin/wpbc-toolbars.php:896 core/admin/wpbc-toolbars.php:1516
|
3116 |
+
#: core/lib/wpbc_all_translations.php:541 inc/_bs/lib_s.php:85
|
3117 |
msgid "Apply"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: core/admin/wpbc-toolbars.php:512 core/lib/wpbc_all_translations.php:542
|
3121 |
msgid "Refresh booking listing"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: core/admin/wpbc-toolbars.php:526 core/lib/wpbc_all_translations.php:543
|
3125 |
msgid "Reset filter to default values"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
#: core/admin/wpbc-toolbars.php:552 core/admin/wpbc-toolbars.php:767
|
3129 |
+
#: core/lib/wpbc_all_translations.php:544
|
3130 |
msgid "Any"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
#: core/admin/wpbc-toolbars.php:573 core/admin/wpbc-toolbars.php:807
|
3134 |
+
#: core/lib/wpbc_all_translations.php:545
|
3135 |
msgid "week"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
#: core/admin/wpbc-toolbars.php:574 core/admin/wpbc-toolbars.php:808
|
3139 |
+
#: core/lib/wpbc_all_translations.php:546
|
3140 |
msgid "weeks"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
#: core/admin/wpbc-toolbars.php:575 core/admin/wpbc-toolbars.php:809
|
3144 |
+
#: core/lib/wpbc_all_translations.php:547
|
3145 |
msgid "month"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
#: core/admin/wpbc-toolbars.php:576 core/admin/wpbc-toolbars.php:577
|
3149 |
#: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:810
|
3150 |
#: core/admin/wpbc-toolbars.php:811 core/admin/wpbc-toolbars.php:812
|
3151 |
+
#: core/lib/wpbc_all_translations.php:548
|
3152 |
msgid "months"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
#: core/admin/wpbc-toolbars.php:586 core/admin/wpbc-toolbars.php:821
|
3156 |
+
#: core/lib/wpbc_all_translations.php:549
|
3157 |
msgid "Filter bookings by booking dates"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: core/admin/wpbc-toolbars.php:590 core/lib/wpbc_all_translations.php:550
|
3161 |
msgid "Current dates"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
#: core/admin/wpbc-toolbars.php:591 core/admin/wpbc-toolbars.php:825
|
3165 |
+
#: core/lib/wpbc_all_translations.php:551
|
3166 |
msgid "Today"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:552
|
3170 |
msgid "Previous dates"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
#: core/admin/wpbc-toolbars.php:593 core/admin/wpbc-toolbars.php:826
|
3174 |
+
#: core/lib/wpbc_all_translations.php:553
|
3175 |
msgid "All dates"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: core/admin/wpbc-toolbars.php:595 core/lib/wpbc_all_translations.php:554
|
3179 |
msgid "Today check in/out"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: core/admin/wpbc-toolbars.php:596 core/lib/wpbc_all_translations.php:555
|
3183 |
msgid "Check In - Tomorrow"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: core/admin/wpbc-toolbars.php:597 core/lib/wpbc_all_translations.php:556
|
3187 |
msgid "Check Out - Tomorrow"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: core/admin/wpbc-toolbars.php:602 core/lib/wpbc_all_translations.php:557
|
3191 |
#: core/wpbc-functions.php:2527
|
3192 |
msgid "Next"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
#: core/admin/wpbc-toolbars.php:626 core/admin/wpbc-toolbars.php:831
|
3196 |
+
#: core/lib/wpbc_all_translations.php:558
|
3197 |
msgid "Prior"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
#: core/admin/wpbc-toolbars.php:666 core/admin/wpbc-toolbars.php:871
|
3201 |
+
#: core/lib/wpbc_all_translations.php:559
|
3202 |
msgid "Check-in"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
#: core/admin/wpbc-toolbars.php:678 core/admin/wpbc-toolbars.php:883
|
3206 |
+
#: core/lib/wpbc_all_translations.php:560
|
3207 |
msgid "Check-out"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: core/admin/wpbc-toolbars.php:750 core/lib/wpbc_all_translations.php:561
|
3211 |
msgid "Order by"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: core/admin/wpbc-toolbars.php:764 core/lib/wpbc_all_translations.php:562
|
3215 |
msgid "Exist"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: core/admin/wpbc-toolbars.php:786 core/lib/wpbc_all_translations.php:563
|
3219 |
msgid "New bookings"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: core/admin/wpbc-toolbars.php:823 core/lib/wpbc_all_translations.php:564
|
3223 |
msgid "Creation"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: core/admin/wpbc-toolbars.php:950 core/lib/wpbc_all_translations.php:565
|
3227 |
msgid "Approve selected bookings"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: core/admin/wpbc-toolbars.php:965 core/lib/wpbc_all_translations.php:566
|
3231 |
msgid "Set selected bookings as pending"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: core/admin/wpbc-toolbars.php:995 core/lib/wpbc_all_translations.php:567
|
3235 |
msgid "Reject booking - move selected bookings to trash"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: core/admin/wpbc-toolbars.php:1012 core/lib/wpbc_all_translations.php:568
|
3239 |
msgid "Restore selected bookings"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: core/admin/wpbc-toolbars.php:1028 core/lib/wpbc_all_translations.php:569
|
3243 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2667 inc/_bl/admin/page-coupons.php:216
|
3244 |
#: inc/_bl/admin/page-coupons.php:222 inc/_bm/admin/page-availability.php:240
|
3245 |
#: inc/_bm/admin/page-availability.php:246 inc/_bm/admin/page-cost-valuation.php:567
|
3246 |
#: inc/_bm/admin/page-cost.php:223 inc/_bm/admin/page-cost.php:233
|
3247 |
+
#: inc/_bm/admin/page-seasons.php:201 inc/_bm/admin/page-seasons.php:207 inc/_bm/m-toolbar.php:297
|
3248 |
#: inc/_ps/admin/page-resources.php:189 inc/_ps/admin/page-resources.php:195
|
3249 |
msgid "Delete"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: core/admin/wpbc-toolbars.php:1029 core/lib/wpbc_all_translations.php:570
|
3253 |
msgid "Delete selected bookings"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: core/admin/wpbc-toolbars.php:1031 core/lib/wpbc_all_translations.php:571
|
3257 |
#: core/sync/wpbc-gcal-class.php:706
|
3258 |
msgid "Do you really want to delete selected booking(s) ?"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: core/admin/wpbc-toolbars.php:1047 core/lib/wpbc_all_translations.php:572
|
3262 |
msgid "Reason of cancellation"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: core/admin/wpbc-toolbars.php:1075 core/admin/wpbc-toolbars.php:1076 core/lib/wpbc-ajax.php:350
|
3266 |
+
#: core/lib/wpbc_all_translations.php:573
|
3267 |
msgid "Empty Trash"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: core/admin/wpbc-toolbars.php:1106 core/lib/wpbc_all_translations.php:574
|
3271 |
msgid "Read All"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: core/admin/wpbc-toolbars.php:1107 core/lib/wpbc_all_translations.php:575
|
3275 |
msgid "Mark as read all bookings"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: core/admin/wpbc-toolbars.php:1120 core/lib/wpbc_all_translations.php:576
|
3279 |
msgid "Read"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: core/admin/wpbc-toolbars.php:1121 core/lib/wpbc_all_translations.php:577
|
3283 |
msgid "Mark as read selected bookings"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: core/admin/wpbc-toolbars.php:1135 core/lib/wpbc_all_translations.php:578
|
3287 |
msgid "Unread"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: core/admin/wpbc-toolbars.php:1136 core/lib/wpbc_all_translations.php:579
|
3291 |
msgid "Mark as Unread selected bookings"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
#: core/admin/wpbc-toolbars.php:1185 core/admin/wpbc-toolbars.php:1245
|
3295 |
+
#: core/lib/wpbc_all_translations.php:580
|
3296 |
msgid "Show day"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
#: core/admin/wpbc-toolbars.php:1202 core/admin/wpbc-toolbars.php:1259
|
3300 |
+
#: core/lib/wpbc_all_translations.php:581
|
3301 |
msgid "Show week"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
#: core/admin/wpbc-toolbars.php:1219 core/admin/wpbc-toolbars.php:1273
|
3305 |
+
#: core/lib/wpbc_all_translations.php:582
|
3306 |
msgid "Show month"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: core/admin/wpbc-toolbars.php:1287 core/lib/wpbc_all_translations.php:583
|
3310 |
msgid "Show 2 months"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
#: core/admin/wpbc-toolbars.php:1344 core/admin/wpbc-toolbars.php:1358
|
3314 |
+
#: core/admin/wpbc-toolbars.php:1405 core/lib/wpbc_all_translations.php:584
|
3315 |
msgid "Previous 4 weeks"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
#: core/admin/wpbc-toolbars.php:1345 core/admin/wpbc-toolbars.php:1359
|
3319 |
+
#: core/admin/wpbc-toolbars.php:1406 core/lib/wpbc_all_translations.php:585
|
3320 |
msgid "Previous week"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
#: core/admin/wpbc-toolbars.php:1346 core/admin/wpbc-toolbars.php:1360
|
3324 |
+
#: core/admin/wpbc-toolbars.php:1407 core/lib/wpbc_all_translations.php:586
|
3325 |
msgid "Current week"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
#: core/admin/wpbc-toolbars.php:1347 core/admin/wpbc-toolbars.php:1361
|
3329 |
+
#: core/admin/wpbc-toolbars.php:1408 core/lib/wpbc_all_translations.php:587
|
3330 |
msgid "Next week"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
#: core/admin/wpbc-toolbars.php:1348 core/admin/wpbc-toolbars.php:1362
|
3334 |
+
#: core/admin/wpbc-toolbars.php:1409 core/lib/wpbc_all_translations.php:588
|
3335 |
msgid "Next 4 weeks"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
#: core/admin/wpbc-toolbars.php:1372 core/admin/wpbc-toolbars.php:1422
|
3339 |
+
#: core/admin/wpbc-toolbars.php:1437 core/lib/wpbc_all_translations.php:589
|
3340 |
msgid "Previous 3 months"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
#: core/admin/wpbc-toolbars.php:1373 core/admin/wpbc-toolbars.php:1423
|
3344 |
+
#: core/admin/wpbc-toolbars.php:1438 core/lib/wpbc_all_translations.php:590
|
3345 |
msgid "Previous month"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
#: core/admin/wpbc-toolbars.php:1374 core/admin/wpbc-toolbars.php:1424
|
3349 |
+
#: core/admin/wpbc-toolbars.php:1439 core/lib/wpbc_all_translations.php:591
|
3350 |
msgid "Current month"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
#: core/admin/wpbc-toolbars.php:1375 core/admin/wpbc-toolbars.php:1425
|
3354 |
+
#: core/admin/wpbc-toolbars.php:1440 core/lib/wpbc_all_translations.php:592
|
3355 |
msgid "Next month"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
#: core/admin/wpbc-toolbars.php:1376 core/admin/wpbc-toolbars.php:1426
|
3359 |
+
#: core/admin/wpbc-toolbars.php:1441 core/lib/wpbc_all_translations.php:593
|
3360 |
msgid "Next 3 months"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:594
|
3364 |
msgid "Previous 7 days"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:595
|
3368 |
msgid "Previous day"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:596
|
3372 |
msgid "Current day"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: core/admin/wpbc-toolbars.php:1393 core/lib/wpbc_all_translations.php:597
|
3376 |
msgid "Next day"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: core/admin/wpbc-toolbars.php:1394 core/lib/wpbc_all_translations.php:598
|
3380 |
msgid "Next 7 days"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: core/admin/wpbc-toolbars.php:1665 core/lib/wpbc_all_translations.php:599
|
3384 |
msgid "Number of months in one row"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: core/admin/wpbc-toolbars.php:1710 core/lib/wpbc_all_translations.php:600
|
3388 |
msgid "Calendar width"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: core/admin/wpbc-toolbars.php:1758 core/lib/wpbc_all_translations.php:601
|
3392 |
msgid "Calendar cell height"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
#: core/admin/wpbc-toolbars.php:1867 core/admin/wpbc-toolbars.php:1868
|
3396 |
+
#: core/lib/wpbc_all_translations.php:602
|
3397 |
msgid "Send email notification to customer about this operation"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
#: core/admin/wpbc-toolbars.php:1910 core/admin/wpbc-toolbars.php:1911
|
3401 |
+
#: core/lib/wpbc_all_translations.php:603
|
3402 |
msgid "Add to Google Calendar"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: core/admin/wpbc-toolbars.php:2109 core/lib/wpbc_all_translations.php:604
|
3406 |
#: inc/gateways/page-gateways.php:1419 inc/gateways/page-gateways.php:1437
|
3407 |
msgid "Total"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: core/admin/wpbc-toolbars.php:2245 core/lib/wpbc_all_translations.php:605
|
3411 |
msgid "ID or Title"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: core/any/api-emails.php:508 core/lib/wpbc_all_translations.php:606
|
3415 |
msgid "Email copy to"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
#: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
|
3419 |
+
#: core/lib/wpbc_all_translations.php:607 core/wpbc-functions.php:2792 core/wpbc-functions.php:2815
|
3420 |
msgid "Dismiss"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:608
|
3424 |
#, php-format
|
3425 |
msgid ""
|
3426 |
"Probably you updated your paid version of Booking Calendar by free version or update process "
|
3428 |
msgstr ""
|
3429 |
|
3430 |
#: core/class/wpbc-class-welcome.php:1851 core/class/wpbc-class-welcome.php:2337
|
3431 |
+
#: core/lib/wpbc_all_translations.php:609 inc/_ps/admin/page-settings-up.php:144
|
3432 |
msgid "Purchase"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
#: core/class/wpbc-class-welcome.php:1851 core/class/wpbc-class-welcome.php:2337
|
3436 |
+
#: core/lib/wpbc_all_translations.php:610 inc/_ps/admin/page-settings-up.php:144
|
3437 |
msgid "Upgrade Now"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
#: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:67
|
3441 |
+
#: core/lib/wpbc-ajax.php:82 core/lib/wpbc_all_translations.php:611
|
3442 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:1113
|
3443 |
#, php-format
|
3444 |
msgid ""
|
3445 |
"%sError!%s Request do not pass security check! Please refresh the page and try one more time."
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: core/lib/wpbc-ajax.php:138 core/lib/wpbc_all_translations.php:612
|
3449 |
msgid "Set as Unread"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:613
|
3453 |
msgid "Set as Read"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: core/lib/wpbc-ajax.php:189 core/lib/wpbc_all_translations.php:614
|
3457 |
msgid "Approved by:"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: core/lib/wpbc-ajax.php:189 core/lib/wpbc_all_translations.php:615
|
3461 |
msgid "Declined by:"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: core/lib/wpbc-ajax.php:217 core/lib/wpbc_all_translations.php:616
|
3465 |
msgid "Set as Approved"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: core/lib/wpbc-ajax.php:219 core/lib/wpbc_all_translations.php:617
|
3469 |
msgid "Set as Pending"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: core/lib/wpbc-ajax.php:240 core/lib/wpbc-ajax.php:396 core/lib/wpbc_all_translations.php:618
|
3473 |
msgid "Reason for cancellation here"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: core/lib/wpbc-ajax.php:241 core/lib/wpbc-ajax.php:397 core/lib/wpbc_all_translations.php:619
|
3477 |
msgid "Reason of cancellation here"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: core/lib/wpbc-ajax.php:295 core/lib/wpbc_all_translations.php:620
|
3481 |
msgid "Moved to trash"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: core/lib/wpbc-ajax.php:303 core/lib/wpbc_all_translations.php:621
|
3485 |
msgid "Restored"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: core/lib/wpbc-ajax.php:376 core/lib/wpbc_all_translations.php:622
|
3489 |
#, php-format
|
3490 |
msgid "Deleted %d bookings from trash"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: core/lib/wpbc-ajax.php:549 core/lib/wpbc_all_translations.php:623 inc/_ps/personal.php:160
|
3494 |
msgid "Saved"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:624
|
3498 |
msgid "The code you entered is incorrect"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
+
#: core/lib/wpbc-booking-new.php:139 core/lib/wpbc_all_translations.php:625
|
3502 |
msgid "Updating..."
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: core/lib/wpbc-booking-new.php:164 core/lib/wpbc_all_translations.php:626
|
3506 |
#: inc/_ps/personal.php:2385 inc/_ps/personal.php:2576
|
3507 |
msgid "Updated successfully"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: core/lib/wpbc-booking-new.php:873 core/lib/wpbc_all_translations.php:627
|
3511 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:878
|
3512 |
msgid "Error!"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: core/lib/wpbc-booking-new.php:874 core/lib/wpbc_all_translations.php:628
|
3516 |
msgid ""
|
3517 |
"Probably these date(s) just was booking by other visitor. Please reload this page and make "
|
3518 |
"booking again."
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: core/lib/wpbc_all_translations.php:629
|
3522 |
msgid "Timeline type"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: core/lib/wpbc_all_translations.php:630
|
3526 |
msgid "Select type of timeline to load"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: core/lib/wpbc_all_translations.php:631
|
3530 |
msgid "Flex Timeline"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
#: core/lib/wpbc_all_translations.php:632
|
3534 |
msgid "Old Timeline"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: core/lib/wpbc_all_translations.php:633
|
3538 |
msgid "Trash"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
+
#: core/lib/wpbc_all_translations.php:634
|
3542 |
msgid "Move to trash"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: core/lib/wpbc_all_translations.php:635 core/timeline/v2/wpbc-class-timeline_v2.php:89
|
3546 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:98 core/timeline/v2/wpbc-class-timeline_v2.php:107
|
3547 |
msgid "Mon"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: core/lib/wpbc_all_translations.php:636 core/timeline/v2/wpbc-class-timeline_v2.php:90
|
3551 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:99 core/timeline/v2/wpbc-class-timeline_v2.php:108
|
3552 |
msgid "Tue"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: core/lib/wpbc_all_translations.php:637 core/timeline/v2/wpbc-class-timeline_v2.php:91
|
3556 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:100 core/timeline/v2/wpbc-class-timeline_v2.php:109
|
3557 |
msgid "Wed"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: core/lib/wpbc_all_translations.php:638 core/timeline/v2/wpbc-class-timeline_v2.php:92
|
3561 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:101 core/timeline/v2/wpbc-class-timeline_v2.php:110
|
3562 |
msgid "Thu"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: core/lib/wpbc_all_translations.php:639 core/timeline/v2/wpbc-class-timeline_v2.php:93
|
3566 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:102 core/timeline/v2/wpbc-class-timeline_v2.php:111
|
3567 |
msgid "Fri"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
+
#: core/lib/wpbc_all_translations.php:640 core/timeline/v2/wpbc-class-timeline_v2.php:94
|
3571 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:103 core/timeline/v2/wpbc-class-timeline_v2.php:112
|
3572 |
msgid "Sat"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: core/lib/wpbc_all_translations.php:641 core/timeline/v2/wpbc-class-timeline_v2.php:95
|
3576 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:104 core/timeline/v2/wpbc-class-timeline_v2.php:113
|
3577 |
msgid "Sun"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: core/lib/wpbc_all_translations.php:642 core/timeline/v2/wpbc-class-timeline_v2.php:1428
|
3581 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:1441 inc/_ps/wpbc-form-templates.php:155
|
3582 |
msgid "Times"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: core/lib/wpbc_all_translations.php:643
|
3586 |
msgid "Decline"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: core/lib/wpbc_all_translations.php:644 core/timeline/v2/wpbc-class-timeline_v2.php:2699
|
3590 |
msgid "Pay"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: core/lib/wpbc_all_translations.php:645 core/timeline/v2/wpbc-class-timeline_v2.php:2758
|
3594 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2760 core/wpbc-functions.php:1999
|
3595 |
#: inc/_bs/lib_s.php:43 inc/_bs/lib_s.php:272 inc/_bs/lib_s.php:274
|
3596 |
#: inc/_ps/admin/page-settings-form.php:352 inc/_ps/admin/page-settings-form.php:363
|
3597 |
msgid "Payment"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
+
#: core/lib/wpbc_all_translations.php:646
|
3601 |
msgid "In Trash"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: core/lib/wpbc_all_translations.php:647
|
3605 |
msgid "Move selected bookings to trash"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: core/lib/wpbc_all_translations.php:648
|
3609 |
msgid ""
|
3610 |
"Check the box, if you want to use syntax highlighter during customization booking form at "
|
3611 |
"Settings - Form page."
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: core/lib/wpbc_all_translations.php:649
|
3615 |
msgid "Show 3 months"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: core/lib/wpbc_all_translations.php:650
|
3619 |
msgid "Show year"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: core/lib/wpbc_all_translations.php:651
|
3623 |
msgid "Number of months"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: core/lib/wpbc_all_translations.php:652 inc/_bs/lib_s.php:47 inc/_bs/lib_s.php:292
|
3627 |
msgid "Paid OK"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: core/lib/wpbc_all_translations.php:653
|
3631 |
msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: core/lib/wpbc_all_translations.php:654
|
3635 |
#, php-format
|
3636 |
msgid ""
|
3637 |
"Probabaly you updated your paid version of Booking Calendar by free version or update process "
|
3638 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: core/lib/wpbc_all_translations.php:655
|
3642 |
msgid "Copy to admin"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: core/lib/wpbc_all_translations.php:656
|
3646 |
msgid "Enable / disable sending copy of this email notification to admin"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: core/lib/wpbc_all_translations.php:657
|
3650 |
msgid "Customization of email template, which is sending to Visitor after approval of booking"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: core/lib/wpbc_all_translations.php:658
|
3654 |
msgid "Email is sending to Visitor after Approval of booking."
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: core/lib/wpbc_all_translations.php:659
|
3658 |
msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: core/lib/wpbc_all_translations.php:660
|
3662 |
msgid "Email is sending to Visitor after Deleting of booking."
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: core/lib/wpbc_all_translations.php:661
|
3666 |
msgid ""
|
3667 |
"Customization of email template, which is sending to Visitor, when booking status is set to "
|
3668 |
"Pending"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: core/lib/wpbc_all_translations.php:662
|
3672 |
msgid "Email is sending to Visitor after booking set as Pending."
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: core/lib/wpbc_all_translations.php:663
|
3676 |
msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: core/lib/wpbc_all_translations.php:664
|
3680 |
msgid "Confgure ULR feed(s) at this settings page."
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: core/lib/wpbc_all_translations.php:665
|
3684 |
msgid "Reject"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: core/lib/wpbc_all_translations.php:666
|
3688 |
msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: core/lib/wpbc_all_translations.php:667
|
3692 |
msgid "Google Calendar"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: core/lib/wpbc_all_translations.php:668
|
3696 |
msgid "Events Import"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: core/lib/wpbc_all_translations.php:669
|
3700 |
msgid "Import Settings"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: core/lib/wpbc_all_translations.php:670
|
3704 |
msgid "Customization of synchronization with Google Calendar"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: core/lib/wpbc_all_translations.php:671 core/wpbc-debug.php:123 core/wpbc-emails.php:449
|
3708 |
#: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
|
3709 |
#: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
|
3710 |
#: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
|
3719 |
msgid "Error"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: core/lib/wpbc_all_translations.php:672
|
3723 |
msgid "does not exist"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: core/lib/wpbc_all_translations.php:673 core/lib/wpdev-booking-class.php:500
|
3727 |
msgid "Calendar is loading..."
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: core/lib/wpbc_all_translations.php:674 core/lib/wpdev-booking-class.php:684
|
3731 |
#: core/lib/wpdev-booking-class.php:745 inc/_ps/personal.php:898 inc/_ps/personal.php:909
|
3732 |
msgid "Wrong booking hash in URL (probably expired)"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: core/lib/wpbc_all_translations.php:675
|
3736 |
msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: core/lib/wpbc_all_translations.php:676 core/lib/wpdev-booking-class.php:865
|
3740 |
#, php-format
|
3741 |
msgid ""
|
3742 |
"%sWarning! Booking calendar for this booking resource are already at the page, please check more "
|
3743 |
"about this issue at %sthis page%s"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: core/lib/wpbc_all_translations.php:677 core/lib/wpdev-booking-class.php:1084
|
3747 |
#: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
|
3748 |
msgid "You need to use special shortcode [bookingedit] for booking editing."
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: core/lib/wpbc_all_translations.php:678 core/lib/wpdev-booking-class.php:1032
|
3752 |
#: core/lib/wpdev-booking-class.php:1229 core/lib/wpdev-booking-class.php:1231
|
3753 |
#: inc/_ps/hash/wpbc-hash-functions.php:106 inc/_ps/hash/wpbc-hash-functions.php:134
|
3754 |
#: inc/_ps/hash/wpbc-hash-functions.php:162 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1531
|
3755 |
msgid "Wrong booking hash in URL. Probably hash is expired."
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: core/lib/wpbc_all_translations.php:679 core/lib/wpdev-booking-class.php:1036
|
3759 |
+
#: core/lib/wpdev-booking-class.php:1235 js/wpbc-gutenberg.js:1182 js/wpbc-gutenberg.js:1268
|
3760 |
msgid "You do not set any parameters for booking editing"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: core/lib/wpbc_all_translations.php:680 core/lib/wpdev-booking-class.php:1038
|
3764 |
#: core/lib/wpdev-booking-class.php:1237
|
3765 |
#, php-format
|
3766 |
msgid "Please check more about configuration at %sthis page%s"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: core/lib/wpbc_all_translations.php:681 core/lib/wpdev-booking-widget.php:108
|
3770 |
msgid "Booking form with calendar"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: core/lib/wpbc_all_translations.php:682 core/lib/wpdev-booking-widget.php:109
|
3774 |
msgid "Only availability calendar"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: core/lib/wpbc_all_translations.php:683 core/lib/wpdev-booking-widget.php:150
|
3778 |
msgid "Footer"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: core/lib/wpbc_all_translations.php:684 core/lib/wpdev-booking-widget.php:155
|
3782 |
#, php-format
|
3783 |
msgid "Example: %sMake booking here%s"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: core/lib/wpbc_all_translations.php:685 core/lib/wpdev-booking-widget.php:159
|
3787 |
#: inc/_ps/wpbc-booking-select-widget.php:263
|
3788 |
#, php-format
|
3789 |
msgid ""
|
3791 |
"at the same page, then the last will not be visible."
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: core/lib/wpbc_all_translations.php:686 core/lib/wpdev-booking-widget.php:163
|
3795 |
#, php-format
|
3796 |
msgid "%sSeveral widgets are supported at %spaid versions%s."
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: core/lib/wpbc_all_translations.php:687 core/sync/wpbc-gcal-class.php:300
|
3800 |
msgid "Importing Feed"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: core/lib/wpbc_all_translations.php:688 core/sync/wpbc-gcal-class.php:316
|
3804 |
msgid "Data Parsing"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: core/lib/wpbc_all_translations.php:689 core/sync/wpbc-gcal-class.php:458
|
3808 |
msgid ""
|
3809 |
"Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
|
3810 |
"correct."
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: core/lib/wpbc_all_translations.php:690 core/sync/wpbc-gcal-class.php:465
|
3814 |
msgid "The feed could not be found (404). Please ensure your feed URL is correct."
|
3815 |
msgstr ""
|
3816 |
|
3817 |
+
#: core/lib/wpbc_all_translations.php:691 core/sync/wpbc-gcal-class.php:468
|
3818 |
msgid ""
|
3819 |
"Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
|
3820 |
"calendar."
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: core/lib/wpbc_all_translations.php:692 core/sync/wpbc-gcal-class.php:471
|
3824 |
#, php-format
|
3825 |
msgid ""
|
3826 |
"The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
|
3827 |
msgstr ""
|
3828 |
|
3829 |
+
#: core/lib/wpbc_all_translations.php:693 core/sync/wpbc-gcal-class.php:644
|
3830 |
#: core/sync/wpbc-gcal-class.php:694
|
3831 |
msgid "GID"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: core/lib/wpbc_all_translations.php:694 core/sync/wpbc-gcal-class.php:658
|
3835 |
msgid "Selection"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: core/lib/wpbc_all_translations.php:695 core/sync/wpbc-gcal-class.php:672
|
3839 |
msgid "Location:"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: core/lib/wpbc_all_translations.php:696 core/sync/wpbc-gcal-class.php:702
|
3843 |
msgid "Reload page"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: core/lib/wpbc_all_translations.php:697 core/sync/wpbc-gcal-class.php:715
|
3847 |
msgid "Delete selected booking(s)"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: core/lib/wpbc_all_translations.php:698 core/sync/wpbc-gcal.php:279
|
3851 |
msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: core/lib/wpbc_all_translations.php:699 core/sync/wpbc-gcal.php:399
|
3855 |
msgid "Retrieve Google Calendar Events "
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: core/lib/wpbc_all_translations.php:700 core/sync/wpbc-gcal.php:405
|
3859 |
msgid "Please configure settings for import Google Calendar events"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: core/lib/wpbc_all_translations.php:701 core/sync/wpbc-gcal.php:433
|
3863 |
msgid "Configure"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: core/lib/wpbc_all_translations.php:702 core/wpbc-activation.php:565
|
3867 |
#, php-format
|
3868 |
msgid "%s Found %s not indexed bookings %s"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: core/lib/wpbc_all_translations.php:703 core/wpbc-activation.php:580
|
3872 |
#, php-format
|
3873 |
msgid "%s Finish getting sort dates. %s"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: core/lib/wpbc_all_translations.php:704 core/wpbc-activation.php:589
|
3877 |
#, php-format
|
3878 |
msgid "Updated booking: %s"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: core/lib/wpbc_all_translations.php:705 core/wpbc-activation.php:1014
|
3882 |
msgid "Booking form"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: core/lib/wpbc_all_translations.php:706 core/wpbc-activation.php:1109
|
3886 |
#: inc/_ps/admin/page-email-edit.php:310
|
3887 |
msgid "The reservation has been modified"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: core/lib/wpbc_all_translations.php:707 core/wpbc-activation.php:1110
|
3891 |
#: inc/_ps/admin/page-email-edit.php:324
|
3892 |
#, php-format
|
3893 |
msgid ""
|
3895 |
"Thank you, %s"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: core/lib/wpbc_all_translations.php:708 core/wpbc-activation.php:1173
|
3899 |
#: inc/_bs/admin/api-settings-s.php:376
|
3900 |
msgid "Booked Times:"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: core/lib/wpbc_all_translations.php:709 core/wpbc-activation.php:1193
|
3904 |
msgid ""
|
3905 |
"This booking canceled because we did not receive payment and the administrator did not approve "
|
3906 |
"it."
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: core/lib/wpbc_all_translations.php:710 core/wpbc-activation.php:1225
|
3910 |
#: inc/_bs/admin/page-email-payment.php:314
|
3911 |
msgid "You need to make payment for this reservation"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: core/lib/wpbc_all_translations.php:711 core/wpbc-activation.php:1226
|
3915 |
#: inc/_bs/admin/page-email-payment.php:328
|
3916 |
#, php-format
|
3917 |
msgid ""
|
3919 |
"Thank you, %s"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: core/lib/wpbc_all_translations.php:712 core/wpbc-activation.php:1263
|
3923 |
#: inc/_bm/admin/api-settings-m.php:247
|
3924 |
msgid "Cost: "
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: core/lib/wpbc_all_translations.php:713 core/wpbc-activation.php:1294
|
3928 |
#: inc/_bl/admin/api-settings-l.php:75
|
3929 |
msgid "Available: "
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: core/lib/wpbc_all_translations.php:714 core/wpbc-emails.php:78
|
3933 |
msgid "Booking system"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: core/lib/wpbc_all_translations.php:715 core/wpbc-emails.php:184
|
3937 |
msgid ""
|
3938 |
"You can use (in subject and content of email template) any shortcodes, which you used in the "
|
3939 |
"booking form. Use the shortcodes in the same way as you used them in the content form at "
|
3940 |
"Settings Fields page."
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: core/lib/wpbc_all_translations.php:716 core/wpbc-emails.php:187
|
3944 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
|
3945 |
msgid "You can use following shortcodes in content of this template"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: core/lib/wpbc_all_translations.php:717 core/wpbc-emails.php:191
|
3949 |
#: inc/gateways/page-gateways.php:1068
|
3950 |
#, php-format
|
3951 |
msgid ""
|
3953 |
"Fields page"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: core/lib/wpbc_all_translations.php:718 core/wpbc-emails.php:193
|
3957 |
#, php-format
|
3958 |
msgid "%s - inserting data info about the booking"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: core/lib/wpbc_all_translations.php:719 core/wpbc-emails.php:197
|
3962 |
#, php-format
|
3963 |
msgid "%s - inserting the dates of booking"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: core/lib/wpbc_all_translations.php:720 core/wpbc-emails.php:201
|
3967 |
#, php-format
|
3968 |
msgid "%s - inserting check-in date (first day of reservation),"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: core/lib/wpbc_all_translations.php:721 core/wpbc-emails.php:206 core/wpbc-emails.php:208
|
3972 |
#, php-format
|
3973 |
msgid "%s - inserting check-out date (last day of reservation),"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: core/lib/wpbc_all_translations.php:722 core/wpbc-emails.php:213
|
3977 |
#, php-format
|
3978 |
msgid "%s - inserting the number of booking dates "
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: core/lib/wpbc_all_translations.php:723 core/wpbc-emails.php:219
|
3982 |
#, php-format
|
3983 |
msgid "%s - inserting ID of booking "
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: core/lib/wpbc_all_translations.php:724 core/wpbc-emails.php:224
|
3987 |
#, php-format
|
3988 |
msgid "%s or %s - inserting the title of the booking resource "
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: core/lib/wpbc_all_translations.php:725 core/wpbc-emails.php:230
|
3992 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
|
3993 |
#, php-format
|
3994 |
msgid "%s - inserting the cost of booking "
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: core/lib/wpbc_all_translations.php:726 core/wpbc-emails.php:236
|
3998 |
#, php-format
|
3999 |
msgid "%s - inserting your site URL "
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: core/lib/wpbc_all_translations.php:727 core/wpbc-emails.php:239
|
4003 |
#, php-format
|
4004 |
msgid "%s - inserting IP address of the user who made this action "
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: core/lib/wpbc_all_translations.php:728 core/wpbc-emails.php:240
|
4008 |
#, php-format
|
4009 |
msgid ""
|
4010 |
"%s - inserting contents of the User-Agent: header from the current request, if there is one "
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: core/lib/wpbc_all_translations.php:729 core/wpbc-emails.php:241
|
4014 |
#, php-format
|
4015 |
msgid "%s - inserting address of the page (if any), where visitor make this action "
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: core/lib/wpbc_all_translations.php:730 core/wpbc-emails.php:245
|
4019 |
#, php-format
|
4020 |
msgid "%s - inserting date of this action "
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: core/lib/wpbc_all_translations.php:731 core/wpbc-emails.php:242
|
4024 |
#, php-format
|
4025 |
msgid "%s - inserting time of this action "
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: core/lib/wpbc_all_translations.php:732 core/wpbc-emails.php:259
|
4029 |
#, php-format
|
4030 |
msgid "%s - inserting moderate link of new booking "
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: core/lib/wpbc_all_translations.php:733 core/wpbc-emails.php:276
|
4034 |
#, php-format
|
4035 |
msgid ""
|
4036 |
"%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
|
4037 |
"parameter for setting different %s of this page. Example: %s )"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: core/lib/wpbc_all_translations.php:734 core/wpbc-emails.php:280
|
4041 |
#, php-format
|
4042 |
msgid ""
|
4043 |
"%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
|
4044 |
"%s parameter for setting different %s of this page. Example: %s )"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: core/lib/wpbc_all_translations.php:735 core/wpbc-emails.php:285
|
4048 |
#, php-format
|
4049 |
msgid ""
|
4050 |
"%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
|
4051 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: core/lib/wpbc_all_translations.php:736 core/wpbc-emails.php:289
|
4055 |
#, php-format
|
4056 |
msgid "%s - add the reason for booking payment, you can enter it before sending email, "
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: core/lib/wpbc_all_translations.php:737 core/wpbc-emails.php:295
|
4060 |
#, php-format
|
4061 |
msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: core/lib/wpbc_all_translations.php:738 core/wpbc-emails.php:303 core/wpbc-translation.php:273
|
4065 |
msgid "Configuration in several languages"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: core/lib/wpbc_all_translations.php:739 core/wpbc-emails.php:304 core/wpbc-translation.php:274
|
4069 |
#, php-format
|
4070 |
msgid "%s - start new translation section, where %s - locale of translation"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: core/lib/wpbc_all_translations.php:740 core/wpbc-emails.php:305 core/wpbc-translation.php:275
|
4074 |
#, php-format
|
4075 |
msgid "Example #1: %s - start French translation section"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: core/lib/wpbc_all_translations.php:741 core/wpbc-emails.php:306 core/wpbc-translation.php:276
|
4079 |
#, php-format
|
4080 |
msgid "Example #2: \"%s\" - English and French translation of some message"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: core/lib/wpbc_all_translations.php:742 core/wpbc-functions.php:1018 inc/_bm/biz_m.php:2066
|
4084 |
msgid "yes"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
+
#: core/lib/wpbc_all_translations.php:743 core/wpbc-functions.php:1022
|
4088 |
msgid "no"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
+
#: core/lib/wpbc_all_translations.php:744 core/wpbc-functions.php:1927
|
4092 |
#: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:586
|
4093 |
msgid "Costs and Rates"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: core/lib/wpbc_all_translations.php:745 core/wpbc-functions.php:1936
|
4097 |
#: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
|
4098 |
#: inc/gateways/page-gateways.php:92
|
4099 |
msgid "Advanced Cost"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: core/lib/wpbc_all_translations.php:746 core/wpbc-functions.php:1945
|
4103 |
#: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
|
4104 |
msgid "Coupons"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
+
#: core/lib/wpbc_all_translations.php:747 core/wpbc-functions.php:1963
|
4108 |
#: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
|
4109 |
msgid "Season Filters"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: core/lib/wpbc_all_translations.php:748 core/wpbc-functions.php:2125
|
4113 |
msgid "Warning! Some error occur, during sending registration request."
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#: core/lib/wpbc_all_translations.php:749 core/wpbc-functions.php:2130
|
4117 |
msgid ""
|
4118 |
"Please refresh this page and if the same error appear again contact support by email (with info "
|
4119 |
"about order number and website) for finishing the registrations"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: core/lib/wpbc_all_translations.php:750 core/wpbc-functions.php:2158
|
4123 |
#, php-format
|
4124 |
msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: core/lib/wpbc_all_translations.php:751 core/wpbc-functions.php:2326
|
4128 |
msgid "Changes saved."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: core/lib/wpbc_all_translations.php:752 core/wpbc-functions.php:2432
|
4132 |
msgid "Click to toggle"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: core/lib/wpbc_all_translations.php:753 core/wpbc-functions.php:2494
|
4136 |
msgid "Prev"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: core/lib/wpbc_all_translations.php:754 core/wpbc-functions.php:2854
|
4140 |
msgid "We’ve assembled some links to get you started:"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: core/lib/wpbc_all_translations.php:755 core/wpbc-functions.php:2857
|
4144 |
msgid "Get Started"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: core/lib/wpbc_all_translations.php:756 core/wpbc-functions.php:2860
|
4148 |
#, php-format
|
4149 |
msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: core/lib/wpbc_all_translations.php:757 core/wpbc-functions.php:2869
|
4153 |
#, php-format
|
4154 |
msgid "or add booking calendar %sWidget%s to your sidebar."
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: core/lib/wpbc_all_translations.php:758 core/wpbc-functions.php:2875
|
4158 |
#, php-format
|
4159 |
msgid "Check %show todo%s that and what %sshortcodes%s are available."
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: core/lib/wpbc_all_translations.php:759 core/wpbc-functions.php:2882
|
4163 |
#, php-format
|
4164 |
msgid "Add new booking from your post/page or from %sAdmin Panel%s."
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: core/lib/wpbc_all_translations.php:760 core/wpbc-functions.php:2888
|
4168 |
msgid "Next Steps"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: core/lib/wpbc_all_translations.php:761 core/wpbc-functions.php:2891
|
4172 |
#, php-format
|
4173 |
msgid "Check %sBooking Listing%s page for new bookings."
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: core/lib/wpbc_all_translations.php:762 core/wpbc-functions.php:2896
|
4177 |
#, php-format
|
4178 |
msgid "Configure booking %sSettings%s."
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: core/lib/wpbc_all_translations.php:763 core/wpbc-functions.php:2900
|
4182 |
#, php-format
|
4183 |
msgid "Configure predefined set of your %sForm Fields%s."
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: core/lib/wpbc_all_translations.php:764 core/wpbc-functions.php:2904
|
4187 |
#, php-format
|
4188 |
msgid "Configure your predefined %sEmail Templates%s."
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: core/lib/wpbc_all_translations.php:765 core/wpbc-functions.php:2910
|
4192 |
msgid "Have a questions?"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
+
#: core/lib/wpbc_all_translations.php:766 core/wpbc-functions.php:2913
|
4196 |
#, php-format
|
4197 |
msgid "Check out our %sHelp%s"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: core/lib/wpbc_all_translations.php:767 core/wpbc-functions.php:2918
|
4201 |
#, php-format
|
4202 |
msgid "See %sFAQ%s."
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: core/lib/wpbc_all_translations.php:768 core/wpbc-functions.php:2923
|
4206 |
#, php-format
|
4207 |
msgid "Still having questions? Contact %sSupport%s."
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
#: core/lib/wpbc_all_translations.php:769 core/wpbc-functions.php:2931 core/wpbc.php:205
|
4211 |
#, php-format
|
4212 |
msgid "Need even more functionality? Check %s higher versions %s"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
+
#: core/lib/wpbc_all_translations.php:770 core/wpbc-js.php:112
|
4216 |
msgid "This field is required"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: core/lib/wpbc_all_translations.php:771 core/wpbc-js.php:113
|
4220 |
msgid "This checkbox must be checked"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: core/lib/wpbc_all_translations.php:772 core/wpbc-js.php:114
|
4224 |
msgid "At least one option must be selected"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
+
#: core/lib/wpbc_all_translations.php:773 core/wpbc-js.php:115
|
4228 |
msgid "Incorrect email field"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
+
#: core/lib/wpbc_all_translations.php:774 core/wpbc-js.php:116
|
4232 |
msgid "Your emails do not match"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
+
#: core/lib/wpbc_all_translations.php:775 core/wpbc-js.php:117
|
4236 |
msgid "Please, select booking date(s) at Calendar."
|
4237 |
msgstr ""
|
4238 |
|
4239 |
+
#: core/lib/wpbc_all_translations.php:776 core/wpbc-js.php:132
|
4240 |
msgid "Deleting"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
+
#: core/lib/wpbc_all_translations.php:777 core/wpbc-js.php:133
|
4244 |
msgid "Updating"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: core/lib/wpbc_all_translations.php:778 core/wpbc-js.php:134
|
4248 |
msgid "Saving"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
+
#: core/lib/wpbc_all_translations.php:779 core/wpbc.php:97
|
4252 |
msgid "Booking"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
+
#: core/lib/wpbc_all_translations.php:780 core/wpbc.php:289 core/wpbc.php:296
|
4256 |
msgid "Action is not allowed!"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
+
#: core/lib/wpbc_all_translations.php:781 inc/_bl/admin/activation-l.php:119
|
4260 |
#: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
|
4261 |
#: inc/_bl/admin/page-search.php:770 inc/_bm/admin/api-settings-m.php:567 inc/_bm/m-toolbar.php:62
|
4262 |
+
#: inc/_bm/m-toolbar.php:414 inc/_ps/admin/page-settings-form.php:328
|
4263 |
#: inc/_ps/wpbc-booking-select-widget.php:230
|
4264 |
msgid "Standard"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: core/lib/wpbc_all_translations.php:782 inc/_bl/admin/activation-l.php:120
|
4268 |
#: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
|
4269 |
#: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
|
4270 |
msgid "Superior"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
+
#: core/lib/wpbc_all_translations.php:783 inc/_bl/admin/activation-l.php:120
|
4274 |
#: inc/_bs/admin/activation-s.php:93
|
4275 |
msgid "Resource #1"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: core/lib/wpbc_all_translations.php:784 inc/_bl/admin/activation-l.php:121
|
4279 |
#: inc/_bl/admin/activation-l.php:125
|
4280 |
msgid "Presidential Suite"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
+
#: core/lib/wpbc_all_translations.php:785 inc/_bl/admin/activation-l.php:121
|
4284 |
#: inc/_bs/admin/activation-s.php:94
|
4285 |
msgid "Resource #2"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
+
#: core/lib/wpbc_all_translations.php:786 inc/_bl/admin/activation-l.php:122
|
4289 |
#: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
|
4290 |
msgid "Royal Villa"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: core/lib/wpbc_all_translations.php:787 inc/_bl/admin/activation-l.php:122
|
4294 |
#: inc/_bs/admin/activation-s.php:95
|
4295 |
msgid "Resource #3"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: core/lib/wpbc_all_translations.php:788 inc/_bl/admin/api-settings-l.php:34
|
4299 |
msgid ""
|
4300 |
"Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
|
4301 |
"for search results"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: core/lib/wpbc_all_translations.php:789 inc/_bl/admin/api-settings-l.php:43
|
4305 |
msgid ""
|
4306 |
"Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
|
4307 |
"1 search results"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: core/lib/wpbc_all_translations.php:790 inc/_bl/admin/api-settings-l.php:66
|
4311 |
msgid "Show availability in tooltip"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: core/lib/wpbc_all_translations.php:791 inc/_bl/admin/api-settings-l.php:67
|
4315 |
msgid ""
|
4316 |
"Check this box to display the available number of booking resources with a tooltip, when mouse "
|
4317 |
"hovers over each day on the calendar(s)."
|
4318 |
msgstr ""
|
4319 |
|
4320 |
+
#: core/lib/wpbc_all_translations.php:792 inc/_bl/admin/api-settings-l.php:76
|
4321 |
msgid "Availability Title"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: core/lib/wpbc_all_translations.php:793 inc/_bl/admin/api-settings-l.php:77
|
4325 |
#, php-format
|
4326 |
msgid "Type your %savailability%s description"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
+
#: core/lib/wpbc_all_translations.php:794 inc/_bl/admin/api-settings-l.php:110
|
4330 |
#: inc/_bs/admin/api-settings-s.php:516
|
4331 |
msgid "Auto-cancel bookings"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: core/lib/wpbc_all_translations.php:795 inc/_bl/admin/api-settings-l.php:111
|
4335 |
#: inc/_bl/admin/api-settings-l.php:131
|
4336 |
msgid ""
|
4337 |
"Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
|
4338 |
"date(s)"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: core/lib/wpbc_all_translations.php:796 inc/_bl/admin/api-settings-l.php:129
|
4342 |
#: inc/_bl/admin/api-settings-l.php:289
|
4343 |
msgid ""
|
4344 |
"Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
|
4346 |
"approved booking, will be automatically canceled!"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: core/lib/wpbc_all_translations.php:797 inc/_bl/admin/api-settings-l.php:160
|
4350 |
msgid "Set capacity based on number of visitors"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: core/lib/wpbc_all_translations.php:798 inc/_bl/admin/api-settings-l.php:161
|
4354 |
msgid ""
|
4355 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
4356 |
"selected visitors."
|
4357 |
msgstr ""
|
4358 |
|
4359 |
+
#: core/lib/wpbc_all_translations.php:799 inc/_bl/admin/api-settings-l.php:162
|
4360 |
#: inc/_ps/admin/api-settings-p.php:330 inc/_ps/admin/api-settings-p.php:343
|
4361 |
#, php-format
|
4362 |
msgid "Please read more info about configuration of this parameter %shere%s"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: core/lib/wpbc_all_translations.php:800 inc/_bl/admin/api-settings-l.php:177
|
4366 |
msgid ""
|
4367 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
4368 |
"resource items remaining for each day."
|
4369 |
msgstr ""
|
4370 |
|
4371 |
+
#: core/lib/wpbc_all_translations.php:801 inc/_bl/admin/api-settings-l.php:180
|
4372 |
#, php-format
|
4373 |
msgid ""
|
4374 |
"Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
|
4375 |
"of visitors specified on the booking form."
|
4376 |
msgstr ""
|
4377 |
|
4378 |
+
#: core/lib/wpbc_all_translations.php:802 inc/_bl/admin/api-settings-l.php:183
|
4379 |
msgid ""
|
4380 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
4381 |
"for the resource, which can be at free booking resource items."
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: core/lib/wpbc_all_translations.php:803 inc/_bl/admin/api-settings-l.php:186
|
4385 |
#, php-format
|
4386 |
msgid ""
|
4387 |
"Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
|
4388 |
"visitors specified on the booking form."
|
4389 |
msgstr ""
|
4390 |
|
4391 |
+
#: core/lib/wpbc_all_translations.php:804 inc/_bl/admin/api-settings-l.php:214
|
4392 |
msgid "Disable bookings in different booking resources"
|
4393 |
msgstr ""
|
4394 |
|
4395 |
+
#: core/lib/wpbc_all_translations.php:805 inc/_bl/admin/api-settings-l.php:215
|
4396 |
msgid ""
|
4397 |
"Check this box to dissable reservations, which can be stored in different booking resources."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
+
#: core/lib/wpbc_all_translations.php:806 inc/_bl/admin/api-settings-l.php:216
|
4401 |
msgid ""
|
4402 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
4403 |
"show."
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: core/lib/wpbc_all_translations.php:807 inc/_bl/admin/api-settings-l.php:337
|
4407 |
#: inc/_ps/p-toolbar.php:1213
|
4408 |
msgid "Parent"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: core/lib/wpbc_all_translations.php:808 inc/_bl/admin/api-settings-l.php:343
|
4412 |
#: inc/_ps/p-toolbar.php:1231
|
4413 |
msgid "Priority"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: core/lib/wpbc_all_translations.php:809 inc/_bl/admin/api-settings-l.php:350
|
4417 |
msgid "Max visitors"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: core/lib/wpbc_all_translations.php:810 inc/_bl/admin/api-settings-l.php:470
|
4421 |
msgid "Single"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: core/lib/wpbc_all_translations.php:811 inc/_bl/admin/api-settings-l.php:472
|
4425 |
msgid "Child"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: core/lib/wpbc_all_translations.php:812 inc/_bl/admin/page-coupons.php:46
|
4429 |
msgid "Setting coupons for discount"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: core/lib/wpbc_all_translations.php:813 inc/_bl/admin/page-coupons.php:122
|
4433 |
+
#: inc/_bm/m-toolbar.php:600 inc/_bm/m-toolbar.php:602
|
4434 |
msgid "Create dates filter"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
+
#: core/lib/wpbc_all_translations.php:814 inc/_bl/admin/page-coupons.php:124
|
4438 |
#: inc/_bl/admin/page-coupons.php:871
|
4439 |
msgid "Add New Discount Coupon"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: core/lib/wpbc_all_translations.php:815 inc/_bl/admin/page-coupons.php:214
|
4443 |
#: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
|
4444 |
#: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
|
4445 |
msgid "Bulk Actions"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
+
#: core/lib/wpbc_all_translations.php:816 inc/_bl/admin/page-coupons.php:505
|
4449 |
#: inc/_bl/admin/page-coupons.php:1170
|
4450 |
msgid "Coupon Code"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: core/lib/wpbc_all_translations.php:817 inc/_bl/admin/page-coupons.php:511
|
4454 |
#: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
|
4455 |
msgid "Savings"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: core/lib/wpbc_all_translations.php:818 inc/_bl/admin/page-coupons.php:517
|
4459 |
msgid "Minimum Cost"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: core/lib/wpbc_all_translations.php:819 inc/_bl/admin/page-coupons.php:524
|
4463 |
msgid "Expiration"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: core/lib/wpbc_all_translations.php:820 inc/_bl/admin/page-coupons.php:533
|
4467 |
msgid "Number of usage"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: core/lib/wpbc_all_translations.php:821 inc/_bl/admin/page-coupons.php:585
|
4471 |
#: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
|
4472 |
#: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
|
4473 |
#: inc/_bm/admin/page-cost.php:648 inc/_bm/admin/page-seasons.php:565
|
4476 |
msgid "Select Booking Resource"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
+
#: core/lib/wpbc_all_translations.php:822 inc/_bl/admin/page-coupons.php:776
|
4480 |
#: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
|
4481 |
#: inc/_ps/p-toolbar.php:722
|
4482 |
msgid "All resources"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
+
#: core/lib/wpbc_all_translations.php:823 inc/_bl/admin/page-coupons.php:993
|
4486 |
#: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
|
4487 |
msgid "Coupon"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: core/lib/wpbc_all_translations.php:824 inc/_bl/admin/page-coupons.php:1171
|
4491 |
msgid "Enter coupon code."
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: core/lib/wpbc_all_translations.php:825 inc/_bl/admin/page-coupons.php:1232
|
4495 |
msgid "Enter number of fixed or percentage savings."
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: core/lib/wpbc_all_translations.php:826 inc/_bl/admin/page-coupons.php:1235
|
4499 |
msgid "Expiration Date"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: core/lib/wpbc_all_translations.php:827 inc/_bl/admin/page-coupons.php:1311
|
4503 |
msgid "Select Expiration Date of the coupon."
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: core/lib/wpbc_all_translations.php:828 inc/_bl/admin/page-coupons.php:1318
|
4507 |
msgid "Minimum Booking Cost"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: core/lib/wpbc_all_translations.php:829 inc/_bl/admin/page-coupons.php:1319
|
4511 |
msgid "Enter minimum booking cost, when coupon is applicable."
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: core/lib/wpbc_all_translations.php:830 inc/_bl/admin/page-coupons.php:1336
|
4515 |
msgid "Maximum number of usage"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: core/lib/wpbc_all_translations.php:831 inc/_bl/admin/page-coupons.php:1337
|
4519 |
msgid "Enter maximum number of times, when coupon is applicable."
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: core/lib/wpbc_all_translations.php:832 inc/_bl/admin/page-coupons.php:1360
|
4523 |
msgid "Select booking resources, where is possible to apply this coupon code."
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: core/lib/wpbc_all_translations.php:833 inc/_bl/admin/page-coupons.php:1378
|
4527 |
#: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
|
4528 |
#: inc/_ps/p-toolbar.php:1157
|
4529 |
msgid "Add New"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
+
#: core/lib/wpbc_all_translations.php:834 inc/_bl/admin/page-search.php:87
|
4533 |
#: inc/_bl/admin/page-search.php:126 inc/_bm/admin/page-cost-advanced.php:692
|
4534 |
#: inc/_ps/admin/page-settings-form.php:673 inc/gateways/page-gateways.php:1067
|
4535 |
msgid "Use these shortcodes for customization: "
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: core/lib/wpbc_all_translations.php:835 inc/_bl/admin/page-search.php:88
|
4539 |
#, php-format
|
4540 |
msgid "%s - search inside posts/pages which are part of this category, "
|
4541 |
msgstr ""
|
4542 |
|
4543 |
+
#: core/lib/wpbc_all_translations.php:836 inc/_bl/admin/page-search.php:89
|
4544 |
#, php-format
|
4545 |
msgid "%s - search inside posts/pages which have this tag, "
|
4546 |
msgstr ""
|
4547 |
|
4548 |
+
#: core/lib/wpbc_all_translations.php:837 inc/_bl/admin/page-search.php:90
|
4549 |
#: inc/_bl/admin/page-search.php:142
|
4550 |
#, php-format
|
4551 |
msgid "%s - check-in date, "
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: core/lib/wpbc_all_translations.php:838 inc/_bl/admin/page-search.php:91
|
4555 |
#: inc/_bl/admin/page-search.php:143
|
4556 |
#, php-format
|
4557 |
msgid "%s - check-out date, "
|
4558 |
msgstr ""
|
4559 |
|
4560 |
+
#: core/lib/wpbc_all_translations.php:839 inc/_bl/admin/page-search.php:92
|
4561 |
#, php-format
|
4562 |
msgid "%s - default selection number of visitors, "
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: core/lib/wpbc_all_translations.php:840 inc/_bl/admin/page-search.php:93
|
4566 |
#, php-format
|
4567 |
msgid "Example: %s - custom number of visitor selections\""
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: core/lib/wpbc_all_translations.php:841 inc/_bl/admin/page-search.php:95
|
4571 |
#, php-format
|
4572 |
msgid "%s - search button, "
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: core/lib/wpbc_all_translations.php:842 inc/_bl/admin/page-search.php:96
|
4576 |
#: inc/_bl/admin/page-search.php:148
|
4577 |
msgid "HTML tags is accepted."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
+
#: core/lib/wpbc_all_translations.php:843 inc/_bl/admin/page-search.php:127
|
4581 |
#, php-format
|
4582 |
msgid "%s - resource title, "
|
4583 |
msgstr ""
|
4584 |
|
4585 |
+
#: core/lib/wpbc_all_translations.php:844 inc/_bl/admin/page-search.php:128
|
4586 |
#: inc/_bl/admin/page-search.php:129
|
4587 |
#, php-format
|
4588 |
msgid "%s - link to the page with booking form, "
|
4589 |
msgstr ""
|
4590 |
|
4591 |
+
#: core/lib/wpbc_all_translations.php:845 inc/_bl/admin/page-search.php:130
|
4592 |
#, php-format
|
4593 |
msgid "%s - availability of booking resource, "
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: core/lib/wpbc_all_translations.php:846 inc/_bl/admin/page-search.php:131
|
4597 |
#, php-format
|
4598 |
msgid "%s - maximum number of visitors for the booking resource, "
|
4599 |
msgstr ""
|
4600 |
|
4601 |
+
#: core/lib/wpbc_all_translations.php:847 inc/_bl/admin/page-search.php:132
|
4602 |
#, php-format
|
4603 |
msgid "%s - cost of booking the resource, "
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: core/lib/wpbc_all_translations.php:848 inc/_bl/admin/page-search.php:133
|
4607 |
#, php-format
|
4608 |
msgid "%s - featured image, taken from the featured image associated with the post, "
|
4609 |
msgstr ""
|
4610 |
|
4611 |
+
#: core/lib/wpbc_all_translations.php:849 inc/_bl/admin/page-search.php:134
|
4612 |
#, php-format
|
4613 |
msgid "%s - booking info, taken from the excerpt associated with the post, "
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: core/lib/wpbc_all_translations.php:850 inc/_bl/admin/page-search.php:136
|
4617 |
#: inc/_ps/form/class-wpbc-form-help.php:677
|
4618 |
msgid "Full cost of the booking."
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: core/lib/wpbc_all_translations.php:851 inc/_bl/admin/page-search.php:137
|
4622 |
#: inc/_ps/form/class-wpbc-form-help.php:679
|
4623 |
msgid "Cost of the booking for the selected dates only."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: core/lib/wpbc_all_translations.php:852 inc/_bl/admin/page-search.php:138
|
4627 |
#: inc/_ps/form/class-wpbc-form-help.php:681
|
4628 |
msgid "Additional cost, which depends on the fields selection in the form."
|
4629 |
msgstr ""
|
4630 |
|
4631 |
+
#: core/lib/wpbc_all_translations.php:853 inc/_bl/admin/page-search.php:139
|
4632 |
#: inc/_ps/form/class-wpbc-form-help.php:683
|
4633 |
msgid "The deposit cost of the booking."
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: core/lib/wpbc_all_translations.php:854 inc/_bl/admin/page-search.php:140
|
4637 |
#: inc/_ps/form/class-wpbc-form-help.php:685
|
4638 |
msgid "Balance cost of the booking - difference between deposit and full cost."
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: core/lib/wpbc_all_translations.php:855 inc/_bl/admin/page-search.php:155
|
4642 |
msgid "hour(s)"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: core/lib/wpbc_all_translations.php:856 inc/_bl/admin/page-search.php:158
|
4646 |
#: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
|
4647 |
msgid "day(s)"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: core/lib/wpbc_all_translations.php:857 inc/_bl/admin/page-search.php:163
|
4651 |
msgid "Cache expiration"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: core/lib/wpbc_all_translations.php:858 inc/_bl/admin/page-search.php:164
|
4655 |
msgid "Select time of cache expiration"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: core/lib/wpbc_all_translations.php:859 inc/_bl/admin/page-search.php:354
|
4659 |
#: inc/_bl/admin/page-search.php:355
|
4660 |
msgid "Search Settings"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
+
#: core/lib/wpbc_all_translations.php:860 inc/_bl/admin/page-search.php:416
|
4664 |
msgid "Cache Updated"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: core/lib/wpbc_all_translations.php:861 inc/_bl/admin/page-search.php:441
|
4668 |
#: inc/_bl/admin/page-search.php:487
|
4669 |
msgid "Search Availability Form"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: core/lib/wpbc_all_translations.php:862 inc/_bl/admin/page-search.php:442
|
4673 |
+
#: inc/_bl/admin/page-search.php:505 js/wpbc-gutenberg.js:1069
|
4674 |
msgid "Search Results"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: core/lib/wpbc_all_translations.php:863 inc/_bl/admin/page-search.php:443
|
4678 |
#: inc/_bl/admin/page-search.php:532
|
4679 |
msgid "Search Cache"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: core/lib/wpbc_all_translations.php:864 inc/_bl/admin/page-search.php:479
|
4683 |
#, php-format
|
4684 |
msgid ""
|
4685 |
"If you do not see search results at front-end side of your website, please check troubleshooting "
|
4686 |
"instruction %shere%s"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: core/lib/wpbc_all_translations.php:865 inc/_bl/admin/page-search.php:512
|
4690 |
msgid "CSS customization of search form and search results you can make at this file"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: core/lib/wpbc_all_translations.php:866 inc/_bl/admin/page-search.php:684
|
4694 |
#: inc/_bl/admin/page-search.php:748
|
4695 |
msgid "Select Template"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: core/lib/wpbc_all_translations.php:867
|
4699 |
msgid "Inlinee Search Form Template"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: core/lib/wpbc_all_translations.php:868 inc/_bl/admin/page-search.php:715
|
4703 |
msgid "Horizontal Search Form Template"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: core/lib/wpbc_all_translations.php:869 inc/_bl/admin/page-search.php:725
|
4707 |
msgid "Standard Search Form Template"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: core/lib/wpbc_all_translations.php:870 inc/_bl/admin/page-search.php:837
|
4711 |
#: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
|
4712 |
#: inc/_ps/admin/page-settings-form.php:507
|
4713 |
msgid "Reset"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
+
#: core/lib/wpbc_all_translations.php:871 inc/_bl/admin/page-search.php:838
|
4717 |
#: inc/_ps/admin/page-settings-form.php:508
|
4718 |
msgid "Reset current Form"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: core/lib/wpbc_all_translations.php:872 inc/_bl/admin/page-search.php:907
|
4722 |
msgid "Cache will expire:"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: core/lib/wpbc_all_translations.php:873 inc/_bl/admin/page-search.php:937
|
4726 |
#, php-format
|
4727 |
msgid "Found: %s booking forms inside of posts or pages "
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: core/lib/wpbc_all_translations.php:874 inc/_bl/admin/page-search.php:941
|
4731 |
msgid "Page"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: core/lib/wpbc_all_translations.php:875 inc/_bl/admin/page-search.php:964
|
4735 |
msgid "Reset Search Cache"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: core/lib/wpbc_all_translations.php:876 inc/_bl/biz_l.php:136
|
4739 |
msgid ""
|
4740 |
"Try selecting fewer visitors. The number of visitors may be more than the number of available "
|
4741 |
"units on selected day(s)!"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
+
#: core/lib/wpbc_all_translations.php:877 inc/_bl/biz_l.php:385
|
4745 |
msgid "coupon"
|
4746 |
msgstr ""
|
4747 |
|
4748 |
+
#: core/lib/wpbc_all_translations.php:878 inc/_bl/biz_l.php:387
|
4749 |
msgid "discount"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
+
#: core/lib/wpbc_all_translations.php:879 inc/_bl/biz_l.php:581
|
4753 |
msgid "Please select check-in and check-out days!"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: core/lib/wpbc_all_translations.php:880 inc/_bl/biz_l.php:1729 inc/_bl/biz_l.php:1740
|
4757 |
+
#: inc/_bl/biz_l.php:1757 inc/_bl/biz_l.php:1762
|
4758 |
#, php-format
|
4759 |
msgid ""
|
4760 |
"Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
|
4762 |
"page and try other days."
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: core/lib/wpbc_all_translations.php:881 inc/_bl/biz_l.php:2407
|
4766 |
#, php-format
|
4767 |
msgid "The folowing pending booking(s): %s deleted."
|
4768 |
msgstr ""
|
4769 |
|
4770 |
+
#: core/lib/wpbc_all_translations.php:882 inc/_bl/wpbc-search-availability.php:862
|
4771 |
msgid "Book now"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
+
#: core/lib/wpbc_all_translations.php:883 inc/_bl/wpdev-booking-search-widget.php:14
|
4775 |
#: inc/_bl/wpdev-booking-search-widget.php:67
|
4776 |
msgid "Search availability"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
+
#: core/lib/wpbc_all_translations.php:884 inc/_bl/wpdev-booking-search-widget.php:15
|
4780 |
msgid "Search results."
|
4781 |
msgstr ""
|
4782 |
|
4783 |
+
#: core/lib/wpbc_all_translations.php:885 inc/_bl/wpdev-booking-search-widget.php:16
|
4784 |
msgid "Nothing found."
|
4785 |
msgstr ""
|
4786 |
|
4787 |
+
#: core/lib/wpbc_all_translations.php:886 inc/_bl/wpdev-booking-search-widget.php:85
|
4788 |
msgid "Title of search widget"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
+
#: core/lib/wpbc_all_translations.php:887 inc/_bl/wpdev-booking-search-widget.php:93
|
4792 |
msgid "Title of search results"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
+
#: core/lib/wpbc_all_translations.php:888 inc/_bl/wpdev-booking-search-widget.php:98
|
4796 |
#, php-format
|
4797 |
msgid "Please type the %sTitle of search results%s."
|
4798 |
msgstr ""
|
4799 |
|
4800 |
+
#: core/lib/wpbc_all_translations.php:889 inc/_bl/wpdev-booking-search-widget.php:102
|
4801 |
msgid "Nothing found message"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: core/lib/wpbc_all_translations.php:890 inc/_bl/wpdev-booking-search-widget.php:107
|
4805 |
#, php-format
|
4806 |
msgid "Please type the %smessage ,what is showing, when nothing found%s."
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: core/lib/wpbc_all_translations.php:891 inc/_bl/wpdev-booking-search-widget.php:111
|
4810 |
msgid "URL of Search Results"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: core/lib/wpbc_all_translations.php:892 inc/_bl/wpdev-booking-search-widget.php:116
|
4814 |
#, php-format
|
4815 |
msgid ""
|
4816 |
"Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
|
4817 |
"show."
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: core/lib/wpbc_all_translations.php:893 inc/_bm/admin/activation-m.php:48
|
4821 |
#: inc/_mu/multiuser.php:634
|
4822 |
msgid "Weekend"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
+
#: core/lib/wpbc_all_translations.php:894 inc/_bm/admin/activation-m.php:92
|
4826 |
#: inc/_mu/multiuser.php:636
|
4827 |
msgid "High season"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: core/lib/wpbc_all_translations.php:895 inc/_bm/admin/api-settings-m.php:35
|
4831 |
msgid "Limit available days from today"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: core/lib/wpbc_all_translations.php:896 inc/_bm/admin/api-settings-m.php:36
|
4835 |
msgid "Select number of available days in calendar start from today."
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: core/lib/wpbc_all_translations.php:897 inc/_bm/admin/api-settings-m.php:85
|
4839 |
msgid "Unavailable time before / after booking"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: core/lib/wpbc_all_translations.php:898 inc/_bm/admin/api-settings-m.php:87
|
4843 |
msgid ""
|
4844 |
"This feature is applying only for bookings for specific timeslots, or if activated check in/out "
|
4845 |
"time option."
|
4846 |
msgstr ""
|
4847 |
|
4848 |
+
#: core/lib/wpbc_all_translations.php:899 inc/_bm/admin/api-settings-m.php:110
|
4849 |
#: inc/_bm/admin/api-settings-m.php:134
|
4850 |
msgid "Before booking"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: core/lib/wpbc_all_translations.php:900 inc/_bm/admin/api-settings-m.php:111
|
4854 |
#: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
|
4855 |
#: inc/_bm/admin/api-settings-m.php:144
|
4856 |
msgid "Select unavailable time interval."
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: core/lib/wpbc_all_translations.php:901 inc/_bm/admin/api-settings-m.php:119
|
4860 |
#: inc/_bm/admin/api-settings-m.php:143
|
4861 |
msgid "After booking"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
+
#: core/lib/wpbc_all_translations.php:902 inc/_bm/admin/api-settings-m.php:170
|
4865 |
msgid "Showing cost in date cell"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
+
#: core/lib/wpbc_all_translations.php:903 inc/_bm/admin/api-settings-m.php:171
|
4869 |
#, php-format
|
4870 |
msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: core/lib/wpbc_all_translations.php:904 inc/_bm/admin/api-settings-m.php:188
|
4874 |
msgid "Currency symbol"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: core/lib/wpbc_all_translations.php:905 inc/_bm/admin/api-settings-m.php:224
|
4878 |
#, php-format
|
4879 |
msgid ""
|
4880 |
"Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
|
4881 |
"currency symbols%s"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
+
#: core/lib/wpbc_all_translations.php:906 inc/_bm/admin/api-settings-m.php:237
|
4885 |
msgid "Showing cost in tooltip"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
+
#: core/lib/wpbc_all_translations.php:907 inc/_bm/admin/api-settings-m.php:238
|
4889 |
msgid ""
|
4890 |
" Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
|
4891 |
"calendar(s)."
|
4892 |
msgstr ""
|
4893 |
|
4894 |
+
#: core/lib/wpbc_all_translations.php:908 inc/_bm/admin/api-settings-m.php:246
|
4895 |
msgid "Cost Title"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: core/lib/wpbc_all_translations.php:909 inc/_bm/admin/api-settings-m.php:248
|
4899 |
#, php-format
|
4900 |
msgid "Type your %scost%s description"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
+
#: core/lib/wpbc_all_translations.php:910 inc/_bm/admin/api-settings-m.php:569
|
4904 |
+
#: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:424
|
4905 |
msgid "Custom Forms"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: core/lib/wpbc_all_translations.php:911 inc/_bm/admin/page-availability.php:48
|
4909 |
msgid "Configuration of availability for booking resources"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: core/lib/wpbc_all_translations.php:912 inc/_bm/admin/page-availability.php:49
|
4913 |
msgid "Availability Settings"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: core/lib/wpbc_all_translations.php:913 inc/_bm/admin/page-availability.php:143
|
4917 |
#: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1186
|
4918 |
msgid "Show Children Resources"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
+
#: core/lib/wpbc_all_translations.php:914 inc/_bm/admin/page-availability.php:145
|
4922 |
#: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1188
|
4923 |
msgid "Hide Children Resources"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
+
#: core/lib/wpbc_all_translations.php:915 inc/_bm/admin/page-availability.php:239
|
4927 |
#: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
|
4928 |
msgid "Set Availability"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: core/lib/wpbc_all_translations.php:916 inc/_bm/admin/page-availability.php:253
|
4932 |
#: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
|
4933 |
#, php-format
|
4934 |
msgid ""
|
4936 |
"booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: core/lib/wpbc_all_translations.php:917 inc/_bm/admin/page-availability.php:499
|
4940 |
#: inc/_bm/admin/page-cost.php:581 inc/_ps/admin/page-resources.php:463
|
4941 |
msgid "Resource Name"
|
4942 |
msgstr ""
|
4943 |
|
4944 |
+
#: core/lib/wpbc_all_translations.php:918 inc/_bm/admin/page-availability.php:608
|
4945 |
#: inc/_bm/admin/page-availability.php:895
|
4946 |
msgid "All days"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: core/lib/wpbc_all_translations.php:919 inc/_bm/admin/page-availability.php:609
|
4950 |
#: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
|
4951 |
#: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
|
4952 |
#: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
|
4953 |
msgid "available"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
+
#: core/lib/wpbc_all_translations.php:920 inc/_bm/admin/page-availability.php:610
|
4957 |
#: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
|
4958 |
#: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
|
4959 |
#: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
|
4960 |
msgid "unavailable"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: core/lib/wpbc_all_translations.php:921 inc/_bm/admin/page-availability.php:635
|
4964 |
#, php-format
|
4965 |
msgid "and %s on seasons:"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
+
#: core/lib/wpbc_all_translations.php:922 inc/_bm/admin/page-availability.php:925
|
4969 |
#, php-format
|
4970 |
msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
+
#: core/lib/wpbc_all_translations.php:923 inc/_bm/admin/page-availability.php:943
|
4974 |
#: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
|
4975 |
#: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
|
4976 |
#: inc/_bm/admin/page-cost-valuation.php:148
|
4977 |
msgid "Hide season filters"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
+
#: core/lib/wpbc_all_translations.php:924 inc/_bm/admin/page-availability.php:948
|
4981 |
#: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
|
4982 |
#: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
|
4983 |
#: inc/_bm/admin/page-cost-valuation.php:153
|
4984 |
msgid "Show all exist season filters"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: core/lib/wpbc_all_translations.php:925 inc/_bm/admin/page-availability.php:981
|
4988 |
#: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:870
|
4989 |
msgid "Enabled"
|
4990 |
msgstr ""
|
4991 |
|
4992 |
+
#: core/lib/wpbc_all_translations.php:926 inc/_bm/admin/page-cost-advanced.php:44
|
4993 |
msgid "Customization of additional cost, which depend from form fields"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
+
#: core/lib/wpbc_all_translations.php:927 inc/_bm/admin/page-cost-advanced.php:45
|
4997 |
msgid "Advanced Cost Settings"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
+
#: core/lib/wpbc_all_translations.php:928 inc/_bm/admin/page-cost-advanced.php:125
|
5001 |
msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
|
5002 |
msgstr ""
|
5003 |
|
5004 |
+
#: core/lib/wpbc_all_translations.php:929 inc/_bm/admin/page-cost-advanced.php:127
|
5005 |
#, php-format
|
5006 |
msgid ""
|
5007 |
"Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
|
5008 |
"%sbooking form%s."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: core/lib/wpbc_all_translations.php:930 inc/_bm/admin/page-cost-advanced.php:441
|
5012 |
#: inc/_bm/admin/page-cost-deposit.php:181
|
5013 |
msgid "Deposit type"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
+
#: core/lib/wpbc_all_translations.php:931 inc/_bm/admin/page-cost-advanced.php:460
|
5017 |
msgid "of total cost"
|
5018 |
msgstr ""
|
5019 |
|
5020 |
+
#: core/lib/wpbc_all_translations.php:932 inc/_bm/admin/page-cost-advanced.php:462
|
5021 |
#: inc/_bs/admin/api-settings-s.php:898
|
5022 |
msgid "night"
|
5023 |
msgstr ""
|
5024 |
|
5025 |
+
#: core/lib/wpbc_all_translations.php:933 inc/_bm/admin/page-cost-advanced.php:463
|
5026 |
msgid "as additional sum"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
+
#: core/lib/wpbc_all_translations.php:934 inc/_bm/admin/page-cost-advanced.php:658
|
5030 |
msgid "Enter additional cost in formats:"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
+
#: core/lib/wpbc_all_translations.php:935 inc/_bm/admin/page-cost-advanced.php:659
|
5034 |
#, php-format
|
5035 |
msgid ""
|
5036 |
"For example, if the original cost of the booking is %s, then after applying additional costs the "
|
5037 |
"total cost will be folowing"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: core/lib/wpbc_all_translations.php:936 inc/_bm/admin/page-cost-advanced.php:662
|
5041 |
msgid "Enter fixed cost"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: core/lib/wpbc_all_translations.php:937 inc/_bm/admin/page-cost-advanced.php:662
|
5045 |
#: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
|
5046 |
#: inc/_bm/admin/page-cost-advanced.php:681
|
5047 |
#, php-format
|
5048 |
msgid "%s, then total cost will be %s"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: core/lib/wpbc_all_translations.php:938 inc/_bm/admin/page-cost-advanced.php:665
|
5052 |
msgid "Enter percentage of the entire booking"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: core/lib/wpbc_all_translations.php:939 inc/_bm/admin/page-cost-advanced.php:668
|
5056 |
msgid "Enter fixed amount for each selected day"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: core/lib/wpbc_all_translations.php:940 inc/_bm/admin/page-cost-advanced.php:668
|
5060 |
#, php-format
|
5061 |
msgid "%s, then total cost will be (if selected 3 days) %s"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: core/lib/wpbc_all_translations.php:941 inc/_bm/admin/page-cost-advanced.php:668
|
5065 |
#: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
|
5066 |
#: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
|
5067 |
msgid "or"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: core/lib/wpbc_all_translations.php:942 inc/_bm/admin/page-cost-advanced.php:671
|
5071 |
msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: core/lib/wpbc_all_translations.php:943 inc/_bm/admin/page-cost-advanced.php:674
|
5075 |
#: inc/_bm/admin/page-cost-advanced.php:687
|
5076 |
#, php-format
|
5077 |
msgid "Please check more info about configuration of this cost settings on this %spage%s."
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: core/lib/wpbc_all_translations.php:944 inc/_bm/admin/page-cost-deposit.php:73
|
5081 |
msgid "Set Deposit"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: core/lib/wpbc_all_translations.php:945 inc/_bm/admin/page-cost-deposit.php:135
|
5085 |
msgid "deposit payment for booking resource"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: core/lib/wpbc_all_translations.php:946 inc/_bm/admin/page-cost-deposit.php:153
|
5089 |
#: inc/_bm/admin/page-cost-deposit.php:162
|
5090 |
msgid "Deposit amount"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
+
#: core/lib/wpbc_all_translations.php:947 inc/_bm/admin/page-cost-deposit.php:199
|
5094 |
#: inc/_bm/admin/page-cost-early-late-booking.php:203
|
5095 |
#: inc/_bm/admin/page-cost-early-late-booking.php:404
|
5096 |
msgid "fixed total in"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: core/lib/wpbc_all_translations.php:948 inc/_bm/admin/page-cost-deposit.php:200
|
5100 |
#: inc/_bm/admin/page-cost-early-late-booking.php:204
|
5101 |
#: inc/_bm/admin/page-cost-early-late-booking.php:405
|
5102 |
msgid "of payment"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
+
#: core/lib/wpbc_all_translations.php:949 inc/_bm/admin/page-cost-deposit.php:209
|
5106 |
#: inc/_bm/admin/page-cost-early-late-booking.php:213
|
5107 |
#: inc/_bm/admin/page-cost-early-late-booking.php:414
|
5108 |
msgid "Conditions"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: core/lib/wpbc_all_translations.php:950 inc/_bm/admin/page-cost-deposit.php:219
|
5112 |
#, php-format
|
5113 |
msgid ""
|
5114 |
"Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
+
#: core/lib/wpbc_all_translations.php:951 inc/_bm/admin/page-cost-deposit.php:271
|
5118 |
#, php-format
|
5119 |
msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
+
#: core/lib/wpbc_all_translations.php:952 inc/_bm/admin/page-cost-deposit.php:275
|
5123 |
#: inc/_bm/admin/page-cost-early-late-booking.php:280
|
5124 |
#: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
|
5125 |
msgid "Any days"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
+
#: core/lib/wpbc_all_translations.php:953 inc/_bm/admin/page-cost-deposit.php:342
|
5129 |
msgid "Deposit payment total"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
+
#: core/lib/wpbc_all_translations.php:954 inc/_bm/admin/page-cost-rate.php:69
|
5133 |
msgid "Set Rates"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
+
#: core/lib/wpbc_all_translations.php:955 inc/_bm/admin/page-cost-rate.php:163
|
5137 |
#: inc/_bm/admin/page-cost.php:676 inc/_bm/admin/page-cost.php:677
|
5138 |
msgid "Rates"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
+
#: core/lib/wpbc_all_translations.php:956 inc/_bm/admin/page-cost-rate.php:167
|
5142 |
msgid "Seasonal price"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
+
#: core/lib/wpbc_all_translations.php:957 inc/_bm/admin/page-cost-rate.php:171
|
5146 |
#: inc/_bm/admin/page-cost-valuation.php:198
|
5147 |
msgid "Season"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
+
#: core/lib/wpbc_all_translations.php:958 inc/_bm/admin/page-cost-rate.php:215
|
5151 |
#, php-format
|
5152 |
msgid ""
|
5153 |
"Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
|
5154 |
"booking resource (%s) or %sAdd a new seasonal filter%s"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
+
#: core/lib/wpbc_all_translations.php:959 inc/_bm/admin/page-cost-valuation.php:96
|
5158 |
#: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
|
5159 |
msgid "Set Valuation Days"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
+
#: core/lib/wpbc_all_translations.php:960 inc/_bm/admin/page-cost-valuation.php:185
|
5163 |
#: inc/_mu/admin/page-users.php:437
|
5164 |
msgid "Status"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
+
#: core/lib/wpbc_all_translations.php:961 inc/_bm/admin/page-cost-valuation.php:194
|
5168 |
msgid "Costs"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
+
#: core/lib/wpbc_all_translations.php:962 inc/_bm/admin/page-cost-valuation.php:249
|
5172 |
msgid "Add new cost"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: core/lib/wpbc_all_translations.php:963 inc/_bm/admin/page-cost-valuation.php:272
|
5176 |
#, php-format
|
5177 |
msgid ""
|
5178 |
"Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
|
5179 |
"the list."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: core/lib/wpbc_all_translations.php:964 inc/_bm/admin/page-cost-valuation.php:275
|
5183 |
#, php-format
|
5184 |
msgid ""
|
5185 |
"Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
|
5186 |
"terms %s"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
+
#: core/lib/wpbc_all_translations.php:965 inc/_bm/admin/page-cost-valuation.php:275
|
5190 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
|
5191 |
msgid "Together"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: core/lib/wpbc_all_translations.php:966 inc/_bm/admin/page-cost-valuation.php:275
|
5195 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
|
5196 |
#: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
|
5197 |
msgid "For"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: core/lib/wpbc_all_translations.php:967 inc/_bm/admin/page-cost-valuation.php:278
|
5201 |
#, php-format
|
5202 |
msgid "%s and %s terms have higher priority than a range %s days."
|
5203 |
msgstr ""
|
5204 |
|
5205 |
+
#: core/lib/wpbc_all_translations.php:968 inc/_bm/admin/page-cost-valuation.php:282
|
5206 |
#, php-format
|
5207 |
msgid "%s - definition of check-out date."
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: core/lib/wpbc_all_translations.php:969 inc/_bm/admin/page-cost-valuation.php:284
|
5211 |
#: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
|
5212 |
#: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
|
5213 |
#: inc/_ps/form/class-wpbc-form-help.php:535
|
5214 |
msgid "Example"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: core/lib/wpbc_all_translations.php:970 inc/_bm/admin/page-cost-valuation.php:291
|
5218 |
msgid ""
|
5219 |
"Specific cost will take affect, only if it active (the box at the left side is checked) and if "
|
5220 |
"\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
|
5221 |
msgstr ""
|
5222 |
|
5223 |
+
#: core/lib/wpbc_all_translations.php:971 inc/_bm/admin/page-cost-valuation.php:335
|
5224 |
#: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
|
5225 |
#: inc/_bm/biz_m.php:252
|
5226 |
msgid " for all days!"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
+
#: core/lib/wpbc_all_translations.php:972 inc/_bm/admin/page-cost-valuation.php:341
|
5230 |
#: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
|
5231 |
msgid "from the cost of 1 day "
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: core/lib/wpbc_all_translations.php:973 inc/_bm/admin/page-cost-valuation.php:342
|
5235 |
#: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
|
5236 |
msgid "per 1 day"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
+
#: core/lib/wpbc_all_translations.php:974 inc/_bm/admin/page-cost-valuation.php:470
|
5240 |
#: inc/_bm/admin/page-seasons.php:1564
|
5241 |
msgid "to"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
+
#: core/lib/wpbc_all_translations.php:975 inc/_bm/admin/page-cost-valuation.php:504
|
5245 |
#: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
|
5246 |
#, php-format
|
5247 |
msgid "Additional cost in %s per 1 day"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: core/lib/wpbc_all_translations.php:976 inc/_bm/admin/page-cost.php:49
|
5251 |
msgid "Customization of rates, valuation days cost and deposit amount "
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: core/lib/wpbc_all_translations.php:977 inc/_bm/admin/page-cost.php:50
|
5255 |
msgid "Costs and Rates Settings"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: core/lib/wpbc_all_translations.php:978 inc/_bm/admin/page-cost.php:219
|
5259 |
#: inc/_bm/admin/page-cost.php:228
|
5260 |
msgid "Set Rate"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
+
#: core/lib/wpbc_all_translations.php:979 inc/_bm/admin/page-cost.php:221
|
5264 |
#: inc/_bm/admin/page-cost.php:230
|
5265 |
msgid "Set Deposit Amount"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
+
#: core/lib/wpbc_all_translations.php:980 inc/_bm/admin/page-cost.php:683
|
5269 |
#: inc/_bm/admin/page-cost.php:684
|
5270 |
msgid "Valuation days"
|
5271 |
msgstr ""
|
5272 |
|
5273 |
+
#: core/lib/wpbc_all_translations.php:981 inc/_bm/admin/page-cost.php:690
|
5274 |
#: inc/_bm/admin/page-cost.php:691 inc/gateways/page-gateways.php:1435
|
5275 |
msgid "Deposit"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: core/lib/wpbc_all_translations.php:982 inc/_bm/admin/page-seasons.php:46
|
5279 |
msgid "Customizaton of Season Filters"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: core/lib/wpbc_all_translations.php:983 inc/_bm/admin/page-seasons.php:680
|
5283 |
#: inc/_bm/admin/page-seasons.php:815
|
5284 |
msgid "Specific Dates Filter"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
+
#: core/lib/wpbc_all_translations.php:984 inc/_bm/admin/page-seasons.php:743
|
5288 |
#: inc/_bm/admin/page-seasons.php:821
|
5289 |
msgid "Conditional Dates Filter"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: core/lib/wpbc_all_translations.php:985 inc/_bm/admin/page-seasons.php:956
|
5293 |
#: inc/_bm/admin/page-seasons.php:1257
|
5294 |
msgid "Filter Name"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: core/lib/wpbc_all_translations.php:986 inc/_bm/admin/page-seasons.php:957
|
5298 |
#: inc/_bm/admin/page-seasons.php:1258
|
5299 |
msgid "Type filter name"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: core/lib/wpbc_all_translations.php:987 inc/_bm/admin/page-seasons.php:990
|
5303 |
msgid "Weekdays"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: core/lib/wpbc_all_translations.php:988 inc/_bm/admin/page-seasons.php:1106
|
5307 |
msgid "Months"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: core/lib/wpbc_all_translations.php:989 inc/_bm/admin/page-seasons.php:1108
|
5311 |
#: inc/_bm/admin/page-seasons.php:1283
|
5312 |
msgid "January"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
+
#: core/lib/wpbc_all_translations.php:990 inc/_bm/admin/page-seasons.php:1109
|
5316 |
#: inc/_bm/admin/page-seasons.php:1284
|
5317 |
msgid "February"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: core/lib/wpbc_all_translations.php:991 inc/_bm/admin/page-seasons.php:1110
|
5321 |
#: inc/_bm/admin/page-seasons.php:1285
|
5322 |
msgid "March"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: core/lib/wpbc_all_translations.php:992 inc/_bm/admin/page-seasons.php:1111
|
5326 |
#: inc/_bm/admin/page-seasons.php:1286
|
5327 |
msgid "April"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: core/lib/wpbc_all_translations.php:993 inc/_bm/admin/page-seasons.php:1112
|
5331 |
#: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
|
5332 |
msgid "May"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
+
#: core/lib/wpbc_all_translations.php:994 inc/_bm/admin/page-seasons.php:1113
|
5336 |
#: inc/_bm/admin/page-seasons.php:1288
|
5337 |
msgid "June"
|
5338 |
msgstr ""
|
5339 |
|
5340 |
+
#: core/lib/wpbc_all_translations.php:995 inc/_bm/admin/page-seasons.php:1114
|
5341 |
#: inc/_bm/admin/page-seasons.php:1289
|
5342 |
msgid "July"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
+
#: core/lib/wpbc_all_translations.php:996 inc/_bm/admin/page-seasons.php:1115
|
5346 |
#: inc/_bm/admin/page-seasons.php:1290
|
5347 |
msgid "August"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: core/lib/wpbc_all_translations.php:997 inc/_bm/admin/page-seasons.php:1116
|
5351 |
#: inc/_bm/admin/page-seasons.php:1291
|
5352 |
msgid "September"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
+
#: core/lib/wpbc_all_translations.php:998 inc/_bm/admin/page-seasons.php:1117
|
5356 |
#: inc/_bm/admin/page-seasons.php:1292
|
5357 |
msgid "October"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
+
#: core/lib/wpbc_all_translations1.php:2 inc/_bm/admin/page-seasons.php:1118
|
5361 |
#: inc/_bm/admin/page-seasons.php:1293
|
5362 |
msgid "November"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: core/lib/wpbc_all_translations1.php:3 inc/_bm/admin/page-seasons.php:1119
|
5366 |
#: inc/_bm/admin/page-seasons.php:1294
|
5367 |
msgid "December"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: core/lib/wpbc_all_translations1.php:4 inc/_bm/admin/page-seasons.php:1174
|
5371 |
msgid "Years"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: core/lib/wpbc_all_translations1.php:5 inc/_bm/admin/page-seasons.php:1272
|
5375 |
#: inc/_bm/admin/page-seasons.php:1487
|
5376 |
msgid "Mo"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: core/lib/wpbc_all_translations1.php:6 inc/_bm/admin/page-seasons.php:1273
|
5380 |
#: inc/_bm/admin/page-seasons.php:1487
|
5381 |
msgid "Tu"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
+
#: core/lib/wpbc_all_translations1.php:7 inc/_bm/admin/page-seasons.php:1274
|
5385 |
#: inc/_bm/admin/page-seasons.php:1487
|
5386 |
msgid "We"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
+
#: core/lib/wpbc_all_translations1.php:8 inc/_bm/admin/page-seasons.php:1275
|
5390 |
#: inc/_bm/admin/page-seasons.php:1487
|
5391 |
msgid "Th"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: core/lib/wpbc_all_translations1.php:9 inc/_bm/admin/page-seasons.php:1276
|
5395 |
#: inc/_bm/admin/page-seasons.php:1487
|
5396 |
msgid "Fr"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
+
#: core/lib/wpbc_all_translations1.php:10 inc/_bm/admin/page-seasons.php:1277
|
5400 |
#: inc/_bm/admin/page-seasons.php:1487
|
5401 |
msgid "Sa"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
+
#: core/lib/wpbc_all_translations1.php:11 inc/_bm/admin/page-seasons.php:1278
|
5405 |
#: inc/_bm/admin/page-seasons.php:1487
|
5406 |
msgid "Su"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
+
#: core/lib/wpbc_all_translations1.php:12 inc/_bm/admin/page-seasons.php:1489
|
5410 |
msgid "Jan"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: core/lib/wpbc_all_translations1.php:13 inc/_bm/admin/page-seasons.php:1489
|
5414 |
msgid "Feb"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
+
#: core/lib/wpbc_all_translations1.php:14 inc/_bm/admin/page-seasons.php:1490
|
5418 |
msgid "Mar"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
+
#: core/lib/wpbc_all_translations1.php:15 inc/_bm/admin/page-seasons.php:1490
|
5422 |
msgid "Apr"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
+
#: core/lib/wpbc_all_translations1.php:16 inc/_bm/admin/page-seasons.php:1491
|
5426 |
msgid "Jun"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
+
#: core/lib/wpbc_all_translations1.php:17 inc/_bm/admin/page-seasons.php:1491
|
5430 |
msgid "Jul"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: core/lib/wpbc_all_translations1.php:18 inc/_bm/admin/page-seasons.php:1491
|
5434 |
msgid "Aug"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: core/lib/wpbc_all_translations1.php:19 inc/_bm/admin/page-seasons.php:1492
|
5438 |
msgid "Sep"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
+
#: core/lib/wpbc_all_translations1.php:20 inc/_bm/admin/page-seasons.php:1492
|
5442 |
msgid "Oct"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: core/lib/wpbc_all_translations1.php:21 inc/_bm/admin/page-seasons.php:1492
|
5446 |
msgid "Nov"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
+
#: core/lib/wpbc_all_translations1.php:22 inc/_bm/admin/page-seasons.php:1492
|
5450 |
msgid "Dec"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: core/lib/wpbc_all_translations1.php:23 inc/_bm/admin/page-seasons.php:1562
|
5454 |
#: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
|
5455 |
#: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
|
5456 |
msgid "No days"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: core/lib/wpbc_all_translations1.php:24 inc/_bm/admin/page-seasons.php:1564
|
5460 |
msgid "time"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: core/lib/wpbc_all_translations1.php:25 inc/_bm/admin/page-seasons.php:1582
|
5464 |
msgid "Every"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: core/lib/wpbc_all_translations1.php:26 inc/_bm/admin/page-seasons.php:1598
|
5468 |
msgid "Each day "
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: core/lib/wpbc_all_translations1.php:27 inc/_bm/admin/page-seasons.php:1600
|
5472 |
msgid "on each day "
|
5473 |
msgstr ""
|
5474 |
|
5475 |
+
#: core/lib/wpbc_all_translations1.php:28 inc/_bm/admin/page-seasons.php:1605
|
5476 |
msgid "On each "
|
5477 |
msgstr ""
|
5478 |
|
5479 |
+
#: core/lib/wpbc_all_translations1.php:29 inc/_bm/admin/page-seasons.php:1607
|
5480 |
msgid "on each "
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: core/lib/wpbc_all_translations1.php:30 inc/_bm/admin/page-seasons.php:1624
|
5484 |
msgid "of every month "
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: core/lib/wpbc_all_translations1.php:31 inc/_bm/admin/page-seasons.php:1628
|
5488 |
msgid "of"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: core/lib/wpbc_all_translations1.php:32 inc/_bm/biz_m.php:220
|
5492 |
msgid "for all days!"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: core/lib/wpbc_all_translations1.php:33 inc/_bm/biz_m.php:764
|
5496 |
msgid "Standard booking resource cost"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: core/lib/wpbc_all_translations1.php:34 inc/_bm/biz_m.php:765
|
5500 |
msgid "Total booking resource cost"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: core/lib/wpbc_all_translations1.php:35 inc/_bm/m-toolbar.php:298
|
5504 |
msgid "Delete selected booking form"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: core/lib/wpbc_all_translations1.php:36 inc/_bm/m-toolbar.php:302
|
5508 |
msgid "Do you really want to delete selected booking form ?"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: core/lib/wpbc_all_translations1.php:37 inc/_bm/m-toolbar.php:327 inc/_bm/m-toolbar.php:328
|
5512 |
msgid "Add New Custom Form"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: core/lib/wpbc_all_translations1.php:38 inc/_bm/m-toolbar.php:361
|
5516 |
msgid "Type the name of booking form"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: core/lib/wpbc_all_translations1.php:39 inc/_bm/m-toolbar.php:368
|
5520 |
msgid "Create"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: core/lib/wpbc_all_translations1.php:40 inc/_bm/m-toolbar.php:369
|
5524 |
msgid "Create new form"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: core/lib/wpbc_all_translations1.php:41 inc/_bm/m-toolbar.php:564
|
5528 |
msgid "There are no extended booking forms"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: core/lib/wpbc_all_translations1.php:42 inc/_bm/m-toolbar.php:608 inc/_bm/m-toolbar.php:610
|
5532 |
msgid "Create conditional days filter"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: core/lib/wpbc_all_translations1.php:43 inc/_bs/admin/activation-s.php:93
|
5536 |
#: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
|
5537 |
msgid "Apartment#1"
|
5538 |
msgstr ""
|
5539 |
|
5540 |
+
#: core/lib/wpbc_all_translations1.php:44 inc/_bs/admin/activation-s.php:94
|
5541 |
#: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
|
5542 |
msgid "Apartment#2"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: core/lib/wpbc_all_translations1.php:45 inc/_bs/admin/activation-s.php:95
|
5546 |
#: inc/_ps/admin/activation-p.php:48
|
5547 |
msgid "Apartment#3"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: core/lib/wpbc_all_translations1.php:46 inc/_bs/admin/api-settings-s.php:31
|
5551 |
msgid "Range days"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: core/lib/wpbc_all_translations1.php:47 inc/_bs/admin/api-settings-s.php:46
|
5555 |
#, php-format
|
5556 |
msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: core/lib/wpbc_all_translations1.php:48 inc/_bs/admin/api-settings-s.php:48
|
5560 |
#, php-format
|
5561 |
msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
+
#: core/lib/wpbc_all_translations1.php:49 inc/_bs/admin/api-settings-s.php:74
|
5565 |
#: inc/_bs/admin/api-settings-s.php:138
|
5566 |
msgid "Days selection number"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: core/lib/wpbc_all_translations1.php:50 inc/_bs/admin/api-settings-s.php:75
|
5570 |
#, php-format
|
5571 |
msgid "Type your %snumber of days for range selection%s"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: core/lib/wpbc_all_translations1.php:51 inc/_bs/admin/api-settings-s.php:83
|
5575 |
#: inc/_bs/admin/api-settings-s.php:211
|
5576 |
msgid "Specific day(s) of week"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: core/lib/wpbc_all_translations1.php:52 inc/_bs/admin/api-settings-s.php:84
|
5580 |
#: inc/_bs/admin/api-settings-s.php:215
|
5581 |
msgid "Any day of week"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
+
#: core/lib/wpbc_all_translations1.php:53 inc/_bs/admin/api-settings-s.php:90
|
5585 |
#: inc/_bs/admin/api-settings-s.php:223
|
5586 |
msgid "Start day of range"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
+
#: core/lib/wpbc_all_translations1.php:54 inc/_bs/admin/api-settings-s.php:119
|
5590 |
#: inc/_bs/admin/api-settings-s.php:252
|
5591 |
msgid "Select your start day of range selection at week"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: core/lib/wpbc_all_translations1.php:55 inc/_bs/admin/api-settings-s.php:152
|
5595 |
#: inc/_bs/admin/api-settings-s.php:157
|
5596 |
msgid "Min"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: core/lib/wpbc_all_translations1.php:56 inc/_bs/admin/api-settings-s.php:170
|
5600 |
#: inc/_bs/admin/api-settings-s.php:175
|
5601 |
msgid "Max"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: core/lib/wpbc_all_translations1.php:57 inc/_bs/admin/api-settings-s.php:187
|
5605 |
#, php-format
|
5606 |
msgid "Select your %sminimum and maximum number of days for range selection%s"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: core/lib/wpbc_all_translations1.php:58 inc/_bs/admin/api-settings-s.php:198
|
5610 |
msgid "Specific days selections"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: core/lib/wpbc_all_translations1.php:59 inc/_bs/admin/api-settings-s.php:200
|
5614 |
#, php-format
|
5615 |
msgid ""
|
5616 |
"Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
|
5618 |
"this: %s) or combination (example:%s, its the same like this: %s)"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
+
#: core/lib/wpbc_all_translations1.php:60 inc/_bs/admin/api-settings-s.php:281
|
5622 |
msgid "Use time selections as recurrent time slots"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
+
#: core/lib/wpbc_all_translations1.php:61 inc/_bs/admin/api-settings-s.php:282
|
5626 |
msgid ""
|
5627 |
"Check this box if you want to use recurrent time to reserve several days. This means that middle "
|
5628 |
"days will be partially booked by actual times, otherwise the time in the booking form will be "
|
5629 |
"used as check-in/check-out time for the first and last day of the reservation."
|
5630 |
msgstr ""
|
5631 |
|
5632 |
+
#: core/lib/wpbc_all_translations1.php:62 inc/_bs/admin/api-settings-s.php:315
|
5633 |
msgid "Check this option, to use check in/out time during booking process. "
|
5634 |
msgstr ""
|
5635 |
|
5636 |
+
#: core/lib/wpbc_all_translations1.php:63 inc/_bs/admin/api-settings-s.php:316
|
5637 |
#, php-format
|
5638 |
msgid "%s Important!%s This will overwrite any times selection in your booking form."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: core/lib/wpbc_all_translations1.php:64 inc/_bs/admin/api-settings-s.php:323
|
5642 |
msgid "Check-in time"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: core/lib/wpbc_all_translations1.php:65 inc/_bs/admin/api-settings-s.php:324
|
5646 |
#, php-format
|
5647 |
msgid "Type your %sCheck-in%s time of booking"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
+
#: core/lib/wpbc_all_translations1.php:66 inc/_bs/admin/api-settings-s.php:336
|
5651 |
msgid "Check-Out time"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: core/lib/wpbc_all_translations1.php:67 inc/_bs/admin/api-settings-s.php:337
|
5655 |
#, php-format
|
5656 |
msgid "Type your %sCheck-Out%s time of booking"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: core/lib/wpbc_all_translations1.php:68 inc/_bs/admin/api-settings-s.php:351
|
5660 |
msgid "Change over days as triangles"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: core/lib/wpbc_all_translations1.php:69 inc/_bs/admin/api-settings-s.php:352
|
5664 |
msgid "Check this option, to show change over days as triangles. "
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: core/lib/wpbc_all_translations1.php:70 inc/_bs/admin/api-settings-s.php:377
|
5668 |
msgid "Title of booked timeslot(s)"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: core/lib/wpbc_all_translations1.php:71 inc/_bs/admin/api-settings-s.php:378
|
5672 |
#, php-format
|
5673 |
msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: core/lib/wpbc_all_translations1.php:72 inc/_bs/admin/api-settings-s.php:418
|
5677 |
msgid "Time Format"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: core/lib/wpbc_all_translations1.php:73 inc/_bs/admin/api-settings-s.php:452
|
5681 |
#, php-format
|
5682 |
msgid ""
|
5683 |
"Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
+
#: core/lib/wpbc_all_translations1.php:74 inc/_bs/admin/api-settings-s.php:478
|
5687 |
msgid "Auto approve all new bookings"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
+
#: core/lib/wpbc_all_translations1.php:75 inc/_bs/admin/api-settings-s.php:479
|
5691 |
#, php-format
|
5692 |
msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: core/lib/wpbc_all_translations1.php:76 inc/_bs/admin/api-settings-s.php:517
|
5696 |
#, php-format
|
5697 |
msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
|
5698 |
msgstr ""
|
5699 |
|
5700 |
+
#: core/lib/wpbc_all_translations1.php:77 inc/_bs/admin/api-settings-s.php:541
|
5701 |
msgid "Cancel bookings older"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: core/lib/wpbc_all_translations1.php:78 inc/_bs/admin/api-settings-s.php:542
|
5705 |
msgid "Cancel only pending, unpaid bookings, which are older than this selection."
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: core/lib/wpbc_all_translations1.php:79 inc/_bs/admin/api-settings-s.php:550
|
5709 |
msgid "Cancellation email sent"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: core/lib/wpbc_all_translations1.php:80 inc/_bs/admin/api-settings-s.php:551
|
5713 |
#, php-format
|
5714 |
msgid "Check this box to %ssend%s cancellation email for this resource."
|
5715 |
msgstr ""
|
5716 |
|
5717 |
+
#: core/lib/wpbc_all_translations1.php:81 inc/_bs/admin/api-settings-s.php:559
|
5718 |
#: inc/_bs/admin/api-settings-s.php:560
|
5719 |
msgid "Reason for cancellation"
|
5720 |
msgstr ""
|
5721 |
|
5722 |
+
#: core/lib/wpbc_all_translations1.php:82 inc/_bs/admin/api-settings-s.php:561
|
5723 |
#, php-format
|
5724 |
msgid "Type the reason for %scancellation%s for the email template."
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: core/lib/wpbc_all_translations1.php:83 inc/_bs/admin/page-email-payment.php:560
|
5728 |
msgid "Payment request"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: core/lib/wpbc_all_translations1.php:84 inc/_bs/admin/page-email-payment.php:562
|
5732 |
msgid "Customization of email template, which is sending to Visitor after payment request"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: core/lib/wpbc_all_translations1.php:85
|
5736 |
msgid "Email with Payment Request which is sending to Visitor."
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: core/lib/wpbc_all_translations1.php:86 core/wpbc-js.php:136
|
5740 |
msgid "Error! Please reset your check-in/check-out dates above."
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: core/lib/wpbc_all_translations1.php:87 core/wpbc-js.php:137
|
5744 |
msgid ""
|
5745 |
"Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
|
5746 |
"another date or time."
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: core/lib/wpbc_all_translations1.php:88 core/wpbc-js.php:138
|
5750 |
msgid ""
|
5751 |
"End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
|
5752 |
"also be earlier that the start time, if only 1 day was selected! Please choose another date or "
|
5753 |
"time."
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: core/lib/wpbc_all_translations1.php:89 core/wpbc-js.php:139 core/wpbc-js.php:140
|
5757 |
msgid "The time(s) may be booked, or already in the past!"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: core/lib/wpbc_all_translations1.php:90 inc/_bs/biz_s.php:408
|
5761 |
msgid "Cost saved successfully"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: core/lib/wpbc_all_translations1.php:91 inc/_bs/biz_s.php:415
|
5765 |
msgid "Cost is not correct. It must be greater than 0"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
+
#: core/lib/wpbc_all_translations1.php:92 inc/_bs/biz_s.php:600
|
5769 |
msgid "Request has been sent"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
+
#: core/lib/wpbc_all_translations1.php:93 inc/_bs/biz_s.php:607
|
5773 |
msgid "Request has failed"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
+
#: core/lib/wpbc_all_translations1.php:94 inc/_bs/biz_s.php:638
|
5777 |
msgid "The payment status is changed successfully"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
+
#: core/lib/wpbc_all_translations1.php:95 inc/_bs/biz_s.php:645
|
5781 |
msgid "The changing of payment status is failed"
|
5782 |
msgstr ""
|
5783 |
|
5784 |
+
#: core/lib/wpbc_all_translations1.php:96 inc/_bs/biz_s.php:1043
|
5785 |
msgid "deposit"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
+
#: core/lib/wpbc_all_translations1.php:97 inc/_bs/biz_s.php:1044
|
5789 |
msgid "Total cost"
|
5790 |
msgstr ""
|
5791 |
|
5792 |
+
#: core/lib/wpbc_all_translations1.php:98 inc/_bs/biz_s.php:1045
|
5793 |
msgid "balance"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: core/lib/wpbc_all_translations1.php:99 inc/_bs/lib_s.php:41 inc/_bs/lib_s.php:72
|
5797 |
#: inc/_bs/s-toolbar.php:94
|
5798 |
msgid "Payment status"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
+
#: core/lib/wpbc_all_translations1.php:100 inc/_bs/lib_s.php:45
|
5802 |
msgid "Any Status"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
+
#: core/lib/wpbc_all_translations1.php:101 inc/_bs/lib_s.php:48
|
5806 |
msgid "Unknown Status"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
+
#: core/lib/wpbc_all_translations1.php:102 inc/_bs/lib_s.php:49 inc/_bs/lib_s.php:324
|
5810 |
msgid "Not Completed"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
+
#: core/lib/wpbc_all_translations1.php:103 inc/_bs/lib_s.php:50 inc/_bs/lib_s.php:313
|
5814 |
#: inc/_bs/lib_s.php:333
|
5815 |
msgid "Failed"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
+
#: core/lib/wpbc_all_translations1.php:104 inc/_bs/lib_s.php:140
|
5819 |
msgid "min"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: core/lib/wpbc_all_translations1.php:105 inc/_bs/lib_s.php:140
|
5823 |
msgid "max"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
+
#: core/lib/wpbc_all_translations1.php:106 inc/_bs/lib_s.php:268 inc/_bs/lib_s.php:308
|
5827 |
#: inc/_bs/lib_s.php:326
|
5828 |
msgid "Completed"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
+
#: core/lib/wpbc_all_translations1.php:107 inc/_bs/lib_s.php:309 inc/_bs/lib_s.php:329
|
5832 |
msgid "In-Progress"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: core/lib/wpbc_all_translations1.php:108 inc/_bs/lib_s.php:311 inc/_bs/lib_s.php:346
|
5836 |
msgid "Partially paid"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
+
#: core/lib/wpbc_all_translations1.php:109 inc/_bs/lib_s.php:312 inc/_bs/lib_s.php:347
|
5840 |
msgid "Cancelled"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
+
#: core/lib/wpbc_all_translations1.php:110 inc/_bs/lib_s.php:314 inc/_bs/lib_s.php:335
|
5844 |
msgid "Refunded"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
+
#: core/lib/wpbc_all_translations1.php:111 inc/_bs/lib_s.php:315 inc/_bs/lib_s.php:348
|
5848 |
msgid "Fraud"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: core/lib/wpbc_all_translations1.php:112 inc/_bs/lib_s.php:322
|
5852 |
msgid "!Paid OK"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: core/lib/wpbc_all_translations1.php:113 inc/_bs/lib_s.php:323
|
5856 |
msgid "Unknown status"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: core/lib/wpbc_all_translations1.php:114 inc/_bs/lib_s.php:328
|
5860 |
msgid "Processed"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: core/lib/wpbc_all_translations1.php:115 inc/_bs/lib_s.php:330
|
5864 |
msgid "Canceled_Reversal"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: core/lib/wpbc_all_translations1.php:116 inc/_bs/lib_s.php:331
|
5868 |
msgid "Denied"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: core/lib/wpbc_all_translations1.php:117 inc/_bs/lib_s.php:332
|
5872 |
msgid "Expired"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: core/lib/wpbc_all_translations1.php:118 inc/_bs/lib_s.php:334
|
5876 |
msgid "Partially_Refunded"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: core/lib/wpbc_all_translations1.php:119 inc/_bs/lib_s.php:336
|
5880 |
msgid "Reversed"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: core/lib/wpbc_all_translations1.php:120 inc/_bs/lib_s.php:337
|
5884 |
msgid "Voided"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: core/lib/wpbc_all_translations1.php:121 inc/_bs/lib_s.php:340
|
5888 |
msgid "Not authed"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: core/lib/wpbc_all_translations1.php:122 inc/_bs/lib_s.php:341
|
5892 |
msgid "Malformed"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: core/lib/wpbc_all_translations1.php:123 inc/_bs/lib_s.php:342
|
5896 |
msgid "Invalid"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: core/lib/wpbc_all_translations1.php:124 inc/_bs/lib_s.php:343
|
5900 |
msgid "Abort"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: core/lib/wpbc_all_translations1.php:125 inc/_bs/lib_s.php:344
|
5904 |
msgid "Rejected"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: core/lib/wpbc_all_translations1.php:126 inc/_bs/lib_s.php:349
|
5908 |
msgid "Suspended"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: core/lib/wpbc_all_translations1.php:127 inc/_bs/s-toolbar.php:68
|
5912 |
msgid "Send payment request to visitor"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: core/lib/wpbc_all_translations1.php:128 core/timeline/v2/wpbc-class-timeline_v2.php:2647
|
5916 |
#: inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:131 inc/_ps/p-toolbar.php:507
|
5917 |
msgid "Print"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
#: core/lib/wpbc_all_translations1.php:129 inc/_bs/s-toolbar.php:136
|
5921 |
msgid "Save cost"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: core/lib/wpbc_all_translations1.php:130 inc/_bs/s-toolbar.php:173
|
5925 |
msgid "Change status"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: core/lib/wpbc_all_translations1.php:131 inc/_bs/s-toolbar.php:196
|
5929 |
msgid "Send payment request to customer"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: core/lib/wpbc_all_translations1.php:132 inc/_bs/s-toolbar.php:200
|
5933 |
#, php-format
|
5934 |
msgid "Type your %sreason for payment%s request"
|
5935 |
msgstr ""
|
5936 |
|
5937 |
+
#: core/lib/wpbc_all_translations1.php:133 inc/_bs/s-toolbar.php:208
|
5938 |
msgid "Send Request"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
+
#: core/lib/wpbc_all_translations1.php:134 inc/_bs/s-toolbar.php:230
|
5942 |
msgid "Auto-fill form"
|
5943 |
msgstr ""
|
5944 |
|
5945 |
+
#: core/lib/wpbc_all_translations1.php:135 inc/_mu/admin/activation-u.php:84
|
5946 |
msgid "Suite"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
+
#: core/lib/wpbc_all_translations1.php:136 inc/_mu/admin/api-settings-u.php:91
|
5950 |
#: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
|
5951 |
msgid "User"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
+
#: core/lib/wpbc_all_translations1.php:137 inc/_mu/admin/api-settings-u.php:437
|
5955 |
#: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
|
5956 |
#: inc/_mu/admin/page-users.php:599
|
5957 |
msgid "Super Admin"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: core/lib/wpbc_all_translations1.php:138 inc/_mu/admin/api-settings-u.php:441
|
5961 |
#: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
|
5962 |
#: inc/_mu/admin/page-users.php:607
|
5963 |
msgid "Regular User"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
+
#: core/lib/wpbc_all_translations1.php:139 inc/_mu/admin/api-settings-u.php:446
|
5967 |
msgid "Inactive User"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: core/lib/wpbc_all_translations1.php:140 inc/_mu/admin/page-users.php:43
|
5971 |
#: inc/_mu/admin/page-users.php:433
|
5972 |
msgid "Users"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
+
#: core/lib/wpbc_all_translations1.php:141 inc/_mu/admin/page-users.php:44
|
5976 |
msgid "Manage Users"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: core/lib/wpbc_all_translations1.php:142 inc/_mu/admin/page-users.php:45
|
5980 |
msgid "Users Settings"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: core/lib/wpbc_all_translations1.php:143 inc/_mu/admin/page-users.php:209
|
5984 |
#: inc/_mu/multiuser.php:649
|
5985 |
msgid "User is Activated"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: core/lib/wpbc_all_translations1.php:144 inc/_mu/admin/page-users.php:237
|
5989 |
#: inc/_mu/multiuser.php:699
|
5990 |
msgid "User is Deactivated"
|
5991 |
msgstr ""
|
5992 |
|
5993 |
+
#: core/lib/wpbc_all_translations1.php:145 inc/_mu/admin/page-users.php:441
|
5994 |
msgid "User Role"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
+
#: core/lib/wpbc_all_translations1.php:146 inc/_mu/admin/page-users.php:452
|
5998 |
#: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
|
5999 |
msgid "Set user as"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
+
#: core/lib/wpbc_all_translations1.php:147 inc/_mu/admin/page-users.php:548
|
6003 |
msgid "Unlimited"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
+
#: core/lib/wpbc_all_translations1.php:148 inc/_mu/admin/page-users.php:560
|
6007 |
#: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
|
6008 |
#: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
|
6009 |
#: inc/_mu/admin/page-users.php:602
|
6010 |
msgid "Do you really want"
|
6011 |
msgstr ""
|
6012 |
|
6013 |
+
#: core/lib/wpbc_all_translations1.php:149 inc/_mu/admin/page-users.php:561
|
6014 |
msgid "make user active"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
+
#: core/lib/wpbc_all_translations1.php:150 inc/_mu/admin/page-users.php:565
|
6018 |
msgid "Activate"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
+
#: core/lib/wpbc_all_translations1.php:151 inc/_mu/admin/page-users.php:569
|
6022 |
msgid "make user inactive"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
+
#: core/lib/wpbc_all_translations1.php:152 inc/_mu/admin/page-users.php:572
|
6026 |
msgid "Deactivate"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
+
#: core/lib/wpbc_all_translations1.php:153 inc/_mu/admin/page-users.php:575
|
6030 |
msgid "delete configuration"
|
6031 |
msgstr ""
|
6032 |
|
6033 |
+
#: core/lib/wpbc_all_translations1.php:154 inc/_mu/admin/page-users.php:579
|
6034 |
msgid "Delete settings"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
+
#: core/lib/wpbc_all_translations1.php:155 inc/_mu/admin/page-users.php:582
|
6038 |
msgid "delete all booking data"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
+
#: core/lib/wpbc_all_translations1.php:156 inc/_mu/admin/page-users.php:586
|
6042 |
msgid "Delete data"
|
6043 |
msgstr ""
|
6044 |
|
6045 |
+
#: core/lib/wpbc_all_translations1.php:157 inc/_mu/multiuser.php:635
|
6046 |
msgid "Work days"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: core/lib/wpbc_all_translations1.php:158 inc/_mu/multiuser.php:768
|
6050 |
#, php-format
|
6051 |
msgid ""
|
6052 |
"%sYou do not have permissions for this page.%s Your account is not active, please contact "
|
6053 |
"administrator.%s"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
+
#: core/lib/wpbc_all_translations1.php:159 inc/_mu/multiuser.php:807
|
6057 |
#, php-format
|
6058 |
msgid "%sYou do not have permissions for this booking resources.%s"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
+
#: core/lib/wpbc_all_translations1.php:160 inc/_mu/multiuser.php:813
|
6062 |
#, php-format
|
6063 |
msgid "%sNo this booking resources.%s"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
+
#: core/lib/wpbc_all_translations1.php:161 inc/_ps/admin/activation-p.php:52
|
6067 |
msgid "Please, reserve an apartment with fresh flowers."
|
6068 |
msgstr ""
|
6069 |
|
6070 |
+
#: core/lib/wpbc_all_translations1.php:162 inc/_ps/admin/api-settings-p.php:56
|
6071 |
msgid "Default booking resource"
|
6072 |
msgstr ""
|
6073 |
|
6074 |
+
#: core/lib/wpbc_all_translations1.php:163 inc/_ps/admin/api-settings-p.php:57
|
6075 |
msgid "Select your default booking resource."
|
6076 |
msgstr ""
|
6077 |
|
6078 |
+
#: core/lib/wpbc_all_translations1.php:164 inc/_ps/admin/api-settings-p.php:70
|
6079 |
msgid "Resources number per page"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: core/lib/wpbc_all_translations1.php:165 inc/_ps/admin/api-settings-p.php:71
|
6083 |
msgid "Select number of booking resources (single or parent) per page at Resource menu page"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
+
#: core/lib/wpbc_all_translations1.php:166 inc/_ps/admin/api-settings-p.php:183
|
6087 |
#: inc/_ps/admin/api-settings-p.php:197
|
6088 |
msgid "Booking title"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
+
#: core/lib/wpbc_all_translations1.php:167 inc/_ps/admin/api-settings-p.php:183
|
6092 |
msgid "admin panel"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
+
#: core/lib/wpbc_all_translations1.php:168 inc/_ps/admin/api-settings-p.php:184
|
6096 |
#, php-format
|
6097 |
msgid ""
|
6098 |
"Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
|
6099 |
"the shortcodes from the bottom form of Settings Fields page)."
|
6100 |
msgstr ""
|
6101 |
|
6102 |
+
#: core/lib/wpbc_all_translations1.php:169
|
6103 |
msgid "front panel"
|
6104 |
msgstr ""
|
6105 |
|
6106 |
+
#: core/lib/wpbc_all_translations1.php:170 inc/_ps/admin/api-settings-p.php:198
|
6107 |
#, php-format
|
6108 |
msgid ""
|
6109 |
"Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
|
6110 |
"from the bottom form of Settings Fields page."
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: core/lib/wpbc_all_translations1.php:171 inc/_ps/admin/api-settings-p.php:206
|
6114 |
msgid "Booking details in popover"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: core/lib/wpbc_all_translations1.php:172 inc/_ps/admin/api-settings-p.php:207
|
6118 |
#, php-format
|
6119 |
msgid ""
|
6120 |
"Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
|
6121 |
"side."
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: core/lib/wpbc_all_translations1.php:173 inc/_ps/admin/api-settings-p.php:228
|
6125 |
msgid "semicolon"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
+
#: core/lib/wpbc_all_translations1.php:174 inc/_ps/admin/api-settings-p.php:229
|
6129 |
msgid "comma"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
#: core/lib/wpbc_all_translations1.php:175 inc/_ps/admin/api-settings-p.php:234
|
6133 |
msgid "CSV data separator"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
+
#: core/lib/wpbc_all_translations1.php:176 inc/_ps/admin/api-settings-p.php:235
|
6137 |
msgid "Select separator of data for export bookings to CSV."
|
6138 |
msgstr ""
|
6139 |
|
6140 |
+
#: core/lib/wpbc_all_translations1.php:177 inc/_ps/admin/api-settings-p.php:327
|
6141 |
+
#: js/wpbc-gutenberg.js:1164
|
6142 |
msgid "URL to edit bookings"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
+
#: core/lib/wpbc_all_translations1.php:178 inc/_ps/admin/api-settings-p.php:328
|
6146 |
#, php-format
|
6147 |
msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
|
6148 |
msgstr ""
|
6149 |
|
6150 |
+
#: core/lib/wpbc_all_translations1.php:179 inc/_ps/admin/api-settings-p.php:352
|
6151 |
msgid "Change hash after the booking is approved"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
+
#: core/lib/wpbc_all_translations1.php:180 inc/_ps/admin/api-settings-p.php:353
|
6155 |
msgid ""
|
6156 |
"Check this box if you want to change the booking hash after approval. When checked, visitor will "
|
6157 |
"not be able to edit or cancel the booking."
|
6158 |
msgstr ""
|
6159 |
|
6160 |
+
#: core/lib/wpbc_all_translations1.php:181 inc/_ps/admin/page-email-edit.php:556
|
6161 |
msgid "Modified"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
+
#: core/lib/wpbc_all_translations1.php:182
|
6165 |
msgid "Customization of email template, which is sending after modification of booking"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
+
#: core/lib/wpbc_all_translations1.php:183
|
6169 |
msgid "Email is sending to Visitor after Editing of booking."
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: core/lib/wpbc_all_translations1.php:184 inc/_ps/admin/page-resources.php:39
|
6173 |
msgid "Customizaton of booking resources"
|
6174 |
msgstr ""
|
6175 |
|
6176 |
+
#: core/lib/wpbc_all_translations1.php:185 inc/_ps/admin/page-settings-form.php:137
|
6177 |
#: inc/_ps/admin/page-settings-form.php:157
|
6178 |
msgid "Form fields"
|
6179 |
msgstr ""
|
6180 |
|
6181 |
+
#: core/lib/wpbc_all_translations1.php:186 inc/_ps/admin/page-settings-form.php:138
|
6182 |
msgid "Content of Booking Fields"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
+
#: core/lib/wpbc_all_translations1.php:187 inc/_ps/admin/page-settings-form.php:164
|
6186 |
msgid "Generate tag"
|
6187 |
msgstr ""
|
6188 |
|
6189 |
+
#: core/lib/wpbc_all_translations1.php:188 inc/_ps/admin/page-settings-form.php:173
|
6190 |
#, php-format
|
6191 |
msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
|
6192 |
msgstr ""
|
6193 |
|
6194 |
+
#: core/lib/wpbc_all_translations1.php:189 inc/_ps/admin/page-settings-form.php:312
|
6195 |
msgid "Form Template"
|
6196 |
msgstr ""
|
6197 |
|
6198 |
+
#: core/lib/wpbc_all_translations1.php:190 inc/_ps/admin/page-settings-form.php:325
|
6199 |
msgid "Standard Templates"
|
6200 |
msgstr ""
|
6201 |
|
6202 |
+
#: core/lib/wpbc_all_translations1.php:191 inc/_ps/admin/page-settings-form.php:338
|
6203 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111
|
6204 |
msgid "Columns"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
+
#: core/lib/wpbc_all_translations1.php:192 inc/_ps/admin/page-settings-form.php:410
|
6208 |
msgid "Advanced Templates"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
+
#: core/lib/wpbc_all_translations1.php:193 inc/_ps/admin/page-settings-form.php:413
|
6212 |
msgid "Wizard (several steps)"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
+
#: core/lib/wpbc_all_translations1.php:194 inc/_ps/admin/page-settings-form.php:426
|
6216 |
msgid "Time slots for different weekdays"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
+
#: core/lib/wpbc_all_translations1.php:195 inc/_ps/admin/page-settings-form.php:436
|
6220 |
#: inc/_ps/admin/page-settings-form.php:447
|
6221 |
msgid "Hints"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
+
#: core/lib/wpbc_all_translations1.php:196 inc/_ps/admin/page-settings-form.php:469
|
6225 |
msgid "Reset Form"
|
6226 |
msgstr ""
|
6227 |
|
6228 |
+
#: core/lib/wpbc_all_translations1.php:197 inc/_ps/admin/page-settings-form.php:522
|
6229 |
msgid "Both"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
+
#: core/lib/wpbc_all_translations1.php:198 inc/_ps/admin/page-settings-form.php:523
|
6233 |
msgid "Reset Booking Form and Content of Booking Fields Form"
|
6234 |
msgstr ""
|
6235 |
|
6236 |
+
#: core/lib/wpbc_all_translations1.php:199 inc/_ps/admin/page-settings-form.php:674
|
6237 |
#: inc/gateways/page-gateways.php:1069
|
6238 |
#, php-format
|
6239 |
msgid "%s - inserting data from fields of booking form"
|
6240 |
msgstr ""
|
6241 |
|
6242 |
+
#: core/lib/wpbc_all_translations1.php:200 inc/_ps/admin/page-settings-form.php:675
|
6243 |
#, php-format
|
6244 |
msgid "%s - inserting new line"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: core/lib/wpbc_all_translations1.php:201 inc/_ps/admin/page-settings-form.php:679
|
6248 |
#: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:1124
|
6249 |
#, php-format
|
6250 |
msgid ""
|
6252 |
"that all \"open\" tags (like %s) are closed (like this %s)."
|
6253 |
msgstr ""
|
6254 |
|
6255 |
+
#: core/lib/wpbc_all_translations1.php:202 inc/_ps/admin/page-settings-up.php:39
|
6256 |
msgid "Upgrade to higher version"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
+
#: core/lib/wpbc_all_translations1.php:203 inc/_ps/class/wpbc-settings-table.php:260
|
6260 |
msgid "No results found."
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: core/lib/wpbc_all_translations1.php:204 inc/_ps/form/class-wpbc-field-help-checkbox.php:90
|
6264 |
#, php-format
|
6265 |
msgid "Wrap each item with %s tag"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
+
#: core/lib/wpbc_all_translations1.php:205 inc/_ps/form/class-wpbc-field-help-checkbox.php:104
|
6269 |
msgid "Put a label before field"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
+
#: core/lib/wpbc_all_translations1.php:206 inc/_ps/form/class-wpbc-field-help-checkbox.php:118
|
6273 |
#, php-format
|
6274 |
msgid "Make it %sexclusive%s"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
+
#: core/lib/wpbc_all_translations1.php:207 inc/_ps/form/class-wpbc-field-help-checkbox.php:128
|
6278 |
#: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
|
6279 |
#: inc/_ps/form/class-wpbc-field-help-text.php:194
|
6280 |
msgid "Default value"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
+
#: core/lib/wpbc_all_translations1.php:208 inc/_ps/form/class-wpbc-field-help-checkbox.php:136
|
6284 |
#, php-format
|
6285 |
msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
+
#: core/lib/wpbc_all_translations1.php:209 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
|
6289 |
#: inc/_ps/form/class-wpbc-field-help-select.php:111
|
6290 |
#: inc/_ps/form/class-wpbc-field-help-text.php:177
|
6291 |
msgid "required"
|
6292 |
msgstr ""
|
6293 |
|
6294 |
+
#: core/lib/wpbc_all_translations1.php:210 inc/_ps/form/class-wpbc-field-help-checkbox.php:164
|
6295 |
#: inc/_ps/form/class-wpbc-field-help-select.php:129
|
6296 |
msgid "Titles of options"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
+
#: core/lib/wpbc_all_translations1.php:211 inc/_ps/form/class-wpbc-field-help-radio.php:93
|
6300 |
#: inc/_ps/form/class-wpbc-field-help-select.php:86
|
6301 |
#, php-format
|
6302 |
msgid "One Value from %sOptions%s list"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
+
#: core/lib/wpbc_all_translations1.php:212 inc/_ps/form/class-wpbc-field-help-select.php:101
|
6306 |
#, php-format
|
6307 |
msgid "Allow %smultiple%s selections"
|
6308 |
msgstr ""
|
6309 |
|
6310 |
+
#: core/lib/wpbc_all_translations1.php:213 inc/_ps/form/class-wpbc-field-help-text.php:167
|
6311 |
#, php-format
|
6312 |
msgid "Set as %srequired%s"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
+
#: core/lib/wpbc_all_translations1.php:214 inc/_ps/form/class-wpbc-field-help-text.php:228
|
6316 |
msgid "Placeholder"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
+
#: core/lib/wpbc_all_translations1.php:215 inc/_ps/form/class-wpbc-field-help-text.php:247
|
6320 |
msgid "Class"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
+
#: core/lib/wpbc_all_translations1.php:216 inc/_ps/form/class-wpbc-field-help-text.php:264
|
6324 |
msgid "Size"
|
6325 |
msgstr ""
|
6326 |
|
6327 |
+
#: core/lib/wpbc_all_translations1.php:217 inc/_ps/form/class-wpbc-field-help-text.php:281
|
6328 |
msgid "Maxlength"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
+
#: core/lib/wpbc_all_translations1.php:218 inc/_ps/form/class-wpbc-field-help-text.php:298
|
6332 |
msgid "Copy and paste this shortcode into the form at left side"
|
6333 |
msgstr ""
|
6334 |
|
6335 |
+
#: core/lib/wpbc_all_translations1.php:219 inc/_ps/form/class-wpbc-field-help-text.php:313
|
6336 |
#, php-format
|
6337 |
msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
+
#: core/lib/wpbc_all_translations1.php:220 inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
6341 |
msgid "Rows"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
+
#: core/lib/wpbc_all_translations1.php:221 inc/_ps/form/class-wpbc-form-help.php:86
|
6345 |
msgid "General Information"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
+
#: core/lib/wpbc_all_translations1.php:222 inc/_ps/form/class-wpbc-form-help.php:109
|
6349 |
msgid "Required Fields in Booking Form"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
+
#: core/lib/wpbc_all_translations1.php:223 inc/_ps/form/class-wpbc-form-help.php:117
|
6353 |
#, php-format
|
6354 |
msgid "You must to have this shortcode:%s in the form."
|
6355 |
msgstr ""
|
6356 |
|
6357 |
+
#: core/lib/wpbc_all_translations1.php:224 inc/_ps/form/class-wpbc-form-help.php:119
|
6358 |
msgid ""
|
6359 |
"You can insert several calendars of different resources into the form allowing you to book "
|
6360 |
"several resources during one booking process."
|
6361 |
msgstr ""
|
6362 |
|
6363 |
+
#: core/lib/wpbc_all_translations1.php:225 inc/_ps/form/class-wpbc-form-help.php:120
|
6364 |
#, php-format
|
6365 |
msgid "Example: %s."
|
6366 |
msgstr ""
|
6367 |
|
6368 |
+
#: core/lib/wpbc_all_translations1.php:226 inc/_ps/form/class-wpbc-form-help.php:121
|
6369 |
#, php-format
|
6370 |
msgid ""
|
6371 |
"where %s – default calendar %s (you can select desired resource of calendar by inserting "
|
6372 |
"shortcode into page)%s"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
+
#: core/lib/wpbc_all_translations1.php:227 inc/_ps/form/class-wpbc-form-help.php:122
|
6376 |
#: inc/_ps/form/class-wpbc-form-help.php:123
|
6377 |
#, php-format
|
6378 |
msgid "%s – calendar of booking resource with %s"
|
6379 |
msgstr ""
|
6380 |
|
6381 |
+
#: core/lib/wpbc_all_translations1.php:228 inc/_ps/form/class-wpbc-form-help.php:124
|
6382 |
#, php-format
|
6383 |
msgid "Please check more about this feature %shere%s."
|
6384 |
msgstr ""
|
6385 |
|
6386 |
+
#: core/lib/wpbc_all_translations1.php:229 inc/_ps/form/class-wpbc-form-help.php:126
|
6387 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
|
6388 |
#: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
|
6389 |
#: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
|
6393 |
msgid "You can %suse this shortcode only once%s in the form."
|
6394 |
msgstr ""
|
6395 |
|
6396 |
+
#: core/lib/wpbc_all_translations1.php:230 inc/_ps/form/class-wpbc-form-help.php:135
|
6397 |
msgid "Email Field"
|
6398 |
msgstr ""
|
6399 |
|
6400 |
+
#: core/lib/wpbc_all_translations1.php:231 inc/_ps/form/class-wpbc-form-help.php:136
|
6401 |
#, php-format
|
6402 |
msgid "You must have this shortcode:%s in the booking form."
|
6403 |
msgstr ""
|
6404 |
|
6405 |
+
#: core/lib/wpbc_all_translations1.php:232 inc/_ps/form/class-wpbc-form-help.php:136
|
6406 |
msgid "This is the primary email field, which is used for sending emails to visitors."
|
6407 |
msgstr ""
|
6408 |
|
6409 |
+
#: core/lib/wpbc_all_translations1.php:233 inc/_ps/form/class-wpbc-form-help.php:163
|
6410 |
msgid "Drop Down"
|
6411 |
msgstr ""
|
6412 |
|
6413 |
+
#: core/lib/wpbc_all_translations1.php:234 inc/_ps/form/class-wpbc-form-help.php:175
|
6414 |
msgid "Checkbox(es)"
|
6415 |
msgstr ""
|
6416 |
|
6417 |
+
#: core/lib/wpbc_all_translations1.php:235 inc/_ps/form/class-wpbc-form-help.php:182
|
6418 |
msgid "Radio Button(s)"
|
6419 |
msgstr ""
|
6420 |
|
6421 |
+
#: core/lib/wpbc_all_translations1.php:236 inc/_ps/form/class-wpbc-form-help.php:196
|
6422 |
#, php-format
|
6423 |
msgid "Insert %s shortcode to prevent SPAM bookings."
|
6424 |
msgstr ""
|
6425 |
|
6426 |
+
#: core/lib/wpbc_all_translations1.php:237 inc/_ps/form/class-wpbc-form-help.php:206
|
6427 |
msgid "Submit Button"
|
6428 |
msgstr ""
|
6429 |
|
6430 |
+
#: core/lib/wpbc_all_translations1.php:238 inc/_ps/form/class-wpbc-form-help.php:214
|
6431 |
msgid "Times Fields"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
+
#: core/lib/wpbc_all_translations1.php:239 inc/_ps/form/class-wpbc-form-help.php:220
|
6435 |
msgid "Time Slot List"
|
6436 |
msgstr ""
|
6437 |
|
6438 |
+
#: core/lib/wpbc_all_translations1.php:240 inc/_ps/form/class-wpbc-form-help.php:222
|
6439 |
#: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
|
6440 |
#: inc/_ps/form/class-wpbc-form-help.php:379
|
6441 |
#, php-format
|
6442 |
msgid "Select the %s using the predefined %sTime List%s."
|
6443 |
msgstr ""
|
6444 |
|
6445 |
+
#: core/lib/wpbc_all_translations1.php:241 inc/_ps/form/class-wpbc-form-help.php:222
|
6446 |
msgid "Time Slot"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: core/lib/wpbc_all_translations1.php:242 inc/_ps/form/class-wpbc-form-help.php:223
|
6450 |
#, php-format
|
6451 |
msgid ""
|
6452 |
"Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
|
6453 |
"slots, this time field will %sdisable booked times slots%s (set them as grayed)."
|
6454 |
msgstr ""
|
6455 |
|
6456 |
+
#: core/lib/wpbc_all_translations1.php:243 inc/_ps/form/class-wpbc-form-help.php:224
|
6457 |
#, php-format
|
6458 |
msgid "It works only in %ssingle day selection%s mode."
|
6459 |
msgstr ""
|
6460 |
|
6461 |
+
#: core/lib/wpbc_all_translations1.php:244 inc/_ps/form/class-wpbc-form-help.php:225
|
6462 |
msgid ""
|
6463 |
"Also some early versions of the IE do not support disabling of the options in the selectboxes."
|
6464 |
msgstr ""
|
6465 |
|
6466 |
+
#: core/lib/wpbc_all_translations1.php:245 inc/_ps/form/class-wpbc-form-help.php:226
|
6467 |
msgid ""
|
6468 |
"Even if visitor selects the booked timeslot, system will not allow them to make the booking."
|
6469 |
msgstr ""
|
6470 |
|
6471 |
+
#: core/lib/wpbc_all_translations1.php:246 inc/_ps/form/class-wpbc-form-help.php:229
|
6472 |
#: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
|
6473 |
#, php-format
|
6474 |
msgid ""
|
6476 |
"Time)%s only."
|
6477 |
msgstr ""
|
6478 |
|
6479 |
+
#: core/lib/wpbc_all_translations1.php:247 inc/_ps/form/class-wpbc-form-help.php:231
|
6480 |
#, php-format
|
6481 |
msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: core/lib/wpbc_all_translations1.php:248 inc/_ps/form/class-wpbc-form-help.php:273
|
6485 |
msgid "Start Time - Text field"
|
6486 |
msgstr ""
|
6487 |
|
6488 |
+
#: core/lib/wpbc_all_translations1.php:249 inc/_ps/form/class-wpbc-form-help.php:275
|
6489 |
#: inc/_ps/form/class-wpbc-form-help.php:288
|
6490 |
#, php-format
|
6491 |
msgid "Enter %s in text field."
|
6492 |
msgstr ""
|
6493 |
|
6494 |
+
#: core/lib/wpbc_all_translations1.php:250 inc/_ps/admin/api-settings-p.php:109
|
6495 |
#: inc/_ps/admin/api-settings-p.php:115 inc/_ps/form/class-wpbc-form-help.php:275
|
6496 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
|
6497 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6498 |
msgid "Start Time"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
+
#: core/lib/wpbc_all_translations1.php:251 inc/_ps/form/class-wpbc-form-help.php:277
|
6502 |
#: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
|
6503 |
#, php-format
|
6504 |
msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
|
6505 |
msgstr ""
|
6506 |
|
6507 |
+
#: core/lib/wpbc_all_translations1.php:252 inc/_ps/form/class-wpbc-form-help.php:279
|
6508 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6509 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6510 |
#, php-format
|
6511 |
msgid "You can also use the %s in the form."
|
6512 |
msgstr ""
|
6513 |
|
6514 |
+
#: core/lib/wpbc_all_translations1.php:253 inc/_ps/admin/api-settings-p.php:128
|
6515 |
#: inc/_ps/admin/api-settings-p.php:134 inc/_ps/form/class-wpbc-form-help.php:279
|
6516 |
#: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
|
6517 |
#: inc/_ps/form/class-wpbc-form-help.php:340
|
6518 |
msgid "End Time"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
+
#: core/lib/wpbc_all_translations1.php:254 inc/_ps/form/class-wpbc-form-help.php:279
|
6522 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6523 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
|
6524 |
msgid "Duration Time"
|
6525 |
msgstr ""
|
6526 |
|
6527 |
+
#: core/lib/wpbc_all_translations1.php:255 inc/_ps/form/class-wpbc-form-help.php:279
|
6528 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6529 |
#: inc/_ps/form/class-wpbc-form-help.php:344
|
6530 |
msgid "fields"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
+
#: core/lib/wpbc_all_translations1.php:256 inc/_ps/form/class-wpbc-form-help.php:286
|
6534 |
msgid "End Time - Text field"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
+
#: core/lib/wpbc_all_translations1.php:257 inc/_ps/form/class-wpbc-form-help.php:300
|
6538 |
msgid "Start Time - Drop Down list"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: core/lib/wpbc_all_translations1.php:258 inc/_ps/form/class-wpbc-form-help.php:304
|
6542 |
#, php-format
|
6543 |
msgid ""
|
6544 |
"Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
|
6545 |
"Time)%s only."
|
6546 |
msgstr ""
|
6547 |
|
6548 |
+
#: core/lib/wpbc_all_translations1.php:259 inc/_ps/form/class-wpbc-form-help.php:338
|
6549 |
msgid "End Time - Drop Down list"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
+
#: core/lib/wpbc_all_translations1.php:260 inc/_ps/form/class-wpbc-form-help.php:377
|
6553 |
msgid "Duration Time - Drop Down list"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
+
#: core/lib/wpbc_all_translations1.php:261 inc/_ps/form/class-wpbc-form-help.php:383
|
6557 |
msgid "field"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
+
#: core/lib/wpbc_all_translations1.php:262 inc/_ps/form/class-wpbc-form-help.php:416
|
6561 |
msgid "Different time slots, for the different week days"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
+
#: core/lib/wpbc_all_translations1.php:263 inc/_ps/form/class-wpbc-form-help.php:419
|
6565 |
msgid ""
|
6566 |
"This feature provides the possibility to use the different time slot selections in the booking "
|
6567 |
"form for the different week days or different days - which are assigned to the specific season "
|
6568 |
"filters. So each week day (day of specific season filter) can have a different time slots list."
|
6569 |
msgstr ""
|
6570 |
|
6571 |
+
#: core/lib/wpbc_all_translations1.php:264 inc/_ps/form/class-wpbc-form-help.php:421
|
6572 |
#: inc/_ps/form/class-wpbc-form-help.php:568
|
6573 |
msgid "Configuration"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
+
#: core/lib/wpbc_all_translations1.php:265 inc/_ps/form/class-wpbc-form-help.php:422
|
6577 |
#: inc/_ps/form/class-wpbc-form-help.php:569
|
6578 |
#, php-format
|
6579 |
msgid "The general structure of the configuration %scondition rule%s is as follows"
|
6580 |
msgstr ""
|
6581 |
|
6582 |
+
#: core/lib/wpbc_all_translations1.php:266 inc/_ps/form/class-wpbc-form-help.php:428
|
6583 |
#: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
|
6584 |
#: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
|
6585 |
#: inc/_ps/form/class-wpbc-form-help.php:619
|
6586 |
msgid "Parameters"
|
6587 |
msgstr ""
|
6588 |
|
6589 |
+
#: core/lib/wpbc_all_translations1.php:267 inc/_ps/form/class-wpbc-form-help.php:429
|
6590 |
#: inc/_ps/form/class-wpbc-form-help.php:576
|
6591 |
#, php-format
|
6592 |
msgid ""
|
6596 |
"conditions. Please check more about it, in the examples."
|
6597 |
msgstr ""
|
6598 |
|
6599 |
+
#: core/lib/wpbc_all_translations1.php:268 inc/_ps/form/class-wpbc-form-help.php:430
|
6600 |
#: inc/_ps/form/class-wpbc-form-help.php:577
|
6601 |
#, php-format
|
6602 |
msgid ""
|
6607 |
"filter in the Season Filters page."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: core/lib/wpbc_all_translations1.php:269 inc/_ps/form/class-wpbc-form-help.php:431
|
6611 |
#, php-format
|
6612 |
msgid ""
|
6613 |
"%svalue%s – value of the specific conditions. If the value is true, the content of the "
|
6616 |
"at initial stage, when the date in calendar is not yet selected."
|
6617 |
msgstr ""
|
6618 |
|
6619 |
+
#: core/lib/wpbc_all_translations1.php:270 inc/_ps/form/class-wpbc-form-help.php:433
|
6620 |
#: inc/_ps/form/class-wpbc-form-help.php:580
|
6621 |
msgid "Examples"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: core/lib/wpbc_all_translations1.php:271 inc/_ps/form/class-wpbc-form-help.php:434
|
6625 |
#: inc/_ps/form/class-wpbc-form-help.php:581
|
6626 |
msgid "Week days conditions."
|
6627 |
msgstr ""
|
6628 |
|
6629 |
+
#: core/lib/wpbc_all_translations1.php:272 inc/_ps/form/class-wpbc-form-help.php:450
|
6630 |
#: inc/_ps/form/class-wpbc-form-help.php:597
|
6631 |
msgid "default value, if no dates are selected, or none exist conditions are true."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: core/lib/wpbc_all_translations1.php:273 inc/_ps/form/class-wpbc-form-help.php:458
|
6635 |
#: inc/_ps/form/class-wpbc-form-help.php:475
|
6636 |
msgid "You can use the several values, separated by comma."
|
6637 |
msgstr ""
|
6638 |
|
6639 |
+
#: core/lib/wpbc_all_translations1.php:274 inc/_ps/form/class-wpbc-form-help.php:460
|
6640 |
#: inc/_ps/form/class-wpbc-form-help.php:607
|
6641 |
msgid "Season filters conditions."
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: core/lib/wpbc_all_translations1.php:275 inc/_ps/form/class-wpbc-form-help.php:473
|
6645 |
#: inc/_ps/form/class-wpbc-form-help.php:620
|
6646 |
msgid "Season filter on the Season Filters page,"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
+
#: core/lib/wpbc_all_translations1.php:276 inc/_ps/form/class-wpbc-form-help.php:474
|
6650 |
#: inc/_ps/form/class-wpbc-form-help.php:621
|
6651 |
msgid "Season filter on the Season Filters page"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: core/lib/wpbc_all_translations1.php:277 inc/_ps/form/class-wpbc-form-help.php:477
|
6655 |
#: inc/_ps/form/class-wpbc-form-help.php:624
|
6656 |
msgid "Additional info"
|
6657 |
msgstr ""
|
6658 |
|
6659 |
+
#: core/lib/wpbc_all_translations1.php:278 inc/_ps/form/class-wpbc-form-help.php:478
|
6660 |
#: inc/_ps/form/class-wpbc-form-help.php:625
|
6661 |
#, php-format
|
6662 |
msgid ""
|
6664 |
"section."
|
6665 |
msgstr ""
|
6666 |
|
6667 |
+
#: core/lib/wpbc_all_translations1.php:279 inc/_ps/form/class-wpbc-form-help.php:479
|
6668 |
#: inc/_ps/form/class-wpbc-form-help.php:626
|
6669 |
#, php-format
|
6670 |
msgid "Please check more about this feature at %sthis page%s"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
+
#: core/lib/wpbc_all_translations1.php:280 inc/_ps/form/class-wpbc-form-help.php:493
|
6674 |
msgid "Time Field"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
+
#: core/lib/wpbc_all_translations1.php:281 inc/_ps/form/class-wpbc-form-help.php:495
|
6678 |
#, php-format
|
6679 |
msgid "Enter the %sTime%s using the text field."
|
6680 |
msgstr ""
|
6681 |
|
6682 |
+
#: core/lib/wpbc_all_translations1.php:282 inc/_ps/form/class-wpbc-form-help.php:498
|
6683 |
msgid "This field does not impact to availability (booking for the specific time) ."
|
6684 |
msgstr ""
|
6685 |
|
6686 |
+
#: core/lib/wpbc_all_translations1.php:283 inc/_ps/form/class-wpbc-form-help.php:499
|
6687 |
msgid "The value of this field is just saved into DB."
|
6688 |
msgstr ""
|
6689 |
|
6690 |
+
#: core/lib/wpbc_all_translations1.php:284 inc/_ps/form/class-wpbc-form-help.php:509
|
6691 |
msgid "Country List"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: core/lib/wpbc_all_translations1.php:285 inc/_ps/form/class-wpbc-form-help.php:511
|
6695 |
msgid "Select the country from the predefined country list."
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: core/lib/wpbc_all_translations1.php:286 inc/_ps/form/class-wpbc-form-help.php:512
|
6699 |
#, php-format
|
6700 |
msgid "You can customize the country list at this file: %s"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
+
#: core/lib/wpbc_all_translations1.php:287 inc/_ps/form/class-wpbc-form-help.php:513
|
6704 |
msgid "You can insert this field with default selected value."
|
6705 |
msgstr ""
|
6706 |
|
6707 |
+
#: core/lib/wpbc_all_translations1.php:288 inc/_ps/form/class-wpbc-form-help.php:514
|
6708 |
#, php-format
|
6709 |
msgid "Example: %s - %s\"United States\"%s is selected by default."
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: core/lib/wpbc_all_translations1.php:289 inc/_ps/form/class-wpbc-form-help.php:523
|
6713 |
msgid "Language Sections"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: core/lib/wpbc_all_translations1.php:290 inc/_ps/form/class-wpbc-form-help.php:525
|
6717 |
msgid "Plugin support configurations of the booking form are available in different languages."
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: core/lib/wpbc_all_translations1.php:291 inc/_ps/form/class-wpbc-form-help.php:526
|
6721 |
msgid "The active language of the booking form depends on the active locale of the site."
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: core/lib/wpbc_all_translations1.php:292 inc/_ps/form/class-wpbc-form-help.php:527
|
6725 |
msgid ""
|
6726 |
"Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
|
6727 |
msgstr ""
|
6728 |
|
6729 |
+
#: core/lib/wpbc_all_translations1.php:293 inc/_ps/form/class-wpbc-form-help.php:529
|
6730 |
msgid "Usage"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
+
#: core/lib/wpbc_all_translations1.php:294 inc/_ps/form/class-wpbc-form-help.php:530
|
6734 |
#, php-format
|
6735 |
msgid "start new translation section in specific language, where %s - locale of the translation."
|
6736 |
msgstr ""
|
6737 |
|
6738 |
+
#: core/lib/wpbc_all_translations1.php:295 inc/_ps/form/class-wpbc-form-help.php:533
|
6739 |
msgid "English and French translation"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
+
#: core/lib/wpbc_all_translations1.php:296 inc/_ps/form/class-wpbc-form-help.php:536
|
6743 |
msgid "of configuration booking form in English and French languages"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
+
#: core/lib/wpbc_all_translations1.php:297 inc/_ps/form/class-wpbc-form-help.php:555
|
6747 |
msgid ""
|
6748 |
"Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
|
6749 |
"translation\" page. Required WPML 3.2 with String Translation plugin."
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: core/lib/wpbc_all_translations1.php:298 inc/_ps/form/class-wpbc-form-help.php:563
|
6753 |
msgid "Different form fields, for the different week days"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: core/lib/wpbc_all_translations1.php:299 inc/_ps/form/class-wpbc-form-help.php:566
|
6757 |
msgid ""
|
6758 |
"This feature provides the possibility to show the different form fields or any other HTML "
|
6759 |
"content in the booking form, depending on the selection of specific week day in calendar or "
|
6760 |
"different days, which are assigned to the specific season filters"
|
6761 |
msgstr ""
|
6762 |
|
6763 |
+
#: core/lib/wpbc_all_translations1.php:300 inc/_ps/form/class-wpbc-form-help.php:578
|
6764 |
#, php-format
|
6765 |
msgid ""
|
6766 |
"%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
|
6769 |
"at initial stage, when the date in calendar is not yet selected."
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: core/lib/wpbc_all_translations1.php:301 inc/_ps/form/class-wpbc-form-help.php:605
|
6773 |
msgid "You can use several values, separated by comma."
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: core/lib/wpbc_all_translations1.php:302 inc/_ps/form/class-wpbc-form-help.php:622
|
6777 |
msgid "You can use several values, separated by a comma."
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: core/lib/wpbc_all_translations1.php:303 inc/_ps/form/class-wpbc-form-help.php:635
|
6781 |
msgid "Cost Fields"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: core/lib/wpbc_all_translations1.php:304 inc/_ps/form/class-wpbc-form-help.php:641
|
6785 |
msgid "Cost Correction Field"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: core/lib/wpbc_all_translations1.php:305 inc/_ps/form/class-wpbc-form-help.php:643
|
6789 |
#, php-format
|
6790 |
msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
|
6791 |
msgstr ""
|
6792 |
|
6793 |
+
#: core/lib/wpbc_all_translations1.php:306 inc/_ps/form/class-wpbc-form-help.php:644
|
6794 |
#, php-format
|
6795 |
msgid "Use this field for %scorrecting the cost%s during adding new booking."
|
6796 |
msgstr ""
|
6797 |
|
6798 |
+
#: core/lib/wpbc_all_translations1.php:307 inc/_ps/form/class-wpbc-form-help.php:655
|
6799 |
msgid "Discount Coupon field"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
+
#: core/lib/wpbc_all_translations1.php:308 inc/_ps/form/class-wpbc-form-help.php:657
|
6803 |
msgid "Please use this field for possibility to use coupon discounts by your visitors."
|
6804 |
msgstr ""
|
6805 |
|
6806 |
+
#: core/lib/wpbc_all_translations1.php:309 inc/_ps/form/class-wpbc-form-help.php:658
|
6807 |
#, php-format
|
6808 |
msgid "You can configure the discount coupon codes at this %spage%s."
|
6809 |
msgstr ""
|
6810 |
|
6811 |
+
#: core/lib/wpbc_all_translations1.php:310 inc/_ps/form/class-wpbc-form-help.php:667
|
6812 |
msgid "Hints for your form"
|
6813 |
msgstr ""
|
6814 |
|
6815 |
+
#: core/lib/wpbc_all_translations1.php:311 inc/_ps/form/class-wpbc-form-help.php:673
|
6816 |
msgid "Cost Hints"
|
6817 |
msgstr ""
|
6818 |
|
6819 |
+
#: core/lib/wpbc_all_translations1.php:312 inc/_ps/form/class-wpbc-form-help.php:675
|
6820 |
#: inc/_ps/form/class-wpbc-form-help.php:697
|
6821 |
#, php-format
|
6822 |
msgid ""
|
6824 |
"calendar or options in checkboxes or selectboxes)%s."
|
6825 |
msgstr ""
|
6826 |
|
6827 |
+
#: core/lib/wpbc_all_translations1.php:313 inc/_ps/form/class-wpbc-form-help.php:695
|
6828 |
msgid "Dates and Times Hints"
|
6829 |
msgstr ""
|
6830 |
|
6831 |
+
#: core/lib/wpbc_all_translations1.php:314 inc/_ps/form/class-wpbc-form-help.php:699
|
6832 |
#: inc/gateways/page-gateways.php:1094
|
6833 |
msgid "Selected Check In date."
|
6834 |
msgstr ""
|
6835 |
|
6836 |
+
#: core/lib/wpbc_all_translations1.php:315 inc/_bm/admin/page-cost-advanced.php:695
|
6837 |
#: inc/_bm/admin/page-cost-advanced.php:698 inc/_ps/form/class-wpbc-form-help.php:700
|
6838 |
#: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
|
6839 |
#: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
|
6848 |
msgid "Example:"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
+
#: core/lib/wpbc_all_translations1.php:316 inc/_ps/form/class-wpbc-form-help.php:702
|
6852 |
#: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:1097
|
6853 |
msgid "Selected Check Out date."
|
6854 |
msgstr ""
|
6855 |
|
6856 |
+
#: core/lib/wpbc_all_translations1.php:317 inc/_ps/form/class-wpbc-form-help.php:708
|
6857 |
#: inc/gateways/page-gateways.php:1100
|
6858 |
msgid "Selected Start Time."
|
6859 |
msgstr ""
|
6860 |
|
6861 |
+
#: core/lib/wpbc_all_translations1.php:318 inc/_ps/form/class-wpbc-form-help.php:711
|
6862 |
#: inc/gateways/page-gateways.php:1103
|
6863 |
msgid "Selected End Time."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
+
#: core/lib/wpbc_all_translations1.php:319 inc/_ps/form/class-wpbc-form-help.php:714
|
6867 |
#: inc/gateways/page-gateways.php:1106
|
6868 |
msgid "All selected dates."
|
6869 |
msgstr ""
|
6870 |
|
6871 |
+
#: core/lib/wpbc_all_translations1.php:320 inc/_ps/form/class-wpbc-form-help.php:717
|
6872 |
#: inc/gateways/page-gateways.php:1109
|
6873 |
msgid "All selected dates with times."
|
6874 |
msgstr ""
|
6875 |
|
6876 |
+
#: core/lib/wpbc_all_translations1.php:321 inc/_ps/form/class-wpbc-form-help.php:720
|
6877 |
#: inc/gateways/page-gateways.php:1112
|
6878 |
msgid "All selected dates in \"short\" format."
|
6879 |
msgstr ""
|
6880 |
|
6881 |
+
#: core/lib/wpbc_all_translations1.php:322 inc/_ps/form/class-wpbc-form-help.php:723
|
6882 |
#: inc/gateways/page-gateways.php:1115
|
6883 |
msgid "All selected dates with times in \"short\" format.."
|
6884 |
msgstr ""
|
6885 |
|
6886 |
+
#: core/lib/wpbc_all_translations1.php:323 inc/_bm/admin/page-cost-advanced.php:695
|
6887 |
#: inc/_ps/form/class-wpbc-form-help.php:726 inc/gateways/page-gateways.php:1118
|
6888 |
msgid "Number of selected days."
|
6889 |
msgstr ""
|
6890 |
|
6891 |
+
#: core/lib/wpbc_all_translations1.php:324 inc/_bm/admin/page-cost-advanced.php:698
|
6892 |
#: inc/_ps/form/class-wpbc-form-help.php:729 inc/gateways/page-gateways.php:1121
|
6893 |
msgid "Number of selected nights."
|
6894 |
msgstr ""
|
6895 |
|
6896 |
+
#: core/lib/wpbc_all_translations1.php:325 inc/_ps/form/class-wpbc-form-help.php:739
|
6897 |
msgid "Other Hints"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
+
#: core/lib/wpbc_all_translations1.php:326 inc/_ps/form/class-wpbc-form-help.php:741
|
6901 |
#: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:1072
|
6902 |
msgid "title of booking resource"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
+
#: core/lib/wpbc_all_translations1.php:327 inc/_ps/form/class-wpbc-form-help.php:742
|
6906 |
msgid "ID of booking resource."
|
6907 |
msgstr ""
|
6908 |
|
6909 |
+
#: core/lib/wpbc_all_translations1.php:328 inc/_ps/form/class-wpbc-form-help.php:744
|
6910 |
msgid "cost of booking resource."
|
6911 |
msgstr ""
|
6912 |
|
6913 |
+
#: core/lib/wpbc_all_translations1.php:329 inc/_ps/form/class-wpbc-form-help.php:745
|
6914 |
msgid "capacity of booking resource."
|
6915 |
msgstr ""
|
6916 |
|
6917 |
+
#: core/lib/wpbc_all_translations1.php:330 inc/_ps/form/class-wpbc-form-help.php:746
|
6918 |
msgid "maximum number of visitors per booking resource."
|
6919 |
msgstr ""
|
6920 |
|
6921 |
+
#: core/lib/wpbc_all_translations1.php:331 inc/_ps/form/class-wpbc-form-help.php:760
|
6922 |
msgid "Tips and Tricks"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
+
#: core/lib/wpbc_all_translations1.php:332 inc/_ps/form/class-wpbc-form-help.php:762
|
6926 |
#, php-format
|
6927 |
msgid "%sEmail verification field%s."
|
6928 |
msgstr ""
|
6929 |
|
6930 |
+
#: core/lib/wpbc_all_translations1.php:333 inc/_ps/form/class-wpbc-form-help.php:764
|
6931 |
#, php-format
|
6932 |
msgid "%sDescription of usage%s."
|
6933 |
msgstr ""
|
6934 |
|
6935 |
+
#: core/lib/wpbc_all_translations1.php:334 inc/_ps/form/class-wpbc-form-help.php:765
|
6936 |
#, php-format
|
6937 |
msgid ""
|
6938 |
"To create verification email, you need to use special CSS class in other email field. This CSS "
|
6940 |
"field: %s"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: core/lib/wpbc_all_translations1.php:335 inc/_ps/form/class-wpbc-form-help.php:766
|
6944 |
#, php-format
|
6945 |
msgid "%sExample%s."
|
6946 |
msgstr ""
|
6947 |
|
6948 |
+
#: core/lib/wpbc_all_translations1.php:336 inc/_ps/form/class-wpbc-form-help.php:767
|
6949 |
msgid "confirmation email field of the primary email field"
|
6950 |
msgstr ""
|
6951 |
|
6952 |
+
#: core/lib/wpbc_all_translations1.php:337 inc/_ps/form/class-wpbc-form-help.php:791
|
6953 |
msgid "Generate Tag"
|
6954 |
msgstr ""
|
6955 |
|
6956 |
+
#: core/lib/wpbc_all_translations1.php:338 inc/_ps/form/class-wpbc-form-help.php:807
|
6957 |
msgid "Select option to configure or show help info about tags"
|
6958 |
msgstr ""
|
6959 |
|
6960 |
+
#: core/lib/wpbc_all_translations1.php:339 inc/_ps/p-toolbar.php:34
|
6961 |
msgid "Keyword"
|
6962 |
msgstr ""
|
6963 |
|
6964 |
+
#: core/lib/wpbc_all_translations1.php:340 inc/_ps/p-toolbar.php:42
|
6965 |
msgid "Enter Keyword here"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: core/lib/wpbc_all_translations1.php:341 inc/_ps/p-toolbar.php:96
|
6969 |
msgid ""
|
6970 |
"Save filter settings as default template (Please, click Apply filter button, before saving!)"
|
6971 |
msgstr ""
|
6972 |
|
6973 |
+
#: core/lib/wpbc_all_translations1.php:342 inc/_ps/p-toolbar.php:100
|
6974 |
msgid "Save as Default"
|
6975 |
msgstr ""
|
6976 |
|
6977 |
+
#: core/lib/wpbc_all_translations1.php:343 inc/_ps/p-toolbar.php:106
|
6978 |
msgid "Delete your previously saved default filer template!"
|
6979 |
msgstr ""
|
6980 |
|
6981 |
+
#: core/lib/wpbc_all_translations1.php:344 inc/_ps/p-toolbar.php:110
|
6982 |
msgid "Delete template"
|
6983 |
msgstr ""
|
6984 |
|
6985 |
+
#: core/lib/wpbc_all_translations1.php:345 inc/_ps/p-toolbar.php:132
|
6986 |
msgid "Print bookings listing"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
+
#: core/lib/wpbc_all_translations1.php:346 inc/_ps/p-toolbar.php:174
|
6990 |
msgid "Export only current page of bookings to CSV format"
|
6991 |
msgstr ""
|
6992 |
|
6993 |
+
#: core/lib/wpbc_all_translations1.php:347 inc/_ps/p-toolbar.php:187
|
6994 |
msgid "Export All"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
+
#: core/lib/wpbc_all_translations1.php:348 inc/_ps/p-toolbar.php:188
|
6998 |
msgid "Export All bookings to CSV format"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: core/lib/wpbc_all_translations1.php:349 inc/_ps/p-toolbar.php:255
|
7002 |
msgid "Edit Note"
|
7003 |
msgstr ""
|
7004 |
|
7005 |
+
#: core/lib/wpbc_all_translations1.php:350 inc/_ps/p-toolbar.php:278
|
7006 |
msgid "Change Language"
|
7007 |
msgstr ""
|
7008 |
|
7009 |
+
#: core/lib/wpbc_all_translations1.php:351 inc/_ps/p-toolbar.php:290
|
7010 |
msgid "Default Locale"
|
7011 |
msgstr ""
|
7012 |
|
7013 |
+
#: core/lib/wpbc_all_translations1.php:352 inc/_ps/p-toolbar.php:326
|
7014 |
msgid "Change Resource"
|
7015 |
msgstr ""
|
7016 |
|
7017 |
+
#: core/lib/wpbc_all_translations1.php:353 inc/_ps/p-toolbar.php:351 inc/_ps/p-toolbar.php:464
|
7018 |
#: inc/_ps/personal.php:2133
|
7019 |
msgid "Duplicate Booking"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
+
#: core/lib/wpbc_all_translations1.php:354 inc/_ps/p-toolbar.php:382
|
7023 |
msgid "Save"
|
7024 |
msgstr ""
|
7025 |
|
7026 |
+
#: core/lib/wpbc_all_translations1.php:355 inc/_ps/p-toolbar.php:431
|
7027 |
msgid "Change"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
+
#: core/lib/wpbc_all_translations1.php:356 inc/_ps/p-toolbar.php:501
|
7031 |
msgid "Print bookings"
|
7032 |
msgstr ""
|
7033 |
|
7034 |
+
#: core/lib/wpbc_all_translations1.php:357 inc/_ps/p-toolbar.php:540
|
7035 |
msgid "Export bookings"
|
7036 |
msgstr ""
|
7037 |
|
7038 |
+
#: core/lib/wpbc_all_translations1.php:358 inc/_ps/p-toolbar.php:543
|
7039 |
msgid "Download the CSV file of exported booking data"
|
7040 |
msgstr ""
|
7041 |
|
7042 |
+
#: core/lib/wpbc_all_translations1.php:359 inc/_ps/p-toolbar.php:551
|
7043 |
msgid "Download"
|
7044 |
msgstr ""
|
7045 |
|
7046 |
+
#: core/lib/wpbc_all_translations1.php:360 inc/_ps/p-toolbar.php:788
|
7047 |
msgid "Clear booking resources selection"
|
7048 |
msgstr ""
|
7049 |
|
7050 |
+
#: core/lib/wpbc_all_translations1.php:361 inc/_ps/p-toolbar.php:792
|
7051 |
msgid "Apply booking resources selection"
|
7052 |
msgstr ""
|
7053 |
|
7054 |
+
#: core/lib/wpbc_all_translations1.php:362 inc/_ps/p-toolbar.php:822
|
7055 |
msgid ""
|
7056 |
"Please note, its not possible to add new resources, if \"All resources\" option is selected. "
|
7057 |
"Please clear the selection, then add new resources."
|
7058 |
msgstr ""
|
7059 |
|
7060 |
+
#: core/lib/wpbc_all_translations1.php:363 inc/_ps/p-toolbar.php:1110 inc/_ps/p-toolbar.php:1158
|
7061 |
msgid "Add New Booking Resource(s)"
|
7062 |
msgstr ""
|
7063 |
|
7064 |
+
#: core/lib/wpbc_all_translations1.php:364 inc/_ps/p-toolbar.php:1150
|
7065 |
msgid "Enter name of booking resource"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
+
#: core/lib/wpbc_all_translations1.php:365 inc/_ps/p-toolbar.php:1174
|
7069 |
msgid "Resources count"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: core/lib/wpbc_all_translations1.php:366 inc/_ps/personal.php:249
|
7073 |
msgid "This booking resources does not exist"
|
7074 |
msgstr ""
|
7075 |
|
7076 |
+
#: core/lib/wpbc_all_translations1.php:367 inc/_ps/personal.php:294
|
7077 |
msgid "Generating columns"
|
7078 |
msgstr ""
|
7079 |
|
7080 |
+
#: core/lib/wpbc_all_translations1.php:368 inc/_ps/personal.php:335
|
7081 |
msgid "Exporting booking data"
|
7082 |
msgstr ""
|
7083 |
|
7084 |
+
#: core/lib/wpbc_all_translations1.php:369 inc/_ps/personal.php:380
|
7085 |
msgid "Generating content of file"
|
7086 |
msgstr ""
|
7087 |
|
7088 |
+
#: core/lib/wpbc_all_translations1.php:370 inc/_ps/personal.php:422
|
7089 |
msgid "Saving to file"
|
7090 |
msgstr ""
|
7091 |
|
7092 |
+
#: core/lib/wpbc_all_translations1.php:371 inc/_ps/personal.php:882
|
7093 |
msgid "The booking was canceled by the visitor."
|
7094 |
msgstr ""
|
7095 |
|
7096 |
+
#: core/lib/wpbc_all_translations1.php:372 inc/_ps/personal.php:943
|
7097 |
msgid "The booking has been canceled successfully"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
+
#: core/lib/wpbc_all_translations1.php:373 inc/_ps/personal.php:964
|
7101 |
msgid "Incorrect date format"
|
7102 |
msgstr ""
|
7103 |
|
7104 |
+
#: core/lib/wpbc_all_translations1.php:374 inc/_ps/personal.php:2112
|
7105 |
msgid "Change your Booking"
|
7106 |
msgstr ""
|
7107 |
|
7108 |
+
#: core/lib/wpbc_all_translations1.php:375 inc/_ps/personal.php:2114
|
7109 |
msgid "Cancel Booking"
|
7110 |
msgstr ""
|
7111 |
|
7112 |
+
#: core/lib/wpbc_all_translations1.php:376 inc/_ps/personal.php:2392
|
7113 |
msgid "Warning! The resource was not changed. Current dates are already booked there."
|
7114 |
msgstr ""
|
7115 |
|
7116 |
+
#: core/lib/wpbc_all_translations1.php:377 inc/_ps/personal.php:2529
|
7117 |
msgid "The booking has been duplicated successfully"
|
7118 |
msgstr ""
|
7119 |
|
7120 |
+
#: core/lib/wpbc_all_translations1.php:378 inc/_ps/personal.php:2538
|
7121 |
msgid "Warning! Operation failed. Current dates are already booked there."
|
7122 |
msgstr ""
|
7123 |
|
7124 |
+
#: core/lib/wpbc_all_translations1.php:379 inc/_ps/personal.php:2625
|
7125 |
msgid "Sending request..."
|
7126 |
msgstr ""
|
7127 |
|
7128 |
+
#: core/lib/wpbc_all_translations1.php:380 inc/_ps/personal.php:2654
|
7129 |
msgid "Order number"
|
7130 |
msgstr ""
|
7131 |
|
7132 |
+
#: core/lib/wpbc_all_translations1.php:381 inc/_ps/personal.php:2656
|
7133 |
msgid "Register"
|
7134 |
msgstr ""
|
7135 |
|
7136 |
+
#: core/lib/wpbc_all_translations1.php:382 inc/_ps/personal.php:2658
|
7137 |
msgid ""
|
7138 |
"Please, enter order number of your purchased version, which you received to your billing email."
|
7139 |
msgstr ""
|
7140 |
|
7141 |
+
#: core/lib/wpbc_all_translations1.php:383 inc/_ps/personal.php:2660
|
7142 |
#, php-format
|
7143 |
msgid "If you will get any difficulties or have a questions, please contact by email %s"
|
7144 |
msgstr ""
|
7145 |
|
7146 |
+
#: core/lib/wpbc_all_translations1.php:384 inc/_ps/wpbc-booking-select-widget.php:226
|
7147 |
msgid "Default form"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
+
#: core/lib/wpbc_all_translations1.php:385 inc/_ps/wpbc-check-updates.php:178
|
7151 |
#, php-format
|
7152 |
msgid ""
|
7153 |
"There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
|
7154 |
"version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
|
7155 |
msgstr ""
|
7156 |
|
7157 |
+
#: core/lib/wpbc_all_translations1.php:386 inc/_ps/wpbc-check-updates.php:184
|
7158 |
#, php-format
|
7159 |
msgid "You can request the new update of plugin on %1$sthis page%2$s."
|
7160 |
msgstr ""
|
7161 |
|
7162 |
+
#: core/lib/wpbc_all_translations1.php:387 inc/_ps/wpbc-check-updates.php:191
|
7163 |
msgid "Upgrade Notice"
|
7164 |
msgstr ""
|
7165 |
|
7166 |
+
#: core/lib/wpbc_all_translations1.php:388 inc/_ps/wpbc-check-updates.php:231
|
7167 |
#, php-format
|
7168 |
msgid "Version %s By %s"
|
7169 |
msgstr ""
|
7170 |
|
7171 |
+
#: core/lib/wpbc_all_translations1.php:389 inc/_ps/wpbc-check-updates.php:235
|
7172 |
msgid "View details"
|
7173 |
msgstr ""
|
7174 |
|
7175 |
+
#: core/lib/wpbc_all_translations1.php:390 inc/_ps/wpbc-form-templates.php:34
|
7176 |
#: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
|
7177 |
#: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
|
7178 |
msgid "First Name (required)"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
+
#: core/lib/wpbc_all_translations1.php:391 inc/_ps/wpbc-form-templates.php:35
|
7182 |
#: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
|
7183 |
#: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
|
7184 |
msgid "Last Name (required)"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
+
#: core/lib/wpbc_all_translations1.php:392 inc/_ps/wpbc-form-templates.php:36
|
7188 |
#: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
|
7189 |
#: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
|
7190 |
msgid "Email (required)"
|
7191 |
msgstr ""
|
7192 |
|
7193 |
+
#: core/lib/wpbc_all_translations1.php:393 inc/_ps/wpbc-form-templates.php:37
|
7194 |
#: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
|
7195 |
#: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
|
7196 |
#: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
|
7199 |
msgid "Phone"
|
7200 |
msgstr ""
|
7201 |
|
7202 |
+
#: core/lib/wpbc_all_translations1.php:394 inc/_ps/wpbc-form-templates.php:38
|
7203 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7204 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
|
7205 |
#: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
|
7206 |
msgid "Adults"
|
7207 |
msgstr ""
|
7208 |
|
7209 |
+
#: core/lib/wpbc_all_translations1.php:395 inc/_ps/wpbc-form-templates.php:38
|
7210 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7211 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
|
7212 |
#: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
|
7213 |
msgid "Children"
|
7214 |
msgstr ""
|
7215 |
|
7216 |
+
#: core/lib/wpbc_all_translations1.php:396 inc/_ps/wpbc-form-templates.php:39
|
7217 |
#: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
|
7218 |
#: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
|
7219 |
#: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
|
7221 |
msgid "Details"
|
7222 |
msgstr ""
|
7223 |
|
7224 |
+
#: core/lib/wpbc_all_translations1.php:397 inc/_ps/wpbc-form-templates.php:40
|
7225 |
#: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
|
7226 |
#: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
|
7227 |
msgid "I Accept term and conditions"
|
7228 |
msgstr ""
|
7229 |
|
7230 |
+
#: core/lib/wpbc_all_translations1.php:398 inc/_ps/wpbc-form-templates.php:48
|
7231 |
#: inc/_ps/wpbc-form-templates.php:68
|
7232 |
msgid "Select Times"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
+
#: core/lib/wpbc_all_translations1.php:399 inc/_ps/wpbc-form-templates.php:53
|
7236 |
#: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
|
7237 |
#: inc/_ps/wpbc-form-templates.php:118
|
7238 |
msgid "Address (required)"
|
7239 |
msgstr ""
|
7240 |
|
7241 |
+
#: core/lib/wpbc_all_translations1.php:400 inc/_ps/wpbc-form-templates.php:54
|
7242 |
#: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
|
7243 |
#: inc/_ps/wpbc-form-templates.php:119
|
7244 |
msgid "City (required)"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
+
#: core/lib/wpbc_all_translations1.php:401 inc/_ps/wpbc-form-templates.php:55
|
7248 |
#: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
|
7249 |
#: inc/_ps/wpbc-form-templates.php:120
|
7250 |
msgid "Post code (required)"
|
7251 |
msgstr ""
|
7252 |
|
7253 |
+
#: core/lib/wpbc_all_translations1.php:402 inc/_ps/wpbc-form-templates.php:56
|
7254 |
#: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
|
7255 |
#: inc/_ps/wpbc-form-templates.php:121
|
7256 |
msgid "Country (required)"
|
7257 |
msgstr ""
|
7258 |
|
7259 |
+
#: core/lib/wpbc_all_translations1.php:403 inc/_ps/wpbc-form-templates.php:89
|
7260 |
msgid "night(s)"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
+
#: core/lib/wpbc_all_translations1.php:404 inc/_ps/wpbc-form-templates.php:90
|
7264 |
#: inc/_ps/wpbc-form-templates.php:112
|
7265 |
msgid "Full cost of the booking"
|
7266 |
msgstr ""
|
7267 |
|
7268 |
+
#: core/lib/wpbc_all_translations1.php:405 inc/_ps/wpbc-form-templates.php:122
|
7269 |
#: inc/_ps/wpbc-form-templates.php:194
|
7270 |
msgid "Visitors"
|
7271 |
msgstr ""
|
7272 |
|
7273 |
+
#: core/lib/wpbc_all_translations1.php:406 inc/_ps/wpbc-form-templates.php:145
|
7274 |
#: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
|
7275 |
#: inc/_ps/wpbc-form-templates.php:187
|
7276 |
msgid "Last Name"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
+
#: core/lib/wpbc_all_translations1.php:407 inc/_ps/wpbc-form-templates.php:146
|
7280 |
#: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
|
7281 |
#: inc/_ps/wpbc-form-templates.php:188
|
7282 |
msgid "Email"
|
7283 |
msgstr ""
|
7284 |
|
7285 |
+
#: core/lib/wpbc_all_translations1.php:408 inc/_ps/wpbc-form-templates.php:160
|
7286 |
#: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
|
7287 |
msgid "Address"
|
7288 |
msgstr ""
|
7289 |
|
7290 |
+
#: core/lib/wpbc_all_translations1.php:409 inc/_ps/wpbc-form-templates.php:161
|
7291 |
#: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
|
7292 |
msgid "City"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
+
#: core/lib/wpbc_all_translations1.php:410 inc/_ps/wpbc-form-templates.php:162
|
7296 |
#: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
|
7297 |
msgid "Post code"
|
7298 |
msgstr ""
|
7299 |
|
7300 |
+
#: core/lib/wpbc_all_translations1.php:411 inc/_ps/wpbc-form-templates.php:163
|
7301 |
#: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
|
7302 |
#: inc/gateways/page-gateways.php:361
|
7303 |
msgid "Country"
|
7304 |
msgstr ""
|
7305 |
|
7306 |
+
#: core/lib/wpbc_all_translations1.php:412 inc/_ps/wpbc-form-templates.php:222
|
7307 |
#: inc/_ps/wpbc-form-templates.php:242 inc/_ps/wpbc-form-templates.php:252
|
7308 |
#: inc/_ps/wpbc-form-templates.php:262 inc/_ps/wpbc-form-templates.php:272
|
7309 |
msgid "Check in"
|
7310 |
msgstr ""
|
7311 |
|
7312 |
+
#: core/lib/wpbc_all_translations1.php:413 inc/_ps/wpbc-form-templates.php:225
|
7313 |
#: inc/_ps/wpbc-form-templates.php:243 inc/_ps/wpbc-form-templates.php:253
|
7314 |
#: inc/_ps/wpbc-form-templates.php:263 inc/_ps/wpbc-form-templates.php:273
|
7315 |
msgid "Check out"
|
7316 |
msgstr ""
|
7317 |
|
7318 |
+
#: core/lib/wpbc_all_translations1.php:414 inc/_ps/wpbc-form-templates.php:228
|
7319 |
#: inc/_ps/wpbc-form-templates.php:244 inc/_ps/wpbc-form-templates.php:254
|
7320 |
#: inc/_ps/wpbc-form-templates.php:264 inc/_ps/wpbc-form-templates.php:274
|
7321 |
msgid "Guests"
|
7322 |
msgstr ""
|
7323 |
|
7324 |
+
#: core/lib/wpbc_all_translations1.php:415 inc/_ps/wpbc-form-templates.php:308
|
7325 |
#: inc/_ps/wpbc-form-templates.php:334 inc/_ps/wpbc-form-templates.php:351
|
7326 |
msgid "Max. persons"
|
7327 |
msgstr ""
|
7328 |
|
7329 |
+
#: core/lib/wpbc_all_translations1.php:416 inc/_ps/wpbc-print.php:84
|
7330 |
msgid "Data"
|
7331 |
msgstr ""
|
7332 |
|
7333 |
+
#: core/lib/wpbc_all_translations1.php:417 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:298
|
7334 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
|
7335 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:318
|
7336 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
|
7338 |
msgid "Enable this payment gateway"
|
7339 |
msgstr ""
|
7340 |
|
7341 |
+
#: core/lib/wpbc_all_translations1.php:418 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:308
|
7342 |
msgid "API Login ID"
|
7343 |
msgstr ""
|
7344 |
|
7345 |
+
#: core/lib/wpbc_all_translations1.php:419 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:310
|
7346 |
#, php-format
|
7347 |
msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
|
7348 |
msgstr ""
|
7349 |
|
7350 |
+
#: core/lib/wpbc_all_translations1.php:420
|
7351 |
msgid "Transaction Key"
|
7352 |
msgstr ""
|
7353 |
|
7354 |
+
#: core/lib/wpbc_all_translations1.php:421 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:514
|
7355 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:529
|
7356 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:546
|
7357 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:561
|
7359 |
msgid "This parameter have to assigned to you by %s"
|
7360 |
msgstr ""
|
7361 |
|
7362 |
+
#: core/lib/wpbc_all_translations1.php:422 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:366
|
7363 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
|
7364 |
#: inc/gateways/sage/wpbc-gw-sage.php:424
|
7365 |
msgid "Chose payment mode"
|
7366 |
msgstr ""
|
7367 |
|
7368 |
+
#: core/lib/wpbc_all_translations1.php:423 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:367
|
7369 |
msgid ""
|
7370 |
"Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
|
7371 |
"for using Developer account."
|
7372 |
msgstr ""
|
7373 |
|
7374 |
+
#: core/lib/wpbc_all_translations1.php:424 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:370
|
7375 |
msgid ""
|
7376 |
"Transactions posted against live merchant accounts using either of the above testing methods are "
|
7377 |
"not submitted to financial institutions for authorization and are not stored in the Merchant "
|
7378 |
"Interface."
|
7379 |
msgstr ""
|
7380 |
|
7381 |
+
#: core/lib/wpbc_all_translations1.php:425 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:375
|
7382 |
msgid "Developer Test"
|
7383 |
msgstr ""
|
7384 |
|
7385 |
+
#: core/lib/wpbc_all_translations1.php:426 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:376
|
7386 |
msgid "Live Test"
|
7387 |
msgstr ""
|
7388 |
|
7389 |
+
#: core/lib/wpbc_all_translations1.php:427 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:377
|
7390 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:429
|
7391 |
msgid "Live"
|
7392 |
msgstr ""
|
7393 |
|
7394 |
+
#: core/lib/wpbc_all_translations1.php:428 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:385
|
7395 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
|
7396 |
msgid "Transaction type"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
+
#: core/lib/wpbc_all_translations1.php:429 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:386
|
7400 |
msgid "Select transaction type, which supported by the payment gateway."
|
7401 |
msgstr ""
|
7402 |
|
7403 |
+
#: core/lib/wpbc_all_translations1.php:430 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:389
|
7404 |
msgid "Authorization and Capture"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
+
#: core/lib/wpbc_all_translations1.php:431 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:390
|
7408 |
msgid "Authorization Only"
|
7409 |
msgstr ""
|
7410 |
|
7411 |
+
#: core/lib/wpbc_all_translations1.php:432 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:396
|
7412 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:438 inc/gateways/sage/wpbc-gw-sage.php:453
|
7413 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:582
|
7414 |
msgid "U.S. Dollars"
|
7415 |
msgstr ""
|
7416 |
|
7417 |
+
#: core/lib/wpbc_all_translations1.php:433 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:397
|
7418 |
#: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:583
|
7419 |
msgid "Pounds Sterling"
|
7420 |
msgstr ""
|
7421 |
|
7422 |
+
#: core/lib/wpbc_all_translations1.php:434 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:398
|
7423 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
|
7424 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:584
|
7425 |
msgid "Euros"
|
7426 |
msgstr ""
|
7427 |
|
7428 |
+
#: core/lib/wpbc_all_translations1.php:435 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:399
|
7429 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
|
7430 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:585
|
7431 |
msgid "Canadian Dollars"
|
7432 |
msgstr ""
|
7433 |
|
7434 |
+
#: core/lib/wpbc_all_translations1.php:436 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:404
|
7435 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:369 inc/gateways/paypal/wpbc-gw-paypal.php:466
|
7436 |
#: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:726
|
7437 |
msgid "Accepted Currency"
|
7438 |
msgstr ""
|
7439 |
|
7440 |
+
#: core/lib/wpbc_all_translations1.php:437 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:405
|
7441 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:370 inc/gateways/paypal/wpbc-gw-paypal.php:467
|
7442 |
#: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:727
|
7443 |
msgid "The currency code that gateway will process the payment in."
|
7444 |
msgstr ""
|
7445 |
|
7446 |
+
#: core/lib/wpbc_all_translations1.php:438 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:408
|
7447 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:730
|
7448 |
msgid ""
|
7449 |
"Setting the currency that is not supported by the payment processor will result in an error."
|
7450 |
msgstr ""
|
7451 |
|
7452 |
+
#: core/lib/wpbc_all_translations1.php:439 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:418
|
7453 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:419
|
7454 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1052 inc/gateways/ideal/wpbc-gw-ideal.php:309
|
7455 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
|
7464 |
msgid "Pay via"
|
7465 |
msgstr ""
|
7466 |
|
7467 |
+
#: core/lib/wpbc_all_translations1.php:440 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:420
|
7468 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:381
|
7469 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
|
7470 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:750
|
7471 |
msgid "Payment button title"
|
7472 |
msgstr ""
|
7473 |
|
7474 |
+
#: core/lib/wpbc_all_translations1.php:441 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:421
|
7475 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
|
7476 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
|
7477 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:751
|
7478 |
msgid "Enter the title of the payment button"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
+
#: core/lib/wpbc_all_translations1.php:442 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:432
|
7482 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:433
|
7483 |
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1048 inc/gateways/ideal/wpbc-gw-ideal.php:471
|
7484 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
|
7493 |
msgid "Payment for booking %s on these day(s): %s"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
+
#: core/lib/wpbc_all_translations1.php:443 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:434
|
7497 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:395
|
7498 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
|
7499 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:764
|
7500 |
msgid "Payment description at gateway website"
|
7501 |
msgstr ""
|
7502 |
|
7503 |
+
#: core/lib/wpbc_all_translations1.php:444 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:435
|
7504 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:396
|
7505 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
|
7506 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:765
|
7507 |
msgid "Enter the service name or the reason for the payment here."
|
7508 |
msgstr ""
|
7509 |
|
7510 |
+
#: core/lib/wpbc_all_translations1.php:445 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:436
|
7511 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:397
|
7512 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
|
7513 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:766
|
7514 |
msgid "You can use any shortcodes, which you have used in content of booking fields data form."
|
7515 |
msgstr ""
|
7516 |
|
7517 |
+
#: core/lib/wpbc_all_translations1.php:446 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:439
|
7518 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:400
|
7519 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
|
7520 |
#, php-format
|
7521 |
msgid "This field support only up to %s characters by payment system."
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: core/lib/wpbc_all_translations1.php:447 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:457
|
7525 |
msgid "Activate Relay Response"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
+
#: core/lib/wpbc_all_translations1.php:448 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:458
|
7529 |
msgid ""
|
7530 |
"Indicate to the payment gateway that you would like to receive the transaction response to your "
|
7531 |
"site."
|
7532 |
msgstr ""
|
7533 |
|
7534 |
+
#: core/lib/wpbc_all_translations1.php:449 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:461
|
7535 |
msgid ""
|
7536 |
"You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
|
7537 |
"Interface, if a Relay Response is activated here."
|
7538 |
msgstr ""
|
7539 |
|
7540 |
+
#: core/lib/wpbc_all_translations1.php:450
|
7541 |
msgid "MD5 Hash value"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
+
#: core/lib/wpbc_all_translations1.php:451
|
7545 |
msgid ""
|
7546 |
"Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
|
7547 |
msgstr ""
|
7548 |
|
7549 |
+
#: core/lib/wpbc_all_translations1.php:452
|
7550 |
msgid "To configure MD5 Hash value in Relay Response for your transactions"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
+
#: core/lib/wpbc_all_translations1.php:453
|
7554 |
msgid "Log on to the Merchant Interface"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
+
#: core/lib/wpbc_all_translations1.php:454
|
7558 |
msgid "Click Settings under Account in the main menu on the left"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
+
#: core/lib/wpbc_all_translations1.php:455
|
7562 |
msgid "Click MD5-Hash in the Security Settings section"
|
7563 |
msgstr ""
|
7564 |
|
7565 |
+
#: core/lib/wpbc_all_translations1.php:456
|
7566 |
msgid "Enter this value"
|
7567 |
msgstr ""
|
7568 |
|
7569 |
+
#: core/lib/wpbc_all_translations1.php:457
|
7570 |
msgid "Click Submit"
|
7571 |
msgstr ""
|
7572 |
|
7573 |
+
#: core/lib/wpbc_all_translations1.php:458
|
7574 |
#, php-format
|
7575 |
msgid ""
|
7576 |
"For more information about configuring Relay Response in the Merchant Interface, please see the "
|
7577 |
"%sMerchant Integration Guide%s"
|
7578 |
msgstr ""
|
7579 |
|
7580 |
+
#: core/lib/wpbc_all_translations1.php:459 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:497
|
7581 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:421
|
7582 |
#: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:790
|
7583 |
msgid "Return URL after Successful order"
|
7584 |
msgstr ""
|
7585 |
|
7586 |
+
#: core/lib/wpbc_all_translations1.php:460 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:515
|
7587 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:437
|
7588 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
|
7589 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:808
|
7590 |
msgid "The URL where visitor will be redirected after completing payment."
|
7591 |
msgstr ""
|
7592 |
|
7593 |
+
#: core/lib/wpbc_all_translations1.php:461 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:516
|
7594 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:438
|
7595 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
|
7596 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:809
|
7598 |
msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
|
7599 |
msgstr ""
|
7600 |
|
7601 |
+
#: core/lib/wpbc_all_translations1.php:462 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:531
|
7602 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:452
|
7603 |
#: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:824
|
7604 |
msgid "Return URL after Failed order"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
+
#: core/lib/wpbc_all_translations1.php:463 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:549
|
7608 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:468
|
7609 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
|
7610 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:842
|
7611 |
msgid "The URL where the visitor will be redirected after completing payment."
|
7612 |
msgstr ""
|
7613 |
|
7614 |
+
#: core/lib/wpbc_all_translations1.php:464 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:550
|
7615 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:469
|
7616 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
|
7617 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:843
|
7619 |
msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
|
7620 |
msgstr ""
|
7621 |
|
7622 |
+
#: core/lib/wpbc_all_translations1.php:465 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:561
|
7623 |
msgid "Automatically approve booking"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: core/lib/wpbc_all_translations1.php:466 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:562
|
7627 |
msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
|
7628 |
msgstr ""
|
7629 |
|
7630 |
+
#: core/lib/wpbc_all_translations1.php:467 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:564
|
7631 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/paypal/wpbc-gw-paypal.php:640
|
7632 |
#: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:857
|
7633 |
msgid "This will not work, if the visitor leaves the payment page."
|
7634 |
msgstr ""
|
7635 |
|
7636 |
+
#: core/lib/wpbc_all_translations1.php:468 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:784
|
7637 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7638 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7639 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
|
7647 |
msgid "%s Settings"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
+
#: core/lib/wpbc_all_translations1.php:469 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:785
|
7651 |
msgid "Integration of authorizenet payment system"
|
7652 |
msgstr ""
|
7653 |
|
7654 |
+
#: core/lib/wpbc_all_translations1.php:470
|
7655 |
#, php-format
|
7656 |
msgid ""
|
7657 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
7659 |
"gateway."
|
7660 |
msgstr ""
|
7661 |
|
7662 |
+
#: core/lib/wpbc_all_translations1.php:471
|
7663 |
msgid ""
|
7664 |
"Please configure all fields inside the Billing form fields tab at this page, when using a "
|
7665 |
"European payment processor"
|
7666 |
msgstr ""
|
7667 |
|
7668 |
+
#: core/lib/wpbc_all_translations1.php:472 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:901
|
7669 |
msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
|
7670 |
msgstr ""
|
7671 |
|
7672 |
+
#: core/lib/wpbc_all_translations1.php:473 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:911
|
7673 |
#, php-format
|
7674 |
msgid "%s - Server Integration Method (SIM)"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
+
#: core/lib/wpbc_all_translations1.php:474 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:231
|
7678 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
|
7679 |
msgid "Payment method description that the customer will see on your payment page."
|
7680 |
msgstr ""
|
7681 |
|
7682 |
+
#: core/lib/wpbc_all_translations1.php:475 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:264
|
7683 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
|
7684 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7685 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7686 |
msgid "Bank Transfer"
|
7687 |
msgstr ""
|
7688 |
|
7689 |
+
#: core/lib/wpbc_all_translations1.php:476 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:345
|
7690 |
msgid "Integration of Bank Transfer payment system"
|
7691 |
msgstr ""
|
7692 |
|
7693 |
+
#: core/lib/wpbc_all_translations1.php:477 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:426
|
7694 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
|
7695 |
msgid "Account details"
|
7696 |
msgstr ""
|
7697 |
|
7698 |
+
#: core/lib/wpbc_all_translations1.php:478 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:480
|
7699 |
#, php-format
|
7700 |
msgid "Allow payments by %sdirect bank / wire transfer%s"
|
7701 |
msgstr ""
|
7702 |
|
7703 |
+
#: core/lib/wpbc_all_translations1.php:479 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:482
|
7704 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
|
7705 |
msgid "Its only show fixed payment details."
|
7706 |
msgstr ""
|
7707 |
|
7708 |
+
#: core/lib/wpbc_all_translations1.php:480 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:717
|
7709 |
msgid "Sort Code"
|
7710 |
msgstr ""
|
7711 |
|
7712 |
+
#: core/lib/wpbc_all_translations1.php:481 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:725
|
7713 |
#, php-format
|
7714 |
msgid ""
|
7715 |
"Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
|
7716 |
"the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
+
#: core/lib/wpbc_all_translations1.php:482 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:731
|
7720 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
|
7721 |
msgid "Account Number"
|
7722 |
msgstr ""
|
7723 |
|
7724 |
+
#: core/lib/wpbc_all_translations1.php:483 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:733
|
7725 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
|
7726 |
msgid "IBAN"
|
7727 |
msgstr ""
|
7728 |
|
7729 |
+
#: core/lib/wpbc_all_translations1.php:484 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:734
|
7730 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
|
7731 |
msgid "BIC / Swift"
|
7732 |
msgstr ""
|
7733 |
|
7734 |
+
#: core/lib/wpbc_all_translations1.php:485 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:737
|
7735 |
msgid "Account Name"
|
7736 |
msgstr ""
|
7737 |
|
7738 |
+
#: core/lib/wpbc_all_translations1.php:486 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:739
|
7739 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:324
|
7740 |
msgid "Bank Name"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
+
#: core/lib/wpbc_all_translations1.php:487 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:787
|
7744 |
msgid "BSB"
|
7745 |
msgstr ""
|
7746 |
|
7747 |
+
#: core/lib/wpbc_all_translations1.php:488 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:788
|
7748 |
msgid "Bank Transit Number"
|
7749 |
msgstr ""
|
7750 |
|
7751 |
+
#: core/lib/wpbc_all_translations1.php:489 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:789
|
7752 |
msgid "IFSC"
|
7753 |
msgstr ""
|
7754 |
|
7755 |
+
#: core/lib/wpbc_all_translations1.php:490 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:790
|
7756 |
msgid "Branch Sort"
|
7757 |
msgstr ""
|
7758 |
|
7759 |
+
#: core/lib/wpbc_all_translations1.php:491 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:791
|
7760 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
|
7761 |
msgid "Bank Code"
|
7762 |
msgstr ""
|
7763 |
|
7764 |
+
#: core/lib/wpbc_all_translations1.php:492 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:793
|
7765 |
msgid "Routing Number"
|
7766 |
msgstr ""
|
7767 |
|
7768 |
+
#: core/lib/wpbc_all_translations1.php:493 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:794
|
7769 |
msgid "Branch Code"
|
7770 |
msgstr ""
|
7771 |
|
7772 |
+
#: core/lib/wpbc_all_translations1.php:494 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:804
|
7773 |
#, php-format
|
7774 |
msgid "%s - inserting all bank accounts details"
|
7775 |
msgstr ""
|
7776 |
|
7777 |
+
#: core/lib/wpbc_all_translations1.php:495 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:805
|
7778 |
#, php-format
|
7779 |
msgid "%s - inserting account name"
|
7780 |
msgstr ""
|
7781 |
|
7782 |
+
#: core/lib/wpbc_all_translations1.php:496 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:806
|
7783 |
#, php-format
|
7784 |
msgid "%s - inserting account number"
|
7785 |
msgstr ""
|
7786 |
|
7787 |
+
#: core/lib/wpbc_all_translations1.php:497 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:807
|
7788 |
#, php-format
|
7789 |
msgid "%s - inserting bank name "
|
7790 |
msgstr ""
|
7791 |
|
7792 |
+
#: core/lib/wpbc_all_translations1.php:498 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:808
|
7793 |
#, php-format
|
7794 |
msgid "%s - inserting sort code "
|
7795 |
msgstr ""
|
7796 |
|
7797 |
+
#: core/lib/wpbc_all_translations1.php:499 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:809
|
7798 |
#, php-format
|
7799 |
msgid "%s - inserting IBAN "
|
7800 |
msgstr ""
|
7801 |
|
7802 |
+
#: core/lib/wpbc_all_translations1.php:500 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:810
|
7803 |
#, php-format
|
7804 |
msgid "%s - inserting BIC "
|
7805 |
msgstr ""
|
7806 |
|
7807 |
+
#: core/lib/wpbc_all_translations1.php:501 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:815
|
7808 |
msgid ""
|
7809 |
"You can use any shortcodes, that you can use in payment description form at Settings Payment "
|
7810 |
"General page"
|
7811 |
msgstr ""
|
7812 |
|
7813 |
+
#: core/lib/wpbc_all_translations1.php:502 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
|
7814 |
msgid "+ Add Account"
|
7815 |
msgstr ""
|
7816 |
|
7817 |
+
#: core/lib/wpbc_all_translations1.php:503 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
|
7818 |
msgid "Remove selected account(s)"
|
7819 |
msgstr ""
|
7820 |
|
7821 |
+
#: core/lib/wpbc_all_translations1.php:504 inc/gateways/ipay88/ipay88-backend.php:92
|
7822 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:570
|
7823 |
msgid "Successful payment"
|
7824 |
msgstr ""
|
7825 |
|
7826 |
+
#: core/lib/wpbc_all_translations1.php:505 inc/gateways/ipay88/ipay88-backend.php:94
|
7827 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:573
|
7828 |
msgid " Parameters are incorrect,"
|
7829 |
msgstr ""
|
7830 |
|
7831 |
+
#: core/lib/wpbc_all_translations1.php:506 inc/gateways/ipay88/ipay88-backend.php:95
|
7832 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:575
|
7833 |
msgid "Cannot find the record"
|
7834 |
msgstr ""
|
7835 |
|
7836 |
+
#: core/lib/wpbc_all_translations1.php:507 inc/gateways/ipay88/ipay88-backend.php:96
|
7837 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:577
|
7838 |
msgid "Amount different"
|
7839 |
msgstr ""
|
7840 |
|
7841 |
+
#: core/lib/wpbc_all_translations1.php:508 inc/gateways/ipay88/ipay88-backend.php:97
|
7842 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:579
|
7843 |
msgid "Payment failed"
|
7844 |
msgstr ""
|
7845 |
|
7846 |
+
#: core/lib/wpbc_all_translations1.php:509 inc/gateways/ipay88/ipay88-backend.php:98
|
7847 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:581
|
7848 |
msgid "Payment status updated by Mobile88 Admin(Fail)"
|
7849 |
msgstr ""
|
7850 |
|
7851 |
+
#: core/lib/wpbc_all_translations1.php:510 inc/gateways/ipay88/ipay88-backend.php:99
|
7852 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:583
|
7853 |
msgid "Connection Error"
|
7854 |
msgstr ""
|
7855 |
|
7856 |
+
#: core/lib/wpbc_all_translations1.php:511 inc/gateways/ipay88/wpbc-gw-ipay88.php:328
|
7857 |
msgid "Merchant Code"
|
7858 |
msgstr ""
|
7859 |
|
7860 |
+
#: core/lib/wpbc_all_translations1.php:512 inc/gateways/ipay88/wpbc-gw-ipay88.php:330
|
7861 |
msgid "Enter your iPay88 Merchant Code."
|
7862 |
msgstr ""
|
7863 |
|
7864 |
+
#: core/lib/wpbc_all_translations1.php:513 inc/gateways/ideal/wpbc-gw-ideal.php:403
|
7865 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:343
|
7866 |
msgid "Merchant Key"
|
7867 |
msgstr ""
|
7868 |
|
7869 |
+
#: core/lib/wpbc_all_translations1.php:514 inc/gateways/ipay88/wpbc-gw-ipay88.php:345
|
7870 |
msgid "Enter your iPay88 Merchant Key."
|
7871 |
msgstr ""
|
7872 |
|
7873 |
+
#: core/lib/wpbc_all_translations1.php:515 inc/gateways/ipay88/wpbc-gw-ipay88.php:355
|
7874 |
msgid "Malaysian Ringgit"
|
7875 |
msgstr ""
|
7876 |
|
7877 |
+
#: core/lib/wpbc_all_translations1.php:516 inc/gateways/paypal/wpbc-gw-paypal.php:458
|
7878 |
#: inc/gateways/sage/wpbc-gw-sage.php:471
|
7879 |
msgid "Philippine Pesos"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
+
#: core/lib/wpbc_all_translations1.php:517 inc/gateways/ideal/wpbc-gw-ideal.php:564
|
7883 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:479 inc/gateways/paypal/wpbc-gw-paypal.php:637
|
7884 |
#: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:854
|
7885 |
msgid "Automatically approve/cancel booking"
|
7886 |
msgstr ""
|
7887 |
|
7888 |
+
#: core/lib/wpbc_all_translations1.php:518 inc/gateways/ideal/wpbc-gw-ideal.php:565
|
7889 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:480 inc/gateways/paypal/wpbc-gw-paypal.php:638
|
7890 |
#: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:855
|
7891 |
msgid ""
|
7893 |
"automatically cancel the booking, when visitor makes a payment cancellation."
|
7894 |
msgstr ""
|
7895 |
|
7896 |
+
#: core/lib/wpbc_all_translations1.php:519 inc/gateways/ipay88/wpbc-gw-ipay88.php:730
|
7897 |
msgid "Integration of iPay88 payment system"
|
7898 |
msgstr ""
|
7899 |
|
7900 |
+
#: core/lib/wpbc_all_translations1.php:520 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:893
|
7901 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:832 inc/gateways/sage/wpbc-gw-sage.php:883
|
7902 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1113
|
7903 |
#, php-format
|
7906 |
"tab."
|
7907 |
msgstr ""
|
7908 |
|
7909 |
+
#: core/lib/wpbc_all_translations1.php:521 inc/gateways/page-gateways.php:65
|
7910 |
msgid "for 1 day"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
+
#: core/lib/wpbc_all_translations1.php:522 inc/gateways/page-gateways.php:66
|
7914 |
msgid "for 1 night"
|
7915 |
msgstr ""
|
7916 |
|
7917 |
+
#: core/lib/wpbc_all_translations1.php:523 inc/gateways/page-gateways.php:67
|
7918 |
msgid "fixed sum"
|
7919 |
msgstr ""
|
7920 |
|
7921 |
+
#: core/lib/wpbc_all_translations1.php:524 inc/gateways/page-gateways.php:68
|
7922 |
msgid "for 1 hour"
|
7923 |
msgstr ""
|
7924 |
|
7925 |
+
#: core/lib/wpbc_all_translations1.php:525 inc/gateways/page-gateways.php:73
|
7926 |
msgid "Set the cost"
|
7927 |
msgstr ""
|
7928 |
|
7929 |
+
#: core/lib/wpbc_all_translations1.php:526 inc/gateways/page-gateways.php:74
|
7930 |
msgid " Select your cost configuration."
|
7931 |
msgstr ""
|
7932 |
|
7933 |
+
#: core/lib/wpbc_all_translations1.php:527 inc/gateways/page-gateways.php:82
|
7934 |
msgid "Time impact to cost"
|
7935 |
msgstr ""
|
7936 |
|
7937 |
+
#: core/lib/wpbc_all_translations1.php:528 inc/gateways/page-gateways.php:83
|
7938 |
#, php-format
|
7939 |
msgid ""
|
7940 |
"Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
|
7941 |
"calculation%s."
|
7942 |
msgstr ""
|
7943 |
|
7944 |
+
#: core/lib/wpbc_all_translations1.php:529 inc/gateways/page-gateways.php:93
|
7945 |
msgid ""
|
7946 |
"Check this box if you want that specific additional cost, which configured as percentage for "
|
7947 |
"some option, apply to other additional fixed costs and not only to original booking cost."
|
7948 |
msgstr ""
|
7949 |
|
7950 |
+
#: core/lib/wpbc_all_translations1.php:530 inc/gateways/page-gateways.php:195
|
7951 |
#: inc/gateways/page-gateways.php:869
|
7952 |
msgid "Currency"
|
7953 |
msgstr ""
|
7954 |
|
7955 |
+
#: core/lib/wpbc_all_translations1.php:531 inc/gateways/page-gateways.php:198
|
7956 |
msgid ""
|
7957 |
"This is default currency that showing at your website. Specific payment gateway(s) can support "
|
7958 |
"or does not suport it."
|
7959 |
msgstr ""
|
7960 |
|
7961 |
+
#: core/lib/wpbc_all_translations1.php:532 inc/gateways/page-gateways.php:152
|
7962 |
#: inc/gateways/page-gateways.php:201 inc/gateways/page-gateways.php:921
|
7963 |
msgid "Important"
|
7964 |
msgstr ""
|
7965 |
|
7966 |
+
#: core/lib/wpbc_all_translations1.php:533 inc/gateways/page-gateways.php:201
|
7967 |
msgid "Check and configure currency at each activated payment gateway."
|
7968 |
msgstr ""
|
7969 |
|
7970 |
+
#: core/lib/wpbc_all_translations1.php:534 inc/gateways/page-gateways.php:211
|
7971 |
msgid "Currency Position"
|
7972 |
msgstr ""
|
7973 |
|
7974 |
+
#: core/lib/wpbc_all_translations1.php:535 inc/gateways/page-gateways.php:212
|
7975 |
msgid "Set position of the currency symbol."
|
7976 |
msgstr ""
|
7977 |
|
7978 |
+
#: core/lib/wpbc_all_translations1.php:536 inc/gateways/page-gateways.php:215
|
7979 |
msgid "Left"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
+
#: core/lib/wpbc_all_translations1.php:537 inc/gateways/page-gateways.php:219
|
7983 |
msgid "Right"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
+
#: core/lib/wpbc_all_translations1.php:538 inc/gateways/page-gateways.php:223
|
7987 |
msgid "Left with space"
|
7988 |
msgstr ""
|
7989 |
|
7990 |
+
#: core/lib/wpbc_all_translations1.php:539 inc/gateways/page-gateways.php:227
|
7991 |
msgid "Right with space"
|
7992 |
msgstr ""
|
7993 |
|
7994 |
+
#: core/lib/wpbc_all_translations1.php:540 inc/gateways/page-gateways.php:246
|
7995 |
msgid "Currency format"
|
7996 |
msgstr ""
|
7997 |
|
7998 |
+
#: core/lib/wpbc_all_translations1.php:541 inc/gateways/page-gateways.php:247
|
7999 |
msgid "Number of decimal points"
|
8000 |
msgstr ""
|
8001 |
|
8002 |
+
#: core/lib/wpbc_all_translations1.php:542 inc/gateways/page-gateways.php:254
|
8003 |
#: inc/gateways/page-gateways.php:269
|
8004 |
msgid "No separator"
|
8005 |
msgstr ""
|
8006 |
|
8007 |
+
#: core/lib/wpbc_all_translations1.php:543 inc/gateways/page-gateways.php:255
|
8008 |
#: inc/gateways/page-gateways.php:270
|
8009 |
msgid "Space"
|
8010 |
msgstr ""
|
8011 |
|
8012 |
+
#: core/lib/wpbc_all_translations1.php:544 inc/gateways/page-gateways.php:256
|
8013 |
#: inc/gateways/page-gateways.php:271
|
8014 |
msgid "Dot"
|
8015 |
msgstr ""
|
8016 |
|
8017 |
+
#: core/lib/wpbc_all_translations1.php:545 inc/gateways/page-gateways.php:257
|
8018 |
#: inc/gateways/page-gateways.php:272
|
8019 |
msgid "Comma"
|
8020 |
msgstr ""
|
8021 |
|
8022 |
+
#: core/lib/wpbc_all_translations1.php:546 inc/gateways/page-gateways.php:262
|
8023 |
msgid "Separator for the decimal point"
|
8024 |
msgstr ""
|
8025 |
|
8026 |
+
#: core/lib/wpbc_all_translations1.php:547 inc/gateways/page-gateways.php:277
|
8027 |
msgid "Thousands separator"
|
8028 |
msgstr ""
|
8029 |
|
8030 |
+
#: core/lib/wpbc_all_translations1.php:548 inc/gateways/page-gateways.php:290
|
8031 |
msgid "Please select"
|
8032 |
msgstr ""
|
8033 |
|
8034 |
+
#: core/lib/wpbc_all_translations1.php:549 inc/gateways/page-gateways.php:301
|
8035 |
msgid ""
|
8036 |
"Please select a field from your booking form. This field will be automatically assigned to the "
|
8037 |
"current field in the billing form."
|
8038 |
msgstr ""
|
8039 |
|
8040 |
+
#: core/lib/wpbc_all_translations1.php:550 inc/gateways/page-gateways.php:313
|
8041 |
msgid "Customer Email"
|
8042 |
msgstr ""
|
8043 |
|
8044 |
+
#: core/lib/wpbc_all_translations1.php:551 inc/gateways/page-gateways.php:321
|
8045 |
msgid "First Name(s)"
|
8046 |
msgstr ""
|
8047 |
|
8048 |
+
#: core/lib/wpbc_all_translations1.php:552 inc/gateways/page-gateways.php:329
|
8049 |
msgid "Last name"
|
8050 |
msgstr ""
|
8051 |
|
8052 |
+
#: core/lib/wpbc_all_translations1.php:553 inc/gateways/page-gateways.php:345
|
8053 |
msgid "Billing Address"
|
8054 |
msgstr ""
|
8055 |
|
8056 |
+
#: core/lib/wpbc_all_translations1.php:554 inc/gateways/page-gateways.php:353
|
8057 |
msgid "Billing City"
|
8058 |
msgstr ""
|
8059 |
|
8060 |
+
#: core/lib/wpbc_all_translations1.php:555 inc/gateways/page-gateways.php:370
|
8061 |
msgid "Post Code"
|
8062 |
msgstr ""
|
8063 |
|
8064 |
+
#: core/lib/wpbc_all_translations1.php:556 inc/gateways/page-gateways.php:378
|
8065 |
msgid "State"
|
8066 |
msgstr ""
|
8067 |
|
8068 |
+
#: core/lib/wpbc_all_translations1.php:557 inc/gateways/page-gateways.php:390
|
8069 |
msgid "Show booking details in payment form"
|
8070 |
msgstr ""
|
8071 |
|
8072 |
+
#: core/lib/wpbc_all_translations1.php:558 inc/gateways/page-gateways.php:391
|
8073 |
#, php-format
|
8074 |
msgid ""
|
8075 |
" Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
|
8076 |
msgstr ""
|
8077 |
|
8078 |
+
#: core/lib/wpbc_all_translations1.php:559 inc/gateways/page-gateways.php:402
|
8079 |
msgid "Configure booking details summary above the payment form"
|
8080 |
msgstr ""
|
8081 |
|
8082 |
+
#: core/lib/wpbc_all_translations1.php:560 inc/gateways/page-gateways.php:521
|
8083 |
msgid "Payments"
|
8084 |
msgstr ""
|
8085 |
|
8086 |
+
#: core/lib/wpbc_all_translations1.php:561 inc/gateways/page-gateways.php:522
|
8087 |
msgid "Customizaton of Payment"
|
8088 |
msgstr ""
|
8089 |
|
8090 |
+
#: core/lib/wpbc_all_translations1.php:562 inc/gateways/page-gateways.php:523
|
8091 |
msgid "Payment Gateways"
|
8092 |
msgstr ""
|
8093 |
|
8094 |
+
#: core/lib/wpbc_all_translations1.php:563 inc/gateways/page-gateways.php:539
|
8095 |
#: inc/gateways/page-gateways.php:609 inc/gateways/page-gateways.php:636
|
8096 |
msgid "Payment Settings"
|
8097 |
msgstr ""
|
8098 |
|
8099 |
+
#: core/lib/wpbc_all_translations1.php:564 inc/gateways/page-gateways.php:540
|
8100 |
msgid "Payment Gateways - General Settings"
|
8101 |
msgstr ""
|
8102 |
|
8103 |
+
#: core/lib/wpbc_all_translations1.php:565 inc/gateways/page-gateways.php:607
|
8104 |
#: inc/gateways/page-gateways.php:631
|
8105 |
msgid "Active Payment Gateways"
|
8106 |
msgstr ""
|
8107 |
|
8108 |
+
#: core/lib/wpbc_all_translations1.php:566 inc/gateways/page-gateways.php:608
|
8109 |
#: inc/gateways/page-gateways.php:652
|
8110 |
msgid "Billing form fields"
|
8111 |
msgstr ""
|
8112 |
|
8113 |
+
#: core/lib/wpbc_all_translations1.php:567 inc/gateways/page-gateways.php:611
|
8114 |
#: inc/gateways/page-gateways.php:666
|
8115 |
msgid "Payment Description"
|
8116 |
msgstr ""
|
8117 |
|
8118 |
+
#: core/lib/wpbc_all_translations1.php:568 inc/gateways/page-gateways.php:867
|
8119 |
msgid "Gateway"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
+
#: core/lib/wpbc_all_translations1.php:569 inc/gateways/page-gateways.php:917
|
8123 |
#, php-format
|
8124 |
msgid "Some currencies at payment gateways are different from main currency %s"
|
8125 |
msgstr ""
|
8126 |
|
8127 |
+
#: core/lib/wpbc_all_translations1.php:570 inc/gateways/page-gateways.php:921
|
8128 |
#, php-format
|
8129 |
msgid ""
|
8130 |
"Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
|
8131 |
"payment form without currency exchange! Its can be reason of wrong cost."
|
8132 |
msgstr ""
|
8133 |
|
8134 |
+
#: core/lib/wpbc_all_translations1.php:571 inc/gateways/page-gateways.php:1070
|
8135 |
msgid "ID of booking"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
+
#: core/lib/wpbc_all_translations1.php:572 inc/gateways/page-gateways.php:1071
|
8139 |
msgid "ID of booking resources"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
+
#: core/lib/wpbc_all_translations1.php:573 inc/gateways/page-gateways.php:1077
|
8143 |
msgid "current date"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
+
#: core/lib/wpbc_all_translations1.php:574 inc/gateways/page-gateways.php:1078
|
8147 |
msgid "current time"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
+
#: core/lib/wpbc_all_translations1.php:575 inc/gateways/page-gateways.php:1084
|
8151 |
msgid "content data of this booking"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
+
#: core/lib/wpbc_all_translations1.php:576 inc/gateways/page-gateways.php:1085
|
8155 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
|
8156 |
msgid "show amount to pay"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
+
#: core/lib/wpbc_all_translations1.php:577 inc/gateways/page-gateways.php:1087
|
8160 |
msgid "total booking cost"
|
8161 |
msgstr ""
|
8162 |
|
8163 |
+
#: core/lib/wpbc_all_translations1.php:578 inc/gateways/page-gateways.php:1088
|
8164 |
msgid "deposit cost"
|
8165 |
msgstr ""
|
8166 |
|
8167 |
+
#: core/lib/wpbc_all_translations1.php:579 inc/gateways/page-gateways.php:1089
|
8168 |
msgid "balance cost"
|
8169 |
msgstr ""
|
8170 |
|
8171 |
+
#: core/lib/wpbc_all_translations1.php:580 inc/gateways/page-gateways.php:1090
|
8172 |
msgid "original booking cost"
|
8173 |
msgstr ""
|
8174 |
|
8175 |
+
#: core/lib/wpbc_all_translations1.php:581 inc/gateways/page-gateways.php:1091
|
8176 |
msgid "additional booking cost"
|
8177 |
msgstr ""
|
8178 |
|
8179 |
+
#: core/lib/wpbc_all_translations1.php:582 inc/gateways/page-gateways.php:1440
|
8180 |
msgid "Amount to pay"
|
8181 |
msgstr ""
|
8182 |
|
8183 |
+
#: core/lib/wpbc_all_translations1.php:583 inc/gateways/page-gateways.php:1534
|
8184 |
#, php-format
|
8185 |
msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
|
8186 |
msgstr ""
|
8187 |
|
8188 |
+
#: core/lib/wpbc_all_translations1.php:584 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:204
|
8189 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
|
8190 |
msgid "Pay in Cash"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
+
#: core/lib/wpbc_all_translations1.php:585 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:284
|
8194 |
msgid "Integration of Pay in Cash payment system"
|
8195 |
msgstr ""
|
8196 |
|
8197 |
+
#: core/lib/wpbc_all_translations1.php:586 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:362
|
8198 |
#, php-format
|
8199 |
msgid "If you accept %scash payment%s, you can write details about it here"
|
8200 |
msgstr ""
|
8201 |
|
8202 |
+
#: core/lib/wpbc_all_translations1.php:587 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:523
|
8203 |
#, php-format
|
8204 |
msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
+
#: core/lib/wpbc_all_translations1.php:588 inc/gateways/paypal/ipn.php:120
|
8208 |
msgid "Error IPN"
|
8209 |
msgstr ""
|
8210 |
|
8211 |
+
#: core/lib/wpbc_all_translations1.php:589 inc/gateways/paypal/ipn.php:250
|
8212 |
msgid "Verified IPN"
|
8213 |
msgstr ""
|
8214 |
|
8215 |
+
#: core/lib/wpbc_all_translations1.php:590 inc/gateways/paypal/ipn.php:273
|
8216 |
msgid "Invalid IPN"
|
8217 |
msgstr ""
|
8218 |
|
8219 |
+
#: core/lib/wpbc_all_translations1.php:591 inc/gateways/paypal/wpbc-gw-paypal.php:313
|
8220 |
msgid "Make payments with payPal - its fast, free and secure!"
|
8221 |
msgstr ""
|
8222 |
|
8223 |
+
#: core/lib/wpbc_all_translations1.php:592 inc/gateways/paypal/wpbc-gw-paypal.php:352
|
8224 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8225 |
msgid "Paypal Standard"
|
8226 |
msgstr ""
|
8227 |
|
8228 |
+
#: core/lib/wpbc_all_translations1.php:593 inc/gateways/paypal/wpbc-gw-paypal.php:356
|
8229 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8230 |
msgid "Paypal Pro Hosted Solution"
|
8231 |
msgstr ""
|
8232 |
|
8233 |
+
#: core/lib/wpbc_all_translations1.php:594 inc/gateways/paypal/wpbc-gw-paypal.php:363
|
8234 |
msgid "Account Type"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
+
#: core/lib/wpbc_all_translations1.php:595 inc/gateways/paypal/wpbc-gw-paypal.php:375
|
8238 |
msgid "Paypal Email address to receive payments"
|
8239 |
msgstr ""
|
8240 |
|
8241 |
+
#: core/lib/wpbc_all_translations1.php:596 inc/gateways/paypal/wpbc-gw-paypal.php:377
|
8242 |
msgid "This is the Paypal Email address where payments will be sent"
|
8243 |
msgstr ""
|
8244 |
|
8245 |
+
#: core/lib/wpbc_all_translations1.php:597 inc/gateways/paypal/wpbc-gw-paypal.php:391
|
8246 |
msgid "Secure Merchant ID"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
+
#: core/lib/wpbc_all_translations1.php:598 inc/gateways/paypal/wpbc-gw-paypal.php:393
|
8250 |
msgid "This is the Secure Merchant ID, which can be found on the profile page"
|
8251 |
msgstr ""
|
8252 |
|
8253 |
+
#: core/lib/wpbc_all_translations1.php:599 inc/gateways/paypal/wpbc-gw-paypal.php:408
|
8254 |
msgid ""
|
8255 |
" Indicates whether the transaction is payment on a final sale or an authorization for a final "
|
8256 |
"sale, to be captured later. "
|
8257 |
msgstr ""
|
8258 |
|
8259 |
+
#: core/lib/wpbc_all_translations1.php:600 inc/gateways/paypal/wpbc-gw-paypal.php:412
|
8260 |
msgid "Sale"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
+
#: core/lib/wpbc_all_translations1.php:601 inc/gateways/paypal/wpbc-gw-paypal.php:413
|
8264 |
msgid "Authorization"
|
8265 |
msgstr ""
|
8266 |
|
8267 |
+
#: core/lib/wpbc_all_translations1.php:602 inc/gateways/paypal/wpbc-gw-paypal.php:424
|
8268 |
msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
|
8269 |
msgstr ""
|
8270 |
|
8271 |
+
#: core/lib/wpbc_all_translations1.php:603 inc/gateways/paypal/wpbc-gw-paypal.php:430
|
8272 |
msgid "Sandbox"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
+
#: core/lib/wpbc_all_translations1.php:604 inc/gateways/paypal/wpbc-gw-paypal.php:440
|
8276 |
msgid "British Pound"
|
8277 |
msgstr ""
|
8278 |
|
8279 |
+
#: core/lib/wpbc_all_translations1.php:605 inc/gateways/paypal/wpbc-gw-paypal.php:441
|
8280 |
msgid "Japanese Yen"
|
8281 |
msgstr ""
|
8282 |
|
8283 |
+
#: core/lib/wpbc_all_translations1.php:606 inc/gateways/paypal/wpbc-gw-paypal.php:442
|
8284 |
#: inc/gateways/sage/wpbc-gw-sage.php:455
|
8285 |
msgid "Australian Dollars"
|
8286 |
msgstr ""
|
8287 |
|
8288 |
+
#: core/lib/wpbc_all_translations1.php:607 inc/gateways/paypal/wpbc-gw-paypal.php:444
|
8289 |
#: inc/gateways/sage/wpbc-gw-sage.php:457
|
8290 |
msgid "New Zealand Dollar"
|
8291 |
msgstr ""
|
8292 |
|
8293 |
+
#: core/lib/wpbc_all_translations1.php:608 inc/gateways/paypal/wpbc-gw-paypal.php:445
|
8294 |
#: inc/gateways/sage/wpbc-gw-sage.php:458
|
8295 |
msgid "Swiss Franc"
|
8296 |
msgstr ""
|
8297 |
|
8298 |
+
#: core/lib/wpbc_all_translations1.php:609 inc/gateways/paypal/wpbc-gw-paypal.php:446
|
8299 |
#: inc/gateways/sage/wpbc-gw-sage.php:459
|
8300 |
msgid "Hong Kong Dollar"
|
8301 |
msgstr ""
|
8302 |
|
8303 |
+
#: core/lib/wpbc_all_translations1.php:610 inc/gateways/paypal/wpbc-gw-paypal.php:447
|
8304 |
#: inc/gateways/sage/wpbc-gw-sage.php:460
|
8305 |
msgid "Singapore Dollar"
|
8306 |
msgstr ""
|
8307 |
|
8308 |
+
#: core/lib/wpbc_all_translations1.php:611 inc/gateways/paypal/wpbc-gw-paypal.php:448
|
8309 |
#: inc/gateways/sage/wpbc-gw-sage.php:461
|
8310 |
msgid "Swedish Krona"
|
8311 |
msgstr ""
|
8312 |
|
8313 |
+
#: core/lib/wpbc_all_translations1.php:612 inc/gateways/paypal/wpbc-gw-paypal.php:449
|
8314 |
#: inc/gateways/sage/wpbc-gw-sage.php:462
|
8315 |
msgid "Danish Krone"
|
8316 |
msgstr ""
|
8317 |
|
8318 |
+
#: core/lib/wpbc_all_translations1.php:613 inc/gateways/paypal/wpbc-gw-paypal.php:450
|
8319 |
#: inc/gateways/sage/wpbc-gw-sage.php:463
|
8320 |
msgid "Polish Zloty"
|
8321 |
msgstr ""
|
8322 |
|
8323 |
+
#: core/lib/wpbc_all_translations1.php:614 inc/gateways/paypal/wpbc-gw-paypal.php:451
|
8324 |
#: inc/gateways/sage/wpbc-gw-sage.php:464
|
8325 |
msgid "Norwegian Krone"
|
8326 |
msgstr ""
|
8327 |
|
8328 |
+
#: core/lib/wpbc_all_translations1.php:615 inc/gateways/paypal/wpbc-gw-paypal.php:452
|
8329 |
#: inc/gateways/sage/wpbc-gw-sage.php:465
|
8330 |
msgid "Hungarian Forint"
|
8331 |
msgstr ""
|
8332 |
|
8333 |
+
#: core/lib/wpbc_all_translations1.php:616 inc/gateways/paypal/wpbc-gw-paypal.php:453
|
8334 |
#: inc/gateways/sage/wpbc-gw-sage.php:466
|
8335 |
msgid "Czech Koruna"
|
8336 |
msgstr ""
|
8337 |
|
8338 |
+
#: core/lib/wpbc_all_translations1.php:617 inc/gateways/paypal/wpbc-gw-paypal.php:454
|
8339 |
msgid "Israeli New Shekel"
|
8340 |
msgstr ""
|
8341 |
|
8342 |
+
#: core/lib/wpbc_all_translations1.php:618 inc/gateways/paypal/wpbc-gw-paypal.php:455
|
8343 |
#: inc/gateways/sage/wpbc-gw-sage.php:468
|
8344 |
msgid "Mexican Peso"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
+
#: core/lib/wpbc_all_translations1.php:619 inc/gateways/paypal/wpbc-gw-paypal.php:456
|
8348 |
#: inc/gateways/sage/wpbc-gw-sage.php:469
|
8349 |
msgid "Brazilian Real (only for Brazilian users)"
|
8350 |
msgstr ""
|
8351 |
|
8352 |
+
#: core/lib/wpbc_all_translations1.php:620 inc/gateways/paypal/wpbc-gw-paypal.php:457
|
8353 |
#: inc/gateways/sage/wpbc-gw-sage.php:470
|
8354 |
msgid "Malaysian Ringgits (only for Malaysian users)"
|
8355 |
msgstr ""
|
8356 |
|
8357 |
+
#: core/lib/wpbc_all_translations1.php:621 inc/gateways/paypal/wpbc-gw-paypal.php:459
|
8358 |
#: inc/gateways/sage/wpbc-gw-sage.php:472
|
8359 |
msgid "Taiwan New Dollars"
|
8360 |
msgstr ""
|
8361 |
|
8362 |
+
#: core/lib/wpbc_all_translations1.php:622 inc/gateways/paypal/wpbc-gw-paypal.php:460
|
8363 |
#: inc/gateways/sage/wpbc-gw-sage.php:473
|
8364 |
msgid "Thai Baht"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
+
#: core/lib/wpbc_all_translations1.php:623 inc/gateways/paypal/wpbc-gw-paypal.php:461
|
8368 |
msgid "Turkish Lira (only for Turkish members)"
|
8369 |
msgstr ""
|
8370 |
|
8371 |
+
#: core/lib/wpbc_all_translations1.php:624 inc/gateways/paypal/wpbc-gw-paypal.php:480
|
8372 |
msgid "Custom button title"
|
8373 |
msgstr ""
|
8374 |
|
8375 |
+
#: core/lib/wpbc_all_translations1.php:625 inc/gateways/paypal/wpbc-gw-paypal.php:487
|
8376 |
msgid "Payment Button type"
|
8377 |
msgstr ""
|
8378 |
|
8379 |
+
#: core/lib/wpbc_all_translations1.php:626 inc/gateways/paypal/wpbc-gw-paypal.php:542
|
8380 |
msgid "Show Reference Text Box"
|
8381 |
msgstr ""
|
8382 |
|
8383 |
+
#: core/lib/wpbc_all_translations1.php:627 inc/gateways/paypal/wpbc-gw-paypal.php:543
|
8384 |
msgid "Check this box to show Reference Text Box"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: core/lib/wpbc_all_translations1.php:628 inc/gateways/paypal/wpbc-gw-paypal.php:551
|
8388 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
|
8389 |
msgid "Enter your phone number"
|
8390 |
msgstr ""
|
8391 |
|
8392 |
+
#: core/lib/wpbc_all_translations1.php:629 inc/gateways/paypal/wpbc-gw-paypal.php:553
|
8393 |
msgid "Reference Text Box Title"
|
8394 |
msgstr ""
|
8395 |
|
8396 |
+
#: core/lib/wpbc_all_translations1.php:630 inc/gateways/paypal/wpbc-gw-paypal.php:554
|
8397 |
msgid ""
|
8398 |
"Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
|
8399 |
msgstr ""
|
8400 |
|
8401 |
+
#: core/lib/wpbc_all_translations1.php:631 inc/gateways/paypal/wpbc-gw-paypal.php:575
|
8402 |
msgid "Return URL from PayPal"
|
8403 |
msgstr ""
|
8404 |
|
8405 |
+
#: core/lib/wpbc_all_translations1.php:632 inc/gateways/paypal/wpbc-gw-paypal.php:606
|
8406 |
msgid "Cancel Return URL from PayPal"
|
8407 |
msgstr ""
|
8408 |
|
8409 |
+
#: core/lib/wpbc_all_translations1.php:633 inc/gateways/paypal/wpbc-gw-paypal.php:657
|
8410 |
#, php-format
|
8411 |
msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
|
8412 |
msgstr ""
|
8413 |
|
8414 |
+
#: core/lib/wpbc_all_translations1.php:634 inc/gateways/paypal/wpbc-gw-paypal.php:658
|
8415 |
msgid "Follow these steps to configure it:"
|
8416 |
msgstr ""
|
8417 |
|
8418 |
+
#: core/lib/wpbc_all_translations1.php:635 inc/gateways/paypal/wpbc-gw-paypal.php:660
|
8419 |
msgid "Log in to your PayPal account."
|
8420 |
msgstr ""
|
8421 |
|
8422 |
+
#: core/lib/wpbc_all_translations1.php:636 inc/gateways/paypal/wpbc-gw-paypal.php:661
|
8423 |
msgid "Click the Profile subtab."
|
8424 |
msgstr ""
|
8425 |
|
8426 |
+
#: core/lib/wpbc_all_translations1.php:637 inc/gateways/paypal/wpbc-gw-paypal.php:662
|
8427 |
msgid "Click Website Payment Preferences in the Seller Preferences column."
|
8428 |
msgstr ""
|
8429 |
|
8430 |
+
#: core/lib/wpbc_all_translations1.php:638 inc/gateways/paypal/wpbc-gw-paypal.php:663
|
8431 |
msgid "Under Auto Return for Website Payments, click the On radio button."
|
8432 |
msgstr ""
|
8433 |
|
8434 |
+
#: core/lib/wpbc_all_translations1.php:639 inc/gateways/paypal/wpbc-gw-paypal.php:664
|
8435 |
msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
|
8436 |
msgstr ""
|
8437 |
|
8438 |
+
#: core/lib/wpbc_all_translations1.php:640 inc/gateways/paypal/wpbc-gw-paypal.php:673
|
8439 |
msgid ""
|
8440 |
"Instant Payment Notification (IPN) is a message service that notifies you of events related to "
|
8441 |
"PayPal transactions"
|
8442 |
msgstr ""
|
8443 |
|
8444 |
+
#: core/lib/wpbc_all_translations1.php:641 inc/gateways/paypal/wpbc-gw-paypal.php:682
|
8445 |
msgid "Sending email for verified transaction"
|
8446 |
msgstr ""
|
8447 |
|
8448 |
+
#: core/lib/wpbc_all_translations1.php:642 inc/gateways/paypal/wpbc-gw-paypal.php:692
|
8449 |
#, php-format
|
8450 |
msgid "Email for getting report for %sverified%s transactions."
|
8451 |
msgstr ""
|
8452 |
|
8453 |
+
#: core/lib/wpbc_all_translations1.php:643 inc/gateways/paypal/wpbc-gw-paypal.php:705
|
8454 |
msgid "Sending email for invalid transaction"
|
8455 |
msgstr ""
|
8456 |
|
8457 |
+
#: core/lib/wpbc_all_translations1.php:644 inc/gateways/paypal/wpbc-gw-paypal.php:715
|
8458 |
#, php-format
|
8459 |
msgid "Email for getting report for %sinvalid%s transactions."
|
8460 |
msgstr ""
|
8461 |
|
8462 |
+
#: core/lib/wpbc_all_translations1.php:645 inc/gateways/paypal/wpbc-gw-paypal.php:728
|
8463 |
msgid "Sending email if error occur during verification"
|
8464 |
msgstr ""
|
8465 |
|
8466 |
+
#: core/lib/wpbc_all_translations1.php:646 inc/gateways/paypal/wpbc-gw-paypal.php:738
|
8467 |
#, php-format
|
8468 |
msgid "Email for getting report for %ssome errors in verification process%s."
|
8469 |
msgstr ""
|
8470 |
|
8471 |
+
#: core/lib/wpbc_all_translations1.php:647 inc/gateways/paypal/wpbc-gw-paypal.php:750
|
8472 |
msgid "Use SSL connection"
|
8473 |
msgstr ""
|
8474 |
|
8475 |
+
#: core/lib/wpbc_all_translations1.php:648 inc/gateways/paypal/wpbc-gw-paypal.php:751
|
8476 |
msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
|
8477 |
msgstr ""
|
8478 |
|
8479 |
+
#: core/lib/wpbc_all_translations1.php:649 inc/gateways/paypal/wpbc-gw-paypal.php:758
|
8480 |
msgid "Use cURL posting"
|
8481 |
msgstr ""
|
8482 |
|
8483 |
+
#: core/lib/wpbc_all_translations1.php:650 inc/gateways/paypal/wpbc-gw-paypal.php:759
|
8484 |
msgid "Use the cURL for posting data, instead of fsockopen() function"
|
8485 |
msgstr ""
|
8486 |
|
8487 |
+
#: core/lib/wpbc_all_translations1.php:651 inc/gateways/paypal/wpbc-gw-paypal.php:775
|
8488 |
msgid " Follow these instructions to set up your listener at your PayPal account:"
|
8489 |
msgstr ""
|
8490 |
|
8491 |
+
#: core/lib/wpbc_all_translations1.php:652 inc/gateways/paypal/wpbc-gw-paypal.php:777
|
8492 |
msgid "Click Profile on the My Account tab."
|
8493 |
msgstr ""
|
8494 |
|
8495 |
+
#: core/lib/wpbc_all_translations1.php:653 inc/gateways/paypal/wpbc-gw-paypal.php:778
|
8496 |
msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
|
8497 |
msgstr ""
|
8498 |
|
8499 |
+
#: core/lib/wpbc_all_translations1.php:654 inc/gateways/paypal/wpbc-gw-paypal.php:779
|
8500 |
msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
|
8501 |
msgstr ""
|
8502 |
|
8503 |
+
#: core/lib/wpbc_all_translations1.php:655 inc/gateways/paypal/wpbc-gw-paypal.php:780
|
8504 |
msgid "Specify the URL for your listener in the Notification URL field as:"
|
8505 |
msgstr ""
|
8506 |
|
8507 |
+
#: core/lib/wpbc_all_translations1.php:656 inc/gateways/paypal/wpbc-gw-paypal.php:782
|
8508 |
msgid "Click Receive IPN messages (Enabled) to enable your listener."
|
8509 |
msgstr ""
|
8510 |
|
8511 |
+
#: core/lib/wpbc_all_translations1.php:657 inc/gateways/paypal/wpbc-gw-paypal.php:783
|
8512 |
msgid "Click Save."
|
8513 |
msgstr ""
|
8514 |
|
8515 |
+
#: core/lib/wpbc_all_translations1.php:658 inc/gateways/paypal/wpbc-gw-paypal.php:784
|
8516 |
msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
|
8517 |
msgstr ""
|
8518 |
|
8519 |
+
#: core/lib/wpbc_all_translations1.php:659 inc/gateways/paypal/wpbc-gw-paypal.php:946
|
8520 |
msgid "PayPal"
|
8521 |
msgstr ""
|
8522 |
|
8523 |
+
#: core/lib/wpbc_all_translations1.php:660 inc/gateways/paypal/wpbc-gw-paypal.php:948
|
8524 |
msgid "Integration of Paypal payment system"
|
8525 |
msgstr ""
|
8526 |
|
8527 |
+
#: core/lib/wpbc_all_translations1.php:661 inc/gateways/paypal/wpbc-gw-paypal.php:1069
|
8528 |
msgid "PayPal IPN"
|
8529 |
msgstr ""
|
8530 |
|
8531 |
+
#: core/lib/wpbc_all_translations1.php:662 inc/gateways/sage/wpbc-gw-sage.php:355
|
8532 |
#, php-format
|
8533 |
msgid "Pay using %s payment service"
|
8534 |
msgstr ""
|
8535 |
|
8536 |
+
#: core/lib/wpbc_all_translations1.php:663 inc/gateways/sage/wpbc-gw-sage.php:395
|
8537 |
msgid "Vendor Name"
|
8538 |
msgstr ""
|
8539 |
|
8540 |
+
#: core/lib/wpbc_all_translations1.php:664 inc/gateways/sage/wpbc-gw-sage.php:397
|
8541 |
msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
|
8542 |
msgstr ""
|
8543 |
|
8544 |
+
#: core/lib/wpbc_all_translations1.php:665 inc/gateways/sage/wpbc-gw-sage.php:410
|
8545 |
msgid "XOR Encryption password"
|
8546 |
msgstr ""
|
8547 |
|
8548 |
+
#: core/lib/wpbc_all_translations1.php:666 inc/gateways/sage/wpbc-gw-sage.php:412
|
8549 |
msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
|
8550 |
msgstr ""
|
8551 |
|
8552 |
+
#: core/lib/wpbc_all_translations1.php:667 inc/gateways/ideal/wpbc-gw-ideal.php:420
|
8553 |
#: inc/gateways/sage/wpbc-gw-sage.php:425
|
8554 |
msgid "Select TEST for the Test Server and LIVE in the live environment"
|
8555 |
msgstr ""
|
8556 |
|
8557 |
+
#: core/lib/wpbc_all_translations1.php:668 inc/gateways/ideal/wpbc-gw-ideal.php:432
|
8558 |
#: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:501
|
8559 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
8560 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
8561 |
msgid "TEST"
|
8562 |
msgstr ""
|
8563 |
|
8564 |
+
#: core/lib/wpbc_all_translations1.php:669 inc/gateways/ideal/wpbc-gw-ideal.php:433
|
8565 |
#: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:502
|
8566 |
msgid "LIVE"
|
8567 |
msgstr ""
|
8568 |
|
8569 |
+
#: core/lib/wpbc_all_translations1.php:670 inc/gateways/sage/wpbc-gw-sage.php:439
|
8570 |
msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
|
8571 |
msgstr ""
|
8572 |
|
8573 |
+
#: core/lib/wpbc_all_translations1.php:671 inc/gateways/sage/wpbc-gw-sage.php:443
|
8574 |
msgid "PAYMENT"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
+
#: core/lib/wpbc_all_translations1.php:672 inc/gateways/sage/wpbc-gw-sage.php:444
|
8578 |
msgid "DEFERRED"
|
8579 |
msgstr ""
|
8580 |
|
8581 |
+
#: core/lib/wpbc_all_translations1.php:673 inc/gateways/sage/wpbc-gw-sage.php:445
|
8582 |
msgid "AUTHENTICATE"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
+
#: core/lib/wpbc_all_translations1.php:674 inc/gateways/sage/wpbc-gw-sage.php:454
|
8586 |
msgid "Yen"
|
8587 |
msgstr ""
|
8588 |
|
8589 |
+
#: core/lib/wpbc_all_translations1.php:675 inc/gateways/sage/wpbc-gw-sage.php:467
|
8590 |
msgid "Israeli Shekel"
|
8591 |
msgstr ""
|
8592 |
|
8593 |
+
#: core/lib/wpbc_all_translations1.php:676 inc/gateways/sage/wpbc-gw-sage.php:782
|
8594 |
msgid "Sage"
|
8595 |
msgstr ""
|
8596 |
|
8597 |
+
#: core/lib/wpbc_all_translations1.php:677 inc/gateways/sage/wpbc-gw-sage.php:784
|
8598 |
msgid "Integration of Sage payment system"
|
8599 |
msgstr ""
|
8600 |
|
8601 |
+
#: core/lib/wpbc_all_translations1.php:678 inc/gateways/sage/wpbc-gw-sage.php:876
|
8602 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1059
|
8603 |
#, php-format
|
8604 |
msgid "If you have no account on this system, please visit %s to create one."
|
8605 |
msgstr ""
|
8606 |
|
8607 |
+
#: core/lib/wpbc_all_translations1.php:679 core/wpbc-functions.php:3512
|
8608 |
msgid "Payment rejected"
|
8609 |
msgstr ""
|
8610 |
|
8611 |
+
#: core/lib/wpbc_all_translations1.php:680 inc/gateways/ideal/wpbc-gw-ideal.php:388
|
8612 |
msgid "Merchant ID"
|
8613 |
msgstr ""
|
8614 |
|
8615 |
+
#: core/lib/wpbc_all_translations1.php:681 inc/gateways/ideal/wpbc-gw-ideal.php:390
|
8616 |
msgid "Enter your iDEAL Merchant ID"
|
8617 |
msgstr ""
|
8618 |
|
8619 |
+
#: core/lib/wpbc_all_translations1.php:682 inc/gateways/ideal/wpbc-gw-ideal.php:405
|
8620 |
msgid "Enter your iDEAL Merchant Key."
|
8621 |
msgstr ""
|
8622 |
|
8623 |
+
#: core/lib/wpbc_all_translations1.php:683 inc/gateways/ideal/wpbc-gw-ideal.php:423
|
8624 |
#, php-format
|
8625 |
msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
|
8626 |
msgstr ""
|
8627 |
|
8628 |
+
#: core/lib/wpbc_all_translations1.php:684 inc/gateways/ideal/wpbc-gw-ideal.php:424
|
8629 |
msgid "Test with Simulator"
|
8630 |
msgstr ""
|
8631 |
|
8632 |
+
#: core/lib/wpbc_all_translations1.php:685 inc/gateways/ideal/wpbc-gw-ideal.php:426
|
8633 |
msgid "My Profile – Connection"
|
8634 |
msgstr ""
|
8635 |
|
8636 |
+
#: core/lib/wpbc_all_translations1.php:686 inc/gateways/ideal/wpbc-gw-ideal.php:482
|
8637 |
#, php-format
|
8638 |
msgid ""
|
8639 |
"If not supplied then the description as configured in the administration/management portal "
|
8641 |
"be applied."
|
8642 |
msgstr ""
|
8643 |
|
8644 |
+
#: core/lib/wpbc_all_translations1.php:687 inc/gateways/ideal/wpbc-gw-ideal.php:483
|
8645 |
msgid "Always use Description"
|
8646 |
msgstr ""
|
8647 |
|
8648 |
+
#: core/lib/wpbc_all_translations1.php:688 inc/gateways/ideal/wpbc-gw-ideal.php:802
|
8649 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:966
|
8650 |
#, php-format
|
8651 |
msgid "Integration of %s payment system"
|
8652 |
msgstr ""
|
8653 |
|
8654 |
+
#: core/lib/wpbc_all_translations1.php:689 inc/gateways/ideal/wpbc-gw-ideal.php:893
|
8655 |
#, php-format
|
8656 |
msgid "Processing your %s payments through %s"
|
8657 |
msgstr ""
|
8658 |
|
8659 |
+
#: core/lib/wpbc_all_translations1.php:690 core/wpbc-emails.php:266
|
8660 |
#, php-format
|
8661 |
msgid "%s - inserting link for export booking to"
|
8662 |
msgstr ""
|
8663 |
|
8664 |
+
#: core/lib/wpbc_all_translations1.php:691 inc/_ps/admin/br-table-export-feeds.php:176
|
8665 |
msgid ".ics Feed URL"
|
8666 |
msgstr ""
|
8667 |
|
8668 |
+
#: core/lib/wpbc_all_translations1.php:692 core/wpbc-emails.php:247 core/wpbc-emails.php:248
|
8669 |
#: core/wpbc-emails.php:249 core/wpbc-emails.php:250 core/wpbc-emails.php:251
|
8670 |
#: core/wpbc-emails.php:252 core/wpbc-emails.php:253
|
8671 |
#, php-format
|
8672 |
msgid "%s - inserting modification date of booking "
|
8673 |
msgstr ""
|
8674 |
|
8675 |
+
#: core/lib/wpbc_all_translations1.php:693 inc/_ps/form/class-wpbc-form-help.php:687
|
8676 |
msgid "Coupon discount value of the booking."
|
8677 |
msgstr ""
|
8678 |
|
8679 |
+
#: core/lib/wpbc_all_translations1.php:694
|
8680 |
msgid "Stripe. Ouch, something went wrong!"
|
8681 |
msgstr ""
|
8682 |
|
8683 |
+
#: core/lib/wpbc_all_translations1.php:695
|
8684 |
#, php-format
|
8685 |
msgid "Please pay %s"
|
8686 |
msgstr ""
|
8687 |
|
8688 |
+
#: core/lib/wpbc_all_translations1.php:696 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:496
|
8689 |
msgid "Chose payment account"
|
8690 |
msgstr ""
|
8691 |
|
8692 |
+
#: core/lib/wpbc_all_translations1.php:697 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:512
|
8693 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
8694 |
msgid "Publishable key"
|
8695 |
msgstr ""
|
8696 |
|
8697 |
+
#: core/lib/wpbc_all_translations1.php:698 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:527
|
8698 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
8699 |
msgid "Secret key"
|
8700 |
msgstr ""
|
8701 |
|
8702 |
+
#: core/lib/wpbc_all_translations1.php:699 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:731
|
8703 |
msgid "For more information:"
|
8704 |
msgstr ""
|
8705 |
|
8706 |
+
#: core/lib/wpbc_all_translations1.php:700 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1092
|
8707 |
#, php-format
|
8708 |
msgid "require PHP version %s or newer!"
|
8709 |
msgstr ""
|
8710 |
|
8711 |
+
#: core/lib/wpbc_all_translations1.php:701 inc/_bl/admin/page-search.php:145
|
8712 |
#, php-format
|
8713 |
msgid "%s - ID of booking resource, "
|
8714 |
msgstr ""
|
8715 |
|
8716 |
+
#: core/lib/wpbc_all_translations1.php:702 inc/_bl/admin/page-search.php:146
|
8717 |
#, php-format
|
8718 |
msgid "%s - ID of page with booking form, "
|
8719 |
msgstr ""
|
8720 |
|
8721 |
+
#: core/lib/wpbc_all_translations1.php:703 inc/_bs/admin/page-email-payment.php:698
|
8722 |
msgid "Email with Payment Request which is sent to Visitor."
|
8723 |
msgstr ""
|
8724 |
|
8725 |
+
#: core/lib/wpbc_all_translations1.php:704 inc/_ps/admin/page-email-edit.php:558
|
8726 |
msgid "Customization of email template, which is sent after modification of booking"
|
8727 |
msgstr ""
|
8728 |
|
8729 |
+
#: core/lib/wpbc_all_translations1.php:705 inc/_ps/admin/page-email-edit.php:694
|
8730 |
msgid "Email is sent to Visitor after Editing of booking."
|
8731 |
msgstr ""
|
8732 |
|
8733 |
+
#: core/lib/wpbc_all_translations1.php:706 core/lib/wpdev-booking-class.php:692
|
8734 |
msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
|
8735 |
msgstr ""
|
8736 |
|
8737 |
+
#: core/lib/wpbc_all_translations1.php:707 core/lib/wpdev-booking-class.php:1024
|
8738 |
msgid "My bookings"
|
8739 |
msgstr ""
|
8740 |
|
8741 |
+
#: core/lib/wpbc_all_translations1.php:708 core/wpbc-emails.php:273
|
8742 |
#, php-format
|
8743 |
msgid ""
|
8744 |
"%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
|
8745 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
8746 |
msgstr ""
|
8747 |
|
8748 |
+
#: core/lib/wpbc_all_translations1.php:709 inc/_bl/admin/page-search.php:705
|
8749 |
msgid "Inline Search Form Template"
|
8750 |
msgstr ""
|
8751 |
|
8752 |
+
#: core/lib/wpbc_all_translations1.php:710 inc/_bm/admin/api-settings-m.php:275
|
8753 |
msgid "Show booking details in tooltip"
|
8754 |
msgstr ""
|
8755 |
|
8756 |
+
#: core/lib/wpbc_all_translations1.php:711 inc/_bm/admin/api-settings-m.php:276
|
8757 |
#, php-format
|
8758 |
msgid ""
|
8759 |
"Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
|
8760 |
"calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
|
8761 |
msgstr ""
|
8762 |
|
8763 |
+
#: core/lib/wpbc_all_translations1.php:712 inc/_bm/admin/api-settings-m.php:284
|
8764 |
msgid "Booking details"
|
8765 |
msgstr ""
|
8766 |
|
8767 |
+
#: core/lib/wpbc_all_translations1.php:713 inc/_bm/admin/api-settings-m.php:285
|
8768 |
msgid "You can use the shortcodes from the bottom form of Settings Fields page."
|
8769 |
msgstr ""
|
8770 |
|
8771 |
+
#: core/lib/wpbc_all_translations1.php:714 inc/_bm/admin/api-settings-m.php:299
|
8772 |
msgid "This option can impact to speed of page loading."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
+
#: core/lib/wpbc_all_translations1.php:715 inc/_bm/admin/page-cost-advanced.php:680
|
8776 |
msgid ""
|
8777 |
"Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
|
8778 |
"mathematics operations"
|
8779 |
msgstr ""
|
8780 |
|
8781 |
+
#: core/lib/wpbc_all_translations1.php:716 inc/_bm/admin/page-cost-advanced.php:682
|
8782 |
#, php-format
|
8783 |
msgid "if selected %s"
|
8784 |
msgstr ""
|
8785 |
|
8786 |
+
#: core/lib/wpbc_all_translations1.php:717 inc/_bs/admin/api-settings-s.php:304
|
8787 |
msgid "Set check out date as available"
|
8788 |
msgstr ""
|
8789 |
|
8790 |
+
#: core/lib/wpbc_all_translations1.php:718 inc/_bs/admin/api-settings-s.php:305
|
8791 |
msgid "Check this option, to remove last selected day of saving to booking."
|
8792 |
msgstr ""
|
8793 |
|
8794 |
+
#: core/lib/wpbc_all_translations1.php:719 inc/_bs/admin/api-settings-s.php:489
|
8795 |
msgid "Auto approve bookings during import"
|
8796 |
msgstr ""
|
8797 |
|
8798 |
+
#: core/lib/wpbc_all_translations1.php:720 inc/_bs/admin/api-settings-s.php:490
|
8799 |
#, php-format
|
8800 |
msgid ""
|
8801 |
"Check this checkbox to activate auto approve of all bookings %sduring import from external "
|
8802 |
"source(s)%s."
|
8803 |
msgstr ""
|
8804 |
|
8805 |
+
#: core/lib/wpbc_all_translations1.php:721 inc/_bs/admin/api-settings-s.php:497
|
8806 |
msgid "Auto approve booking, if booking cost is zero"
|
8807 |
msgstr ""
|
8808 |
|
8809 |
+
#: core/lib/wpbc_all_translations1.php:722 inc/_bs/admin/api-settings-s.php:498
|
8810 |
#, php-format
|
8811 |
msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
|
8812 |
msgstr ""
|
8813 |
|
8814 |
+
#: core/lib/wpbc_all_translations1.php:723 inc/_bs/admin/api-settings-s.php:505
|
8815 |
msgid "Auto approve bookings after creation booking in admin panel"
|
8816 |
msgstr ""
|
8817 |
|
8818 |
+
#: core/lib/wpbc_all_translations1.php:724 inc/_bs/admin/api-settings-s.php:506
|
8819 |
#, php-format
|
8820 |
msgid ""
|
8821 |
"Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
|
8822 |
msgstr ""
|
8823 |
|
8824 |
+
#: core/lib/wpbc_all_translations1.php:725 inc/_mu/admin/api-settings-u.php:62
|
8825 |
msgid "Activate custom booking forms for regular users"
|
8826 |
msgstr ""
|
8827 |
|
8828 |
+
#: core/lib/wpbc_all_translations1.php:726 inc/_mu/admin/api-settings-u.php:63
|
8829 |
msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
|
8830 |
msgstr ""
|
8831 |
|
8832 |
+
#: core/lib/wpbc_all_translations1.php:727 inc/_ps/admin/api-settings-p.php:98
|
8833 |
msgid "Start / End time for Calendar Overview"
|
8834 |
msgstr ""
|
8835 |
|
8836 |
+
#: core/lib/wpbc_all_translations1.php:728 inc/_ps/admin/api-settings-p.php:146
|
8837 |
#, php-format
|
8838 |
msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
|
8839 |
msgstr ""
|
8840 |
|
8841 |
+
#: core/lib/wpbc_all_translations1.php:729 inc/_ps/admin/api-settings-p.php:279
|
8842 |
msgid "Show / hide notes"
|
8843 |
msgstr ""
|
8844 |
|
8845 |
+
#: core/lib/wpbc_all_translations1.php:730 inc/_ps/admin/api-settings-p.php:280
|
8846 |
msgid "Check this box if you want to open notes section by default in Booking Listing page."
|
8847 |
msgstr ""
|
8848 |
|
8849 |
+
#: core/lib/wpbc_all_translations1.php:731 inc/_ps/admin/api-settings-p.php:340
|
8850 |
+
#: js/wpbc-gutenberg.js:1250
|
8851 |
msgid "URL of page for customer bookings listing"
|
8852 |
msgstr ""
|
8853 |
|
8854 |
+
#: core/lib/wpbc_all_translations1.php:732 inc/_ps/admin/api-settings-p.php:341
|
8855 |
#, php-format
|
8856 |
msgid ""
|
8857 |
"Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
|
8858 |
msgstr ""
|
8859 |
|
8860 |
+
#: core/lib/wpbc_all_translations1.php:733 inc/gateways/page-gateways.php:105
|
8861 |
msgid "Do not show payment form, after submit booking form"
|
8862 |
msgstr ""
|
8863 |
|
8864 |
+
#: core/lib/wpbc_all_translations1.php:734 inc/gateways/page-gateways.php:106
|
8865 |
msgid "Check this box if you want to show payment form only after sending payment request by email"
|
8866 |
msgstr ""
|
8867 |
|
8868 |
+
#: core/lib/wpbc_all_translations1.php:735 inc/gateways/page-gateways.php:115
|
8869 |
msgid "Auto send payment request after creation booking in admin panel"
|
8870 |
msgstr ""
|
8871 |
|
8872 |
+
#: core/lib/wpbc_all_translations1.php:736 inc/gateways/page-gateways.php:116
|
8873 |
msgid ""
|
8874 |
"Check this box if you want automatically send payment request to visitor, if booking was made in "
|
8875 |
"admin panel"
|
8876 |
msgstr ""
|
8877 |
|
8878 |
+
#: core/lib/wpbc_all_translations1.php:737 inc/gateways/page-gateways.php:139
|
8879 |
msgid "Show deposit and total booking cost together"
|
8880 |
msgstr ""
|
8881 |
|
8882 |
+
#: core/lib/wpbc_all_translations1.php:738 inc/gateways/page-gateways.php:140
|
8883 |
msgid ""
|
8884 |
"Check this box if you want to show deposit amount and total booking cost, after submit of "
|
8885 |
"booking."
|
8886 |
msgstr ""
|
8887 |
|
8888 |
+
#: core/lib/wpbc_all_translations1.php:739 inc/gateways/page-gateways.php:152
|
8889 |
msgid ""
|
8890 |
"Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
|
8891 |
"not depend from the visitor choice of this payment. You need to check each such payment manually!"
|
8892 |
msgstr ""
|
8893 |
|
8894 |
+
#: core/lib/wpbc_all_translations1.php:740 inc/gateways/page-gateways.php:163
|
8895 |
msgid "Send email on cost changes"
|
8896 |
msgstr ""
|
8897 |
|
8898 |
+
#: core/lib/wpbc_all_translations1.php:741 inc/gateways/page-gateways.php:164
|
8899 |
msgid ""
|
8900 |
"Check this box if you want to send booking modification email, if cost of booking was edited in "
|
8901 |
"booking listing page."
|
8902 |
msgstr ""
|
8903 |
|
8904 |
+
#: core/lib/wpbc_all_translations1.php:742 inc/gateways/page-gateways.php:610
|
8905 |
#: inc/gateways/page-gateways.php:656
|
8906 |
msgid "Payment Options"
|
8907 |
msgstr ""
|
8908 |
|
8909 |
+
#: core/lib/wpbc_all_translations1.php:743 core/wpbc-js.php:141
|
8910 |
msgid "Times:"
|
8911 |
msgstr ""
|
8912 |
|
8913 |
+
#: core/lib/wpbc_all_translations1.php:744 inc/_bm/admin/page-cost-early-late-booking.php:74
|
8914 |
msgid "Set Early / Late Booking"
|
8915 |
msgstr ""
|
8916 |
|
8917 |
+
#: core/lib/wpbc_all_translations1.php:745 inc/_bm/admin/page-cost-early-late-booking.php:139
|
8918 |
#, php-format
|
8919 |
msgid "%sEarly booking discount%s for booking resource"
|
8920 |
msgstr ""
|
8921 |
|
8922 |
+
#: core/lib/wpbc_all_translations1.php:746 inc/_bm/admin/page-cost-early-late-booking.php:157
|
8923 |
#: inc/_bm/admin/page-cost-early-late-booking.php:166
|
8924 |
#: inc/_bm/admin/page-cost-early-late-booking.php:185
|
8925 |
#: inc/_bm/admin/page-cost-early-late-booking.php:358
|
8928 |
msgid "Discount"
|
8929 |
msgstr ""
|
8930 |
|
8931 |
+
#: core/lib/wpbc_all_translations1.php:747 inc/_bm/admin/page-cost-early-late-booking.php:223
|
8932 |
#, php-format
|
8933 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
|
8934 |
msgstr ""
|
8935 |
|
8936 |
+
#: core/lib/wpbc_all_translations1.php:748 inc/_bm/admin/page-cost-early-late-booking.php:276
|
8937 |
#: inc/_bm/admin/page-cost-early-late-booking.php:476
|
8938 |
#, php-format
|
8939 |
msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
|
8940 |
msgstr ""
|
8941 |
|
8942 |
+
#: core/lib/wpbc_all_translations1.php:749 inc/_bm/admin/page-cost-early-late-booking.php:340
|
8943 |
#, php-format
|
8944 |
msgid "%sLast minute booking discount%s for booking resource"
|
8945 |
msgstr ""
|
8946 |
|
8947 |
+
#: core/lib/wpbc_all_translations1.php:750 inc/_bm/admin/page-cost-early-late-booking.php:424
|
8948 |
#, php-format
|
8949 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
|
8950 |
msgstr ""
|
8951 |
|
8952 |
+
#: core/lib/wpbc_all_translations1.php:751 inc/_bm/admin/page-cost.php:222
|
8953 |
msgid "Early / Late Booking"
|
8954 |
msgstr ""
|
8955 |
|
8956 |
+
#: core/lib/wpbc_all_translations1.php:752 inc/_bm/admin/page-cost.php:231
|
8957 |
msgid "Set Early / Late Booking Amount"
|
8958 |
msgstr ""
|
8959 |
|
8960 |
+
#: core/lib/wpbc_all_translations1.php:753 inc/_bm/admin/page-cost.php:697
|
8961 |
msgid "Set Early / Late booking discount"
|
8962 |
msgstr ""
|
8963 |
|
8964 |
+
#: core/lib/wpbc_all_translations1.php:754 inc/_bm/admin/page-cost.php:698
|
8965 |
msgid "Early / Late"
|
8966 |
msgstr ""
|
8967 |
|
8968 |
+
#: core/lib/wpbc_all_translations1.php:755 js/wpbc-gutenberg.js:55
|
8969 |
msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
|
8970 |
msgstr ""
|
8971 |
|
8972 |
+
#: core/lib/wpbc_all_translations1.php:756 js/wpbc-gutenberg.js:142
|
8973 |
msgid "Configure Booking Calendar Block"
|
8974 |
msgstr ""
|
8975 |
|
8976 |
+
#: core/lib/wpbc_all_translations1.php:757 js/wpbc-gutenberg.js:297 js/wpbc-gutenberg.js:303
|
8977 |
msgid "Click to Preview Block"
|
8978 |
msgstr ""
|
8979 |
|
8980 |
+
#: core/lib/wpbc_all_translations1.php:758 js/wpbc-gutenberg.js:609 js/wpbc-gutenberg.js:699
|
8981 |
+
#: js/wpbc-gutenberg.js:892
|
8982 |
msgid "Visible months number"
|
8983 |
msgstr ""
|
8984 |
|
8985 |
+
#: core/lib/wpbc_all_translations1.php:759 js/wpbc-gutenberg.js:612 js/wpbc-gutenberg.js:702
|
8986 |
+
#: js/wpbc-gutenberg.js:895
|
8987 |
msgid "Start month"
|
8988 |
msgstr ""
|
8989 |
|
8990 |
+
#: core/lib/wpbc_all_translations1.php:760 js/wpbc-gutenberg.js:615 js/wpbc-gutenberg.js:969
|
8991 |
msgid "Custom booking form"
|
8992 |
msgstr ""
|
8993 |
|
8994 |
+
#: core/lib/wpbc_all_translations1.php:761 js/wpbc-gutenberg.js:618 js/wpbc-gutenberg.js:705
|
8995 |
+
#: js/wpbc-gutenberg.js:901
|
8996 |
msgid "Unavailable dates from other booking resources"
|
8997 |
msgstr ""
|
8998 |
|
8999 |
+
#: core/lib/wpbc_all_translations1.php:762 js/wpbc-gutenberg.js:654
|
9000 |
msgid "Availability Calendar"
|
9001 |
msgstr ""
|
9002 |
|
9003 |
+
#: core/lib/wpbc_all_translations1.php:763 js/wpbc-gutenberg.js:778 js/wpbc-gutenberg.js:880
|
9004 |
msgid "Booking resource(s)"
|
9005 |
msgstr ""
|
9006 |
|
9007 |
+
#: core/lib/wpbc_all_translations1.php:764 js/wpbc-gutenberg.js:815
|
9008 |
msgid "Show from/to"
|
9009 |
msgstr ""
|
9010 |
|
9011 |
+
#: core/lib/wpbc_all_translations1.php:765 js/wpbc-gutenberg.js:832
|
9012 |
msgid "All booking resources"
|
9013 |
msgstr ""
|
9014 |
|
9015 |
+
#: core/lib/wpbc_all_translations1.php:766 js/wpbc-gutenberg.js:849
|
9016 |
msgid "Selection of Resources"
|
9017 |
msgstr ""
|
9018 |
|
9019 |
+
#: core/lib/wpbc_all_translations1.php:767 js/wpbc-gutenberg.js:886
|
9020 |
msgid "Selected booking resource (by default)"
|
9021 |
msgstr ""
|
9022 |
|
9023 |
+
#: core/lib/wpbc_all_translations1.php:768 js/wpbc-gutenberg.js:889
|
9024 |
msgid "Title of first option in list"
|
9025 |
msgstr ""
|
9026 |
|
9027 |
+
#: core/lib/wpbc_all_translations1.php:769 js/wpbc-gutenberg.js:898
|
9028 |
msgid "Custom booking form for all booking resources"
|
9029 |
msgstr ""
|
9030 |
|
9031 |
+
#: core/lib/wpbc_all_translations1.php:770 js/wpbc-gutenberg.js:933
|
9032 |
msgid "Booking Form (without calendar)"
|
9033 |
msgstr ""
|
9034 |
|
9035 |
+
#: core/lib/wpbc_all_translations1.php:771 js/wpbc-gutenberg.js:966
|
9036 |
msgid "Date for submit booking"
|
9037 |
msgstr ""
|
9038 |
|
9039 |
+
#: core/lib/wpbc_all_translations1.php:772 js/wpbc-gutenberg.js:998
|
9040 |
msgid "Search Availability form"
|
9041 |
msgstr ""
|
9042 |
|
9043 |
+
#: core/lib/wpbc_all_translations1.php:773 js/wpbc-gutenberg.js:1029
|
9044 |
msgid "Show search results on other page"
|
9045 |
msgstr ""
|
9046 |
|
9047 |
+
#: core/lib/wpbc_all_translations1.php:774 js/wpbc-gutenberg.js:1032
|
9048 |
msgid "Search results page must have this shortcode"
|
9049 |
msgstr ""
|
9050 |
|
9051 |
+
#: core/lib/wpbc_all_translations1.php:775 js/wpbc-gutenberg.js:1035
|
9052 |
msgid "Show search results in the same page"
|
9053 |
msgstr ""
|
9054 |
|
9055 |
+
#: core/lib/wpbc_all_translations1.php:776 js/wpbc-gutenberg.js:1038
|
9056 |
msgid "Search Results Title"
|
9057 |
msgstr ""
|
9058 |
|
9059 |
+
#: core/lib/wpbc_all_translations1.php:777 js/wpbc-gutenberg.js:1041
|
9060 |
msgid "Title, if no search results"
|
9061 |
msgstr ""
|
9062 |
|
9063 |
+
#: core/lib/wpbc_all_translations1.php:778 js/wpbc-gutenberg.js:1044
|
9064 |
msgid "Search in booking resources of WP users"
|
9065 |
msgstr ""
|
9066 |
|
9067 |
+
#: core/lib/wpbc_all_translations1.php:779 js/wpbc-gutenberg.js:1098
|
9068 |
msgid "Show search results on this page, after redirection from search form at other page."
|
9069 |
msgstr ""
|
9070 |
|
9071 |
+
#: core/lib/wpbc_all_translations1.php:780 js/wpbc-gutenberg.js:1122
|
9072 |
msgid "System Block"
|
9073 |
msgstr ""
|
9074 |
|
9075 |
+
#: core/lib/wpbc_all_translations1.php:781 js/wpbc-gutenberg.js:1122
|
9076 |
msgid "Booking Calendar Editing"
|
9077 |
msgstr ""
|
9078 |
|
9079 |
+
#: core/lib/wpbc_all_translations1.php:782 js/wpbc-gutenberg.js:1153
|
9080 |
msgid ""
|
9081 |
"This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
|
9082 |
"for ability to show payment form, after sending payment request."
|
9083 |
msgstr ""
|
9084 |
|
9085 |
+
#: core/lib/wpbc_all_translations1.php:783 js/wpbc-gutenberg.js:1158 js/wpbc-gutenberg.js:1244
|
9086 |
msgid "Link to this page must be defined"
|
9087 |
msgstr ""
|
9088 |
|
9089 |
+
#: core/lib/wpbc_all_translations1.php:784 js/wpbc-gutenberg.js:1162 js/wpbc-gutenberg.js:1248
|
9090 |
msgid "at this option"
|
9091 |
msgstr ""
|
9092 |
|
9093 |
+
#: core/lib/wpbc_all_translations1.php:785 js/wpbc-gutenberg.js:1172 js/wpbc-gutenberg.js:1258
|
9094 |
msgid "You can not open this page directly. Please, use links in "
|
9095 |
msgstr ""
|
9096 |
|
9097 |
+
#: core/lib/wpbc_all_translations1.php:786 js/wpbc-gutenberg.js:1180 js/wpbc-gutenberg.js:1266
|
9098 |
msgid "If you open this page directly, then you will see this error"
|
9099 |
msgstr ""
|
9100 |
|
9101 |
+
#: core/lib/wpbc_all_translations1.php:787 js/wpbc-gutenberg.js:1208
|
9102 |
msgid "Customer Bookings Listing"
|
9103 |
msgstr ""
|
9104 |
|
9105 |
+
#: core/lib/wpbc_all_translations1.php:788 js/wpbc-gutenberg.js:1239
|
9106 |
msgid ""
|
9107 |
"Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
|
9108 |
"which is sending after booking created."
|
9109 |
msgstr ""
|
9110 |
|
9111 |
+
#: core/lib/wpbc_all_translations1.php:789 js/wpbc-gutenberg.js:1299
|
9112 |
msgid "Show Info of Booking Resource"
|
9113 |
msgstr ""
|
9114 |
|
9115 |
+
#: core/lib/wpbc_all_translations1.php:790 js/wpbc-gutenberg.js:1365
|
9116 |
msgid "Click to edit"
|
9117 |
msgstr ""
|
9118 |
|
9119 |
+
#: core/lib/wpbc_all_translations1.php:791 js/wpbc-gutenberg.js:1367
|
9120 |
msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
|
9121 |
msgstr ""
|
9122 |
|
9123 |
+
#: core/lib/wpbc_all_translations1.php:792 inc/_bl/admin/page-search.php:175
|
9124 |
msgid "Sort search results by"
|
9125 |
msgstr ""
|
9126 |
|
9127 |
+
#: core/lib/wpbc_all_translations1.php:793 inc/_bl/admin/page-search.php:176
|
9128 |
msgid "Select type of sorting search results"
|
9129 |
msgstr ""
|
9130 |
|
9131 |
+
#: core/lib/wpbc_all_translations1.php:794 inc/_bl/admin/page-search.php:180
|
9132 |
#: inc/_bl/admin/page-search.php:181
|
9133 |
msgid "ID of booking resource"
|
9134 |
msgstr ""
|
9135 |
|
9136 |
+
#: core/lib/wpbc_all_translations1.php:795 inc/_bl/admin/page-search.php:182
|
9137 |
#: inc/_bl/admin/page-search.php:183
|
9138 |
msgid "Title of booking resource"
|
9139 |
msgstr ""
|
9140 |
|
9141 |
+
#: core/lib/wpbc_all_translations1.php:796 inc/_bl/admin/page-search.php:184
|
9142 |
#: inc/_bl/admin/page-search.php:185
|
9143 |
msgid "Priority field of booking resource"
|
9144 |
msgstr ""
|
9145 |
|
9146 |
+
#: core/lib/wpbc_all_translations1.php:797 inc/_bl/admin/page-search.php:186
|
9147 |
#: inc/_bl/admin/page-search.php:187
|
9148 |
msgid "Cost of booking resource"
|
9149 |
msgstr ""
|
9150 |
|
9151 |
+
#: core/lib/wpbc_all_translations1.php:798 inc/_bl/admin/page-search.php:188
|
9152 |
#: inc/_bl/admin/page-search.php:189
|
9153 |
msgid "Cost of booking"
|
9154 |
msgstr ""
|
9155 |
|
9156 |
+
#: core/lib/wpbc_all_translations1.php:799 inc/_ps/admin/api-settings-p.php:260
|
9157 |
msgid "Deactivate send email option at Add Booking page"
|
9158 |
msgstr ""
|
9159 |
|
9160 |
+
#: core/lib/wpbc_all_translations1.php:800 inc/_ps/admin/api-settings-p.php:261
|
9161 |
msgid ""
|
9162 |
"Check this box if you want to deactivate by default option \"Send email\" at Add Booking page."
|
9163 |
msgstr ""
|
9164 |
|
9165 |
+
#: core/lib/wpbc_all_translations1.php:801 inc/_ps/admin/api-settings-p.php:269
|
9166 |
msgid "Deactivate send email option at Booking Listing page"
|
9167 |
msgstr ""
|
9168 |
|
9169 |
+
#: core/lib/wpbc_all_translations1.php:802 inc/_ps/admin/api-settings-p.php:270
|
9170 |
msgid ""
|
9171 |
"Check this box if you want to deactivate by default option \"Send email\" at Booking Listing "
|
9172 |
"page."
|
9173 |
msgstr ""
|
9174 |
|
9175 |
+
#: core/lib/wpbc_all_translations1.php:803 inc/_ps/admin/api-settings-p.php:291
|
9176 |
msgid "Force change booking resource for exist booking"
|
9177 |
msgstr ""
|
9178 |
|
9179 |
+
#: core/lib/wpbc_all_translations1.php:804 inc/_ps/admin/api-settings-p.php:292
|
9180 |
msgid ""
|
9181 |
"Check this box if you want to skip checking availability of new booking resource during changing "
|
9182 |
"booking resource of exist booking at Booking Listing page."
|
9183 |
msgstr ""
|
9184 |
|
9185 |
+
#: core/lib/wpbc_all_translations1.php:805 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:342
|
9186 |
msgid "Signature Key"
|
9187 |
msgstr ""
|
9188 |
|
9189 |
+
#: core/lib/wpbc_all_translations1.php:806 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:344
|
9190 |
msgid "Please enter the Signature Key, which you generated in the settings of Merchant Interface."
|
9191 |
msgstr ""
|
9192 |
|
9193 |
+
#: core/lib/wpbc_all_translations1.php:807 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:346
|
9194 |
msgid "To generate new Signature Key"
|
9195 |
msgstr ""
|
9196 |
|
9197 |
+
#: core/lib/wpbc_all_translations1.php:808 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:347
|
9198 |
#, php-format
|
9199 |
msgid "Log on to the %sMerchant Interface%s"
|
9200 |
msgstr ""
|
9201 |
|
9202 |
+
#: core/lib/wpbc_all_translations1.php:809 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:348
|
9203 |
msgid ""
|
9204 |
"In the merchant interface, go to Account > Settings > Security Settings > General Security "
|
9205 |
"Settings > API Credential & Keys"
|
9206 |
msgstr ""
|
9207 |
|
9208 |
+
#: core/lib/wpbc_all_translations1.php:810 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:349
|
9209 |
msgid "Answer the secret question."
|
9210 |
msgstr ""
|
9211 |
|
9212 |
+
#: core/lib/wpbc_all_translations1.php:811 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:350
|
9213 |
msgid "Select New Signature Key. Your signature key is displayed as a string."
|
9214 |
msgstr ""
|
9215 |
|
9216 |
+
#: core/lib/wpbc_all_translations1.php:812 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:351
|
9217 |
msgid "Click Copy to Clipboard."
|
9218 |
msgstr ""
|
9219 |
|
9220 |
+
#: core/lib/wpbc_all_translations1.php:813 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:352
|
9221 |
#, php-format
|
9222 |
msgid "For more information, please check %shere%s"
|
9223 |
msgstr ""
|
9224 |
|
9225 |
+
#: core/lib/wpbc_all_translations1.php:814 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:886
|
9226 |
#, php-format
|
9227 |
msgid ""
|
9228 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
9229 |
"an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway."
|
9230 |
msgstr ""
|
9231 |
|
9232 |
+
#: core/lib/wpbc_all_translations1.php:815 core/timeline/v2/wpbc-class-timeline_v2.php:2567
|
9233 |
msgid "Loading"
|
9234 |
msgstr ""
|
9235 |
|
9236 |
+
#: core/lib/wpbc_all_translations1.php:816 core/wpbc-emails.php:262
|
9237 |
#, php-format
|
9238 |
msgid "%s - inserting link to approve booking in 1 mouse click "
|
9239 |
msgstr ""
|
9240 |
|
9241 |
+
#: core/lib/wpbc_all_translations1.php:817 core/wpbc-emails.php:263
|
9242 |
#, php-format
|
9243 |
msgid "%s - inserting link to set booking as pending in 1 mouse click "
|
9244 |
msgstr ""
|
9245 |
|
9246 |
+
#: core/lib/wpbc_all_translations1.php:818 core/wpbc-emails.php:264
|
9247 |
#, php-format
|
9248 |
msgid "%s - inserting link for move booking to trash in 1 mouse click "
|
9249 |
msgstr ""
|
9250 |
|
9251 |
+
#: core/lib/wpbc_all_translations1.php:819 inc/_bl/admin/page-search.php:695
|
9252 |
msgid "Flex Search Form Template"
|
9253 |
msgstr ""
|
9254 |
|
9255 |
+
#: core/lib/wpbc_all_translations1.php:820 inc/_bl/admin/page-search.php:759
|
9256 |
msgid "Flex"
|
9257 |
msgstr ""
|
9258 |
|
9259 |
+
#: core/lib/wpbc_all_translations1.php:821 inc/_ps/hash/wpbc-hash-functions.php:101
|
9260 |
#, php-format
|
9261 |
msgid "Booking %s have been approved."
|
9262 |
msgstr ""
|
9263 |
|
9264 |
+
#: core/lib/wpbc_all_translations1.php:822 inc/_ps/hash/wpbc-hash-functions.php:129
|
9265 |
#, php-format
|
9266 |
msgid "Booking %s have been set as pending."
|
9267 |
msgstr ""
|
9268 |
|
9269 |
+
#: core/lib/wpbc_all_translations1.php:823 inc/_ps/hash/wpbc-hash-functions.php:157
|
9270 |
#, php-format
|
9271 |
msgid "Booking %s have been moved to trash."
|
9272 |
msgstr ""
|
9273 |
|
9274 |
+
#: core/lib/wpbc_all_translations1.php:824 inc/_ps/p-toolbar.php:70 inc/_ps/p-toolbar.php:71
|
9275 |
msgid "Find lost bookings"
|
9276 |
msgstr ""
|
9277 |
|
9278 |
+
#: core/lib/wpbc_all_translations1.php:825 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1078
|
9279 |
#, php-format
|
9280 |
msgid "require correct configuration of this option: %sURL to edit bookings%s"
|
9281 |
msgstr ""
|
9282 |
|
9283 |
+
#: core/lib/wpbc_all_translations1.php:826 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1120
|
9284 |
msgid "You may test your integration over HTTP. However, live integrations must use HTTPS."
|
9285 |
msgstr ""
|
9286 |
|
9287 |
+
#: core/lib/wpbc_all_translations1.php:827 inc/_bl/admin/page-search.php:224
|
9288 |
msgid "Select date format for search form"
|
9289 |
msgstr ""
|
9290 |
|
9291 |
+
#: core/lib/wpbc_all_translations1.php:828 inc/_ps/admin/api-settings-p.php:301
|
9292 |
msgid "Logging of booking approving or rejection"
|
9293 |
msgstr ""
|
9294 |
|
9295 |
+
#: core/lib/wpbc_all_translations1.php:829 inc/_ps/admin/api-settings-p.php:302
|
9296 |
msgid ""
|
9297 |
"Check this box if you want to log approving or rejection of bookings and add it to your booking "
|
9298 |
"notes."
|
9299 |
msgstr ""
|
9300 |
|
9301 |
+
#: core/lib/wpbc_all_translations1.php:830 inc/gateways/ipay88/wpbc-gw-ipay88.php:821
|
9302 |
#, php-format
|
9303 |
msgid "%sFor Malaysia Only%s. iPay88 - Payment Switching Gateway integration %s"
|
9304 |
msgstr ""
|
9305 |
|
9306 |
+
#: core/lib/wpbc_all_translations1.php:831 inc/gateways/page-gateways.php:125
|
9307 |
msgid "Update cost, after booking editing in admin panel"
|
9308 |
msgstr ""
|
9309 |
|
9310 |
+
#: core/lib/wpbc_all_translations1.php:832 inc/gateways/page-gateways.php:126
|
9311 |
msgid ""
|
9312 |
"Check this box if you want to update cost after editing booking in admin panel, based on new "
|
9313 |
"booking data"
|
9314 |
msgstr ""
|
9315 |
|
9316 |
+
#: core/lib/wpbc_all_translations1.php:833 core/wpbc-emails.php:202
|
9317 |
#, php-format
|
9318 |
msgid "%s - inserting check-in date (only date without time) (first day of reservation),"
|
9319 |
msgstr ""
|
9320 |
|
9321 |
+
#: core/lib/wpbc_all_translations1.php:834 core/wpbc-emails.php:207
|
9322 |
#, php-format
|
9323 |
msgid "%s - inserting check-out date (only date without time) (last day of reservation),"
|
9324 |
msgstr ""
|
9325 |
|
9326 |
+
#: core/lib/wpbc_all_translations1.php:835 inc/_bl/admin/page-search.php:190
|
9327 |
msgid "Shuffle"
|
9328 |
msgstr ""
|
9329 |
|
9330 |
+
#: core/lib/wpbc_all_translations1.php:836 inc/gateways/page-gateways.php:175
|
9331 |
msgid "Apply discount coupon code directly to days cost"
|
9332 |
msgstr ""
|
9333 |
|
9334 |
+
#: core/lib/wpbc_all_translations1.php:837 inc/gateways/page-gateways.php:176
|
9335 |
msgid ""
|
9336 |
"Check this box if you want apply discount coupon codes directly to days cost, without additional "
|
9337 |
"costs."
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://wpbookingcalendar.com/buy/
|
|
4 |
Tags: booking calendar, booking system, availability calendar, events calendar, appointments , booking form, reservation, availability, oplugins, calendar, Booking Calendar, ical
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
-
Tested up to: 5.
|
8 |
-
Stable tag: 8.7.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -170,9 +170,10 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
|
|
170 |
- English
|
171 |
- Dutch [99% Completed]
|
172 |
- German [99% Completed]
|
173 |
-
- French [99% Completed]
|
174 |
- Swedish [99% Completed]
|
175 |
-
-
|
|
|
|
|
176 |
- Hungarian [98% Completed]
|
177 |
- Spanish [98% Completed]
|
178 |
- Romanian [97% Completed]
|
@@ -184,17 +185,16 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
|
|
184 |
- Polish [93% Completed]
|
185 |
- Turkish [93% Completed]
|
186 |
- Chinese (Taiwan) [91% Completed]
|
187 |
-
- Russian [
|
188 |
- Portugal [89% Completed]
|
189 |
-
- Galician (Spanish) [
|
190 |
-
- Thai [
|
191 |
- Norwegian [86% Completed]
|
192 |
-
- Brazilian Portuguese [86% Completed]
|
193 |
- Hebrew [86% Completed]
|
194 |
- Ukrainian [85% Completed]
|
195 |
- Chinese [85% Completed]
|
196 |
-
- Czech [
|
197 |
-
- Slovak [
|
198 |
- Croatian [73% Completed]
|
199 |
- Catalan [72% Completed]
|
200 |
- Arabic [72% Completed]
|
@@ -227,9 +227,24 @@ 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 |
|
231 |
= 8.7.5 =
|
232 |
-
* **Fix**. PHP Fatal error: Uncaught Error: Call to undefined function determine_locale() in
|
233 |
|
234 |
= 8.7.4 =
|
235 |
- Changes in **all** versions:
|
4 |
Tags: booking calendar, booking system, availability calendar, events calendar, appointments , booking form, reservation, availability, oplugins, calendar, Booking Calendar, ical
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
+
Tested up to: 5.4
|
8 |
+
Stable tag: 8.7.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
170 |
- English
|
171 |
- Dutch [99% Completed]
|
172 |
- German [99% Completed]
|
|
|
173 |
- Swedish [99% Completed]
|
174 |
+
- French [98% Completed]
|
175 |
+
- Slovenian [98% Completed]
|
176 |
+
- Brazilian Portuguese [99% Completed]
|
177 |
- Hungarian [98% Completed]
|
178 |
- Spanish [98% Completed]
|
179 |
- Romanian [97% Completed]
|
185 |
- Polish [93% Completed]
|
186 |
- Turkish [93% Completed]
|
187 |
- Chinese (Taiwan) [91% Completed]
|
188 |
+
- Russian [89% Completed]
|
189 |
- Portugal [89% Completed]
|
190 |
+
- Galician (Spanish) [88% Completed]
|
191 |
+
- Thai [88% Completed]
|
192 |
- Norwegian [86% Completed]
|
|
|
193 |
- Hebrew [86% Completed]
|
194 |
- Ukrainian [85% Completed]
|
195 |
- Chinese [85% Completed]
|
196 |
+
- Czech [72% Completed]
|
197 |
+
- Slovak [72% Completed]
|
198 |
- Croatian [73% Completed]
|
199 |
- Catalan [72% Completed]
|
200 |
- Arabic [72% Completed]
|
227 |
13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
|
228 |
|
229 |
== Changelog ==
|
230 |
+
= 8.7.6 =
|
231 |
+
- Changes in **all** versions:
|
232 |
+
* **Support** WordPress 5.4 - Fix compatibility with new Blocks editor in Gutenberg editor, during inserting Booking Calendar shortcodes into the posts or pages (8.7.6.11)
|
233 |
+
* **Translation** Brazilian Portuguese translation [99% completed] by Myres Hopkins.
|
234 |
+
* **Under hood** New Hook action after approving of booking: do_action( 'wpbc_booking_approved' , $booking_id , $is_approved_dates ); (8.7.6.1)
|
235 |
+
* **Under hood** New Hook action after trash of booking: do_action( 'wpbc_booking_trash', $booking_id, $is_trash ); (8.7.6.2)
|
236 |
+
* **Under hood** New Hook action after deleting of booking: do_action( 'wpbc_booking_delete', $approved_id_str ); (8.7.6.3)
|
237 |
+
* **Under hood** New function wpbc_api_get_booking_by_id( $booking_id ); for getting booking data. (8.7.6.4)
|
238 |
+
* **Improvement**. Do not show selected text, if selected multiple bookings (or booking resources) with Shift pressed button (8.7.6.8)
|
239 |
+
* **Fix**. Issue of showing shifted days number in header at the Booking Listing page and in Timeline, while showing timeline for single booking resource in Month view mode. (8.7.6.5)
|
240 |
+
- Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
|
241 |
+
* **Fix**. Issue of not showing cost for [cost_hit] shortcode if visitor selected only 1 day, while activated range days selection mode with 2 mouse clicks, and minimum number for days selection set as 1 day. (8.7.6.6) *(Business Medium/Large, MultiUser)*
|
242 |
+
* **Fix**. Issue of not ability to go for next pages (if more than 10 booking resources) at the Booking > Settings > Sync > "Import Google Calendar Events" page (8.7.6.7) *(Personal, Business Small/Medium/Large, MultiUser)*
|
243 |
+
* **Fix**. Issue of incorrectly saving bookings into the "child booking resources". Issue was existing from update 8.7.3 to 8.7.5 (8.7.6.10) *(Business Large, MultiUser)*
|
244 |
+
* **Improvement**. Auto Reset "custom booking forms" if during previous saving of custom forms, was existing some error in creation of such forms. Usually because of using some inappropriate symbols in names of forms (8.7.6.9) *(Business Medium/Large, MultiUser)*
|
245 |
|
246 |
= 8.7.5 =
|
247 |
+
* **Fix**. PHP Fatal error: Uncaught Error: Call to undefined function determine_locale() in ../booking/core/wpbc-translation.php:304 (8.7.5.1)
|
248 |
|
249 |
= 8.7.4 =
|
250 |
- Changes in **all** versions:
|
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 - 2020 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|
@@ -29,7 +29,7 @@ Version: 8.7.5
|
|
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.6
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2020 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.6' ); }
|
33 |
|
34 |
////////////////////////////////////////////////////////////////////////////////
|
35 |
// PRIMARY URL CONSTANTS
|