Version Description
- Fix. PHP Fatal error: Uncaught Error: Call to undefined function determine_locale() in /home/www/new/dst/wp-content/plugins/booking/core/wpbc-translation.php:304 (8.7.5.1)
Download this release
Release Info
Developer | wpdevelop |
Plugin | Booking Calendar |
Version | 8.7.5 |
Comparing to | |
See all releases |
Code changes from version 8.7.3 to 8.7.5
- core/admin/api-settings.php +13 -2
- core/admin/page-ics-import.php +1 -1
- core/any/api-emails.php +1 -0
- core/lib/wpbc_all_translations.php +3 -3
- core/lib/wpbc_all_translations1.php +7 -0
- core/wpbc-activation.php +4 -1
- core/wpbc-dates.php +4 -2
- core/wpbc-translation.php +11 -1
- 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 +2043 -2003
- readme.txt +11 -2
- wpdev-booking.php +2 -2
core/admin/api-settings.php
CHANGED
@@ -742,8 +742,19 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
|
|
742 |
);
|
743 |
|
744 |
// Time Format
|
745 |
-
$this->fields = apply_filters( 'wpbc_settings_booking_time_format', $this->fields, $default_options_values );
|
746 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
747 |
|
748 |
// Default Dates View Mode /////////////////////////////////////////////
|
749 |
$field_options = array(
|
742 |
);
|
743 |
|
744 |
// Time Format
|
745 |
+
$this->fields = apply_filters( 'wpbc_settings_booking_time_format', $this->fields, $default_options_values );
|
746 |
+
|
747 |
+
//FixIn: 8.7.4.1
|
748 |
+
// Is show help hints on the admin panel ///////////////////////////////
|
749 |
+
$this->fields['booking_is_use_localized_time_format'] = array(
|
750 |
+
'type' => 'checkbox'
|
751 |
+
, 'default' => $default_options_values['booking_is_use_localized_time_format'] //'Off'
|
752 |
+
, 'title' => __('Use localized time format' ,'booking')
|
753 |
+
, 'label' => __('This option useful only, if you have issue with translation of time format. If you activated this option, at some servers possible issue with "Daylight Saving Time" - booked times can be later on 1 hour.' ,'booking')
|
754 |
+
, 'description' => ''
|
755 |
+
, 'group' => 'booking_listing'
|
756 |
+
);
|
757 |
+
|
758 |
|
759 |
// Default Dates View Mode /////////////////////////////////////////////
|
760 |
$field_options = array(
|
core/admin/page-ics-import.php
CHANGED
@@ -644,7 +644,7 @@ function wpbc_ics_import_export__show_help_info( $is_import = true ) {
|
|
644 |
style='margin-left:25px;text-align:left;border-top:1px solid #f0f0f0;border-right:1px solid #f0f0f0;'>
|
645 |
<?php
|
646 |
$message_ics = sprintf(
|
647 |
-
__( 'Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more info about how to import .ics feeds into other websites at the support pages of sepcific website.' )
|
648 |
, '<br/>');
|
649 |
$message_ics = str_replace( array( '.ics', 'iCalendar' ), array( '<strong>.ics</strong>', '<strong>iCalendar</strong>' ), $message_ics );
|
650 |
echo $message_ics;
|
644 |
style='margin-left:25px;text-align:left;border-top:1px solid #f0f0f0;border-right:1px solid #f0f0f0;'>
|
645 |
<?php
|
646 |
$message_ics = sprintf(
|
647 |
+
__( 'Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more info about how to import .ics feeds into other websites at the support pages of sepcific website.', 'booking' )
|
648 |
, '<br/>');
|
649 |
$message_ics = str_replace( array( '.ics', 'iCalendar' ), array( '<strong>.ics</strong>', '<strong>iCalendar</strong>' ), $message_ics );
|
650 |
echo $message_ics;
|
core/any/api-emails.php
CHANGED
@@ -490,6 +490,7 @@ abstract class WPBC_Emails_API extends WPBC_Settings_API {
|
|
490 |
$to = apply_filters( 'wpbc_email_api_send_field_to', $to ); //FixIn: 8.1.3.1
|
491 |
//FixIn: 8.5.2.22
|
492 |
if ( ! empty( $to ) ) {
|
|
|
493 |
$return = wp_mail( $to, $subject, $message, $headers, $attachments );
|
494 |
}
|
495 |
}
|
490 |
$to = apply_filters( 'wpbc_email_api_send_field_to', $to ); //FixIn: 8.1.3.1
|
491 |
//FixIn: 8.5.2.22
|
492 |
if ( ! empty( $to ) ) {
|
493 |
+
// debuge( '$to, $subject, $message, $headers, $attachments',htmlspecialchars($to), htmlspecialchars($subject), htmlspecialchars($message), htmlspecialchars($headers), htmlspecialchars($attachments));
|
494 |
$return = wp_mail( $to, $subject, $message, $headers, $attachments );
|
495 |
}
|
496 |
}
|
core/lib/wpbc_all_translations.php
CHANGED
@@ -94,6 +94,8 @@
|
|
94 |
$wpbc_all_translations[] = __('F j, Y', 'booking');
|
95 |
$wpbc_all_translations[] = __('Custom', 'booking');
|
96 |
$wpbc_all_translations[] = __('Type your date format for emails and the booking table. %sDocumentation on date formatting%s', 'booking');
|
|
|
|
|
97 |
$wpbc_all_translations[] = __('Short days view', 'booking');
|
98 |
$wpbc_all_translations[] = __('Wide days view', 'booking');
|
99 |
$wpbc_all_translations[] = __('Dates view', 'booking');
|
@@ -412,6 +414,7 @@
|
|
412 |
$wpbc_all_translations[] = __('Show only check in/out dates', 'booking');
|
413 |
$wpbc_all_translations[] = __('Resource not exist', 'booking');
|
414 |
$wpbc_all_translations[] = __('Unknown', 'booking');
|
|
|
415 |
$wpbc_all_translations[] = __('Imported', 'booking');
|
416 |
$wpbc_all_translations[] = __('Reject - move to trash', 'booking');
|
417 |
$wpbc_all_translations[] = __('Restore', 'booking');
|
@@ -557,7 +560,6 @@
|
|
557 |
$wpbc_all_translations[] = __('Check-out', 'booking');
|
558 |
$wpbc_all_translations[] = __('Order by', 'booking');
|
559 |
$wpbc_all_translations[] = __('Exist', 'booking');
|
560 |
-
$wpbc_all_translations[] = __('In Trash / Rejected', 'booking');
|
561 |
$wpbc_all_translations[] = __('New bookings', 'booking');
|
562 |
$wpbc_all_translations[] = __('Creation', 'booking');
|
563 |
$wpbc_all_translations[] = __('Approve selected bookings', 'booking');
|
@@ -994,6 +996,4 @@
|
|
994 |
$wpbc_all_translations[] = __('August', 'booking');
|
995 |
$wpbc_all_translations[] = __('September', 'booking');
|
996 |
$wpbc_all_translations[] = __('October', 'booking');
|
997 |
-
$wpbc_all_translations[] = __('November', 'booking');
|
998 |
-
$wpbc_all_translations[] = __('December', 'booking');
|
999 |
}
|
94 |
$wpbc_all_translations[] = __('F j, Y', 'booking');
|
95 |
$wpbc_all_translations[] = __('Custom', 'booking');
|
96 |
$wpbc_all_translations[] = __('Type your date format for emails and the booking table. %sDocumentation on date formatting%s', 'booking');
|
97 |
+
$wpbc_all_translations[] = __('Use localized time format', 'booking');
|
98 |
+
$wpbc_all_translations[] = __('This option useful only, if you have issue with translation of time format. If you activated this option, at some servers possible issue with "Daylight Saving Time" - booked times can be later on 1 hour.', 'booking');
|
99 |
$wpbc_all_translations[] = __('Short days view', 'booking');
|
100 |
$wpbc_all_translations[] = __('Wide days view', 'booking');
|
101 |
$wpbc_all_translations[] = __('Dates view', 'booking');
|
414 |
$wpbc_all_translations[] = __('Show only check in/out dates', 'booking');
|
415 |
$wpbc_all_translations[] = __('Resource not exist', 'booking');
|
416 |
$wpbc_all_translations[] = __('Unknown', 'booking');
|
417 |
+
$wpbc_all_translations[] = __('In Trash / Rejected', 'booking');
|
418 |
$wpbc_all_translations[] = __('Imported', 'booking');
|
419 |
$wpbc_all_translations[] = __('Reject - move to trash', 'booking');
|
420 |
$wpbc_all_translations[] = __('Restore', 'booking');
|
560 |
$wpbc_all_translations[] = __('Check-out', 'booking');
|
561 |
$wpbc_all_translations[] = __('Order by', 'booking');
|
562 |
$wpbc_all_translations[] = __('Exist', 'booking');
|
|
|
563 |
$wpbc_all_translations[] = __('New bookings', 'booking');
|
564 |
$wpbc_all_translations[] = __('Creation', 'booking');
|
565 |
$wpbc_all_translations[] = __('Approve selected bookings', 'booking');
|
996 |
$wpbc_all_translations[] = __('August', 'booking');
|
997 |
$wpbc_all_translations[] = __('September', 'booking');
|
998 |
$wpbc_all_translations[] = __('October', 'booking');
|
|
|
|
|
999 |
}
|
core/lib/wpbc_all_translations1.php
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
<?php function wpbc_all_translations2() { $wpbc_all_translations = array();
|
|
|
|
|
2 |
$wpbc_all_translations[] = __('Years', 'booking');
|
3 |
$wpbc_all_translations[] = __('Mo', 'booking');
|
4 |
$wpbc_all_translations[] = __('Tu', 'booking');
|
@@ -828,4 +830,9 @@
|
|
828 |
$wpbc_all_translations[] = __('%sFor Malaysia Only%s. iPay88 - Payment Switching Gateway integration %s', 'booking');
|
829 |
$wpbc_all_translations[] = __('Update cost, after booking editing in admin panel', 'booking');
|
830 |
$wpbc_all_translations[] = __('Check this box if you want to update cost after editing booking in admin panel, based on new booking data', 'booking');
|
|
|
|
|
|
|
|
|
|
|
831 |
}
|
1 |
<?php function wpbc_all_translations2() { $wpbc_all_translations = array();
|
2 |
+
$wpbc_all_translations[] = __('November', 'booking');
|
3 |
+
$wpbc_all_translations[] = __('December', 'booking');
|
4 |
$wpbc_all_translations[] = __('Years', 'booking');
|
5 |
$wpbc_all_translations[] = __('Mo', 'booking');
|
6 |
$wpbc_all_translations[] = __('Tu', 'booking');
|
830 |
$wpbc_all_translations[] = __('%sFor Malaysia Only%s. iPay88 - Payment Switching Gateway integration %s', 'booking');
|
831 |
$wpbc_all_translations[] = __('Update cost, after booking editing in admin panel', 'booking');
|
832 |
$wpbc_all_translations[] = __('Check this box if you want to update cost after editing booking in admin panel, based on new booking data', 'booking');
|
833 |
+
$wpbc_all_translations[] = __('%s - inserting check-in date (only date without time) (first day of reservation),', 'booking');
|
834 |
+
$wpbc_all_translations[] = __('%s - inserting check-out date (only date without time) (last day of reservation),', 'booking');
|
835 |
+
$wpbc_all_translations[] = __('Shuffle', 'booking');
|
836 |
+
$wpbc_all_translations[] = __('Apply discount coupon code directly to days cost', 'booking');
|
837 |
+
$wpbc_all_translations[] = __('Check this box if you want apply discount coupon codes directly to days cost, without additional costs.', 'booking');
|
838 |
}
|
core/wpbc-activation.php
CHANGED
@@ -876,7 +876,10 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
|
|
876 |
$default_options['booking_is_use_autofill_4_logged_user'] = ($is_demo) ? 'On' : 'Off';
|
877 |
$mu_option4delete[]='booking_is_use_autofill_4_logged_user';
|
878 |
$default_options['booking_date_format'] = get_option( 'date_format' );
|
879 |
-
$mu_option4delete[]='booking_date_format';
|
|
|
|
|
|
|
880 |
$default_options['booking_date_view_type'] = 'short';
|
881 |
$mu_option4delete[]='booking_date_view_type';
|
882 |
$default_options['booking_is_delete_if_deactive'] = ($is_demo) ? 'On' : 'Off';
|
876 |
$default_options['booking_is_use_autofill_4_logged_user'] = ($is_demo) ? 'On' : 'Off';
|
877 |
$mu_option4delete[]='booking_is_use_autofill_4_logged_user';
|
878 |
$default_options['booking_date_format'] = get_option( 'date_format' );
|
879 |
+
$mu_option4delete[]='booking_date_format';
|
880 |
+
//FixIn: 8.7.4.1
|
881 |
+
$default_options['booking_is_use_localized_time_format'] = 'Off';
|
882 |
+
$mu_option4delete[]='booking_is_use_localized_time_format';
|
883 |
$default_options['booking_date_view_type'] = 'short';
|
884 |
$mu_option4delete[]='booking_date_view_type';
|
885 |
$default_options['booking_is_delete_if_deactive'] = ($is_demo) ? 'On' : 'Off';
|
core/wpbc-dates.php
CHANGED
@@ -340,7 +340,8 @@ function wpbc_change_dates_format( $dates_in_sql_format ) {
|
|
340 |
//$mydates_result .= date_i18n( $date_format_now, mktime( $tms[0], $tms[1], $tms[2], $dta[1], $dta[2], $dta[0] ) ) . ', ';
|
341 |
|
342 |
//FixIn: 8.7.3.9 - fix issue of Daylight Saving Time - in some systems after ~ 29 of March, system generate minus several hours which show incorrect selected dates
|
343 |
-
|
|
|
344 |
$mydates_result .= wp_date( $date_format_now, strtotime( $dt ) ) . ', ';
|
345 |
} else {
|
346 |
$mydates_result .= date( $date_format_now, strtotime( $dt ) ) . ', ';
|
@@ -376,7 +377,8 @@ function wpbc_time_slot_in_format( $timeslot, $time_format = false ){
|
|
376 |
// $s_tm = date_i18n( $time_format, mktime( intval( $s_tm[0] ), intval( $s_tm[1] ) ) );
|
377 |
// $e_tm = date_i18n( $time_format, mktime( intval( $e_tm[0] ), intval( $e_tm[1] ) ) );
|
378 |
//FixIn: 8.7.3.9 - fix issue of Daylight Saving Time - in some systems after ~ 29 of March, system generate minus several hours which show incorrect selected dates
|
379 |
-
|
|
|
380 |
$s_tm = wp_date( $time_format, mktime( intval( $s_tm[0] ), intval( $s_tm[1] ) ) );
|
381 |
$e_tm = wp_date( $time_format, mktime( intval( $e_tm[0] ), intval( $e_tm[1] ) ) );
|
382 |
} else{
|
340 |
//$mydates_result .= date_i18n( $date_format_now, mktime( $tms[0], $tms[1], $tms[2], $dta[1], $dta[2], $dta[0] ) ) . ', ';
|
341 |
|
342 |
//FixIn: 8.7.3.9 - fix issue of Daylight Saving Time - in some systems after ~ 29 of March, system generate minus several hours which show incorrect selected dates
|
343 |
+
$booking_is_use_localized_time_format = get_bk_option( 'booking_is_use_localized_time_format' ); //FixIn: 8.7.4.1
|
344 |
+
if ( ( 'On' == $booking_is_use_localized_time_format ) && ( function_exists( 'wp_date' ) ) ) {
|
345 |
$mydates_result .= wp_date( $date_format_now, strtotime( $dt ) ) . ', ';
|
346 |
} else {
|
347 |
$mydates_result .= date( $date_format_now, strtotime( $dt ) ) . ', ';
|
377 |
// $s_tm = date_i18n( $time_format, mktime( intval( $s_tm[0] ), intval( $s_tm[1] ) ) );
|
378 |
// $e_tm = date_i18n( $time_format, mktime( intval( $e_tm[0] ), intval( $e_tm[1] ) ) );
|
379 |
//FixIn: 8.7.3.9 - fix issue of Daylight Saving Time - in some systems after ~ 29 of March, system generate minus several hours which show incorrect selected dates
|
380 |
+
$booking_is_use_localized_time_format = get_bk_option( 'booking_is_use_localized_time_format' ); //FixIn: 8.7.4.1
|
381 |
+
if ( ( 'On' == $booking_is_use_localized_time_format ) && ( function_exists( 'wp_date' ) ) ) {
|
382 |
$s_tm = wp_date( $time_format, mktime( intval( $s_tm[0] ), intval( $s_tm[1] ) ) );
|
383 |
$e_tm = wp_date( $time_format, mktime( intval( $e_tm[0] ), intval( $e_tm[1] ) ) );
|
384 |
} else{
|
core/wpbc-translation.php
CHANGED
@@ -301,7 +301,17 @@ function wpbc_check_locale_for_ajax() {
|
|
301 |
wpbc_load_locale(WPBC_LOCALE_RELOAD);
|
302 |
|
303 |
//FixIn: 8.7.3.15
|
304 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
if ( $current_locale != WPBC_LOCALE_RELOAD ) {
|
306 |
if ( function_exists( 'switch_to_locale' ) ) {
|
307 |
$switched_locale = switch_to_locale( WPBC_LOCALE_RELOAD );
|
301 |
wpbc_load_locale(WPBC_LOCALE_RELOAD);
|
302 |
|
303 |
//FixIn: 8.7.3.15
|
304 |
+
//FixIn: 8.7.5.1
|
305 |
+
if ( function_exists( 'determine_locale' ) ) {
|
306 |
+
$current_locale = determine_locale();
|
307 |
+
} else {
|
308 |
+
if ( function_exists( 'get_user_locale' ) ) {
|
309 |
+
$current_locale = is_admin() ? get_user_locale() : get_locale();
|
310 |
+
} else {
|
311 |
+
$current_locale = get_locale();
|
312 |
+
}
|
313 |
+
}
|
314 |
+
|
315 |
if ( $current_locale != WPBC_LOCALE_RELOAD ) {
|
316 |
if ( function_exists( 'switch_to_locale' ) ) {
|
317 |
$switched_locale = switch_to_locale( WPBC_LOCALE_RELOAD );
|
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:
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
@@ -14,45 +14,45 @@ msgstr ""
|
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
-
"X-Generator: Poedit 2.
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: core/admin/api-settings.php:68 core/lib/wpbc_all_translations.php:
|
22 |
msgid "Calendar Skin"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: core/admin/api-settings.php:69 core/lib/wpbc_all_translations.php:
|
26 |
msgid "Select the skin of the booking calendar"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: core/admin/api-settings.php:88 core/lib/wpbc_all_translations.php:
|
30 |
msgid "month(s)"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: core/admin/api-settings.php:89 core/lib/wpbc_all_translations.php:
|
34 |
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:
|
39 |
msgid "Number of months to scroll"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: core/admin/api-settings.php:95 core/lib/wpbc_all_translations.php:
|
43 |
msgid "Select the maximum number of months to show (scroll)"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: core/admin/api-settings.php:106 core/lib/wpbc_all_translations.php:
|
47 |
msgid "Start Day of the week"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: core/admin/api-settings.php:107 core/lib/wpbc_all_translations.php:
|
51 |
msgid "Select your start day of the week"
|
52 |
msgstr ""
|
53 |
|
54 |
#: core/admin/api-settings.php:109 core/admin/api-settings.php:192
|
55 |
-
#: core/lib/wpbc_all_translations.php:
|
56 |
#: inc/_bm/admin/page-seasons.php:991 inc/_bs/admin/api-settings-s.php:108
|
57 |
#: inc/_bs/admin/api-settings-s.php:241 inc/_ps/form/class-wpbc-form-help.php:451
|
58 |
#: inc/_ps/form/class-wpbc-form-help.php:598
|
@@ -60,7 +60,7 @@ msgid "Sunday"
|
|
60 |
msgstr ""
|
61 |
|
62 |
#: core/admin/api-settings.php:110 core/admin/api-settings.php:195
|
63 |
-
#: core/lib/wpbc_all_translations.php:
|
64 |
#: inc/_bm/admin/page-seasons.php:992 inc/_bs/admin/api-settings-s.php:109
|
65 |
#: inc/_bs/admin/api-settings-s.php:242 inc/_ps/form/class-wpbc-form-help.php:452
|
66 |
#: inc/_ps/form/class-wpbc-form-help.php:599
|
@@ -68,7 +68,7 @@ msgid "Monday"
|
|
68 |
msgstr ""
|
69 |
|
70 |
#: core/admin/api-settings.php:111 core/admin/api-settings.php:198
|
71 |
-
#: core/lib/wpbc_all_translations.php:
|
72 |
#: inc/_bm/admin/page-seasons.php:993 inc/_bs/admin/api-settings-s.php:110
|
73 |
#: inc/_bs/admin/api-settings-s.php:243 inc/_ps/form/class-wpbc-form-help.php:453
|
74 |
#: inc/_ps/form/class-wpbc-form-help.php:600
|
@@ -76,7 +76,7 @@ msgid "Tuesday"
|
|
76 |
msgstr ""
|
77 |
|
78 |
#: core/admin/api-settings.php:112 core/admin/api-settings.php:201
|
79 |
-
#: core/lib/wpbc_all_translations.php:
|
80 |
#: inc/_bm/admin/page-seasons.php:994 inc/_bs/admin/api-settings-s.php:111
|
81 |
#: inc/_bs/admin/api-settings-s.php:244 inc/_ps/form/class-wpbc-form-help.php:454
|
82 |
#: inc/_ps/form/class-wpbc-form-help.php:601
|
@@ -84,7 +84,7 @@ msgid "Wednesday"
|
|
84 |
msgstr ""
|
85 |
|
86 |
#: core/admin/api-settings.php:113 core/admin/api-settings.php:204
|
87 |
-
#: core/lib/wpbc_all_translations.php:
|
88 |
#: inc/_bm/admin/page-seasons.php:995 inc/_bs/admin/api-settings-s.php:112
|
89 |
#: inc/_bs/admin/api-settings-s.php:245 inc/_ps/form/class-wpbc-form-help.php:455
|
90 |
#: inc/_ps/form/class-wpbc-form-help.php:602
|
@@ -92,7 +92,7 @@ msgid "Thursday"
|
|
92 |
msgstr ""
|
93 |
|
94 |
#: core/admin/api-settings.php:114 core/admin/api-settings.php:207
|
95 |
-
#: core/lib/wpbc_all_translations.php:
|
96 |
#: inc/_bm/admin/page-seasons.php:996 inc/_bs/admin/api-settings-s.php:113
|
97 |
#: inc/_bs/admin/api-settings-s.php:246 inc/_ps/form/class-wpbc-form-help.php:456
|
98 |
#: inc/_ps/form/class-wpbc-form-help.php:603
|
@@ -100,215 +100,215 @@ msgid "Friday"
|
|
100 |
msgstr ""
|
101 |
|
102 |
#: core/admin/api-settings.php:115 core/admin/api-settings.php:210
|
103 |
-
#: core/lib/wpbc_all_translations.php:
|
104 |
#: inc/_bm/admin/page-seasons.php:997 inc/_bs/admin/api-settings-s.php:114
|
105 |
#: inc/_bs/admin/api-settings-s.php:247 inc/_ps/form/class-wpbc-form-help.php:457
|
106 |
#: inc/_ps/form/class-wpbc-form-help.php:604
|
107 |
msgid "Saturday"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: core/admin/api-settings.php:127 core/lib/wpbc_all_translations.php:
|
111 |
#: inc/_bs/admin/api-settings-s.php:29
|
112 |
msgid "Single day"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: core/admin/api-settings.php:133 core/lib/wpbc_all_translations.php:
|
116 |
#: inc/_bs/admin/api-settings-s.php:30
|
117 |
msgid "Multiple days"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: core/admin/api-settings.php:143 core/lib/wpbc_all_translations.php:
|
121 |
#: inc/_bs/admin/api-settings-s.php:36
|
122 |
msgid "Type of days selection in calendar"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: core/admin/api-settings.php:162 core/lib/wpbc_all_translations.php:
|
126 |
msgid "Do not change background color for partially booked days"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: core/admin/api-settings.php:163 core/lib/wpbc_all_translations.php:
|
130 |
msgid "Show partially booked days with same background as in legend item"
|
131 |
msgstr ""
|
132 |
|
133 |
#: core/admin/api-settings.php:164 core/admin/api-settings.php:314 core/admin/api-settings.php:474
|
134 |
-
#: core/admin/api-settings.php:509 core/admin/api-settings.php:
|
135 |
#: core/admin/page-form-free.php:189 core/admin/page-ics-export.php:467
|
136 |
-
#: core/lib/wpbc_all_translations.php:
|
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:
|
139 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1076 js/wpbc-gutenberg.js:
|
140 |
msgid "Note"
|
141 |
msgstr ""
|
142 |
|
143 |
#: core/admin/api-settings.php:165 core/admin/api-settings.php:475
|
144 |
-
#: core/lib/wpbc_all_translations.php:
|
145 |
msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: core/admin/api-settings.php:187 core/lib/wpbc_all_translations.php:
|
149 |
msgid "Unavailable week days"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: core/admin/api-settings.php:217 core/lib/wpbc_all_translations.php:
|
153 |
msgid "Check unavailable days in calendars. This option will overwrite all other settings."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: core/admin/api-settings.php:235 core/lib/wpbc_all_translations.php:
|
157 |
msgid "Unavailable days from today"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: core/admin/api-settings.php:236 core/lib/wpbc_all_translations.php:
|
161 |
msgid "Select number of unavailable days in calendar start from today."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: core/admin/api-settings.php:275 core/lib/wpbc_all_translations.php:
|
165 |
msgid "Simple"
|
166 |
msgstr ""
|
167 |
|
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:
|
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 |
|
176 |
-
#: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:
|
177 |
msgid ""
|
178 |
"Check the box, if you want to use simple booking form customization from Free plugin version at "
|
179 |
"Settings - Form page."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: core/admin/api-settings.php:284 core/lib/wpbc_all_translations.php:
|
183 |
msgid "Syntax highlighter"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: core/admin/api-settings.php:285 core/lib/wpbc_all_translations.php:
|
187 |
msgid "Check the box, if you want to use syntax highlighter during customization booking form."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: core/admin/api-settings.php:296 core/lib/wpbc_all_translations.php:
|
191 |
#: inc/_ps/form/class-wpbc-form-help.php:194
|
192 |
msgid "CAPTCHA"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: core/admin/api-settings.php:297 core/lib/wpbc_all_translations.php:
|
196 |
msgid "Check the box to activate CAPTCHA inside the booking form."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: core/admin/api-settings.php:304 core/lib/wpbc_all_translations.php:
|
200 |
msgid "Auto-fill fields"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: core/admin/api-settings.php:305 core/lib/wpbc_all_translations.php:
|
204 |
msgid "Check the box to activate auto-fill form fields for logged in users."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: core/admin/api-settings.php:312 core/lib/wpbc_all_translations.php:
|
208 |
msgid "Use CSS BootStrap"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: core/admin/api-settings.php:313 core/lib/wpbc_all_translations.php:
|
212 |
msgid "Using BootStrap CSS for the form fields"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: core/admin/api-settings.php:314 core/lib/wpbc_all_translations.php:
|
216 |
msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: core/admin/api-settings.php:324 core/lib/wpbc_all_translations.php:
|
220 |
msgid "Show legend below calendar"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: core/admin/api-settings.php:325 core/lib/wpbc_all_translations.php:
|
224 |
msgid "Check this box to display a legend of dates below the booking calendar."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: core/admin/api-settings.php:337 core/lib/wpbc_all_translations.php:
|
228 |
msgid "Available item"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: core/admin/api-settings.php:351 core/lib/wpbc_all_translations.php:
|
232 |
-
#: core/wpbc-activation.php:
|
233 |
msgid "Available"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: core/admin/api-settings.php:360 core/lib/wpbc_all_translations.php:
|
237 |
#, php-format
|
238 |
msgid "Activate and type your %stitle of available%s item in legend"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: core/admin/api-settings.php:374 core/lib/wpbc_all_translations.php:
|
242 |
msgid "Pending item"
|
243 |
msgstr ""
|
244 |
|
245 |
#: core/admin/api-settings.php:388 core/admin/page-email-deny.php:558
|
246 |
#: core/admin/wpbc-class-listing.php:328 core/admin/wpbc-class-listing.php:426
|
247 |
#: core/admin/wpbc-toolbars.php:549 core/admin/wpbc-toolbars.php:964
|
248 |
-
#: core/lib/wpbc_all_translations.php:
|
249 |
-
#: core/wpbc-
|
250 |
-
#: inc/_ps/wpbc-print.php:119
|
251 |
msgid "Pending"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: core/admin/api-settings.php:397 core/lib/wpbc_all_translations.php:
|
255 |
#, php-format
|
256 |
msgid "Activate and type your %stitle of pending%s item in legend"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: core/admin/api-settings.php:411 core/lib/wpbc_all_translations.php:
|
260 |
msgid "Approved item"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: core/admin/api-settings.php:425 core/lib/wpbc_all_translations.php:
|
264 |
-
#: core/wpbc-activation.php:
|
265 |
msgid "Booked"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: core/admin/api-settings.php:434 core/lib/wpbc_all_translations.php:
|
269 |
#, php-format
|
270 |
msgid "Activate and type your %stitle of approved%s item in legend"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: core/admin/api-settings.php:449 core/lib/wpbc_all_translations.php:
|
274 |
msgid "Partially booked item"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: core/admin/api-settings.php:463 core/lib/wpbc_all_translations.php:
|
278 |
-
#: core/wpbc-activation.php:
|
279 |
msgid "Partially booked"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: core/admin/api-settings.php:472 core/lib/wpbc_all_translations.php:
|
283 |
#, php-format
|
284 |
msgid "Activate and type your %stitle of partially booked%s item in legend"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: core/admin/api-settings.php:497 core/lib/wpbc_all_translations.php:
|
288 |
msgid "Show date number in legend"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: core/admin/api-settings.php:498 core/lib/wpbc_all_translations.php:
|
292 |
msgid "Check this box to display today date number in legend cells. "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: core/admin/api-settings.php:506 core/lib/wpbc_all_translations.php:
|
296 |
msgid "Show \"Thank You\" message"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: core/admin/api-settings.php:507 core/lib/wpbc_all_translations.php:
|
300 |
msgid "Redirect visitor to a new \"Thank You\" page"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: core/admin/api-settings.php:509 core/lib/wpbc_all_translations.php:
|
304 |
msgid "This action will have no effect, if the payment form(s) is active!"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: core/admin/api-settings.php:514 core/lib/wpbc_all_translations.php:
|
308 |
msgid "Action after booking is done"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: core/admin/api-settings.php:523 core/lib/wpbc_all_translations.php:
|
312 |
#: core/wpbc-activation.php:868
|
313 |
#, php-format
|
314 |
msgid ""
|
@@ -316,136 +316,136 @@ msgid ""
|
|
316 |
"possible."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: core/admin/api-settings.php:524 core/lib/wpbc_all_translations.php:
|
320 |
msgid "Message title"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: core/admin/api-settings.php:525 core/lib/wpbc_all_translations.php:
|
324 |
#, php-format
|
325 |
msgid "Type title of message %safter booking has done by user%s"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: core/admin/api-settings.php:536 core/lib/wpbc_all_translations.php:
|
329 |
msgid "Time of message showing"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: core/admin/api-settings.php:537 core/lib/wpbc_all_translations.php:
|
333 |
msgid "Set duration of time (milliseconds) to show this message"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: core/admin/api-settings.php:564 core/lib/wpbc_all_translations.php:
|
337 |
msgid "URL of \"thank you\" page"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: core/admin/api-settings.php:580 core/lib/wpbc_all_translations.php:
|
341 |
#, php-format
|
342 |
msgid "Type URL of %s\"Thank You\" page%s"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: core/admin/api-settings.php:592 core/lib/wpbc_all_translations.php:
|
346 |
#: core/wpbc.php:138
|
347 |
msgid "Bookings Listing"
|
348 |
msgstr ""
|
349 |
|
350 |
#: core/admin/api-settings.php:593 core/admin/page-settings.php:231 core/admin/page-timeline.php:45
|
351 |
#: core/admin/page-timeline.php:46 core/admin/page-timeline.php:47 core/admin/wpbc-toolbars.php:482
|
352 |
-
#: core/lib/wpbc_all_translations.php:
|
353 |
msgid "Calendar Overview"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: core/admin/api-settings.php:598 core/lib/wpbc_all_translations.php:
|
357 |
msgid "Default booking admin page"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: core/admin/api-settings.php:599 core/lib/wpbc_all_translations.php:
|
361 |
msgid "Select your default view mode of bookings at the booking listing page"
|
362 |
msgstr ""
|
363 |
|
364 |
#: core/admin/api-settings.php:615 core/admin/wpbc-toolbar-tiny.php:393
|
365 |
#: core/admin/wpbc-toolbars.php:1184 core/admin/wpbc-toolbars.php:1244
|
366 |
-
#: core/lib/wpbc_all_translations.php:
|
367 |
msgid "Day"
|
368 |
msgstr ""
|
369 |
|
370 |
#: core/admin/api-settings.php:616 core/admin/wpbc-toolbar-tiny.php:394
|
371 |
#: core/admin/wpbc-toolbars.php:1201 core/admin/wpbc-toolbars.php:1258
|
372 |
-
#: core/lib/wpbc_all_translations.php:
|
373 |
msgid "Week"
|
374 |
msgstr ""
|
375 |
|
376 |
#: core/admin/api-settings.php:617 core/admin/api-settings.php:624
|
377 |
#: core/admin/wpbc-toolbar-tiny.php:396 core/admin/wpbc-toolbars.php:1218
|
378 |
-
#: core/admin/wpbc-toolbars.php:1272 core/lib/wpbc_all_translations.php:
|
379 |
#: inc/_bl/admin/page-coupons.php:525
|
380 |
msgid "Month"
|
381 |
msgstr ""
|
382 |
|
383 |
#: core/admin/api-settings.php:618 core/admin/wpbc-toolbar-tiny.php:398
|
384 |
-
#: core/admin/wpbc-toolbars.php:1286 core/lib/wpbc_all_translations.php:
|
385 |
msgid "2 Months"
|
386 |
msgstr ""
|
387 |
|
388 |
#: core/admin/api-settings.php:619 core/admin/api-settings.php:625
|
389 |
-
#: core/admin/wpbc-toolbar-tiny.php:400 core/lib/wpbc_all_translations.php:
|
390 |
msgid "3 Months"
|
391 |
msgstr ""
|
392 |
|
393 |
#: core/admin/api-settings.php:620 core/admin/api-settings.php:626
|
394 |
#: core/admin/wpbc-toolbar-tiny.php:401 core/admin/wpbc-toolbars.php:579
|
395 |
-
#: core/admin/wpbc-toolbars.php:813 core/lib/wpbc_all_translations.php:
|
396 |
#: inc/_bl/admin/page-coupons.php:524
|
397 |
msgid "Year"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: core/admin/api-settings.php:631 core/lib/wpbc_all_translations.php:
|
401 |
msgid "Default calendar view mode"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: core/admin/api-settings.php:632 core/lib/wpbc_all_translations.php:
|
405 |
msgid "Select your default calendar view mode at booking calendar overview page"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: core/admin/api-settings.php:642 core/lib/wpbc_all_translations.php:
|
409 |
msgid "Filter tab"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: core/admin/api-settings.php:643 core/lib/wpbc_all_translations.php:
|
413 |
msgid "Actions tab"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: core/admin/api-settings.php:648 core/lib/wpbc_all_translations.php:
|
417 |
msgid "Default toolbar tab"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: core/admin/api-settings.php:649 core/lib/wpbc_all_translations.php:
|
421 |
msgid "Select your default opened tab in toolbar at booking listing page"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: core/admin/api-settings.php:661 core/lib/wpbc_all_translations.php:
|
425 |
msgid "Bookings number per page"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: core/admin/api-settings.php:662 core/lib/wpbc_all_translations.php:
|
429 |
msgid "Select number of bookings per page in booking listing"
|
430 |
msgstr ""
|
431 |
|
432 |
#: core/admin/api-settings.php:669 core/admin/api-settings.php:670
|
433 |
#: core/admin/wpbc-class-listing.php:122 core/admin/wpbc-toolbars.php:735
|
434 |
-
#: core/admin/wpbc-toolbars.php:738 core/lib/wpbc_all_translations.php:
|
435 |
#: core/sync/wpbc-gcal-class.php:640 core/sync/wpbc-gcal-class.php:661
|
436 |
#: inc/_bl/admin/page-coupons.php:495 inc/_bm/admin/page-availability.php:491
|
437 |
#: inc/_bm/admin/page-availability.php:972 inc/_bm/admin/page-cost-rate.php:148
|
438 |
-
#: inc/_bm/admin/page-cost.php:571 inc/_bm/admin/page-seasons.php:506 inc/_bs/lib_s.php:
|
439 |
-
#: inc/_bs/lib_s.php:
|
440 |
#: inc/_ps/admin/br-table-export-feeds.php:168 inc/_ps/admin/br-table-import-gcal-p.php:140
|
441 |
#: inc/_ps/admin/page-resources.php:455 inc/_ps/form/class-wpbc-field-help-text.php:211
|
442 |
#: inc/_ps/lib_p.php:124 inc/_ps/lib_p.php:128 inc/_ps/wpbc-print.php:82
|
443 |
-
#: inc/gateways/page-gateways.php:
|
444 |
msgid "ID"
|
445 |
msgstr ""
|
446 |
|
447 |
#: core/admin/api-settings.php:669 core/admin/api-settings.php:671 core/admin/api-settings.php:675
|
448 |
-
#: core/admin/api-settings.php:679 core/lib/wpbc_all_translations.php:
|
449 |
#: inc/_bl/admin/page-search.php:180 inc/_bl/admin/page-search.php:182
|
450 |
#: inc/_bl/admin/page-search.php:184 inc/_bl/admin/page-search.php:186
|
451 |
#: inc/_bl/admin/page-search.php:188
|
@@ -453,7 +453,7 @@ msgid "ASC"
|
|
453 |
msgstr ""
|
454 |
|
455 |
#: core/admin/api-settings.php:670 core/admin/api-settings.php:672 core/admin/api-settings.php:676
|
456 |
-
#: core/admin/api-settings.php:680 core/lib/wpbc_all_translations.php:
|
457 |
#: inc/_bl/admin/page-search.php:181 inc/_bl/admin/page-search.php:183
|
458 |
#: inc/_bl/admin/page-search.php:185 inc/_bl/admin/page-search.php:187
|
459 |
#: inc/_bl/admin/page-search.php:189
|
@@ -463,86 +463,97 @@ msgstr ""
|
|
463 |
#: core/admin/api-settings.php:671 core/admin/api-settings.php:672 core/admin/wpbc-toolbars.php:588
|
464 |
#: core/admin/wpbc-toolbars.php:650 core/admin/wpbc-toolbars.php:736
|
465 |
#: core/admin/wpbc-toolbars.php:739 core/admin/wpbc-toolbars.php:855
|
466 |
-
#: core/lib/wpbc_all_translations.php:
|
467 |
#: core/sync/wpbc-gcal-class.php:678 core/timeline/v2/wpbc-class-timeline_v2.php:73
|
468 |
-
#: inc/_bs/lib_s.php:
|
469 |
#: inc/_ps/wpbc-form-templates.php:89 inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
|
470 |
msgid "Dates"
|
471 |
msgstr ""
|
472 |
|
473 |
#: core/admin/api-settings.php:675 core/admin/api-settings.php:676
|
474 |
-
#: core/lib/wpbc_all_translations.php:
|
475 |
#: inc/_bm/admin/page-availability.php:876 inc/_bm/admin/page-cost-rate.php:106
|
476 |
-
#: inc/_bm/admin/page-cost-valuation.php:134 inc/_bs/lib_s.php:
|
477 |
#: inc/_ps/lib_p.php:126 inc/_ps/lib_p.php:130
|
478 |
msgid "Resource"
|
479 |
msgstr ""
|
480 |
|
481 |
#: core/admin/api-settings.php:679 core/admin/api-settings.php:680
|
482 |
-
#: core/admin/wpbc-toolbar-tiny.php:1803 core/lib/wpbc_all_translations.php:
|
483 |
-
#: inc/_bs/admin/api-settings-s.php:924 inc/_bs/lib_s.php:
|
484 |
-
#: inc/_bs/lib_s.php:
|
485 |
msgid "Cost"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: core/admin/api-settings.php:685 core/lib/wpbc_all_translations.php:
|
489 |
msgid "Bookings default order"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: core/admin/api-settings.php:686 core/lib/wpbc_all_translations.php:
|
493 |
msgid "Select your default order of bookings in the booking listing"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: core/admin/api-settings.php:703 core/lib/wpbc_all_translations.php:
|
497 |
-
#: inc/_bl/admin/page-search.php:
|
498 |
msgid "Date Format"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: core/admin/api-settings.php:708 core/lib/wpbc_all_translations.php:
|
502 |
msgid "F j, Y"
|
503 |
msgstr ""
|
504 |
|
505 |
#: core/admin/api-settings.php:711 core/admin/wpbc-toolbars.php:1484
|
506 |
-
#: core/lib/wpbc_all_translations.php:
|
507 |
-
#: inc/_bs/admin/api-settings-s.php:426 inc/_bs/lib_s.php:
|
508 |
msgid "Custom"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: core/admin/api-settings.php:737 core/lib/wpbc_all_translations.php:
|
512 |
#, php-format
|
513 |
msgid ""
|
514 |
"Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: core/admin/api-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
msgid "Short days view"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: core/admin/api-settings.php:
|
522 |
msgid "Wide days view"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: core/admin/api-settings.php:
|
526 |
msgid "Dates view"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: core/admin/api-settings.php:
|
530 |
msgid "Select the default view for dates on the booking tables"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: core/admin/api-settings.php:
|
534 |
msgid "Show / hide hints"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: core/admin/api-settings.php:
|
538 |
msgid "Check this box if you want to show help hints on the admin panel."
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: core/admin/api-settings.php:
|
542 |
msgid "Allow unlimited bookings per same day(s)"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: core/admin/api-settings.php:
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
"Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
|
@@ -550,147 +561,147 @@ msgid ""
|
|
550 |
"date(s)%s of other visitors."
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: core/admin/api-settings.php:
|
554 |
#: inc/_bl/admin/api-settings-l.php:101
|
555 |
msgid "Use pending days as available"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: core/admin/api-settings.php:
|
559 |
#: inc/_bl/admin/api-settings-l.php:102
|
560 |
msgid "Check this box if you want to show the pending days as available in calendars"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: core/admin/api-settings.php:
|
564 |
msgid "Checking to prevent double booking, during submitting booking"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: core/admin/api-settings.php:
|
568 |
#, php-format
|
569 |
msgid ""
|
570 |
"Check this box, if you want to %sre-check if the selected dates available during submitting "
|
571 |
"booking%s."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: core/admin/api-settings.php:
|
575 |
msgid ""
|
576 |
"This feature useful to prevent double booking of the same date(s) or time(s), if several "
|
577 |
"visitors try to book the same date(s) in same calendar during the same time."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: core/admin/api-settings.php:
|
581 |
msgid "This feature does not work for booking resources with capacity higher than one."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: core/admin/api-settings.php:
|
585 |
msgid "Show advanced settings of JavaScript loading"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: core/admin/api-settings.php:
|
589 |
msgid "Hide advanced settings of JavaScript loading"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: core/admin/api-settings.php:
|
593 |
msgid "Disable Bootstrap loading on Front-End"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: core/admin/api-settings.php:
|
597 |
-
#: core/lib/wpbc_all_translations.php:
|
598 |
msgid ""
|
599 |
" If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
|
600 |
"of this script by this plugin."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: core/admin/api-settings.php:
|
604 |
msgid "Disable Bootstrap loading on Back-End"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: core/admin/api-settings.php:
|
608 |
msgid "Load JS and CSS files only on specific pages"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: core/admin/api-settings.php:
|
612 |
msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: core/admin/api-settings.php:
|
616 |
msgid "Relative URLs of pages, where to load plugin CSS and JS files"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: core/admin/api-settings.php:
|
620 |
#, php-format
|
621 |
msgid ""
|
622 |
"Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
|
623 |
"availability calendars). Please enter one URL per line. Example: %s"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: core/admin/api-settings.php:
|
627 |
msgid "Show system debugging log for beta features"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: core/admin/api-settings.php:
|
631 |
msgid "Activate this option only for testing beta features"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: core/admin/api-settings.php:
|
635 |
msgid "Show settings of powered by notice"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: core/admin/api-settings.php:
|
639 |
msgid "Hide settings of powered by notice"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: core/admin/api-settings.php:
|
643 |
msgid "Powered by notice"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: core/admin/api-settings.php:
|
647 |
msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: core/admin/api-settings.php:
|
651 |
msgid "Help and info notices"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: core/admin/api-settings.php:
|
655 |
msgid " Turn On/Off version notice and help info links at booking admin panel."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: core/admin/api-settings.php:
|
659 |
msgid "Plugin menu position"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: core/admin/api-settings.php:
|
663 |
msgid "Top"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: core/admin/api-settings.php:
|
667 |
msgid "Middle"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: core/admin/api-settings.php:
|
671 |
msgid "Bottom"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: core/admin/api-settings.php:
|
675 |
msgid "User permissions for plugin menu pages"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: core/admin/api-settings.php:
|
679 |
-
#: core/admin/wpbc-toolbars.php:771 core/lib/wpbc_all_translations.php:
|
680 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:74 core/wpbc.php:136
|
681 |
msgid "Bookings"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: core/admin/api-settings.php:
|
685 |
#: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1847
|
686 |
-
#: core/lib/wpbc_all_translations.php:
|
687 |
#: core/wpbc.php:166 core/wpbc.php:167
|
688 |
msgid "Add booking"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: core/admin/api-settings.php:
|
692 |
-
#: core/lib/wpbc_all_translations.php:
|
693 |
-
#: core/wpbc-functions.php:
|
694 |
#: inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
|
695 |
#: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
|
696 |
#: inc/_bm/admin/page-cost-valuation.php:133 inc/_mu/admin/page-users.php:446
|
@@ -699,47 +710,47 @@ msgstr ""
|
|
699 |
msgid "Resources"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: core/admin/api-settings.php:
|
703 |
-
#: core/wpbc-functions.php:
|
704 |
#: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
|
705 |
msgid "Settings"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: core/admin/api-settings.php:
|
709 |
msgid "Select user access level for the menu pages of plugin"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: core/admin/api-settings.php:
|
713 |
msgid "Premium"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: core/admin/api-settings.php:
|
717 |
msgid "Show / hide menu"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: core/admin/api-settings.php:
|
721 |
#: core/admin/wpbc-toolbar-tiny.php:1810 core/admin/wpbc-toolbars.php:790
|
722 |
-
#: core/lib/wpbc_all_translations.php:
|
723 |
-
#: js/wpbc-gutenberg.js:
|
724 |
msgid "Show"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: core/admin/api-settings.php:
|
728 |
-
#: core/lib/wpbc_all_translations.php:
|
729 |
-
#: core/wpbc-functions.php:
|
730 |
msgid "Hide"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: core/admin/api-settings.php:
|
734 |
msgid "Delete booking data, when plugin deactivated"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: core/admin/api-settings.php:
|
738 |
msgid "Check this box to delete all booking data when you uninstal this plugin."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: core/admin/api-settings.php:
|
742 |
-
#: core/lib/wpbc_all_translations.php:
|
743 |
#: core/sync/wpbc-gcal-class.php:642 core/sync/wpbc-gcal-class.php:668
|
744 |
#: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
|
745 |
#: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
|
@@ -747,57 +758,57 @@ msgstr ""
|
|
747 |
msgid "Info"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: core/admin/api-settings.php:
|
751 |
-
#: core/lib/wpbc_all_translations.php:
|
752 |
msgid "Restore all dismissed windows"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: core/admin/api-settings.php:
|
756 |
-
#: core/admin/api-settings.php:
|
757 |
-
#: core/admin/api-settings.php:
|
758 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
759 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/page-gateways.php:
|
760 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
|
761 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:857
|
762 |
msgid "Warning"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: core/admin/api-settings.php:
|
766 |
msgid ""
|
767 |
"You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
|
768 |
"the same date. Do you really want to do this?"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: core/admin/api-settings.php:
|
772 |
msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: core/admin/api-settings.php:
|
776 |
-
#: core/lib/wpbc_all_translations.php:
|
777 |
msgid ""
|
778 |
"You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
|
779 |
"really want to do this?"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: core/admin/api-settings.php:
|
783 |
msgid ""
|
784 |
"If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
|
785 |
"you really want to do this?"
|
786 |
msgstr ""
|
787 |
|
788 |
#: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
|
789 |
-
#: core/admin/wpbc-toolbars.php:467 core/lib/wpbc_all_translations.php:
|
790 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2630 core/wpbc-functions.php:
|
791 |
msgid "Booking Listing"
|
792 |
msgstr ""
|
793 |
|
794 |
#: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
|
795 |
#: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
|
796 |
#: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
|
797 |
-
#: core/lib/wpbc_all_translations.php:
|
798 |
#: inc/_bm/admin/page-cost-early-late-booking.php:138
|
799 |
#: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
|
800 |
-
#: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
801 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
|
802 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:377 inc/gateways/ipay88/wpbc-gw-ipay88.php:317
|
803 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:343
|
@@ -810,7 +821,7 @@ msgstr ""
|
|
810 |
#: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
|
811 |
#: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
|
812 |
#: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
|
813 |
-
#: core/lib/wpbc_all_translations.php:
|
814 |
#: inc/_ps/admin/page-email-edit.php:179
|
815 |
msgid "Enable this email notification"
|
816 |
msgstr ""
|
@@ -819,7 +830,7 @@ msgstr ""
|
|
819 |
#: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
|
820 |
#: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
|
821 |
#: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
|
822 |
-
#: core/lib/wpbc_all_translations.php:
|
823 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
|
824 |
#: inc/_ps/admin/page-email-edit.php:205
|
825 |
msgid "Copy(ies)"
|
@@ -827,14 +838,14 @@ msgstr ""
|
|
827 |
|
828 |
#: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
|
829 |
#: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
|
830 |
-
#: core/lib/wpbc_all_translations.php:
|
831 |
#: inc/_ps/admin/page-email-edit.php:191
|
832 |
msgid "Enable / disable sending email(s) to additional addresses"
|
833 |
msgstr ""
|
834 |
|
835 |
#: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
|
836 |
#: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
|
837 |
-
#: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:
|
838 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
839 |
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
|
840 |
msgid "To"
|
@@ -845,7 +856,7 @@ msgstr ""
|
|
845 |
#: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
|
846 |
#: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
|
847 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
|
848 |
-
#: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:
|
849 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
850 |
#: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
|
851 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
|
@@ -862,12 +873,12 @@ msgstr ""
|
|
862 |
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
|
863 |
#: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
|
864 |
#: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1147
|
865 |
-
#: core/admin/page-form-free.php:2071 core/lib/wpbc_all_translations.php:
|
866 |
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
867 |
#: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
|
868 |
#: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
|
869 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
870 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
871 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:404 inc/gateways/ipay88/wpbc-gw-ipay88.php:329
|
872 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:344 inc/gateways/paypal/wpbc-gw-paypal.php:376
|
873 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:392 inc/gateways/sage/wpbc-gw-sage.php:396
|
@@ -880,7 +891,7 @@ msgstr ""
|
|
880 |
|
881 |
#: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
|
882 |
#: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
|
883 |
-
#: core/lib/wpbc_all_translations.php:
|
884 |
#: inc/_ps/admin/page-email-edit.php:216
|
885 |
msgid "You can put multiple emails separated by"
|
886 |
msgstr ""
|
@@ -892,12 +903,12 @@ msgstr ""
|
|
892 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
893 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
|
894 |
#: core/admin/wpbc-toolbar-tiny.php:430 core/admin/wpbc-toolbar-tiny.php:1801
|
895 |
-
#: core/lib/wpbc_all_translations.php:
|
896 |
#: core/sync/wpbc-gcal-class.php:641 core/sync/wpbc-gcal-class.php:664
|
897 |
#: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
|
898 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
899 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
900 |
-
#: inc/_ps/wpbc-booking-select-widget.php:140 js/wpbc-gutenberg.js:
|
901 |
msgid "Title"
|
902 |
msgstr ""
|
903 |
|
@@ -907,7 +918,7 @@ msgstr ""
|
|
907 |
#: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
|
908 |
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
909 |
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
|
910 |
-
#: core/admin/wpbc-toolbar-tiny.php:430 core/lib/wpbc_all_translations.php:
|
911 |
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
912 |
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
913 |
#: inc/_ps/form/class-wpbc-field-help-button.php:73
|
@@ -919,7 +930,7 @@ msgstr ""
|
|
919 |
#: inc/_ps/form/class-wpbc-field-help-text.php:228 inc/_ps/form/class-wpbc-field-help-text.php:247
|
920 |
#: inc/_ps/form/class-wpbc-field-help-text.php:264 inc/_ps/form/class-wpbc-field-help-text.php:281
|
921 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
922 |
-
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111 inc/gateways/page-gateways.php:
|
923 |
msgid "optional"
|
924 |
msgstr ""
|
925 |
|
@@ -927,26 +938,26 @@ msgstr ""
|
|
927 |
#: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
|
928 |
#: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
|
929 |
#: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:594
|
930 |
-
#: core/lib/wpbc_all_translations.php:
|
931 |
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
932 |
#: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
|
933 |
#: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
|
934 |
msgid "From"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:
|
938 |
msgid "Email Address will be used in the FROM field of response to Visitor."
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:
|
942 |
-
#: core/wpbc-activation.php:
|
943 |
msgid "Your booking has been approved"
|
944 |
msgstr ""
|
945 |
|
946 |
#: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
|
947 |
#: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
|
948 |
#: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
|
949 |
-
#: core/lib/wpbc_all_translations.php:
|
950 |
#: inc/_ps/admin/page-email-edit.php:312
|
951 |
msgid "Subject"
|
952 |
msgstr ""
|
@@ -954,22 +965,22 @@ msgstr ""
|
|
954 |
#: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
|
955 |
#: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
|
956 |
#: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
|
957 |
-
#: core/lib/wpbc_all_translations.php:
|
958 |
#: inc/_ps/admin/page-email-edit.php:313
|
959 |
#, php-format
|
960 |
msgid "Type your email %ssubject%s for the booking confimation message."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:
|
964 |
-
#: core/wpbc-activation.php:
|
965 |
#, php-format
|
966 |
msgid ""
|
967 |
"Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
|
968 |
"you, %s"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:
|
972 |
-
#: core/wpbc-activation.php:
|
973 |
#, php-format
|
974 |
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
975 |
msgstr ""
|
@@ -977,7 +988,7 @@ msgstr ""
|
|
977 |
#: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
|
978 |
#: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
|
979 |
#: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
|
980 |
-
#: core/lib/wpbc_all_translations.php:
|
981 |
#: inc/_ps/admin/page-email-edit.php:330
|
982 |
msgid "Content"
|
983 |
msgstr ""
|
@@ -985,7 +996,7 @@ msgstr ""
|
|
985 |
#: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
|
986 |
#: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
|
987 |
#: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
|
988 |
-
#: core/lib/wpbc_all_translations.php:
|
989 |
#: inc/_ps/admin/page-email-edit.php:331
|
990 |
msgid "Type your email message content. "
|
991 |
msgstr ""
|
@@ -993,7 +1004,7 @@ msgstr ""
|
|
993 |
#: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
|
994 |
#: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
|
995 |
#: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
|
996 |
-
#: core/lib/wpbc_all_translations.php:
|
997 |
#: inc/_ps/admin/page-email-edit.php:352
|
998 |
msgid "Email Heading"
|
999 |
msgstr ""
|
@@ -1001,7 +1012,7 @@ msgstr ""
|
|
1001 |
#: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
|
1002 |
#: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
|
1003 |
#: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
|
1004 |
-
#: core/lib/wpbc_all_translations.php:
|
1005 |
#: inc/_ps/admin/page-email-edit.php:353
|
1006 |
msgid "Enter main heading contained within the email notification."
|
1007 |
msgstr ""
|
@@ -1009,7 +1020,7 @@ msgstr ""
|
|
1009 |
#: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
|
1010 |
#: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
|
1011 |
#: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
|
1012 |
-
#: core/lib/wpbc_all_translations.php:
|
1013 |
#: inc/_ps/admin/page-email-edit.php:362
|
1014 |
msgid "Email Footer Text"
|
1015 |
msgstr ""
|
@@ -1017,7 +1028,7 @@ msgstr ""
|
|
1017 |
#: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
|
1018 |
#: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
|
1019 |
#: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
|
1020 |
-
#: core/lib/wpbc_all_translations.php:
|
1021 |
#: inc/_ps/admin/page-email-edit.php:363
|
1022 |
msgid "Enter text contained within footer of the email notification"
|
1023 |
msgstr ""
|
@@ -1025,7 +1036,7 @@ msgstr ""
|
|
1025 |
#: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
|
1026 |
#: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
|
1027 |
#: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
|
1028 |
-
#: core/lib/wpbc_all_translations.php:
|
1029 |
#: inc/_ps/admin/page-email-edit.php:373
|
1030 |
msgid "Email template"
|
1031 |
msgstr ""
|
@@ -1033,7 +1044,7 @@ msgstr ""
|
|
1033 |
#: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
|
1034 |
#: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
|
1035 |
#: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
|
1036 |
-
#: core/lib/wpbc_all_translations.php:
|
1037 |
#: inc/_ps/admin/page-email-edit.php:374
|
1038 |
msgid "Choose email template."
|
1039 |
msgstr ""
|
@@ -1041,7 +1052,7 @@ msgstr ""
|
|
1041 |
#: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
|
1042 |
#: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
|
1043 |
#: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
|
1044 |
-
#: core/lib/wpbc_all_translations.php:
|
1045 |
#: inc/_ps/admin/page-email-edit.php:378
|
1046 |
msgid "Plain (without styles)"
|
1047 |
msgstr ""
|
@@ -1049,7 +1060,7 @@ msgstr ""
|
|
1049 |
#: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
|
1050 |
#: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
|
1051 |
#: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
|
1052 |
-
#: core/lib/wpbc_all_translations.php:
|
1053 |
#: inc/_ps/admin/page-email-edit.php:379
|
1054 |
msgid "Standard 1 column"
|
1055 |
msgstr ""
|
@@ -1057,7 +1068,7 @@ msgstr ""
|
|
1057 |
#: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
|
1058 |
#: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
|
1059 |
#: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
|
1060 |
-
#: core/lib/wpbc_all_translations.php:
|
1061 |
#: inc/_ps/admin/page-email-edit.php:386
|
1062 |
#, php-format
|
1063 |
msgid "You can override this email template in this folder %s"
|
@@ -1066,7 +1077,7 @@ msgstr ""
|
|
1066 |
#: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
|
1067 |
#: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
|
1068 |
#: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
|
1069 |
-
#: core/lib/wpbc_all_translations.php:
|
1070 |
#: inc/_ps/admin/page-email-edit.php:396
|
1071 |
msgid "Base Color"
|
1072 |
msgstr ""
|
@@ -1074,7 +1085,7 @@ msgstr ""
|
|
1074 |
#: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
|
1075 |
#: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
|
1076 |
#: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
|
1077 |
-
#: core/lib/wpbc_all_translations.php:
|
1078 |
#: inc/_ps/admin/page-email-edit.php:397
|
1079 |
msgid "The base color for email templates."
|
1080 |
msgstr ""
|
@@ -1091,7 +1102,7 @@ msgstr ""
|
|
1091 |
#: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
|
1092 |
#: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
|
1093 |
#: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
|
1094 |
-
#: core/lib/wpbc_all_translations.php:
|
1095 |
#: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
|
1096 |
#: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
|
1097 |
#: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
|
@@ -1102,7 +1113,7 @@ msgstr ""
|
|
1102 |
#: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
|
1103 |
#: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
|
1104 |
#: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
|
1105 |
-
#: core/lib/wpbc_all_translations.php:
|
1106 |
#: inc/_ps/admin/page-email-edit.php:405
|
1107 |
msgid "Background Color"
|
1108 |
msgstr ""
|
@@ -1110,7 +1121,7 @@ msgstr ""
|
|
1110 |
#: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
|
1111 |
#: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
|
1112 |
#: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
|
1113 |
-
#: core/lib/wpbc_all_translations.php:
|
1114 |
#: inc/_ps/admin/page-email-edit.php:406
|
1115 |
msgid "The background color for email templates."
|
1116 |
msgstr ""
|
@@ -1118,7 +1129,7 @@ msgstr ""
|
|
1118 |
#: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
|
1119 |
#: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
|
1120 |
#: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
|
1121 |
-
#: core/lib/wpbc_all_translations.php:
|
1122 |
#: inc/_ps/admin/page-email-edit.php:414
|
1123 |
msgid "Email Body Background Color"
|
1124 |
msgstr ""
|
@@ -1126,7 +1137,7 @@ msgstr ""
|
|
1126 |
#: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
|
1127 |
#: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
|
1128 |
#: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
|
1129 |
-
#: core/lib/wpbc_all_translations.php:
|
1130 |
#: inc/_ps/admin/page-email-edit.php:415
|
1131 |
msgid "The main body background color for email templates."
|
1132 |
msgstr ""
|
@@ -1134,7 +1145,7 @@ msgstr ""
|
|
1134 |
#: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
|
1135 |
#: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
|
1136 |
#: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
|
1137 |
-
#: core/lib/wpbc_all_translations.php:
|
1138 |
#: inc/_ps/admin/page-email-edit.php:423
|
1139 |
msgid "Email Body Text Colour"
|
1140 |
msgstr ""
|
@@ -1142,7 +1153,7 @@ msgstr ""
|
|
1142 |
#: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
|
1143 |
#: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
|
1144 |
#: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
|
1145 |
-
#: core/lib/wpbc_all_translations.php:
|
1146 |
#: inc/_ps/admin/page-email-edit.php:424
|
1147 |
msgid "The main body text color for email templates."
|
1148 |
msgstr ""
|
@@ -1150,7 +1161,7 @@ msgstr ""
|
|
1150 |
#: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
|
1151 |
#: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
|
1152 |
#: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
|
1153 |
-
#: core/lib/wpbc_all_translations.php:
|
1154 |
#: inc/_ps/admin/page-email-edit.php:439
|
1155 |
msgid "Email format"
|
1156 |
msgstr ""
|
@@ -1158,7 +1169,7 @@ msgstr ""
|
|
1158 |
#: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
|
1159 |
#: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
|
1160 |
#: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
|
1161 |
-
#: core/lib/wpbc_all_translations.php:
|
1162 |
#: inc/_ps/admin/page-email-edit.php:440
|
1163 |
msgid "Choose which format of email to send."
|
1164 |
msgstr ""
|
@@ -1166,7 +1177,7 @@ msgstr ""
|
|
1166 |
#: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
|
1167 |
#: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
|
1168 |
#: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
|
1169 |
-
#: core/lib/wpbc_all_translations.php:
|
1170 |
#: inc/_ps/admin/page-email-edit.php:444
|
1171 |
msgid "Plain text"
|
1172 |
msgstr ""
|
@@ -1174,16 +1185,16 @@ msgstr ""
|
|
1174 |
#: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
|
1175 |
#: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
|
1176 |
#: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
|
1177 |
-
#: core/lib/wpbc_all_translations.php:
|
1178 |
-
#: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:
|
1179 |
-
#: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:
|
1180 |
msgid "HTML"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
#: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
|
1184 |
#: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
|
1185 |
#: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
|
1186 |
-
#: core/lib/wpbc_all_translations.php:
|
1187 |
#: inc/_ps/admin/page-email-edit.php:452
|
1188 |
msgid "Multipart"
|
1189 |
msgstr ""
|
@@ -1191,7 +1202,7 @@ msgstr ""
|
|
1191 |
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1192 |
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1193 |
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1194 |
-
#: core/lib/wpbc_all_translations.php:
|
1195 |
#: inc/_ps/admin/page-email-edit.php:479
|
1196 |
#, php-format
|
1197 |
msgid ""
|
@@ -1202,14 +1213,14 @@ 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/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
|
1207 |
msgid "here"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
#: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:329
|
1211 |
-
#: core/admin/wpbc-toolbars.php:550 core/lib/wpbc_all_translations.php:
|
1212 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2732 inc/_ps/personal.php:
|
1213 |
#: inc/_ps/wpbc-print.php:118
|
1214 |
msgid "Approved"
|
1215 |
msgstr ""
|
@@ -1218,23 +1229,23 @@ msgstr ""
|
|
1218 |
#: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:513
|
1219 |
#: core/admin/page-email-new-admin.php:514 core/admin/page-email-new-admin.php:538
|
1220 |
#: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
|
1221 |
-
#: core/lib/wpbc_all_translations.php:
|
1222 |
#: inc/_ps/admin/page-email-edit.php:557
|
1223 |
msgid "Emails Settings"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:
|
1227 |
msgid "Customization of email template, which is sent to Visitor after approval of booking"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:
|
1231 |
msgid "Email is sent to Visitor after Approval of booking."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
|
1235 |
#: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:686
|
1236 |
#: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
|
1237 |
-
#: core/lib/wpbc_all_translations.php:
|
1238 |
#: inc/_ps/admin/page-email-edit.php:701
|
1239 |
msgid "Header / Footer"
|
1240 |
msgstr ""
|
@@ -1242,7 +1253,7 @@ msgstr ""
|
|
1242 |
#: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
|
1243 |
#: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:693
|
1244 |
#: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
|
1245 |
-
#: core/lib/wpbc_all_translations.php:
|
1246 |
#: inc/_ps/admin/page-email-edit.php:708
|
1247 |
msgid "Email Styles"
|
1248 |
msgstr ""
|
@@ -1253,7 +1264,7 @@ msgstr ""
|
|
1253 |
#: core/admin/page-form-free.php:1149 core/admin/page-form-timeslots.php:768
|
1254 |
#: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
|
1255 |
#: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:178
|
1256 |
-
#: core/lib/wpbc_all_translations.php:
|
1257 |
#: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
|
1258 |
#: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
|
1259 |
#: inc/_ps/admin/page-email-edit.php:720
|
@@ -1263,7 +1274,7 @@ msgstr ""
|
|
1263 |
#: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
|
1264 |
#: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:709
|
1265 |
#: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
|
1266 |
-
#: core/lib/wpbc_all_translations.php:
|
1267 |
#: inc/_ps/admin/page-email-edit.php:724
|
1268 |
msgid "Send Test Email"
|
1269 |
msgstr ""
|
@@ -1279,9 +1290,9 @@ msgstr ""
|
|
1279 |
#: core/admin/page-ics-general.php:416 core/admin/page-ics-import.php:203
|
1280 |
#: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:142
|
1281 |
#: core/admin/page-settings.php:290 core/admin/wpbc-toolbars.php:1826
|
1282 |
-
#: core/lib/wpbc_all_translations.php:
|
1283 |
-
#: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:
|
1284 |
-
#: inc/_bl/admin/page-search.php:
|
1285 |
#: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
|
1286 |
#: inc/_bm/admin/page-cost-deposit.php:362 inc/_bm/admin/page-cost-early-late-booking.php:544
|
1287 |
#: inc/_bm/admin/page-cost-rate.php:231 inc/_bm/admin/page-cost-valuation.php:257
|
@@ -1291,10 +1302,10 @@ msgstr ""
|
|
1291 |
#: inc/_mu/admin/page-users.php:168 inc/_ps/admin/page-email-edit.php:726
|
1292 |
#: inc/_ps/admin/page-email-edit.php:762 inc/_ps/admin/page-resources.php:193
|
1293 |
#: inc/_ps/admin/page-settings-form.php:125 inc/_ps/admin/page-settings-form.php:187
|
1294 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
1295 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:489
|
1296 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:923 inc/gateways/ipay88/wpbc-gw-ipay88.php:864
|
1297 |
-
#: inc/gateways/page-gateways.php:
|
1298 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1085 inc/gateways/sage/wpbc-gw-sage.php:913
|
1299 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1150
|
1300 |
msgid "Save Changes"
|
@@ -1304,7 +1315,7 @@ msgstr ""
|
|
1304 |
#: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:729
|
1305 |
#: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
|
1306 |
#: core/admin/page-form-free.php:1148 core/admin/wpbc-dashboard.php:471
|
1307 |
-
#: core/lib/wpbc_all_translations.php:
|
1308 |
#: inc/_ps/admin/page-email-edit.php:744
|
1309 |
msgid "Type"
|
1310 |
msgstr ""
|
@@ -1315,11 +1326,11 @@ msgstr ""
|
|
1315 |
#: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
|
1316 |
#: core/admin/page-settings.php:136 core/admin/page-settings.php:282
|
1317 |
#: core/admin/wpbc-toolbars.php:434 core/admin/wpbc-toolbars.php:440
|
1318 |
-
#: core/lib/wpbc_all_translations.php:
|
1319 |
-
#: inc/_bl/admin/page-search.php:
|
1320 |
#: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
|
1321 |
#: inc/_ps/admin/page-settings-form.php:181
|
1322 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:452 inc/gateways/page-gateways.php:
|
1323 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:393 inc/gateways/paypal/wpbc-gw-paypal.php:1059
|
1324 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1076
|
1325 |
msgid "Help"
|
@@ -1328,7 +1339,7 @@ msgstr ""
|
|
1328 |
#: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
|
1329 |
#: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:826
|
1330 |
#: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
|
1331 |
-
#: core/lib/wpbc_all_translations.php:
|
1332 |
#: inc/_ps/admin/page-email-edit.php:833
|
1333 |
msgid "Email sent to "
|
1334 |
msgstr ""
|
@@ -1336,7 +1347,7 @@ msgstr ""
|
|
1336 |
#: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
|
1337 |
#: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:828
|
1338 |
#: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
|
1339 |
-
#: core/lib/wpbc_all_translations.php:
|
1340 |
#: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
|
1341 |
msgid "Email had not sent. Some error occuered."
|
1342 |
msgstr ""
|
@@ -1344,8 +1355,8 @@ msgstr ""
|
|
1344 |
#: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
|
1345 |
#: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:912
|
1346 |
#: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
|
1347 |
-
#: core/lib/wpbc_all_translations.php:
|
1348 |
-
#: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
1349 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
|
1350 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:885
|
1351 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1106
|
@@ -1359,7 +1370,7 @@ msgstr ""
|
|
1359 |
#: core/admin/page-email-new-admin.php:974 core/admin/page-email-new-admin.php:977
|
1360 |
#: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
|
1361 |
#: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
|
1362 |
-
#: core/lib/wpbc_all_translations.php:
|
1363 |
#: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
|
1364 |
#: inc/_ps/admin/page-email-edit.php:914
|
1365 |
msgid "If empty then title defined as WordPress"
|
@@ -1368,7 +1379,7 @@ msgstr ""
|
|
1368 |
#: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
|
1369 |
#: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:994
|
1370 |
#: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
|
1371 |
-
#: core/lib/wpbc_all_translations.php:
|
1372 |
#: inc/_ps/admin/page-email-edit.php:931
|
1373 |
msgid ""
|
1374 |
"Email different from website DNS, its can be a reason of not delivery emails. Please use the "
|
@@ -1376,152 +1387,152 @@ msgid ""
|
|
1376 |
msgstr ""
|
1377 |
|
1378 |
#: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
|
1379 |
-
#: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:
|
1380 |
-
#: core/wpbc-activation.php:
|
1381 |
msgid "Your booking has been declined"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
#: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
|
1385 |
-
#: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:
|
1386 |
-
#: core/wpbc-activation.php:
|
1387 |
#, php-format
|
1388 |
msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
#: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:430
|
1392 |
-
#: core/lib/wpbc_all_translations.php:
|
1393 |
#: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
|
1394 |
#: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
|
1395 |
-
#: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:
|
1396 |
#: inc/_ps/admin/page-resources.php:318 inc/_ps/personal.php:175
|
1397 |
msgid "Deleted"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: core/admin/page-email-deleted.php:560 core/lib/wpbc_all_translations.php:
|
1401 |
msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:
|
1405 |
msgid "Email is sent to Visitor after Deleting of booking."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:
|
1409 |
msgid ""
|
1410 |
"Customization of email template, which is sent to Visitor, when booking status is set to Pending"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:
|
1414 |
msgid "Email is sent to Visitor after booking set as Pending."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
#: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
|
1418 |
-
#: core/admin/wpbc-class-listing.php:302 core/lib/wpbc_all_translations.php:
|
1419 |
-
#: core/wpbc-activation.php:
|
1420 |
msgid "New booking"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:
|
1424 |
-
#: core/wpbc-activation.php:
|
1425 |
#, php-format
|
1426 |
msgid ""
|
1427 |
"You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
|
1428 |
"booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: core/admin/page-email-new-admin.php:512 core/lib/wpbc_all_translations.php:
|
1432 |
-
#: core/wpbc-functions.php:
|
1433 |
msgid "Emails"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
#: core/admin/page-email-new-admin.php:537 core/admin/page-email-new-visitor.php:537
|
1437 |
-
#: core/lib/wpbc_all_translations.php:
|
1438 |
msgid "New"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:
|
1442 |
msgid "admin"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:
|
1446 |
msgid "Customization of email template, which is sending to Admin after new booking"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: core/admin/page-email-new-admin.php:679 core/lib/wpbc_all_translations.php:
|
1450 |
msgid "Email is sending to Admin after creation of booking."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:
|
1454 |
-
#: core/wpbc-activation.php:
|
1455 |
#, php-format
|
1456 |
msgid ""
|
1457 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
|
1458 |
"edit this booking at this page: %s Thank you, %s"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:
|
1462 |
-
#: core/wpbc-activation.php:
|
1463 |
#, php-format
|
1464 |
msgid ""
|
1465 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
|
1466 |
"%s"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:
|
1470 |
msgid "visitor"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:
|
1474 |
msgid "Customization of email template, which is sending to Visitor after new booking"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:
|
1478 |
msgid "Email is sending to Visitor after creation of booking."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: core/admin/page-email-trash.php:563 core/admin/wpbc-
|
1482 |
-
#: core/
|
1483 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2769
|
1484 |
msgid "Trash / Reject"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: core/admin/page-email-trash.php:565
|
1488 |
msgid "Customization of email template, which is sent to Visitor after rejecting of booking"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:
|
1492 |
msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
|
1496 |
-
#: core/admin/page-settings.php:217 core/lib/wpbc_all_translations.php:
|
1497 |
-
#: core/wpbc-functions.php:
|
1498 |
msgid "Form"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:
|
1502 |
#: inc/_ps/admin/page-settings-form.php:47
|
1503 |
msgid "Fields Settings"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:
|
1507 |
#: inc/_ps/admin/page-settings-form.php:48
|
1508 |
msgid "Customizaton of Form Fields"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
#: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
|
1512 |
-
#: core/lib/wpbc_all_translations.php:
|
1513 |
msgid "Check Premium Features"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:
|
1517 |
msgid "Upgrade to higher versions"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:
|
1521 |
msgid "Form Field Configuration"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: core/admin/page-form-free.php:190 core/lib/wpbc_all_translations.php:
|
1525 |
#, php-format
|
1526 |
msgid ""
|
1527 |
"You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in "
|
@@ -1529,63 +1540,63 @@ msgid ""
|
|
1529 |
msgstr ""
|
1530 |
|
1531 |
#: core/admin/page-form-free.php:298 core/admin/page-form-free.php:421
|
1532 |
-
#: core/admin/page-form-free.php:579 core/lib/wpbc_all_translations.php:
|
1533 |
-
#: inc/_ps/personal.php:
|
1534 |
#: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
|
1535 |
#: inc/_ps/wpbc-form-templates.php:127
|
1536 |
msgid "Send"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: core/admin/page-form-free.php:852 core/lib/wpbc_all_translations.php:
|
1540 |
msgid "Reset to default form"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
#: core/admin/page-form-free.php:856 core/admin/page-form-free.php:1466
|
1544 |
#: core/admin/wpbc-class-listing.php:396 core/admin/wpbc-class-listing.php:402
|
1545 |
#: core/admin/wpbc-toolbars.php:997 core/admin/wpbc-toolbars.php:1014
|
1546 |
-
#: core/admin/wpbc-toolbars.php:1078 core/lib/wpbc_all_translations.php:
|
1547 |
#: inc/_bl/admin/page-coupons.php:236 inc/_bl/admin/page-coupons.php:808
|
1548 |
#: inc/_bm/admin/page-availability.php:274 inc/_bm/admin/page-cost-valuation.php:354
|
1549 |
#: inc/_bm/admin/page-cost.php:529 inc/_bm/admin/page-seasons.php:221
|
1550 |
#: inc/_bm/admin/page-seasons.php:602 inc/_ps/admin/page-resources.php:222
|
1551 |
-
#: inc/_ps/personal.php:
|
1552 |
msgid "Do you really want to do this ?"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
#: core/admin/page-form-free.php:884 core/admin/page-form-free.php:2177
|
1556 |
-
#: core/lib/wpbc_all_translations.php:
|
1557 |
msgid "Add New Field"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
#: core/admin/page-form-free.php:901 core/admin/page-form-free.php:936
|
1561 |
-
#: core/lib/wpbc_all_translations.php:
|
1562 |
msgid "Select"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: core/admin/page-form-free.php:901 core/lib/wpbc_all_translations.php:
|
1566 |
msgid "Form Field"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: core/admin/page-form-free.php:923 core/lib/wpbc_all_translations.php:
|
1570 |
#: inc/_ps/form/class-wpbc-form-help.php:141
|
1571 |
msgid "Standard Fields"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: core/admin/page-form-free.php:926 core/lib/wpbc_all_translations.php:
|
1575 |
#: inc/_ps/form/class-wpbc-form-help.php:147
|
1576 |
msgid "Text"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: core/admin/page-form-free.php:946 core/lib/wpbc_all_translations.php:
|
1580 |
#: inc/_ps/form/class-wpbc-form-help.php:156
|
1581 |
msgid "Textarea"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: core/admin/page-form-free.php:956 core/lib/wpbc_all_translations.php:
|
1585 |
msgid "Checkbox"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: core/admin/page-form-free.php:971 core/lib/wpbc_all_translations.php:
|
1589 |
#: inc/_ps/form/class-wpbc-form-help.php:486
|
1590 |
msgid "Advanced Fields"
|
1591 |
msgstr ""
|
@@ -1593,52 +1604,52 @@ msgstr ""
|
|
1593 |
#: core/admin/page-form-free.php:975 core/admin/page-form-free.php:1991
|
1594 |
#: core/admin/page-form-free.php:1992 core/admin/page-form-timeslots.php:106
|
1595 |
#: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
|
1596 |
-
#: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:
|
1597 |
#: inc/_ps/admin/page-settings-form.php:373 inc/_ps/admin/page-settings-form.php:383
|
1598 |
#: inc/_ps/admin/page-settings-form.php:393
|
1599 |
msgid "Time Slots"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: core/admin/page-form-free.php:1033 core/lib/wpbc_all_translations.php:
|
1603 |
msgid "View"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: core/admin/page-form-free.php:1052 core/lib/wpbc_all_translations.php:
|
1607 |
msgid "Standard Forms"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: core/admin/page-form-free.php:1055 core/lib/wpbc_all_translations.php:
|
1611 |
msgid "Form under calendar"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: core/admin/page-form-free.php:1065 core/lib/wpbc_all_translations.php:
|
1615 |
msgid "Form at right side of calendar"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: core/admin/page-form-free.php:1075 core/lib/wpbc_all_translations.php:
|
1619 |
msgid "Form and calendar are centered"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: core/admin/page-form-free.php:1085 core/lib/wpbc_all_translations.php:
|
1623 |
msgid "Form for dark background"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: core/admin/page-form-free.php:1145 core/admin/page-form-free.php:2050
|
1627 |
-
#: core/lib/wpbc_all_translations.php:
|
1628 |
msgid "Active"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: core/admin/page-form-free.php:1146 core/lib/wpbc_all_translations.php:
|
1632 |
msgid "Field Label"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
#: core/admin/page-form-free.php:1148 core/admin/page-form-free.php:2116
|
1636 |
-
#: core/lib/wpbc_all_translations.php:
|
1637 |
msgid "Name"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
#: core/admin/page-form-free.php:1225 core/admin/page-form-free.php:1663
|
1641 |
-
#: core/admin/page-form-free.php:1724 core/lib/wpbc_all_translations.php:
|
1642 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2639
|
1643 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2697 inc/_bl/admin/page-coupons.php:215
|
1644 |
#: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
|
@@ -1649,34 +1660,34 @@ msgid "Edit"
|
|
1649 |
msgstr ""
|
1650 |
|
1651 |
#: core/admin/page-form-free.php:1226 core/admin/page-form-free.php:1664
|
1652 |
-
#: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:
|
1653 |
msgid "Remove"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: core/admin/page-form-free.php:1894 core/lib/wpbc_all_translations.php:
|
1657 |
#: inc/_ps/form/class-wpbc-form-help.php:88
|
1658 |
msgid "Shortcodes"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: core/admin/page-form-free.php:1895 core/lib/wpbc_all_translations.php:
|
1662 |
#: inc/_ps/form/class-wpbc-form-help.php:89
|
1663 |
msgid ""
|
1664 |
"You can generate the form fields for your form (at the left side) by selection specific field in "
|
1665 |
"the above selectbox."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: core/admin/page-form-free.php:1896 core/lib/wpbc_all_translations.php:
|
1669 |
#: inc/_ps/form/class-wpbc-form-help.php:90
|
1670 |
#, php-format
|
1671 |
msgid "Please read more about the booking form fields configuration %shere%s."
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: core/admin/page-form-free.php:1898 core/lib/wpbc_all_translations.php:
|
1675 |
#: inc/_ps/form/class-wpbc-form-help.php:99
|
1676 |
msgid "Default Form Templates"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: core/admin/page-form-free.php:1899 core/lib/wpbc_all_translations.php:
|
1680 |
#: inc/_ps/form/class-wpbc-form-help.php:100
|
1681 |
#, php-format
|
1682 |
msgid ""
|
@@ -1686,92 +1697,93 @@ msgid ""
|
|
1686 |
"reset both forms: Booking Form and Content of Booking Fields form."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: core/admin/page-form-free.php:2029 core/lib/wpbc_all_translations.php:
|
1690 |
#: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
|
1691 |
#: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
|
1692 |
msgid "First Name"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: core/admin/page-form-free.php:2051 core/lib/wpbc_all_translations.php:
|
1696 |
msgid "Show / hide field in booking form"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: core/admin/page-form-free.php:2072 core/lib/wpbc_all_translations.php:
|
1700 |
msgid "Set field as required"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
#: core/admin/page-form-free.php:2092 core/admin/page-form-timeslots.php:784
|
1704 |
#: core/admin/wpbc-toolbar-tiny.php:428 core/admin/wpbc-toolbar-tiny.php:1219
|
1705 |
-
#: core/lib/wpbc_all_translations.php:
|
1706 |
-
#: js/wpbc-gutenberg.js:
|
1707 |
msgid "Label"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: core/admin/page-form-free.php:2121 core/lib/wpbc_all_translations.php:
|
1711 |
#, php-format
|
1712 |
msgid "Type only %sunique field name%s, that is not using in form"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: core/admin/page-form-free.php:2142 core/lib/wpbc_all_translations.php:
|
1716 |
msgid "Values"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: core/admin/page-form-free.php:2147 core/lib/wpbc_all_translations.php:
|
1720 |
msgid "Enter dropdown options. One option per line."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
#: core/admin/page-form-free.php:2182 core/admin/wpbc-toolbar-tiny.php:298
|
1724 |
#: core/admin/wpbc-toolbars.php:710 core/admin/wpbc-toolbars.php:915
|
1725 |
-
#: core/admin/wpbc-toolbars.php:1536 core/lib/wpbc_all_translations.php:
|
1726 |
-
#: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:
|
1727 |
#: inc/_ps/p-toolbar.php:508 inc/_ps/p-toolbar.php:553
|
1728 |
msgid "Close"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: core/admin/page-form-free.php:2196 core/lib/wpbc_all_translations.php:
|
1732 |
-
#:
|
1733 |
-
#: inc/_ps/p-toolbar.php:
|
|
|
1734 |
msgid "Cancel"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:
|
1738 |
msgid "in 24 hour format"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:
|
1742 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
|
1743 |
#: inc/_ps/form/class-wpbc-field-help-select.php:119
|
1744 |
msgid "One option per line"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:
|
1748 |
msgid "Titles"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:
|
1752 |
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
|
1753 |
#: inc/_ps/form/class-wpbc-field-help-select.php:137
|
1754 |
msgid "One title per line"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:
|
1758 |
msgid "Visible options in selectbox"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:
|
1762 |
msgid "Reset times by"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
#: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
|
1766 |
#: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
|
1767 |
-
#: core/admin/wpbc-toolbar-tiny.php:634 core/lib/wpbc_all_translations.php:
|
1768 |
#: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
|
1769 |
#: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
|
1770 |
msgid "hours"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
#: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
|
1774 |
-
#: core/lib/wpbc_all_translations.php:
|
1775 |
#: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
|
1776 |
#: inc/_bs/admin/api-settings-s.php:901
|
1777 |
msgid "hour"
|
@@ -1779,7 +1791,7 @@ msgstr ""
|
|
1779 |
|
1780 |
#: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
|
1781 |
#: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
|
1782 |
-
#: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:
|
1783 |
#: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
|
1784 |
#: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
|
1785 |
#: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
|
@@ -1792,12 +1804,12 @@ msgstr ""
|
|
1792 |
#: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
|
1793 |
#: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
|
1794 |
#: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
|
1795 |
-
#: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:
|
1796 |
#: core/wpbc-js.php:131 inc/_ps/personal.php:268
|
1797 |
msgid "Processing"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:
|
1801 |
msgid "+ Add Time Slot"
|
1802 |
msgstr ""
|
1803 |
|
@@ -1806,7 +1818,7 @@ msgstr ""
|
|
1806 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1807 |
#: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
|
1808 |
#: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
|
1809 |
-
#: core/lib/wpbc_all_translations.php:
|
1810 |
msgid "Sync"
|
1811 |
msgstr ""
|
1812 |
|
@@ -1815,7 +1827,7 @@ msgstr ""
|
|
1815 |
#: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
|
1816 |
#: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
|
1817 |
#: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:469
|
1818 |
-
#: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:
|
1819 |
#: core/sync/wpbc-gcal.php:465
|
1820 |
msgid "Import"
|
1821 |
msgstr ""
|
@@ -1824,28 +1836,28 @@ msgstr ""
|
|
1824 |
#: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
|
1825 |
#: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:264
|
1826 |
#: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
|
1827 |
-
#: core/lib/wpbc_all_translations.php:
|
1828 |
msgid "Export"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
#: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
|
1832 |
-
#: core/lib/wpbc_all_translations.php:
|
1833 |
msgid "feed"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
#: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
|
1837 |
-
#: core/lib/wpbc_all_translations.php:
|
1838 |
#: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:767
|
1839 |
msgid "Warning!"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:
|
1843 |
#, php-format
|
1844 |
msgid "This feature require %s"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
#: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
|
1848 |
-
#: core/lib/wpbc_all_translations.php:
|
1849 |
#: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
|
1850 |
#: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
|
1851 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
|
@@ -1855,123 +1867,123 @@ msgstr ""
|
|
1855 |
#: inc/_ps/form/class-wpbc-form-help.php:343 inc/_ps/form/class-wpbc-form-help.php:380
|
1856 |
#: inc/_ps/form/class-wpbc-form-help.php:382 inc/_ps/form/class-wpbc-form-help.php:497
|
1857 |
#: inc/_ps/form/class-wpbc-form-help.php:515 inc/_ps/form/class-wpbc-form-help.php:645
|
1858 |
-
#: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
1859 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
1860 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:831 inc/gateways/sage/wpbc-gw-sage.php:882
|
1861 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1112
|
1862 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1119 js/wpbc-gutenberg.js:
|
1863 |
-
#: js/wpbc-gutenberg.js:
|
1864 |
msgid "Important!"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
#: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
|
1868 |
-
#: core/lib/wpbc_all_translations.php:
|
1869 |
#, php-format
|
1870 |
msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
|
1871 |
msgstr ""
|
1872 |
|
1873 |
#: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
|
1874 |
-
#: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:
|
1875 |
msgid "How it works"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
#: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
|
1879 |
-
#: core/lib/wpbc_all_translations.php:
|
1880 |
msgid ".ics feed URL"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:
|
1884 |
#: inc/_ps/admin/br-table-export-feeds.php:69
|
1885 |
msgid "Open in new window"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:
|
1889 |
msgid "Please enter URL for generating .ics feed"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:
|
1893 |
msgid "This .ics feed of bookings starting from today for 1 year"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
#: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:875
|
1897 |
#: core/admin/wpbc-toolbar-tiny.php:1090 core/admin/wpbc-toolbar-tiny.php:1171
|
1898 |
-
#: core/lib/wpbc_all_translations.php:
|
1899 |
#: inc/_ps/wpbc-booking-select-widget.php:188
|
1900 |
msgid "None"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:
|
1904 |
msgid "Event Title"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
#: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
|
1908 |
-
#: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:
|
1909 |
#, php-format
|
1910 |
msgid "Select field for assigning to %sevent property%s"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:
|
1914 |
msgid "Event Description (optional field)"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:
|
1918 |
msgid "Location"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
#: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:206
|
1922 |
-
#: core/lib/wpbc_all_translations.php:
|
1923 |
#: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:628 inc/_ps/admin/activation-p.php:45
|
1924 |
msgid "Default"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:
|
1928 |
#: core/sync/wpbc-gcal.php:309
|
1929 |
msgid "Timezone"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:
|
1933 |
#: core/sync/wpbc-gcal.php:343
|
1934 |
msgid "Select a city in your required timezone, if you are having problems with dates and times."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:
|
1938 |
#: inc/_bs/admin/api-settings-s.php:314
|
1939 |
msgid "Use check in/out time"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:
|
1943 |
msgid "Use check in/out time of plugin, during import .ics feeds"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:
|
1947 |
msgid "Append check out day"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:
|
1951 |
msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: core/admin/page-ics-general.php:188 core/lib/wpbc_all_translations.php:
|
1955 |
msgid "Export only approved bookings"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: core/admin/page-ics-general.php:189 core/lib/wpbc_all_translations.php:
|
1959 |
msgid "Enable of export only approved bookings in .ics feeds"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: core/admin/page-ics-general.php:201 core/lib/wpbc_all_translations.php:
|
1963 |
msgid "Force import"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: core/admin/page-ics-general.php:202 core/lib/wpbc_all_translations.php:
|
1967 |
msgid "Import bookings without checking, if such bookings already have been imported."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: core/admin/page-ics-general.php:210 core/lib/wpbc_all_translations.php:
|
1971 |
msgid "Trash all imported bookings before new import"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: core/admin/page-ics-general.php:211 core/lib/wpbc_all_translations.php:
|
1975 |
msgid ""
|
1976 |
"Move all previously imported bookings to trash before new import bookings. Its can resolve "
|
1977 |
"issue of updating deleted and edited events in external sources. Its work only, if you are using "
|
@@ -1979,73 +1991,73 @@ msgid ""
|
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: core/admin/page-ics-general.php:281 core/admin/page-settings.php:74
|
1982 |
-
#: core/lib/wpbc_all_translations.php:
|
1983 |
msgid "General"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
|
1987 |
#: core/admin/page-ics-general.php:390 core/admin/page-import-gcal.php:485
|
1988 |
#: core/admin/page-settings.php:75 core/admin/page-settings.php:76
|
1989 |
-
#: core/lib/wpbc_all_translations.php:
|
1990 |
msgid "General Settings"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: core/admin/page-ics-general.php:397 core/lib/wpbc_all_translations.php:
|
1994 |
msgid "Assign events fields to specific booking form field"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
#: core/admin/page-ics-general.php:406 core/admin/page-settings.php:121
|
1998 |
-
#: core/admin/page-settings.php:252 core/lib/wpbc_all_translations.php:
|
1999 |
-
#: inc/_bl/admin/page-search.php:
|
2000 |
-
#: inc/_bl/admin/page-search.php:
|
2001 |
-
#: inc/_bl/wpbc-search-availability.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
2002 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:914 inc/gateways/ipay88/wpbc-gw-ipay88.php:855
|
2003 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1052 inc/gateways/sage/wpbc-gw-sage.php:904
|
2004 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1141
|
2005 |
msgid "Advanced"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:
|
2009 |
msgid "feeds"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
#: core/admin/page-ics-import.php:438 core/admin/wpbc-sql.php:592
|
2013 |
-
#: core/admin/wpbc-toolbar-tiny.php:331 core/lib/wpbc_all_translations.php:
|
2014 |
#: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:965 inc/_ps/p-toolbar.php:996
|
2015 |
msgid "parent resource"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:
|
2019 |
msgid "Enter URL to .ics feed"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: core/admin/page-ics-import.php:465 core/lib/wpbc_all_translations.php:
|
2023 |
msgid "Choose file"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: core/admin/page-ics-import.php:466 core/lib/wpbc_all_translations.php:
|
2027 |
msgid "Insert file URL"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: core/admin/page-ics-import.php:467 core/lib/wpbc_all_translations.php:
|
2031 |
msgid "Upload / Select "
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: core/admin/page-ics-import.php:504 core/lib/wpbc_all_translations.php:
|
2035 |
msgid "What does .ics feeds import/export mean?"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: core/admin/page-ics-import.php:512 core/lib/wpbc_all_translations.php:
|
2039 |
#, php-format
|
2040 |
msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: core/admin/page-ics-import.php:520 core/lib/wpbc_all_translations.php:
|
2044 |
msgid "and any other calendar that uses .ics format"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
#: core/admin/page-ics-import.php:534 core/class/wpbc-class-welcome.php:911
|
2048 |
-
#: core/lib/wpbc_all_translations.php:
|
2049 |
#, php-format
|
2050 |
msgid ""
|
2051 |
".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
|
@@ -2053,34 +2065,34 @@ msgid ""
|
|
2053 |
"calendars updated and synchronized."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: core/admin/page-ics-import.php:555 core/lib/wpbc_all_translations.php:
|
2057 |
msgid "Is it automatic process?"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: core/admin/page-ics-import.php:565 core/lib/wpbc_all_translations.php:
|
2061 |
msgid ""
|
2062 |
"By default .ics import is not automatic process. You need to set up CRON script on your server "
|
2063 |
"to periodically access front-end page(s) with import .ics feeds shortcodes."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: core/admin/page-ics-import.php:584 core/lib/wpbc_all_translations.php:
|
2067 |
msgid "How to start import of .ics feeds (files)?"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
#: core/admin/page-ics-import.php:591 core/admin/page-ics-import.php:638
|
2071 |
-
#: core/lib/wpbc_all_translations.php:
|
2072 |
#, php-format
|
2073 |
msgid "Install %s plugin."
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: core/admin/page-ics-import.php:595 core/lib/wpbc_all_translations.php:
|
2077 |
#, php-format
|
2078 |
msgid ""
|
2079 |
"Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
|
2080 |
"configuration%s"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: core/admin/page-ics-import.php:604 core/lib/wpbc_all_translations.php:
|
2084 |
#, php-format
|
2085 |
msgid ""
|
2086 |
"Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
|
@@ -2088,26 +2100,26 @@ msgid ""
|
|
2088 |
"accessing such different pages with different time intervals."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: core/admin/page-ics-import.php:613 core/lib/wpbc_all_translations.php:
|
2092 |
msgid "Or you can import .ics feed or file directly at current page."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: core/admin/page-ics-import.php:620 core/lib/wpbc_all_translations.php:
|
2096 |
#, php-format
|
2097 |
msgid ""
|
2098 |
"If you have inserted import shortcodes from %s, then you can configure your CRON for "
|
2099 |
"periodically access these pages and import .ics feeds."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: core/admin/page-ics-import.php:631 core/lib/wpbc_all_translations.php:
|
2103 |
msgid "How to start export of .ics feeds (files)?"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: core/admin/page-ics-import.php:642 core/lib/wpbc_all_translations.php:
|
2107 |
msgid "Configure ULR feed(s) at this settings page."
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: core/admin/page-ics-import.php:647 core/lib/wpbc_all_translations.php:
|
2111 |
#, php-format
|
2112 |
msgid ""
|
2113 |
"Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
|
@@ -2115,26 +2127,26 @@ msgid ""
|
|
2115 |
"website."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: core/admin/page-ics-import.php:656 core/lib/wpbc_all_translations.php:
|
2119 |
msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: core/admin/page-ics-import.php:711 core/lib/wpbc_all_translations.php:
|
2123 |
-
#: core/sync/wpbc-gcal-class.php:492 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:
|
2124 |
msgid "Done"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:
|
2128 |
msgid "Activate auto import"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:
|
2132 |
#, php-format
|
2133 |
msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
#: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:567
|
2137 |
-
#: core/admin/wpbc-toolbars.php:801 core/lib/wpbc_all_translations.php:
|
2138 |
#: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
|
2139 |
#: inc/_bm/admin/page-cost-early-late-booking.php:230
|
2140 |
#: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
|
@@ -2149,36 +2161,37 @@ msgstr ""
|
|
2149 |
#: core/admin/wpbc-toolbars.php:571 core/admin/wpbc-toolbars.php:572
|
2150 |
#: core/admin/wpbc-toolbars.php:802 core/admin/wpbc-toolbars.php:803
|
2151 |
#: core/admin/wpbc-toolbars.php:804 core/admin/wpbc-toolbars.php:805
|
2152 |
-
#: core/admin/wpbc-toolbars.php:806 core/lib/wpbc_all_translations.php:
|
2153 |
#: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:94
|
2154 |
#: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
|
2155 |
#: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
|
2156 |
#: inc/_bm/admin/page-cost-valuation.php:348 inc/_bm/admin/page-cost-valuation.php:481
|
2157 |
#: inc/_bm/admin/page-seasons.php:1051 inc/_bs/admin/api-settings-s.php:536
|
2158 |
-
#: inc/_ps/
|
|
|
2159 |
msgid "days"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:
|
2163 |
msgid "Import events every"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:
|
2167 |
msgid "Select time duration of import requests."
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:
|
2171 |
msgid "Google API Key"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:
|
2175 |
msgid "Please enter your Google API key. This field required to import events."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:
|
2179 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
2180 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
2181 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
2182 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:477 inc/gateways/ideal/wpbc-gw-ideal.php:481
|
2183 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:399 inc/gateways/paypal/wpbc-gw-paypal.php:529
|
2184 |
#: inc/gateways/sage/wpbc-gw-sage.php:508 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:564
|
@@ -2186,175 +2199,175 @@ msgstr ""
|
|
2186 |
msgid "Note:"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:
|
2190 |
#, php-format
|
2191 |
msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:
|
2195 |
#: inc/_ps/admin/br-table-import-gcal-p.php:148
|
2196 |
msgid "Google Calendar ID"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:
|
2200 |
#: core/sync/wpbc-gcal.php:295
|
2201 |
msgid "Maximum number"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:
|
2205 |
#: core/sync/wpbc-gcal.php:298
|
2206 |
msgid "You can specify the maximum number of events to import during one session."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
#: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
|
2210 |
-
#: core/lib/wpbc_all_translations.php:
|
2211 |
msgid "Now"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
#: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
|
2215 |
-
#: core/lib/wpbc_all_translations.php:
|
2216 |
msgid "00:00 today"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
#: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
|
2220 |
-
#: core/lib/wpbc_all_translations.php:
|
2221 |
msgid "Start of current week"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
#: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
|
2225 |
-
#: core/lib/wpbc_all_translations.php:
|
2226 |
msgid "Start of current month"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
#: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
|
2230 |
-
#: core/lib/wpbc_all_translations.php:
|
2231 |
msgid "End of current month"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:
|
2235 |
#: core/sync/wpbc-gcal.php:189
|
2236 |
msgid "The start of time"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
#: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
|
2240 |
-
#: core/lib/wpbc_all_translations.php:
|
2241 |
msgid "Specific date / time"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:
|
2245 |
#: core/sync/wpbc-gcal.php:197
|
2246 |
msgid "Select option, when to start retrieving events."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
#: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
|
2250 |
-
#: core/lib/wpbc_all_translations.php:
|
2251 |
msgid "Offset"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
#: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
|
2255 |
-
#: core/lib/wpbc_all_translations.php:
|
2256 |
msgid "Enter date / time"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
#: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
|
2260 |
-
#: core/lib/wpbc_all_translations.php:
|
2261 |
msgid "seconds"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
#: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
|
2265 |
-
#: core/lib/wpbc_all_translations.php:
|
2266 |
msgid ""
|
2267 |
"You can specify an additional offset from you chosen start point. The offset can be negative."
|
2268 |
msgstr ""
|
2269 |
|
2270 |
#: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
|
2271 |
-
#: core/lib/wpbc_all_translations.php:
|
2272 |
#, php-format
|
2273 |
msgid "Type your date in format %s. Example: %s"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:
|
2277 |
#: core/sync/wpbc-gcal.php:253
|
2278 |
msgid "The end of time"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
#: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:614
|
2282 |
-
#: core/lib/wpbc_all_translations.php:
|
2283 |
msgid "Until"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:
|
2287 |
#: core/sync/wpbc-gcal.php:261
|
2288 |
msgid "Select option, when to stop retrieving events."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:
|
2292 |
msgid "To get Google Calendar API key please follow this instruction"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:
|
2296 |
#, php-format
|
2297 |
msgid "Go to Google Developer Console: %s."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:
|
2301 |
msgid "Give your project a name and click \"Create\"."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:
|
2305 |
msgid "In the sidebar click on \"APIs & auth\"."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:
|
2309 |
msgid "Click APIs and make sure \"Calendar API\" is set to ON."
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:
|
2313 |
msgid "Now click on \"Credentials\" in the sidebar."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:
|
2317 |
msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:
|
2321 |
msgid "On the popup click the button \"Server Key\" and click \"Create\"."
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:
|
2325 |
#, php-format
|
2326 |
msgid ""
|
2327 |
"You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
|
2328 |
"%sGoogle API Key%s field at this page."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:
|
2332 |
msgid "Set Your Calendar to Public"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
#: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
|
2336 |
-
#: core/lib/wpbc_all_translations.php:
|
2337 |
msgid "Navigate to your Google calendars."
|
2338 |
msgstr ""
|
2339 |
|
2340 |
#: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
|
2341 |
-
#: core/lib/wpbc_all_translations.php:
|
2342 |
msgid "Open the settings for the calendar."
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:
|
2346 |
msgid "Click the \"Share this Calendar\" link."
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:
|
2350 |
msgid "Click the checkbox to make calendar public. Do not check the other option."
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:
|
2354 |
msgid "Find Your Calendar ID"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:
|
2358 |
#, php-format
|
2359 |
msgid ""
|
2360 |
"Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
|
@@ -2362,33 +2375,33 @@ msgid ""
|
|
2362 |
msgstr ""
|
2363 |
|
2364 |
#: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
|
2365 |
-
#: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:
|
2366 |
#: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
|
2367 |
msgid "Import Google Calendar Events"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
#: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
|
2371 |
-
#: core/lib/wpbc_all_translations.php:
|
2372 |
msgid "Auto import events"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
#: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
|
2376 |
-
#: core/lib/wpbc_all_translations.php:
|
2377 |
msgid "Default settings for retrieving events"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:
|
2381 |
msgid "Google Calendar - General Settings"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
#: core/admin/page-settings.php:88 core/admin/page-settings.php:203
|
2385 |
-
#: core/admin/wpbc-toolbar-tiny.php:242 core/lib/wpbc_all_translations.php:
|
2386 |
#: inc/_ps/form/class-wpbc-form-help.php:115
|
2387 |
msgid "Calendar"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
#: core/admin/page-settings.php:93 core/admin/page-settings.php:210
|
2391 |
-
#: core/lib/wpbc_all_translations.php:
|
2392 |
#: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
|
2393 |
#: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
|
2394 |
#: inc/_ps/wpbc-form-templates.php:307 inc/_ps/wpbc-form-templates.php:333
|
@@ -2397,47 +2410,47 @@ msgid "Availability"
|
|
2397 |
msgstr ""
|
2398 |
|
2399 |
#: core/admin/page-settings.php:103 core/admin/page-settings.php:224
|
2400 |
-
#: core/lib/wpbc_all_translations.php:
|
2401 |
msgid "Booking Admin Panel"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
#: core/admin/page-settings.php:108 core/admin/page-settings.php:231
|
2405 |
-
#: core/lib/wpbc_all_translations.php:
|
2406 |
msgid "Timeline"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: core/admin/page-settings.php:116 core/lib/wpbc_all_translations.php:
|
2410 |
msgid "Auto cancellation / approval"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
#: core/admin/page-settings.php:126 core/admin/page-settings.php:268
|
2414 |
-
#: core/lib/wpbc_all_translations.php:
|
2415 |
msgid "Plugin Menu"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: core/admin/page-settings.php:131 core/lib/wpbc_all_translations.php:
|
2419 |
msgid "Uninstall"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: core/admin/page-settings.php:243 core/lib/wpbc_all_translations.php:
|
2423 |
msgid "Auto cancellation / auto approval of bookings"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:
|
2427 |
msgid "Information"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: core/admin/page-settings.php:275 core/lib/wpbc_all_translations.php:
|
2431 |
msgid "Uninstall / deactivation"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
#: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
|
2435 |
-
#: core/lib/wpbc_all_translations.php:
|
2436 |
msgid "Upgrade"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
#: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1520
|
2440 |
-
#: core/admin/wpbc-toolbar-tiny.php:1529 core/lib/wpbc_all_translations.php:
|
2441 |
#: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
|
2442 |
#: inc/_bl/wpbc-search-availability.php:669 inc/_bl/wpdev-booking-search-widget.php:75
|
2443 |
#: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
|
@@ -2447,341 +2460,346 @@ msgstr ""
|
|
2447 |
msgid "Nothing Found"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:
|
2451 |
#: inc/_ps/wpbc-print.php:83
|
2452 |
msgid "Labels"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:
|
2456 |
msgid "Booking Data"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:
|
2460 |
msgid "Booking Dates"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:
|
2464 |
msgid "Show ALL dates of booking"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:
|
2468 |
msgid "Show only check in/out dates"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: core/admin/wpbc-class-listing.php:221 core/lib/wpbc_all_translations.php:
|
2472 |
msgid "Resource not exist"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:
|
2476 |
-
#: inc/_bs/lib_s.php:
|
2477 |
msgid "Unknown"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: core/admin/wpbc-class-listing.php:
|
|
|
|
|
|
|
|
|
|
|
2481 |
msgid "Imported"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: core/admin/wpbc-class-listing.php:398
|
2485 |
msgid "Reject - move to trash"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
#: core/admin/wpbc-class-listing.php:404 core/admin/wpbc-toolbars.php:1011
|
2489 |
-
#: core/lib/wpbc_all_translations.php:
|
2490 |
msgid "Restore"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: core/admin/wpbc-class-listing.php:408 core/lib/wpbc_all_translations.php:
|
2494 |
msgid "Do you really want to delete this booking ?"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: core/admin/wpbc-class-listing.php:410 core/lib/wpbc_all_translations.php:
|
2498 |
#: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
|
2499 |
msgid "Completely Delete"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
#: core/admin/wpbc-class-listing.php:419 core/admin/wpbc-toolbars.php:949
|
2503 |
-
#: core/lib/wpbc_all_translations.php:
|
2504 |
msgid "Approve"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
#: core/admin/wpbc-class-listing.php:424 core/admin/wpbc-toolbars.php:967
|
2508 |
-
#: core/lib/wpbc_all_translations.php:
|
2509 |
msgid "Do you really want to set booking as pending ?"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: core/admin/wpbc-class-listing.php:435 core/lib/wpbc_all_translations.php:
|
2513 |
-
#: inc/_bs/lib_s.php:
|
2514 |
msgid "Created"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
#: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:227
|
2518 |
-
#: core/lib/wpbc_all_translations.php:
|
2519 |
-
#: core/wpbc-functions.php:
|
2520 |
#: core/wpbc.php:189
|
2521 |
msgid "Booking Calendar"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
#: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
|
2525 |
-
#: core/lib/wpbc_all_translations.php:
|
2526 |
msgid "Video guide"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:
|
2530 |
msgid "Support"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:
|
2534 |
msgid "Getting Started"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:
|
2538 |
msgid "Help Info"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
#: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:441
|
2542 |
-
#: core/lib/wpbc_all_translations.php:
|
2543 |
msgid "FAQ"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:
|
2547 |
msgid "Contact email"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:
|
2551 |
msgid "Rate plugin (thanks:)"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:
|
2555 |
msgid "Current version"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:
|
2559 |
msgid "Demo"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:
|
2563 |
msgid "Version"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:
|
2567 |
msgid "Used for"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:
|
2571 |
msgid "websites"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:
|
2575 |
msgid "website"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:
|
2579 |
msgid "Release date"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:
|
2583 |
msgid "Explore Premium Features"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:
|
2587 |
msgid "Statistic"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:
|
2591 |
msgid "New (unverified) booking(s)"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:
|
2595 |
msgid "Pending booking(s)"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:
|
2599 |
msgid "Agenda"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:
|
2603 |
msgid "New booking(s) made today"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:
|
2607 |
msgid "Bookings for today"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
#: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2463
|
2611 |
-
#: core/lib/wpbc_all_translations.php:
|
2612 |
msgid "Insert booking calendar"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
#: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2464
|
2616 |
-
#: core/lib/wpbc_all_translations.php:
|
2617 |
msgid "Booking calendar"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: core/admin/wpbc-toolbar-tiny.php:225 core/lib/wpbc_all_translations.php:
|
2621 |
msgid "Insert Shortcode"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:
|
2625 |
#: inc/_ps/admin/api-settings-p.php:197
|
2626 |
msgid "TimeLine"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: core/admin/wpbc-toolbar-tiny.php:244 core/lib/wpbc_all_translations.php:
|
2630 |
msgid "Resources Selection"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:
|
2634 |
-
#: core/wpbc-functions.php:
|
2635 |
-
#: inc/_bl/biz_l.php:
|
2636 |
msgid "Search"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:
|
2640 |
msgid "Only Form"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:
|
2644 |
#: inc/_ps/form/class-wpbc-form-help.php:754
|
2645 |
msgid "Other"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: core/admin/wpbc-toolbar-tiny.php:298 core/lib/wpbc_all_translations.php:
|
2649 |
msgid "Insert into page"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
#: core/admin/wpbc-toolbar-tiny.php:371 core/admin/wpbc-toolbar-tiny.php:1151
|
2653 |
-
#: core/lib/wpbc_all_translations.php:
|
2654 |
#: inc/_ps/p-toolbar.php:736
|
2655 |
msgid "Booking resources"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: core/admin/wpbc-toolbar-tiny.php:372 core/lib/wpbc_all_translations.php:
|
2659 |
msgid "Select booking resources. Please use CTRL to select multiple booking resources."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:
|
2663 |
-
#: js/wpbc-gutenberg.js:
|
2664 |
msgid "View mode"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: core/admin/wpbc-toolbar-tiny.php:407 core/lib/wpbc_all_translations.php:
|
2668 |
msgid "Select type of view format"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
#: core/admin/wpbc-toolbar-tiny.php:429 core/admin/wpbc-toolbar-tiny.php:438
|
2672 |
-
#: core/admin/wpbc-toolbars.php:785 core/lib/wpbc_all_translations.php:
|
2673 |
msgid "All bookings"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: core/admin/wpbc-toolbar-tiny.php:461 core/lib/wpbc_all_translations.php:
|
2677 |
msgid "Select number of months to scroll after loading"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: core/admin/wpbc-toolbar-tiny.php:482 core/lib/wpbc_all_translations.php:
|
2681 |
-
#: js/wpbc-gutenberg.js:
|
2682 |
msgid "Number of days to scroll"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: core/admin/wpbc-toolbar-tiny.php:483 core/lib/wpbc_all_translations.php:
|
2686 |
msgid "Select number of days to scroll after loading"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
#: core/admin/wpbc-toolbar-tiny.php:503 core/admin/wpbc-toolbars.php:1503
|
2690 |
-
#: core/lib/wpbc_all_translations.php:
|
2691 |
msgid "Start Date"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: core/admin/wpbc-toolbar-tiny.php:581 core/lib/wpbc_all_translations.php:
|
2695 |
msgid "Select start date"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
#: core/admin/wpbc-toolbar-tiny.php:674 core/admin/wpbc-toolbar-tiny.php:917
|
2699 |
#: core/admin/wpbc-toolbar-tiny.php:1591 core/admin/wpbc-toolbar-tiny.php:1783
|
2700 |
-
#: core/lib/wpbc_all_translations.php:
|
2701 |
#: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:937
|
2702 |
-
#: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:
|
2703 |
-
#: js/wpbc-gutenberg.js:
|
2704 |
msgid "Booking resource"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
#: core/admin/wpbc-toolbar-tiny.php:675 core/admin/wpbc-toolbar-tiny.php:918
|
2708 |
#: core/admin/wpbc-toolbar-tiny.php:1592 core/admin/wpbc-toolbar-tiny.php:1784
|
2709 |
-
#: core/lib/wpbc_all_translations.php:
|
2710 |
msgid "Select booking resource"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
#: core/admin/wpbc-toolbar-tiny.php:699 core/admin/wpbc-toolbar-tiny.php:1200
|
2714 |
-
#: core/admin/wpbc-toolbar-tiny.php:1616 core/lib/wpbc_all_translations.php:
|
2715 |
#: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
|
2716 |
msgid "Select default custom booking form"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
#: core/admin/wpbc-toolbar-tiny.php:710 core/admin/wpbc-toolbar-tiny.php:940
|
2720 |
#: core/admin/wpbc-toolbar-tiny.php:1288 core/admin/wpbc-toolbars.php:1618
|
2721 |
-
#: core/lib/wpbc_all_translations.php:
|
2722 |
#: inc/_ps/wpbc-booking-select-widget.php:201
|
2723 |
msgid "Visible months"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
#: core/admin/wpbc-toolbar-tiny.php:711 core/admin/wpbc-toolbar-tiny.php:941
|
2727 |
-
#: core/admin/wpbc-toolbar-tiny.php:1289 core/lib/wpbc_all_translations.php:
|
2728 |
msgid "Select number of month to show for calendar."
|
2729 |
msgstr ""
|
2730 |
|
2731 |
#: core/admin/wpbc-toolbar-tiny.php:731 core/admin/wpbc-toolbar-tiny.php:961
|
2732 |
-
#: core/admin/wpbc-toolbar-tiny.php:1307 core/lib/wpbc_all_translations.php:
|
2733 |
msgid "Start month:"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
#: core/admin/wpbc-toolbar-tiny.php:789 core/admin/wpbc-toolbar-tiny.php:1019
|
2737 |
-
#: core/admin/wpbc-toolbar-tiny.php:1365 core/lib/wpbc_all_translations.php:
|
2738 |
msgid "Select start month of calendar"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
#: core/admin/wpbc-toolbar-tiny.php:796 core/admin/wpbc-toolbar-tiny.php:1026
|
2742 |
-
#: core/admin/wpbc-toolbar-tiny.php:1258 core/lib/wpbc_all_translations.php:
|
2743 |
msgid "Show advanced settings"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
#: core/admin/wpbc-toolbar-tiny.php:797 core/admin/wpbc-toolbar-tiny.php:1027
|
2747 |
-
#: core/admin/wpbc-toolbar-tiny.php:1259 core/lib/wpbc_all_translations.php:
|
2748 |
msgid "Hide advanced settings"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
#: core/admin/wpbc-toolbar-tiny.php:807 core/admin/wpbc-toolbar-tiny.php:1037
|
2752 |
-
#: core/admin/wpbc-toolbar-tiny.php:1269 core/lib/wpbc_all_translations.php:
|
2753 |
#, php-format
|
2754 |
msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
#: core/admin/wpbc-toolbar-tiny.php:808 core/admin/wpbc-toolbar-tiny.php:1038
|
2758 |
-
#: core/lib/wpbc_all_translations.php:
|
2759 |
#, php-format
|
2760 |
msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
#: core/admin/wpbc-toolbar-tiny.php:818 core/admin/wpbc-toolbar-tiny.php:1048
|
2764 |
#: core/admin/wpbc-toolbar-tiny.php:1372 core/admin/wpbc-toolbars.php:242
|
2765 |
-
#: core/lib/wpbc_all_translations.php:
|
2766 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:
|
2767 |
-
#: js/wpbc-gutenberg.js:
|
2768 |
msgid "Options"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
#: core/admin/wpbc-toolbar-tiny.php:839 core/admin/wpbc-toolbar-tiny.php:1069
|
2772 |
-
#: core/admin/wpbc-toolbar-tiny.php:1393 core/lib/wpbc_all_translations.php:
|
2773 |
#, php-format
|
2774 |
msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
#: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:1073
|
2778 |
-
#: core/admin/wpbc-toolbar-tiny.php:1397 core/lib/wpbc_all_translations.php:
|
2779 |
msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
|
2780 |
msgstr ""
|
2781 |
|
2782 |
#: core/admin/wpbc-toolbar-tiny.php:844 core/admin/wpbc-toolbar-tiny.php:852
|
2783 |
#: core/admin/wpbc-toolbar-tiny.php:1074 core/admin/wpbc-toolbar-tiny.php:1398
|
2784 |
-
#: core/lib/wpbc_all_translations.php:
|
2785 |
#: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
|
2786 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
|
2787 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
|
@@ -2789,7 +2807,7 @@ msgid "Description"
|
|
2789 |
msgstr ""
|
2790 |
|
2791 |
#: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:1075
|
2792 |
-
#: core/admin/wpbc-toolbar-tiny.php:1399 core/lib/wpbc_all_translations.php:
|
2793 |
msgid ""
|
2794 |
"Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
|
2795 |
"to use percentage for width: 100%)"
|
@@ -2797,22 +2815,22 @@ msgstr ""
|
|
2797 |
|
2798 |
#: core/admin/wpbc-toolbar-tiny.php:846 core/admin/wpbc-toolbar-tiny.php:854
|
2799 |
#: core/admin/wpbc-toolbar-tiny.php:1076 core/admin/wpbc-toolbar-tiny.php:1400
|
2800 |
-
#: core/lib/wpbc_all_translations.php:
|
2801 |
msgid "Code Example"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: core/admin/wpbc-toolbar-tiny.php:851 core/lib/wpbc_all_translations.php:
|
2805 |
msgid ""
|
2806 |
"Specify that during certain seasons (or days of week), the specific minimum number of days must "
|
2807 |
"be booked. "
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: core/admin/wpbc-toolbar-tiny.php:853 core/lib/wpbc_all_translations.php:
|
2811 |
msgid ""
|
2812 |
"Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: core/admin/wpbc-toolbar-tiny.php:860 core/lib/wpbc_all_translations.php:
|
2816 |
#, php-format
|
2817 |
msgid ""
|
2818 |
"Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
|
@@ -2820,24 +2838,24 @@ msgid ""
|
|
2820 |
msgstr ""
|
2821 |
|
2822 |
#: core/admin/wpbc-toolbar-tiny.php:883 core/admin/wpbc-toolbar-tiny.php:1098
|
2823 |
-
#: core/lib/wpbc_all_translations.php:
|
2824 |
msgid "Aggregate booking dates from other resources"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
#: core/admin/wpbc-toolbar-tiny.php:884 core/admin/wpbc-toolbar-tiny.php:1099
|
2828 |
-
#: core/lib/wpbc_all_translations.php:
|
2829 |
msgid ""
|
2830 |
"Select booking resources, for getting booking dates from them and set such dates as unavailable "
|
2831 |
"in destination calendar."
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: core/admin/wpbc-toolbar-tiny.php:1130 core/lib/wpbc_all_translations.php:
|
2835 |
-
#: inc/_bl/admin/page-search.php:
|
2836 |
#: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
|
2837 |
#: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
|
2838 |
#: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
|
2839 |
-
#: inc/_ps/admin/page-resources.php:201 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
2840 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
2841 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
|
2842 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
|
2843 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:875
|
@@ -2845,7 +2863,7 @@ msgstr ""
|
|
2845 |
msgid "Note!"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: core/admin/wpbc-toolbar-tiny.php:1131 core/lib/wpbc_all_translations.php:
|
2849 |
#, php-format
|
2850 |
msgid ""
|
2851 |
"This shortcode %s is using for selection of the booking form of specific booking resources in "
|
@@ -2853,159 +2871,159 @@ msgid ""
|
|
2853 |
msgstr ""
|
2854 |
|
2855 |
#: core/admin/wpbc-toolbar-tiny.php:1144 core/admin/wpbc-toolbars.php:1666
|
2856 |
-
#: core/lib/wpbc_all_translations.php:
|
2857 |
#: inc/_ps/wpbc-booking-select-widget.php:163
|
2858 |
msgid "All"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: core/admin/wpbc-toolbar-tiny.php:1153 core/lib/wpbc_all_translations.php:
|
2862 |
#: inc/_ps/wpbc-booking-select-widget.php:175
|
2863 |
msgid ""
|
2864 |
"Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
|
2865 |
"resources."
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: core/admin/wpbc-toolbar-tiny.php:1178 core/lib/wpbc_all_translations.php:
|
2869 |
#: inc/_ps/wpbc-booking-select-widget.php:181
|
2870 |
msgid "Preselected resource"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: core/admin/wpbc-toolbar-tiny.php:1179 core/lib/wpbc_all_translations.php:
|
2874 |
msgid "Define preselected resource."
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: core/admin/wpbc-toolbar-tiny.php:1204 core/lib/wpbc_all_translations.php:
|
2878 |
#: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1222
|
2879 |
msgid "Default Form"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
#: core/admin/wpbc-toolbar-tiny.php:1220 core/admin/wpbc-toolbar-tiny.php:1229
|
2883 |
-
#: core/lib/wpbc_all_translations.php:
|
2884 |
msgid "Please select the resource:"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: core/admin/wpbc-toolbar-tiny.php:1221 core/lib/wpbc_all_translations.php:
|
2888 |
msgid "Title near your select box."
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:
|
2892 |
#: inc/_ps/wpbc-booking-select-widget.php:247
|
2893 |
msgid "First option title"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:
|
2897 |
-
#: inc/_ps/personal.php:
|
2898 |
msgid "Please Select"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:
|
2902 |
#: inc/_ps/wpbc-booking-select-widget.php:254
|
2903 |
msgid "First option in dropdown list."
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:
|
2907 |
#: inc/_ps/wpbc-booking-select-widget.php:256
|
2908 |
msgid "Please leave it empty if you want to skip it."
|
2909 |
msgstr ""
|
2910 |
|
2911 |
#: core/admin/wpbc-toolbar-tiny.php:1430 core/admin/wpbc-toolbar-tiny.php:1710
|
2912 |
-
#: core/lib/wpbc_all_translations.php:
|
2913 |
msgid "Select shortcode to insert"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:
|
2917 |
msgid "Search form"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
-
#: core/admin/wpbc-toolbar-tiny.php:1445 core/lib/wpbc_all_translations.php:
|
2921 |
#: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:659
|
2922 |
#: inc/_bl/wpbc-search-availability.php:674
|
2923 |
msgid "Search results"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: core/admin/wpbc-toolbar-tiny.php:1464 core/lib/wpbc_all_translations.php:
|
2927 |
msgid "Check this box to show search results on other page"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: core/admin/wpbc-toolbar-tiny.php:1481 core/lib/wpbc_all_translations.php:
|
2931 |
msgid "URL of search results:"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: core/admin/wpbc-toolbar-tiny.php:1483 core/lib/wpbc_all_translations.php:
|
2935 |
msgid "Type the URL of search results page."
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: core/admin/wpbc-toolbar-tiny.php:1500 core/lib/wpbc_all_translations.php:
|
2939 |
msgid "Title of Search results:"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
#: core/admin/wpbc-toolbar-tiny.php:1501 core/admin/wpbc-toolbar-tiny.php:1510
|
2943 |
-
#: core/lib/wpbc_all_translations.php:
|
2944 |
msgid "Result(s) Found"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:
|
2948 |
msgid "Type the title of Search results."
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:
|
2952 |
msgid "show number of search results"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: core/admin/wpbc-toolbar-tiny.php:1519 core/lib/wpbc_all_translations.php:
|
2956 |
msgid "Nothing Found Message:"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: core/admin/wpbc-toolbar-tiny.php:1521 core/lib/wpbc_all_translations.php:
|
2960 |
msgid "Type the message, when nothing found."
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: core/admin/wpbc-toolbar-tiny.php:1541 core/lib/wpbc_all_translations.php:
|
2964 |
msgid "Search only for users:"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: core/admin/wpbc-toolbar-tiny.php:1543 core/lib/wpbc_all_translations.php:
|
2968 |
msgid ""
|
2969 |
"Type IDs of the users (separated by comma \",\") for searching availability only for these "
|
2970 |
"users, or leave it blank for searching for all users."
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: core/admin/wpbc-toolbar-tiny.php:1563 core/lib/wpbc_all_translations.php:
|
2974 |
#, php-format
|
2975 |
msgid ""
|
2976 |
"This shortcode %s is using for showing the search results at specific page, if the search form "
|
2977 |
"is submit showing the search results at different page"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: core/admin/wpbc-toolbar-tiny.php:1625 core/lib/wpbc_all_translations.php:
|
2981 |
msgid "date"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: core/admin/wpbc-toolbar-tiny.php:1685 core/lib/wpbc_all_translations.php:
|
2985 |
msgid "Define date for booking"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:
|
2989 |
#: inc/_ps/p-toolbar.php:237
|
2990 |
msgid "Edit Booking"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: core/admin/wpbc-toolbar-tiny.php:1726 core/lib/wpbc_all_translations.php:
|
2994 |
msgid "Show listing of customer bookings"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:
|
2998 |
msgid "Show info about Booking Resource"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:
|
3002 |
#, php-format
|
3003 |
msgid ""
|
3004 |
"This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
|
3005 |
"%s or make %spayment%s after receiving an admin email payment request"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: core/admin/wpbc-toolbar-tiny.php:1746 core/lib/wpbc_all_translations.php:
|
3009 |
#, php-format
|
3010 |
msgid ""
|
3011 |
"The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
|
@@ -3013,400 +3031,396 @@ msgid ""
|
|
3013 |
msgstr ""
|
3014 |
|
3015 |
#: core/admin/wpbc-toolbar-tiny.php:1747 core/admin/wpbc-toolbar-tiny.php:1763
|
3016 |
-
#: core/lib/wpbc_all_translations.php:
|
3017 |
#, php-format
|
3018 |
msgid "Email templates, which use shortcodes: %s, will be linked to this page"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:
|
3022 |
#, php-format
|
3023 |
msgid ""
|
3024 |
"This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
-
#: core/admin/wpbc-toolbar-tiny.php:1762 core/lib/wpbc_all_translations.php:
|
3028 |
#, php-format
|
3029 |
msgid ""
|
3030 |
"The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
|
3031 |
"settings page%s must link to this page"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:
|
3035 |
#, php-format
|
3036 |
msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
-
#: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:
|
3040 |
msgid "Trick"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
-
#: core/admin/wpbc-toolbar-tiny.php:1805 core/lib/wpbc_all_translations.php:
|
3044 |
#: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
|
3045 |
#: inc/_ps/admin/br-table-import-gcal-p.php:63
|
3046 |
msgid "Capacity"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: core/admin/wpbc-toolbar-tiny.php:1811 core/lib/wpbc_all_translations.php:
|
3050 |
msgid "Select type of info to show."
|
3051 |
msgstr ""
|
3052 |
|
3053 |
#: core/admin/wpbc-toolbar-tiny.php:2121 core/admin/wpbc-toolbar-tiny.php:2164
|
3054 |
#: core/admin/wpbc-toolbar-tiny.php:2248 core/admin/wpbc-toolbar-tiny.php:2337
|
3055 |
-
#: core/lib/wpbc_all_translations.php:
|
3056 |
msgid "No booking resources"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:
|
3060 |
msgid "Filters"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
-
#: core/admin/wpbc-toolbars.php:350 core/lib/wpbc_all_translations.php:
|
3064 |
msgid "Expand Advanced Toolbar"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#: core/admin/wpbc-toolbars.php:357 core/lib/wpbc_all_translations.php:
|
3068 |
msgid "Collapse Advanced Toolbar"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#: core/admin/wpbc-toolbars.php:379 core/lib/wpbc_all_translations.php:
|
3072 |
msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
-
#: core/admin/wpbc-toolbars.php:380 core/lib/wpbc_all_translations.php:
|
3076 |
msgid "Emails sending"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#: core/admin/wpbc-toolbars.php:405 core/lib/wpbc_all_translations.php:
|
3080 |
msgid "Booking ID"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
-
#: core/admin/wpbc-toolbars.php:408 core/admin/wpbc-toolbars.php:
|
3084 |
-
#: core/lib/wpbc_all_translations.php:
|
3085 |
msgid "Go"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#: core/admin/wpbc-toolbars.php:442 core/lib/wpbc_all_translations.php:
|
3089 |
msgid "Technical Support"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: core/admin/wpbc-toolbars.php:444 core/lib/wpbc_all_translations.php:
|
3093 |
msgid "About Booking Calendar"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
#: core/admin/wpbc-toolbars.php:511 core/admin/wpbc-toolbars.php:691
|
3097 |
#: core/admin/wpbc-toolbars.php:896 core/admin/wpbc-toolbars.php:1516
|
3098 |
-
#: core/lib/wpbc_all_translations.php:
|
3099 |
msgid "Apply"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: core/admin/wpbc-toolbars.php:512 core/lib/wpbc_all_translations.php:
|
3103 |
msgid "Refresh booking listing"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: core/admin/wpbc-toolbars.php:526 core/lib/wpbc_all_translations.php:
|
3107 |
msgid "Reset filter to default values"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
#: core/admin/wpbc-toolbars.php:552 core/admin/wpbc-toolbars.php:767
|
3111 |
-
#: core/lib/wpbc_all_translations.php:
|
3112 |
msgid "Any"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
#: core/admin/wpbc-toolbars.php:573 core/admin/wpbc-toolbars.php:807
|
3116 |
-
#: core/lib/wpbc_all_translations.php:
|
3117 |
msgid "week"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
#: core/admin/wpbc-toolbars.php:574 core/admin/wpbc-toolbars.php:808
|
3121 |
-
#: core/lib/wpbc_all_translations.php:
|
3122 |
msgid "weeks"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
#: core/admin/wpbc-toolbars.php:575 core/admin/wpbc-toolbars.php:809
|
3126 |
-
#: core/lib/wpbc_all_translations.php:
|
3127 |
msgid "month"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
#: core/admin/wpbc-toolbars.php:576 core/admin/wpbc-toolbars.php:577
|
3131 |
#: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:810
|
3132 |
#: core/admin/wpbc-toolbars.php:811 core/admin/wpbc-toolbars.php:812
|
3133 |
-
#: core/lib/wpbc_all_translations.php:
|
3134 |
msgid "months"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
#: core/admin/wpbc-toolbars.php:586 core/admin/wpbc-toolbars.php:821
|
3138 |
-
#: core/lib/wpbc_all_translations.php:
|
3139 |
msgid "Filter bookings by booking dates"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: core/admin/wpbc-toolbars.php:590 core/lib/wpbc_all_translations.php:
|
3143 |
msgid "Current dates"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
#: core/admin/wpbc-toolbars.php:591 core/admin/wpbc-toolbars.php:825
|
3147 |
-
#: core/lib/wpbc_all_translations.php:
|
3148 |
msgid "Today"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:
|
3152 |
msgid "Previous dates"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
#: core/admin/wpbc-toolbars.php:593 core/admin/wpbc-toolbars.php:826
|
3156 |
-
#: core/lib/wpbc_all_translations.php:
|
3157 |
msgid "All dates"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: core/admin/wpbc-toolbars.php:595 core/lib/wpbc_all_translations.php:
|
3161 |
msgid "Today check in/out"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: core/admin/wpbc-toolbars.php:596 core/lib/wpbc_all_translations.php:
|
3165 |
msgid "Check In - Tomorrow"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: core/admin/wpbc-toolbars.php:597 core/lib/wpbc_all_translations.php:
|
3169 |
msgid "Check Out - Tomorrow"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: core/admin/wpbc-toolbars.php:602 core/lib/wpbc_all_translations.php:
|
3173 |
-
#: core/wpbc-functions.php:
|
3174 |
msgid "Next"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
#: core/admin/wpbc-toolbars.php:626 core/admin/wpbc-toolbars.php:831
|
3178 |
-
#: core/lib/wpbc_all_translations.php:
|
3179 |
msgid "Prior"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
#: core/admin/wpbc-toolbars.php:666 core/admin/wpbc-toolbars.php:871
|
3183 |
-
#: core/lib/wpbc_all_translations.php:
|
3184 |
msgid "Check-in"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
#: core/admin/wpbc-toolbars.php:678 core/admin/wpbc-toolbars.php:883
|
3188 |
-
#: core/lib/wpbc_all_translations.php:
|
3189 |
msgid "Check-out"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: core/admin/wpbc-toolbars.php:750 core/lib/wpbc_all_translations.php:
|
3193 |
msgid "Order by"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: core/admin/wpbc-toolbars.php:764 core/lib/wpbc_all_translations.php:
|
3197 |
msgid "Exist"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: core/admin/wpbc-toolbars.php:
|
3201 |
-
msgid "In Trash / Rejected"
|
3202 |
-
msgstr ""
|
3203 |
-
|
3204 |
-
#: core/admin/wpbc-toolbars.php:786 core/lib/wpbc_all_translations.php:574
|
3205 |
msgid "New bookings"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: core/admin/wpbc-toolbars.php:823 core/lib/wpbc_all_translations.php:
|
3209 |
msgid "Creation"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
-
#: core/admin/wpbc-toolbars.php:950 core/lib/wpbc_all_translations.php:
|
3213 |
msgid "Approve selected bookings"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
-
#: core/admin/wpbc-toolbars.php:965 core/lib/wpbc_all_translations.php:
|
3217 |
msgid "Set selected bookings as pending"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: core/admin/wpbc-toolbars.php:995
|
3221 |
msgid "Reject booking - move selected bookings to trash"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: core/admin/wpbc-toolbars.php:1012 core/lib/wpbc_all_translations.php:
|
3225 |
msgid "Restore selected bookings"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: core/admin/wpbc-toolbars.php:1028 core/lib/wpbc_all_translations.php:
|
3229 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:2667 inc/_bl/admin/page-coupons.php:216
|
3230 |
#: inc/_bl/admin/page-coupons.php:222 inc/_bm/admin/page-availability.php:240
|
3231 |
#: inc/_bm/admin/page-availability.php:246 inc/_bm/admin/page-cost-valuation.php:567
|
3232 |
#: inc/_bm/admin/page-cost.php:223 inc/_bm/admin/page-cost.php:233
|
3233 |
-
#: inc/_bm/admin/page-seasons.php:201 inc/_bm/admin/page-seasons.php:207 inc/_bm/m-toolbar.php:
|
3234 |
#: inc/_ps/admin/page-resources.php:189 inc/_ps/admin/page-resources.php:195
|
3235 |
msgid "Delete"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: core/admin/wpbc-toolbars.php:1029 core/lib/wpbc_all_translations.php:
|
3239 |
msgid "Delete selected bookings"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: core/admin/wpbc-toolbars.php:1031 core/lib/wpbc_all_translations.php:
|
3243 |
#: core/sync/wpbc-gcal-class.php:706
|
3244 |
msgid "Do you really want to delete selected booking(s) ?"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
-
#: core/admin/wpbc-toolbars.php:1047 core/lib/wpbc_all_translations.php:
|
3248 |
msgid "Reason of cancellation"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
#: core/admin/wpbc-toolbars.php:1075 core/admin/wpbc-toolbars.php:1076 core/lib/wpbc-ajax.php:346
|
3252 |
-
#: core/lib/wpbc_all_translations.php:
|
3253 |
msgid "Empty Trash"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: core/admin/wpbc-toolbars.php:1106 core/lib/wpbc_all_translations.php:
|
3257 |
msgid "Read All"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: core/admin/wpbc-toolbars.php:1107 core/lib/wpbc_all_translations.php:
|
3261 |
msgid "Mark as read all bookings"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: core/admin/wpbc-toolbars.php:1120 core/lib/wpbc_all_translations.php:
|
3265 |
msgid "Read"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: core/admin/wpbc-toolbars.php:1121 core/lib/wpbc_all_translations.php:
|
3269 |
msgid "Mark as read selected bookings"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: core/admin/wpbc-toolbars.php:1135 core/lib/wpbc_all_translations.php:
|
3273 |
msgid "Unread"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: core/admin/wpbc-toolbars.php:1136 core/lib/wpbc_all_translations.php:
|
3277 |
msgid "Mark as Unread selected bookings"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
#: core/admin/wpbc-toolbars.php:1185 core/admin/wpbc-toolbars.php:1245
|
3281 |
-
#: core/lib/wpbc_all_translations.php:
|
3282 |
msgid "Show day"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
#: core/admin/wpbc-toolbars.php:1202 core/admin/wpbc-toolbars.php:1259
|
3286 |
-
#: core/lib/wpbc_all_translations.php:
|
3287 |
msgid "Show week"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
#: core/admin/wpbc-toolbars.php:1219 core/admin/wpbc-toolbars.php:1273
|
3291 |
-
#: core/lib/wpbc_all_translations.php:
|
3292 |
msgid "Show month"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: core/admin/wpbc-toolbars.php:1287 core/lib/wpbc_all_translations.php:
|
3296 |
msgid "Show 2 months"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
#: core/admin/wpbc-toolbars.php:1344 core/admin/wpbc-toolbars.php:1358
|
3300 |
-
#: core/admin/wpbc-toolbars.php:1405 core/lib/wpbc_all_translations.php:
|
3301 |
msgid "Previous 4 weeks"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
#: core/admin/wpbc-toolbars.php:1345 core/admin/wpbc-toolbars.php:1359
|
3305 |
-
#: core/admin/wpbc-toolbars.php:1406 core/lib/wpbc_all_translations.php:
|
3306 |
msgid "Previous week"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
#: core/admin/wpbc-toolbars.php:1346 core/admin/wpbc-toolbars.php:1360
|
3310 |
-
#: core/admin/wpbc-toolbars.php:1407 core/lib/wpbc_all_translations.php:
|
3311 |
msgid "Current week"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
#: core/admin/wpbc-toolbars.php:1347 core/admin/wpbc-toolbars.php:1361
|
3315 |
-
#: core/admin/wpbc-toolbars.php:1408 core/lib/wpbc_all_translations.php:
|
3316 |
msgid "Next week"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
#: core/admin/wpbc-toolbars.php:1348 core/admin/wpbc-toolbars.php:1362
|
3320 |
-
#: core/admin/wpbc-toolbars.php:1409 core/lib/wpbc_all_translations.php:
|
3321 |
msgid "Next 4 weeks"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
#: core/admin/wpbc-toolbars.php:1372 core/admin/wpbc-toolbars.php:1422
|
3325 |
-
#: core/admin/wpbc-toolbars.php:1437 core/lib/wpbc_all_translations.php:
|
3326 |
msgid "Previous 3 months"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
#: core/admin/wpbc-toolbars.php:1373 core/admin/wpbc-toolbars.php:1423
|
3330 |
-
#: core/admin/wpbc-toolbars.php:1438 core/lib/wpbc_all_translations.php:
|
3331 |
msgid "Previous month"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
#: core/admin/wpbc-toolbars.php:1374 core/admin/wpbc-toolbars.php:1424
|
3335 |
-
#: core/admin/wpbc-toolbars.php:1439 core/lib/wpbc_all_translations.php:
|
3336 |
msgid "Current month"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
#: core/admin/wpbc-toolbars.php:1375 core/admin/wpbc-toolbars.php:1425
|
3340 |
-
#: core/admin/wpbc-toolbars.php:1440 core/lib/wpbc_all_translations.php:
|
3341 |
msgid "Next month"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
#: core/admin/wpbc-toolbars.php:1376 core/admin/wpbc-toolbars.php:1426
|
3345 |
-
#: core/admin/wpbc-toolbars.php:1441 core/lib/wpbc_all_translations.php:
|
3346 |
msgid "Next 3 months"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:
|
3350 |
msgid "Previous 7 days"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:
|
3354 |
msgid "Previous day"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:
|
3358 |
msgid "Current day"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#: core/admin/wpbc-toolbars.php:1393 core/lib/wpbc_all_translations.php:
|
3362 |
msgid "Next day"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#: core/admin/wpbc-toolbars.php:1394 core/lib/wpbc_all_translations.php:
|
3366 |
msgid "Next 7 days"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#: core/admin/wpbc-toolbars.php:1665 core/lib/wpbc_all_translations.php:
|
3370 |
msgid "Number of months in one row"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#: core/admin/wpbc-toolbars.php:1710 core/lib/wpbc_all_translations.php:
|
3374 |
msgid "Calendar width"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#: core/admin/wpbc-toolbars.php:1758 core/lib/wpbc_all_translations.php:
|
3378 |
msgid "Calendar cell height"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
#: core/admin/wpbc-toolbars.php:1867 core/admin/wpbc-toolbars.php:1868
|
3382 |
-
#: core/lib/wpbc_all_translations.php:
|
3383 |
msgid "Send email notification to customer about this operation"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
#: core/admin/wpbc-toolbars.php:1910 core/admin/wpbc-toolbars.php:1911
|
3387 |
-
#: core/lib/wpbc_all_translations.php:
|
3388 |
msgid "Add to Google Calendar"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: core/admin/wpbc-toolbars.php:
|
3392 |
-
#: inc/gateways/page-gateways.php:
|
3393 |
msgid "Total"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#: core/admin/wpbc-toolbars.php:
|
3397 |
msgid "ID or Title"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
-
#: core/any/api-emails.php:
|
3401 |
msgid "Email copy to"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
#: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
|
3405 |
-
#: core/lib/wpbc_all_translations.php:
|
3406 |
msgid "Dismiss"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:
|
3410 |
#, php-format
|
3411 |
msgid ""
|
3412 |
"Probably you updated your paid version of Booking Calendar by free version or update process "
|
@@ -3414,288 +3428,288 @@ msgid ""
|
|
3414 |
msgstr ""
|
3415 |
|
3416 |
#: core/class/wpbc-class-welcome.php:1851 core/class/wpbc-class-welcome.php:2337
|
3417 |
-
#: core/lib/wpbc_all_translations.php:
|
3418 |
msgid "Purchase"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
#: core/class/wpbc-class-welcome.php:1851 core/class/wpbc-class-welcome.php:2337
|
3422 |
-
#: core/lib/wpbc_all_translations.php:
|
3423 |
msgid "Upgrade Now"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
#: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:67
|
3427 |
-
#: core/lib/wpbc-ajax.php:82 core/lib/wpbc_all_translations.php:
|
3428 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:1113
|
3429 |
#, php-format
|
3430 |
msgid ""
|
3431 |
"%sError!%s Request do not pass security check! Please refresh the page and try one more time."
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: core/lib/wpbc-ajax.php:138 core/lib/wpbc_all_translations.php:
|
3435 |
msgid "Set as Unread"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:
|
3439 |
msgid "Set as Read"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: core/lib/wpbc-ajax.php:189
|
3443 |
msgid "Approved by:"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: core/lib/wpbc-ajax.php:189
|
3447 |
msgid "Declined by:"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: core/lib/wpbc-ajax.php:215 core/lib/wpbc_all_translations.php:
|
3451 |
msgid "Set as Approved"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: core/lib/wpbc-ajax.php:217 core/lib/wpbc_all_translations.php:
|
3455 |
msgid "Set as Pending"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: core/lib/wpbc-ajax.php:238 core/lib/wpbc-ajax.php:392 core/lib/wpbc_all_translations.php:
|
3459 |
msgid "Reason for cancellation here"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: core/lib/wpbc-ajax.php:239 core/lib/wpbc-ajax.php:393 core/lib/wpbc_all_translations.php:
|
3463 |
msgid "Reason of cancellation here"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: core/lib/wpbc-ajax.php:291 core/lib/wpbc_all_translations.php:
|
3467 |
msgid "Moved to trash"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: core/lib/wpbc-ajax.php:299 core/lib/wpbc_all_translations.php:
|
3471 |
msgid "Restored"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: core/lib/wpbc-ajax.php:372 core/lib/wpbc_all_translations.php:
|
3475 |
#, php-format
|
3476 |
msgid "Deleted %d bookings from trash"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#: core/lib/wpbc-ajax.php:543 core/lib/wpbc_all_translations.php:
|
3480 |
msgid "Saved"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
-
#: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:
|
3484 |
msgid "The code you entered is incorrect"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: core/lib/wpbc-booking-new.php:139 core/lib/wpbc_all_translations.php:
|
3488 |
msgid "Updating..."
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: core/lib/wpbc-booking-new.php:164 core/lib/wpbc_all_translations.php:
|
3492 |
-
#: inc/_ps/personal.php:
|
3493 |
msgid "Updated successfully"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: core/lib/wpbc-booking-new.php:869 core/lib/wpbc_all_translations.php:
|
|
|
3497 |
msgid "Error!"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: core/lib/wpbc-booking-new.php:870 core/lib/wpbc_all_translations.php:
|
3501 |
msgid ""
|
3502 |
"Probably these date(s) just was booking by other visitor. Please reload this page and make "
|
3503 |
"booking again."
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: core/lib/wpbc_all_translations.php:
|
3507 |
msgid "Timeline type"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: core/lib/wpbc_all_translations.php:
|
3511 |
msgid "Select type of timeline to load"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: core/lib/wpbc_all_translations.php:
|
3515 |
msgid "Flex Timeline"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: core/lib/wpbc_all_translations.php:
|
3519 |
msgid "Old Timeline"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: core/lib/wpbc_all_translations.php:
|
3523 |
msgid "Trash"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: core/lib/wpbc_all_translations.php:
|
3527 |
msgid "Move to trash"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: core/lib/wpbc_all_translations.php:
|
3531 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:98 core/timeline/v2/wpbc-class-timeline_v2.php:107
|
3532 |
msgid "Mon"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
-
#: core/lib/wpbc_all_translations.php:
|
3536 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:99 core/timeline/v2/wpbc-class-timeline_v2.php:108
|
3537 |
msgid "Tue"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: core/lib/wpbc_all_translations.php:
|
3541 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:100 core/timeline/v2/wpbc-class-timeline_v2.php:109
|
3542 |
msgid "Wed"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
-
#: core/lib/wpbc_all_translations.php:
|
3546 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:101 core/timeline/v2/wpbc-class-timeline_v2.php:110
|
3547 |
msgid "Thu"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: core/lib/wpbc_all_translations.php:
|
3551 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:102 core/timeline/v2/wpbc-class-timeline_v2.php:111
|
3552 |
msgid "Fri"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#: core/lib/wpbc_all_translations.php:
|
3556 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:103 core/timeline/v2/wpbc-class-timeline_v2.php:112
|
3557 |
msgid "Sat"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: core/lib/wpbc_all_translations.php:
|
3561 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:104 core/timeline/v2/wpbc-class-timeline_v2.php:113
|
3562 |
msgid "Sun"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
-
#: core/lib/wpbc_all_translations.php:
|
3566 |
#: core/timeline/v2/wpbc-class-timeline_v2.php:1441 inc/_ps/wpbc-form-templates.php:155
|
3567 |
msgid "Times"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: core/lib/wpbc_all_translations.php:
|
3571 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2698
|
3572 |
msgid "Decline"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: core/lib/wpbc_all_translations.php:
|
3576 |
msgid "Pay"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: core/lib/wpbc_all_translations.php:
|
3580 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2760 core/wpbc-functions.php:
|
3581 |
-
#: inc/_bs/lib_s.php:
|
3582 |
#: inc/_ps/admin/page-settings-form.php:352 inc/_ps/admin/page-settings-form.php:363
|
3583 |
msgid "Payment"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: core/lib/wpbc_all_translations.php:
|
3587 |
msgid "In Trash"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: core/lib/wpbc_all_translations.php:
|
3591 |
msgid "Move selected bookings to trash"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: core/lib/wpbc_all_translations.php:
|
3595 |
msgid ""
|
3596 |
"Check the box, if you want to use syntax highlighter during customization booking form at "
|
3597 |
"Settings - Form page."
|
3598 |
msgstr ""
|
3599 |
|
3600 |
-
#: core/lib/wpbc_all_translations.php:
|
3601 |
msgid "Show 3 months"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#: core/lib/wpbc_all_translations.php:
|
3605 |
msgid "Show year"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: core/lib/wpbc_all_translations.php:
|
3609 |
msgid "Number of months"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: core/lib/wpbc_all_translations.php:
|
3613 |
msgid "Paid OK"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: core/lib/wpbc_all_translations.php:
|
3617 |
msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: core/lib/wpbc_all_translations.php:
|
3621 |
#, php-format
|
3622 |
msgid ""
|
3623 |
"Probabaly you updated your paid version of Booking Calendar by free version or update process "
|
3624 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3625 |
msgstr ""
|
3626 |
|
3627 |
-
#: core/lib/wpbc_all_translations.php:
|
3628 |
msgid "Copy to admin"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: core/lib/wpbc_all_translations.php:
|
3632 |
msgid "Enable / disable sending copy of this email notification to admin"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: core/lib/wpbc_all_translations.php:
|
3636 |
msgid "Customization of email template, which is sending to Visitor after approval of booking"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
-
#: core/lib/wpbc_all_translations.php:
|
3640 |
msgid "Email is sending to Visitor after Approval of booking."
|
3641 |
msgstr ""
|
3642 |
|
3643 |
-
#: core/lib/wpbc_all_translations.php:
|
3644 |
msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
-
#: core/lib/wpbc_all_translations.php:
|
3648 |
msgid "Email is sending to Visitor after Deleting of booking."
|
3649 |
msgstr ""
|
3650 |
|
3651 |
-
#: core/lib/wpbc_all_translations.php:
|
3652 |
msgid ""
|
3653 |
"Customization of email template, which is sending to Visitor, when booking status is set to "
|
3654 |
"Pending"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#: core/lib/wpbc_all_translations.php:
|
3658 |
msgid "Email is sending to Visitor after booking set as Pending."
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: core/lib/wpbc_all_translations.php:
|
3662 |
msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#: core/lib/wpbc_all_translations.php:
|
3666 |
msgid "Confgure ULR feed(s) at this settings page."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: core/lib/wpbc_all_translations.php:
|
3670 |
msgid "Reject"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: core/lib/wpbc_all_translations.php:
|
3674 |
msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: core/lib/wpbc_all_translations.php:
|
3678 |
msgid "Google Calendar"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: core/lib/wpbc_all_translations.php:
|
3682 |
msgid "Events Import"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: core/lib/wpbc_all_translations.php:
|
3686 |
msgid "Import Settings"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
-
#: core/lib/wpbc_all_translations.php:
|
3690 |
msgid "Customization of synchronization with Google Calendar"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: core/lib/wpbc_all_translations.php:
|
3694 |
#: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
|
3695 |
#: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
|
3696 |
#: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
|
3697 |
#: inc/_bm/admin/page-cost-rate.php:77 inc/_bm/admin/page-cost-valuation.php:103
|
3698 |
-
#: inc/_bm/admin/page-seasons.php:826 inc/_bm/admin/page-seasons.php:828 inc/_bs/lib_s.php:
|
3699 |
#: inc/_ps/hash/wpbc-hash-functions.php:67 inc/_ps/hash/wpbc-hash-functions.php:106
|
3700 |
#: inc/_ps/hash/wpbc-hash-functions.php:134 inc/_ps/hash/wpbc-hash-functions.php:162
|
3701 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:308
|
@@ -3705,71 +3719,71 @@ msgstr ""
|
|
3705 |
msgid "Error"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
-
#: core/lib/wpbc_all_translations.php:
|
3709 |
msgid "does not exist"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: core/lib/wpbc_all_translations.php:
|
3713 |
msgid "Calendar is loading..."
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: core/lib/wpbc_all_translations.php:
|
3717 |
-
#: core/lib/wpdev-booking-class.php:745 inc/_ps/personal.php:
|
3718 |
msgid "Wrong booking hash in URL (probably expired)"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: core/lib/wpbc_all_translations.php:
|
3722 |
msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: core/lib/wpbc_all_translations.php:
|
3726 |
#, php-format
|
3727 |
msgid ""
|
3728 |
"%sWarning! Booking calendar for this booking resource are already at the page, please check more "
|
3729 |
"about this issue at %sthis page%s"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
-
#: core/lib/wpbc_all_translations.php:
|
3733 |
#: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
|
3734 |
msgid "You need to use special shortcode [bookingedit] for booking editing."
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: core/lib/wpbc_all_translations.php:
|
3738 |
#: core/lib/wpdev-booking-class.php:1229 core/lib/wpdev-booking-class.php:1231
|
3739 |
#: inc/_ps/hash/wpbc-hash-functions.php:106 inc/_ps/hash/wpbc-hash-functions.php:134
|
3740 |
#: inc/_ps/hash/wpbc-hash-functions.php:162 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1531
|
3741 |
msgid "Wrong booking hash in URL. Probably hash is expired."
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: core/lib/wpbc_all_translations.php:
|
3745 |
-
#: core/lib/wpdev-booking-class.php:1235 js/wpbc-gutenberg.js:
|
3746 |
msgid "You do not set any parameters for booking editing"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: core/lib/wpbc_all_translations.php:
|
3750 |
#: core/lib/wpdev-booking-class.php:1237
|
3751 |
#, php-format
|
3752 |
msgid "Please check more about configuration at %sthis page%s"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
-
#: core/lib/wpbc_all_translations.php:
|
3756 |
msgid "Booking form with calendar"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: core/lib/wpbc_all_translations.php:
|
3760 |
msgid "Only availability calendar"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: core/lib/wpbc_all_translations.php:
|
3764 |
msgid "Footer"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: core/lib/wpbc_all_translations.php:
|
3768 |
#, php-format
|
3769 |
msgid "Example: %sMake booking here%s"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
-
#: core/lib/wpbc_all_translations.php:
|
3773 |
#: inc/_ps/wpbc-booking-select-widget.php:263
|
3774 |
#, php-format
|
3775 |
msgid ""
|
@@ -3777,103 +3791,103 @@ msgid ""
|
|
3777 |
"at the same page, then the last will not be visible."
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: core/lib/wpbc_all_translations.php:
|
3781 |
#, php-format
|
3782 |
msgid "%sSeveral widgets are supported at %spaid versions%s."
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: core/lib/wpbc_all_translations.php:
|
3786 |
msgid "Importing Feed"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: core/lib/wpbc_all_translations.php:
|
3790 |
msgid "Data Parsing"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: core/lib/wpbc_all_translations.php:
|
3794 |
msgid ""
|
3795 |
"Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
|
3796 |
"correct."
|
3797 |
msgstr ""
|
3798 |
|
3799 |
-
#: core/lib/wpbc_all_translations.php:
|
3800 |
msgid "The feed could not be found (404). Please ensure your feed URL is correct."
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: core/lib/wpbc_all_translations.php:
|
3804 |
msgid ""
|
3805 |
"Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
|
3806 |
"calendar."
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: core/lib/wpbc_all_translations.php:
|
3810 |
#, php-format
|
3811 |
msgid ""
|
3812 |
"The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: core/lib/wpbc_all_translations.php:
|
3816 |
#: core/sync/wpbc-gcal-class.php:694
|
3817 |
msgid "GID"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: core/lib/wpbc_all_translations.php:
|
3821 |
msgid "Selection"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: core/lib/wpbc_all_translations.php:
|
3825 |
msgid "Location:"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: core/lib/wpbc_all_translations.php:
|
3829 |
msgid "Reload page"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#: core/lib/wpbc_all_translations.php:
|
3833 |
msgid "Delete selected booking(s)"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: core/lib/wpbc_all_translations.php:
|
3837 |
msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: core/lib/wpbc_all_translations.php:
|
3841 |
msgid "Retrieve Google Calendar Events "
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: core/lib/wpbc_all_translations.php:
|
3845 |
msgid "Please configure settings for import Google Calendar events"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: core/lib/wpbc_all_translations.php:
|
3849 |
msgid "Configure"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: core/lib/wpbc_all_translations.php:
|
3853 |
#, php-format
|
3854 |
msgid "%s Found %s not indexed bookings %s"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: core/lib/wpbc_all_translations.php:
|
3858 |
#, php-format
|
3859 |
msgid "%s Finish getting sort dates. %s"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: core/lib/wpbc_all_translations.php:
|
3863 |
#, php-format
|
3864 |
msgid "Updated booking: %s"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
-
#: core/lib/wpbc_all_translations.php:
|
3868 |
msgid "Booking form"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#: core/lib/wpbc_all_translations.php:
|
3872 |
#: inc/_ps/admin/page-email-edit.php:310
|
3873 |
msgid "The reservation has been modified"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: core/lib/wpbc_all_translations.php:
|
3877 |
#: inc/_ps/admin/page-email-edit.php:324
|
3878 |
#, php-format
|
3879 |
msgid ""
|
@@ -3881,23 +3895,23 @@ msgid ""
|
|
3881 |
"Thank you, %s"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: core/lib/wpbc_all_translations.php:
|
3885 |
#: inc/_bs/admin/api-settings-s.php:376
|
3886 |
msgid "Booked Times:"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: core/lib/wpbc_all_translations.php:
|
3890 |
msgid ""
|
3891 |
"This booking canceled because we did not receive payment and the administrator did not approve "
|
3892 |
"it."
|
3893 |
msgstr ""
|
3894 |
|
3895 |
-
#: core/lib/wpbc_all_translations.php:
|
3896 |
#: inc/_bs/admin/page-email-payment.php:314
|
3897 |
msgid "You need to make payment for this reservation"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: core/lib/wpbc_all_translations.php:
|
3901 |
#: inc/_bs/admin/page-email-payment.php:328
|
3902 |
#, php-format
|
3903 |
msgid ""
|
@@ -3905,426 +3919,426 @@ msgid ""
|
|
3905 |
"Thank you, %s"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: core/lib/wpbc_all_translations.php:
|
3909 |
#: inc/_bm/admin/api-settings-m.php:247
|
3910 |
msgid "Cost: "
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: core/lib/wpbc_all_translations.php:
|
3914 |
#: inc/_bl/admin/api-settings-l.php:75
|
3915 |
msgid "Available: "
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: core/lib/wpbc_all_translations.php:
|
3919 |
msgid "Booking system"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: core/lib/wpbc_all_translations.php:
|
3923 |
msgid ""
|
3924 |
"You can use (in subject and content of email template) any shortcodes, which you used in the "
|
3925 |
"booking form. Use the shortcodes in the same way as you used them in the content form at "
|
3926 |
"Settings Fields page."
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: core/lib/wpbc_all_translations.php:
|
3930 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
|
3931 |
msgid "You can use following shortcodes in content of this template"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: core/lib/wpbc_all_translations.php:
|
3935 |
-
#: inc/gateways/page-gateways.php:
|
3936 |
#, php-format
|
3937 |
msgid ""
|
3938 |
"%s - inserting data info about the booking, which you configured in the content form at Settings "
|
3939 |
"Fields page"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: core/lib/wpbc_all_translations.php:
|
3943 |
#, php-format
|
3944 |
msgid "%s - inserting data info about the booking"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: core/lib/wpbc_all_translations.php:
|
3948 |
#, php-format
|
3949 |
msgid "%s - inserting the dates of booking"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: core/lib/wpbc_all_translations.php:
|
3953 |
#, php-format
|
3954 |
msgid "%s - inserting check-in date (first day of reservation),"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: core/lib/wpbc_all_translations.php:
|
3958 |
#, php-format
|
3959 |
msgid "%s - inserting check-out date (last day of reservation),"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: core/lib/wpbc_all_translations.php:
|
3963 |
#, php-format
|
3964 |
msgid "%s - inserting the number of booking dates "
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: core/lib/wpbc_all_translations.php:
|
3968 |
#, php-format
|
3969 |
msgid "%s - inserting ID of booking "
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#: core/lib/wpbc_all_translations.php:
|
3973 |
#, php-format
|
3974 |
msgid "%s or %s - inserting the title of the booking resource "
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: core/lib/wpbc_all_translations.php:
|
3978 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
|
3979 |
#, php-format
|
3980 |
msgid "%s - inserting the cost of booking "
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: core/lib/wpbc_all_translations.php:
|
3984 |
#, php-format
|
3985 |
msgid "%s - inserting your site URL "
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#: core/lib/wpbc_all_translations.php:
|
3989 |
#, php-format
|
3990 |
msgid "%s - inserting IP address of the user who made this action "
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: core/lib/wpbc_all_translations.php:
|
3994 |
#, php-format
|
3995 |
msgid ""
|
3996 |
"%s - inserting contents of the User-Agent: header from the current request, if there is one "
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: core/lib/wpbc_all_translations.php:
|
4000 |
#, php-format
|
4001 |
msgid "%s - inserting address of the page (if any), where visitor make this action "
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#: core/lib/wpbc_all_translations.php:
|
4005 |
#, php-format
|
4006 |
msgid "%s - inserting date of this action "
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: core/lib/wpbc_all_translations.php:
|
4010 |
#, php-format
|
4011 |
msgid "%s - inserting time of this action "
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: core/lib/wpbc_all_translations.php:
|
4015 |
#, php-format
|
4016 |
msgid "%s - inserting moderate link of new booking "
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: core/lib/wpbc_all_translations.php:
|
4020 |
#, php-format
|
4021 |
msgid ""
|
4022 |
"%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
|
4023 |
"parameter for setting different %s of this page. Example: %s )"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: core/lib/wpbc_all_translations.php:
|
4027 |
#, php-format
|
4028 |
msgid ""
|
4029 |
"%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
|
4030 |
"%s parameter for setting different %s of this page. Example: %s )"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: core/lib/wpbc_all_translations.php:
|
4034 |
#, php-format
|
4035 |
msgid ""
|
4036 |
"%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
|
4037 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: core/lib/wpbc_all_translations.php:
|
4041 |
#, php-format
|
4042 |
msgid "%s - add the reason for booking payment, you can enter it before sending email, "
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: core/lib/wpbc_all_translations.php:
|
4046 |
#, php-format
|
4047 |
msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: core/lib/wpbc_all_translations.php:
|
4051 |
msgid "Configuration in several languages"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: core/lib/wpbc_all_translations.php:
|
4055 |
#, php-format
|
4056 |
msgid "%s - start new translation section, where %s - locale of translation"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#: core/lib/wpbc_all_translations.php:
|
4060 |
#, php-format
|
4061 |
msgid "Example #1: %s - start French translation section"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: core/lib/wpbc_all_translations.php:
|
4065 |
#, php-format
|
4066 |
msgid "Example #2: \"%s\" - English and French translation of some message"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
-
#: core/lib/wpbc_all_translations.php:
|
4070 |
msgid "yes"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#: core/lib/wpbc_all_translations.php:
|
4074 |
msgid "no"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
-
#: core/lib/wpbc_all_translations.php:
|
4078 |
#: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:586
|
4079 |
msgid "Costs and Rates"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: core/lib/wpbc_all_translations.php:
|
4083 |
#: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
|
4084 |
#: inc/gateways/page-gateways.php:92
|
4085 |
msgid "Advanced Cost"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: core/lib/wpbc_all_translations.php:
|
4089 |
#: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
|
4090 |
msgid "Coupons"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: core/lib/wpbc_all_translations.php:
|
4094 |
#: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
|
4095 |
msgid "Season Filters"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: core/lib/wpbc_all_translations.php:
|
4099 |
msgid "Warning! Some error occur, during sending registration request."
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: core/lib/wpbc_all_translations.php:
|
4103 |
msgid ""
|
4104 |
"Please refresh this page and if the same error appear again contact support by email (with info "
|
4105 |
"about order number and website) for finishing the registrations"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: core/lib/wpbc_all_translations.php:
|
4109 |
#, php-format
|
4110 |
msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
|
4111 |
msgstr ""
|
4112 |
|
4113 |
-
#: core/lib/wpbc_all_translations.php:
|
4114 |
msgid "Changes saved."
|
4115 |
msgstr ""
|
4116 |
|
4117 |
-
#: core/lib/wpbc_all_translations.php:
|
4118 |
msgid "Click to toggle"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
-
#: core/lib/wpbc_all_translations.php:
|
4122 |
msgid "Prev"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
-
#: core/lib/wpbc_all_translations.php:
|
4126 |
msgid "We’ve assembled some links to get you started:"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: core/lib/wpbc_all_translations.php:
|
4130 |
msgid "Get Started"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
#: core/lib/wpbc_all_translations.php:
|
4134 |
#, php-format
|
4135 |
msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: core/lib/wpbc_all_translations.php:
|
4139 |
#, php-format
|
4140 |
msgid "or add booking calendar %sWidget%s to your sidebar."
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: core/lib/wpbc_all_translations.php:
|
4144 |
#, php-format
|
4145 |
msgid "Check %show todo%s that and what %sshortcodes%s are available."
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: core/lib/wpbc_all_translations.php:
|
4149 |
#, php-format
|
4150 |
msgid "Add new booking from your post/page or from %sAdmin Panel%s."
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: core/lib/wpbc_all_translations.php:
|
4154 |
msgid "Next Steps"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
-
#: core/lib/wpbc_all_translations.php:
|
4158 |
#, php-format
|
4159 |
msgid "Check %sBooking Listing%s page for new bookings."
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: core/lib/wpbc_all_translations.php:
|
4163 |
#, php-format
|
4164 |
msgid "Configure booking %sSettings%s."
|
4165 |
msgstr ""
|
4166 |
|
4167 |
-
#: core/lib/wpbc_all_translations.php:
|
4168 |
#, php-format
|
4169 |
msgid "Configure predefined set of your %sForm Fields%s."
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: core/lib/wpbc_all_translations.php:
|
4173 |
#, php-format
|
4174 |
msgid "Configure your predefined %sEmail Templates%s."
|
4175 |
msgstr ""
|
4176 |
|
4177 |
-
#: core/lib/wpbc_all_translations.php:
|
4178 |
msgid "Have a questions?"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#: core/lib/wpbc_all_translations.php:
|
4182 |
#, php-format
|
4183 |
msgid "Check out our %sHelp%s"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: core/lib/wpbc_all_translations.php:
|
4187 |
#, php-format
|
4188 |
msgid "See %sFAQ%s."
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: core/lib/wpbc_all_translations.php:
|
4192 |
#, php-format
|
4193 |
msgid "Still having questions? Contact %sSupport%s."
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: core/lib/wpbc_all_translations.php:
|
4197 |
#, php-format
|
4198 |
msgid "Need even more functionality? Check %s higher versions %s"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
-
#: core/lib/wpbc_all_translations.php:
|
4202 |
msgid "This field is required"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
-
#: core/lib/wpbc_all_translations.php:
|
4206 |
msgid "This checkbox must be checked"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
-
#: core/lib/wpbc_all_translations.php:
|
4210 |
msgid "At least one option must be selected"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
-
#: core/lib/wpbc_all_translations.php:
|
4214 |
msgid "Incorrect email field"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
#: core/lib/wpbc_all_translations.php:
|
4218 |
msgid "Your emails do not match"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: core/lib/wpbc_all_translations.php:
|
4222 |
msgid "Please, select booking date(s) at Calendar."
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: core/lib/wpbc_all_translations.php:
|
4226 |
msgid "Deleting"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: core/lib/wpbc_all_translations.php:
|
4230 |
msgid "Updating"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: core/lib/wpbc_all_translations.php:
|
4234 |
msgid "Saving"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
-
#: core/lib/wpbc_all_translations.php:
|
4238 |
msgid "Booking"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#: core/lib/wpbc_all_translations.php:
|
4242 |
msgid "Action is not allowed!"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: core/lib/wpbc_all_translations.php:
|
4246 |
#: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
|
4247 |
-
#: inc/_bl/admin/page-search.php:
|
4248 |
-
#: inc/_bm/m-toolbar.php:
|
4249 |
#: inc/_ps/wpbc-booking-select-widget.php:230
|
4250 |
msgid "Standard"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: core/lib/wpbc_all_translations.php:
|
4254 |
#: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
|
4255 |
#: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
|
4256 |
msgid "Superior"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: core/lib/wpbc_all_translations.php:
|
4260 |
#: inc/_bs/admin/activation-s.php:93
|
4261 |
msgid "Resource #1"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
-
#: core/lib/wpbc_all_translations.php:
|
4265 |
#: inc/_bl/admin/activation-l.php:125
|
4266 |
msgid "Presidential Suite"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: core/lib/wpbc_all_translations.php:
|
4270 |
#: inc/_bs/admin/activation-s.php:94
|
4271 |
msgid "Resource #2"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
-
#: core/lib/wpbc_all_translations.php:
|
4275 |
#: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
|
4276 |
msgid "Royal Villa"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#: core/lib/wpbc_all_translations.php:
|
4280 |
#: inc/_bs/admin/activation-s.php:95
|
4281 |
msgid "Resource #3"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: core/lib/wpbc_all_translations.php:
|
4285 |
msgid ""
|
4286 |
"Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
|
4287 |
"for search results"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: core/lib/wpbc_all_translations.php:
|
4291 |
msgid ""
|
4292 |
"Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
|
4293 |
"1 search results"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: core/lib/wpbc_all_translations.php:
|
4297 |
msgid "Show availability in tooltip"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: core/lib/wpbc_all_translations.php:
|
4301 |
msgid ""
|
4302 |
"Check this box to display the available number of booking resources with a tooltip, when mouse "
|
4303 |
"hovers over each day on the calendar(s)."
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: core/lib/wpbc_all_translations.php:
|
4307 |
msgid "Availability Title"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: core/lib/wpbc_all_translations.php:
|
4311 |
#, php-format
|
4312 |
msgid "Type your %savailability%s description"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
#: core/lib/wpbc_all_translations.php:
|
4316 |
#: inc/_bs/admin/api-settings-s.php:516
|
4317 |
msgid "Auto-cancel bookings"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
-
#: core/lib/wpbc_all_translations.php:
|
4321 |
#: inc/_bl/admin/api-settings-l.php:131
|
4322 |
msgid ""
|
4323 |
"Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
|
4324 |
"date(s)"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#: core/lib/wpbc_all_translations.php:
|
4328 |
#: inc/_bl/admin/api-settings-l.php:289
|
4329 |
msgid ""
|
4330 |
"Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
|
@@ -4332,128 +4346,128 @@ msgid ""
|
|
4332 |
"approved booking, will be automatically canceled!"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
-
#: core/lib/wpbc_all_translations.php:
|
4336 |
msgid "Set capacity based on number of visitors"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
-
#: core/lib/wpbc_all_translations.php:
|
4340 |
msgid ""
|
4341 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
4342 |
"selected visitors."
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#: core/lib/wpbc_all_translations.php:
|
4346 |
#: inc/_ps/admin/api-settings-p.php:330 inc/_ps/admin/api-settings-p.php:343
|
4347 |
#, php-format
|
4348 |
msgid "Please read more info about configuration of this parameter %shere%s"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: core/lib/wpbc_all_translations.php:
|
4352 |
msgid ""
|
4353 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
4354 |
"resource items remaining for each day."
|
4355 |
msgstr ""
|
4356 |
|
4357 |
-
#: core/lib/wpbc_all_translations.php:
|
4358 |
#, php-format
|
4359 |
msgid ""
|
4360 |
"Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
|
4361 |
"of visitors specified on the booking form."
|
4362 |
msgstr ""
|
4363 |
|
4364 |
-
#: core/lib/wpbc_all_translations.php:
|
4365 |
msgid ""
|
4366 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
4367 |
"for the resource, which can be at free booking resource items."
|
4368 |
msgstr ""
|
4369 |
|
4370 |
-
#: core/lib/wpbc_all_translations.php:
|
4371 |
#, php-format
|
4372 |
msgid ""
|
4373 |
"Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
|
4374 |
"visitors specified on the booking form."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
#: core/lib/wpbc_all_translations.php:
|
4378 |
msgid "Disable bookings in different booking resources"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
-
#: core/lib/wpbc_all_translations.php:
|
4382 |
msgid ""
|
4383 |
"Check this box to dissable reservations, which can be stored in different booking resources."
|
4384 |
msgstr ""
|
4385 |
|
4386 |
-
#: core/lib/wpbc_all_translations.php:
|
4387 |
msgid ""
|
4388 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
4389 |
"show."
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
#: core/lib/wpbc_all_translations.php:
|
4393 |
#: inc/_ps/p-toolbar.php:1213
|
4394 |
msgid "Parent"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: core/lib/wpbc_all_translations.php:
|
4398 |
#: inc/_ps/p-toolbar.php:1231
|
4399 |
msgid "Priority"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: core/lib/wpbc_all_translations.php:
|
4403 |
msgid "Max visitors"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: core/lib/wpbc_all_translations.php:
|
4407 |
msgid "Single"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
-
#: core/lib/wpbc_all_translations.php:
|
4411 |
msgid "Child"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: core/lib/wpbc_all_translations.php:
|
4415 |
msgid "Setting coupons for discount"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: core/lib/wpbc_all_translations.php:
|
4419 |
-
#: inc/_bm/m-toolbar.php:
|
4420 |
msgid "Create dates filter"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: core/lib/wpbc_all_translations.php:
|
4424 |
#: inc/_bl/admin/page-coupons.php:871
|
4425 |
msgid "Add New Discount Coupon"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: core/lib/wpbc_all_translations.php:
|
4429 |
#: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
|
4430 |
#: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
|
4431 |
msgid "Bulk Actions"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: core/lib/wpbc_all_translations.php:
|
4435 |
#: inc/_bl/admin/page-coupons.php:1170
|
4436 |
msgid "Coupon Code"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: core/lib/wpbc_all_translations.php:
|
4440 |
#: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
|
4441 |
msgid "Savings"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#: core/lib/wpbc_all_translations.php:
|
4445 |
msgid "Minimum Cost"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: core/lib/wpbc_all_translations.php:
|
4449 |
msgid "Expiration"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
-
#: core/lib/wpbc_all_translations.php:
|
4453 |
msgid "Number of usage"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
-
#: core/lib/wpbc_all_translations.php:
|
4457 |
#: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
|
4458 |
#: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
|
4459 |
#: inc/_bm/admin/page-cost.php:648 inc/_bm/admin/page-seasons.php:565
|
@@ -4462,285 +4476,285 @@ msgstr ""
|
|
4462 |
msgid "Select Booking Resource"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
-
#: core/lib/wpbc_all_translations.php:
|
4466 |
#: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
|
4467 |
#: inc/_ps/p-toolbar.php:722
|
4468 |
msgid "All resources"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: core/lib/wpbc_all_translations.php:
|
4472 |
#: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
|
4473 |
msgid "Coupon"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: core/lib/wpbc_all_translations.php:
|
4477 |
msgid "Enter coupon code."
|
4478 |
msgstr ""
|
4479 |
|
4480 |
-
#: core/lib/wpbc_all_translations.php:
|
4481 |
msgid "Enter number of fixed or percentage savings."
|
4482 |
msgstr ""
|
4483 |
|
4484 |
-
#: core/lib/wpbc_all_translations.php:
|
4485 |
msgid "Expiration Date"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
-
#: core/lib/wpbc_all_translations.php:
|
4489 |
msgid "Select Expiration Date of the coupon."
|
4490 |
msgstr ""
|
4491 |
|
4492 |
-
#: core/lib/wpbc_all_translations.php:
|
4493 |
msgid "Minimum Booking Cost"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
-
#: core/lib/wpbc_all_translations.php:
|
4497 |
msgid "Enter minimum booking cost, when coupon is applicable."
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: core/lib/wpbc_all_translations.php:
|
4501 |
msgid "Maximum number of usage"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
-
#: core/lib/wpbc_all_translations.php:
|
4505 |
msgid "Enter maximum number of times, when coupon is applicable."
|
4506 |
msgstr ""
|
4507 |
|
4508 |
-
#: core/lib/wpbc_all_translations.php:
|
4509 |
msgid "Select booking resources, where is possible to apply this coupon code."
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: core/lib/wpbc_all_translations.php:
|
4513 |
#: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
|
4514 |
#: inc/_ps/p-toolbar.php:1157
|
4515 |
msgid "Add New"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: core/lib/wpbc_all_translations.php:
|
4519 |
-
#: inc/_bl/admin/page-search.php:126 inc/
|
4520 |
-
#: inc/gateways/page-gateways.php:
|
4521 |
msgid "Use these shortcodes for customization: "
|
4522 |
msgstr ""
|
4523 |
|
4524 |
-
#: core/lib/wpbc_all_translations.php:
|
4525 |
#, php-format
|
4526 |
msgid "%s - search inside posts/pages which are part of this category, "
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#: core/lib/wpbc_all_translations.php:
|
4530 |
#, php-format
|
4531 |
msgid "%s - search inside posts/pages which have this tag, "
|
4532 |
msgstr ""
|
4533 |
|
4534 |
-
#: core/lib/wpbc_all_translations.php:
|
4535 |
#: inc/_bl/admin/page-search.php:142
|
4536 |
#, php-format
|
4537 |
msgid "%s - check-in date, "
|
4538 |
msgstr ""
|
4539 |
|
4540 |
-
#: core/lib/wpbc_all_translations.php:
|
4541 |
#: inc/_bl/admin/page-search.php:143
|
4542 |
#, php-format
|
4543 |
msgid "%s - check-out date, "
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: core/lib/wpbc_all_translations.php:
|
4547 |
#, php-format
|
4548 |
msgid "%s - default selection number of visitors, "
|
4549 |
msgstr ""
|
4550 |
|
4551 |
-
#: core/lib/wpbc_all_translations.php:
|
4552 |
#, php-format
|
4553 |
msgid "Example: %s - custom number of visitor selections\""
|
4554 |
msgstr ""
|
4555 |
|
4556 |
-
#: core/lib/wpbc_all_translations.php:
|
4557 |
#, php-format
|
4558 |
msgid "%s - search button, "
|
4559 |
msgstr ""
|
4560 |
|
4561 |
-
#: core/lib/wpbc_all_translations.php:
|
4562 |
#: inc/_bl/admin/page-search.php:148
|
4563 |
msgid "HTML tags is accepted."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: core/lib/wpbc_all_translations.php:
|
4567 |
#, php-format
|
4568 |
msgid "%s - resource title, "
|
4569 |
msgstr ""
|
4570 |
|
4571 |
-
#: core/lib/wpbc_all_translations.php:
|
4572 |
#: inc/_bl/admin/page-search.php:129
|
4573 |
#, php-format
|
4574 |
msgid "%s - link to the page with booking form, "
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#: core/lib/wpbc_all_translations.php:
|
4578 |
#, php-format
|
4579 |
msgid "%s - availability of booking resource, "
|
4580 |
msgstr ""
|
4581 |
|
4582 |
-
#: core/lib/wpbc_all_translations.php:
|
4583 |
#, php-format
|
4584 |
msgid "%s - maximum number of visitors for the booking resource, "
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#: core/lib/wpbc_all_translations.php:
|
4588 |
#, php-format
|
4589 |
msgid "%s - cost of booking the resource, "
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: core/lib/wpbc_all_translations.php:
|
4593 |
#, php-format
|
4594 |
msgid "%s - featured image, taken from the featured image associated with the post, "
|
4595 |
msgstr ""
|
4596 |
|
4597 |
-
#: core/lib/wpbc_all_translations.php:
|
4598 |
#, php-format
|
4599 |
msgid "%s - booking info, taken from the excerpt associated with the post, "
|
4600 |
msgstr ""
|
4601 |
|
4602 |
-
#: core/lib/wpbc_all_translations.php:
|
4603 |
#: inc/_ps/form/class-wpbc-form-help.php:677
|
4604 |
msgid "Full cost of the booking."
|
4605 |
msgstr ""
|
4606 |
|
4607 |
-
#: core/lib/wpbc_all_translations.php:
|
4608 |
#: inc/_ps/form/class-wpbc-form-help.php:679
|
4609 |
msgid "Cost of the booking for the selected dates only."
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: core/lib/wpbc_all_translations.php:
|
4613 |
#: inc/_ps/form/class-wpbc-form-help.php:681
|
4614 |
msgid "Additional cost, which depends on the fields selection in the form."
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: core/lib/wpbc_all_translations.php:
|
4618 |
#: inc/_ps/form/class-wpbc-form-help.php:683
|
4619 |
msgid "The deposit cost of the booking."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: core/lib/wpbc_all_translations.php:
|
4623 |
#: inc/_ps/form/class-wpbc-form-help.php:685
|
4624 |
msgid "Balance cost of the booking - difference between deposit and full cost."
|
4625 |
msgstr ""
|
4626 |
|
4627 |
-
#: core/lib/wpbc_all_translations.php:
|
4628 |
msgid "hour(s)"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
-
#: core/lib/wpbc_all_translations.php:
|
4632 |
#: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
|
4633 |
msgid "day(s)"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: core/lib/wpbc_all_translations.php:
|
4637 |
msgid "Cache expiration"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
-
#: core/lib/wpbc_all_translations.php:
|
4641 |
msgid "Select time of cache expiration"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#: core/lib/wpbc_all_translations.php:
|
4645 |
-
#: inc/_bl/admin/page-search.php:
|
4646 |
msgid "Search Settings"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: core/lib/wpbc_all_translations.php:
|
4650 |
msgid "Cache Updated"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#: core/lib/wpbc_all_translations.php:
|
4654 |
-
#: inc/_bl/admin/page-search.php:
|
4655 |
msgid "Search Availability Form"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: core/lib/wpbc_all_translations.php:
|
4659 |
-
#: inc/_bl/admin/page-search.php:
|
4660 |
msgid "Search Results"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#: core/lib/wpbc_all_translations.php:
|
4664 |
-
#: inc/_bl/admin/page-search.php:
|
4665 |
msgid "Search Cache"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
-
#: core/lib/wpbc_all_translations.php:
|
4669 |
#, php-format
|
4670 |
msgid ""
|
4671 |
"If you do not see search results at front-end side of your website, please check troubleshooting "
|
4672 |
"instruction %shere%s"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: core/lib/wpbc_all_translations.php:
|
4676 |
msgid "CSS customization of search form and search results you can make at this file"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: core/lib/wpbc_all_translations.php:
|
4680 |
-
#: inc/_bl/admin/page-search.php:
|
4681 |
msgid "Select Template"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
-
#: core/lib/wpbc_all_translations.php:
|
4685 |
msgid "Inlinee Search Form Template"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
-
#: core/lib/wpbc_all_translations.php:
|
4689 |
msgid "Horizontal Search Form Template"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: core/lib/wpbc_all_translations.php:
|
4693 |
msgid "Standard Search Form Template"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: core/lib/wpbc_all_translations.php:
|
4697 |
#: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
|
4698 |
-
#: inc/_ps/admin/page-settings-form.php:
|
4699 |
msgid "Reset"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: core/lib/wpbc_all_translations.php:
|
4703 |
-
#: inc/_ps/admin/page-settings-form.php:
|
4704 |
msgid "Reset current Form"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#: core/lib/wpbc_all_translations.php:
|
4708 |
msgid "Cache will expire:"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#: core/lib/wpbc_all_translations.php:
|
4712 |
#, php-format
|
4713 |
msgid "Found: %s booking forms inside of posts or pages "
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: core/lib/wpbc_all_translations.php:
|
4717 |
msgid "Page"
|
4718 |
msgstr ""
|
4719 |
|
4720 |
-
#: core/lib/wpbc_all_translations.php:
|
4721 |
msgid "Reset Search Cache"
|
4722 |
msgstr ""
|
4723 |
|
4724 |
-
#: core/lib/wpbc_all_translations.php:
|
4725 |
msgid ""
|
4726 |
"Try selecting fewer visitors. The number of visitors may be more than the number of available "
|
4727 |
"units on selected day(s)!"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: core/lib/wpbc_all_translations.php:
|
4731 |
msgid "coupon"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: core/lib/wpbc_all_translations.php:
|
4735 |
msgid "discount"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: core/lib/wpbc_all_translations.php:
|
4739 |
msgid "Please select check-in and check-out days!"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: core/lib/wpbc_all_translations.php:
|
4743 |
-
#: inc/_bl/biz_l.php:
|
4744 |
#, php-format
|
4745 |
msgid ""
|
4746 |
"Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
|
@@ -4748,173 +4762,173 @@ msgid ""
|
|
4748 |
"page and try other days."
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: core/lib/wpbc_all_translations.php:
|
4752 |
#, php-format
|
4753 |
msgid "The folowing pending booking(s): %s deleted."
|
4754 |
msgstr ""
|
4755 |
|
4756 |
-
#: core/lib/wpbc_all_translations.php:
|
4757 |
msgid "Book now"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
-
#: core/lib/wpbc_all_translations.php:
|
4761 |
#: inc/_bl/wpdev-booking-search-widget.php:67
|
4762 |
msgid "Search availability"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: core/lib/wpbc_all_translations.php:
|
4766 |
msgid "Search results."
|
4767 |
msgstr ""
|
4768 |
|
4769 |
-
#: core/lib/wpbc_all_translations.php:
|
4770 |
msgid "Nothing found."
|
4771 |
msgstr ""
|
4772 |
|
4773 |
-
#: core/lib/wpbc_all_translations.php:
|
4774 |
msgid "Title of search widget"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
-
#: core/lib/wpbc_all_translations.php:
|
4778 |
msgid "Title of search results"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: core/lib/wpbc_all_translations.php:
|
4782 |
#, php-format
|
4783 |
msgid "Please type the %sTitle of search results%s."
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: core/lib/wpbc_all_translations.php:
|
4787 |
msgid "Nothing found message"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: core/lib/wpbc_all_translations.php:
|
4791 |
#, php-format
|
4792 |
msgid "Please type the %smessage ,what is showing, when nothing found%s."
|
4793 |
msgstr ""
|
4794 |
|
4795 |
-
#: core/lib/wpbc_all_translations.php:
|
4796 |
msgid "URL of Search Results"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#: core/lib/wpbc_all_translations.php:
|
4800 |
#, php-format
|
4801 |
msgid ""
|
4802 |
"Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
|
4803 |
"show."
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: core/lib/wpbc_all_translations.php:
|
4807 |
#: inc/_mu/multiuser.php:634
|
4808 |
msgid "Weekend"
|
4809 |
msgstr ""
|
4810 |
|
4811 |
-
#: core/lib/wpbc_all_translations.php:
|
4812 |
#: inc/_mu/multiuser.php:636
|
4813 |
msgid "High season"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: core/lib/wpbc_all_translations.php:
|
4817 |
msgid "Limit available days from today"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: core/lib/wpbc_all_translations.php:
|
4821 |
msgid "Select number of available days in calendar start from today."
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: core/lib/wpbc_all_translations.php:
|
4825 |
msgid "Unavailable time before / after booking"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
-
#: core/lib/wpbc_all_translations.php:
|
4829 |
msgid ""
|
4830 |
"This feature is applying only for bookings for specific timeslots, or if activated check in/out "
|
4831 |
"time option."
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: core/lib/wpbc_all_translations.php:
|
4835 |
#: inc/_bm/admin/api-settings-m.php:134
|
4836 |
msgid "Before booking"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
-
#: core/lib/wpbc_all_translations.php:
|
4840 |
#: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
|
4841 |
#: inc/_bm/admin/api-settings-m.php:144
|
4842 |
msgid "Select unavailable time interval."
|
4843 |
msgstr ""
|
4844 |
|
4845 |
-
#: core/lib/wpbc_all_translations.php:
|
4846 |
#: inc/_bm/admin/api-settings-m.php:143
|
4847 |
msgid "After booking"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: core/lib/wpbc_all_translations.php:
|
4851 |
msgid "Showing cost in date cell"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
-
#: core/lib/wpbc_all_translations.php:
|
4855 |
#, php-format
|
4856 |
msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: core/lib/wpbc_all_translations.php:
|
4860 |
msgid "Currency symbol"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#: core/lib/wpbc_all_translations.php:
|
4864 |
#, php-format
|
4865 |
msgid ""
|
4866 |
"Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
|
4867 |
"currency symbols%s"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
-
#: core/lib/wpbc_all_translations.php:
|
4871 |
msgid "Showing cost in tooltip"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
-
#: core/lib/wpbc_all_translations.php:
|
4875 |
msgid ""
|
4876 |
" Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
|
4877 |
"calendar(s)."
|
4878 |
msgstr ""
|
4879 |
|
4880 |
-
#: core/lib/wpbc_all_translations.php:
|
4881 |
msgid "Cost Title"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
-
#: core/lib/wpbc_all_translations.php:
|
4885 |
#, php-format
|
4886 |
msgid "Type your %scost%s description"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
-
#: core/lib/wpbc_all_translations.php:
|
4890 |
-
#: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:
|
4891 |
msgid "Custom Forms"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
-
#: core/lib/wpbc_all_translations.php:
|
4895 |
msgid "Configuration of availability for booking resources"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
-
#: core/lib/wpbc_all_translations.php:
|
4899 |
msgid "Availability Settings"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
-
#: core/lib/wpbc_all_translations.php:
|
4903 |
#: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1186
|
4904 |
msgid "Show Children Resources"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
-
#: core/lib/wpbc_all_translations.php:
|
4908 |
#: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1188
|
4909 |
msgid "Hide Children Resources"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: core/lib/wpbc_all_translations.php:
|
4913 |
#: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
|
4914 |
msgid "Set Availability"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
-
#: core/lib/wpbc_all_translations.php:
|
4918 |
#: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
|
4919 |
#, php-format
|
4920 |
msgid ""
|
@@ -4922,681 +4936,681 @@ msgid ""
|
|
4922 |
"booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: core/lib/wpbc_all_translations.php:
|
4926 |
#: inc/_bm/admin/page-cost.php:581 inc/_ps/admin/page-resources.php:463
|
4927 |
msgid "Resource Name"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
-
#: core/lib/wpbc_all_translations.php:
|
4931 |
#: inc/_bm/admin/page-availability.php:895
|
4932 |
msgid "All days"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
-
#: core/lib/wpbc_all_translations.php:
|
4936 |
#: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
|
4937 |
#: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
|
4938 |
#: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
|
4939 |
msgid "available"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
-
#: core/lib/wpbc_all_translations.php:
|
4943 |
#: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
|
4944 |
#: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
|
4945 |
#: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
|
4946 |
msgid "unavailable"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
-
#: core/lib/wpbc_all_translations.php:
|
4950 |
#, php-format
|
4951 |
msgid "and %s on seasons:"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#: core/lib/wpbc_all_translations.php:
|
4955 |
#, php-format
|
4956 |
msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: core/lib/wpbc_all_translations.php:
|
4960 |
#: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
|
4961 |
#: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
|
4962 |
#: inc/_bm/admin/page-cost-valuation.php:148
|
4963 |
msgid "Hide season filters"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
-
#: core/lib/wpbc_all_translations.php:
|
4967 |
#: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
|
4968 |
#: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
|
4969 |
#: inc/_bm/admin/page-cost-valuation.php:153
|
4970 |
msgid "Show all exist season filters"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: core/lib/wpbc_all_translations.php:
|
4974 |
-
#: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:
|
4975 |
msgid "Enabled"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
-
#: core/lib/wpbc_all_translations.php:
|
4979 |
msgid "Customization of additional cost, which depend from form fields"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
-
#: core/lib/wpbc_all_translations.php:
|
4983 |
msgid "Advanced Cost Settings"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
-
#: core/lib/wpbc_all_translations.php:
|
4987 |
msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
|
4988 |
msgstr ""
|
4989 |
|
4990 |
-
#: core/lib/wpbc_all_translations.php:
|
4991 |
#, php-format
|
4992 |
msgid ""
|
4993 |
"Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
|
4994 |
"%sbooking form%s."
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: core/lib/wpbc_all_translations.php:
|
4998 |
#: inc/_bm/admin/page-cost-deposit.php:181
|
4999 |
msgid "Deposit type"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
-
#: core/lib/wpbc_all_translations.php:
|
5003 |
msgid "of total cost"
|
5004 |
msgstr ""
|
5005 |
|
5006 |
-
#: core/lib/wpbc_all_translations.php:
|
5007 |
#: inc/_bs/admin/api-settings-s.php:898
|
5008 |
msgid "night"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: core/lib/wpbc_all_translations.php:
|
5012 |
msgid "as additional sum"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: core/lib/wpbc_all_translations.php:
|
5016 |
msgid "Enter additional cost in formats:"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
#: core/lib/wpbc_all_translations.php:
|
5020 |
#, php-format
|
5021 |
msgid ""
|
5022 |
"For example, if the original cost of the booking is %s, then after applying additional costs the "
|
5023 |
"total cost will be folowing"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: core/lib/wpbc_all_translations.php:
|
5027 |
msgid "Enter fixed cost"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
-
#: core/lib/wpbc_all_translations.php:
|
5031 |
#: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
|
5032 |
#: inc/_bm/admin/page-cost-advanced.php:681
|
5033 |
#, php-format
|
5034 |
msgid "%s, then total cost will be %s"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
-
#: core/lib/wpbc_all_translations.php:
|
5038 |
msgid "Enter percentage of the entire booking"
|
5039 |
msgstr ""
|
5040 |
|
5041 |
-
#: core/lib/wpbc_all_translations.php:
|
5042 |
msgid "Enter fixed amount for each selected day"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
-
#: core/lib/wpbc_all_translations.php:
|
5046 |
#, php-format
|
5047 |
msgid "%s, then total cost will be (if selected 3 days) %s"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
-
#: core/lib/wpbc_all_translations.php:
|
5051 |
#: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
|
5052 |
#: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
|
5053 |
msgid "or"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
-
#: core/lib/wpbc_all_translations.php:
|
5057 |
msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
-
#: core/lib/wpbc_all_translations.php:
|
5061 |
-
#: inc/_bm/admin/page-cost-advanced.php:
|
5062 |
#, php-format
|
5063 |
msgid "Please check more info about configuration of this cost settings on this %spage%s."
|
5064 |
msgstr ""
|
5065 |
|
5066 |
-
#: core/lib/wpbc_all_translations.php:
|
5067 |
msgid "Set Deposit"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: core/lib/wpbc_all_translations.php:
|
5071 |
msgid "deposit payment for booking resource"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
-
#: core/lib/wpbc_all_translations.php:
|
5075 |
#: inc/_bm/admin/page-cost-deposit.php:162
|
5076 |
msgid "Deposit amount"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: core/lib/wpbc_all_translations.php:
|
5080 |
#: inc/_bm/admin/page-cost-early-late-booking.php:203
|
5081 |
#: inc/_bm/admin/page-cost-early-late-booking.php:404
|
5082 |
msgid "fixed total in"
|
5083 |
msgstr ""
|
5084 |
|
5085 |
-
#: core/lib/wpbc_all_translations.php:
|
5086 |
#: inc/_bm/admin/page-cost-early-late-booking.php:204
|
5087 |
#: inc/_bm/admin/page-cost-early-late-booking.php:405
|
5088 |
msgid "of payment"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: core/lib/wpbc_all_translations.php:
|
5092 |
#: inc/_bm/admin/page-cost-early-late-booking.php:213
|
5093 |
#: inc/_bm/admin/page-cost-early-late-booking.php:414
|
5094 |
msgid "Conditions"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
-
#: core/lib/wpbc_all_translations.php:
|
5098 |
#, php-format
|
5099 |
msgid ""
|
5100 |
"Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: core/lib/wpbc_all_translations.php:
|
5104 |
#, php-format
|
5105 |
msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
-
#: core/lib/wpbc_all_translations.php:
|
5109 |
#: inc/_bm/admin/page-cost-early-late-booking.php:280
|
5110 |
#: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
|
5111 |
msgid "Any days"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
-
#: core/lib/wpbc_all_translations.php:
|
5115 |
msgid "Deposit payment total"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
-
#: core/lib/wpbc_all_translations.php:
|
5119 |
msgid "Set Rates"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: core/lib/wpbc_all_translations.php:
|
5123 |
#: inc/_bm/admin/page-cost.php:676 inc/_bm/admin/page-cost.php:677
|
5124 |
msgid "Rates"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
-
#: core/lib/wpbc_all_translations.php:
|
5128 |
msgid "Seasonal price"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
-
#: core/lib/wpbc_all_translations.php:
|
5132 |
#: inc/_bm/admin/page-cost-valuation.php:198
|
5133 |
msgid "Season"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
-
#: core/lib/wpbc_all_translations.php:
|
5137 |
#, php-format
|
5138 |
msgid ""
|
5139 |
"Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
|
5140 |
"booking resource (%s) or %sAdd a new seasonal filter%s"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
-
#: core/lib/wpbc_all_translations.php:
|
5144 |
#: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
|
5145 |
msgid "Set Valuation Days"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
-
#: core/lib/wpbc_all_translations.php:
|
5149 |
#: inc/_mu/admin/page-users.php:437
|
5150 |
msgid "Status"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
-
#: core/lib/wpbc_all_translations.php:
|
5154 |
msgid "Costs"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
-
#: core/lib/wpbc_all_translations.php:
|
5158 |
msgid "Add new cost"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
-
#: core/lib/wpbc_all_translations.php:
|
5162 |
#, php-format
|
5163 |
msgid ""
|
5164 |
"Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
|
5165 |
"the list."
|
5166 |
msgstr ""
|
5167 |
|
5168 |
-
#: core/lib/wpbc_all_translations.php:
|
5169 |
#, php-format
|
5170 |
msgid ""
|
5171 |
"Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
|
5172 |
"terms %s"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: core/lib/wpbc_all_translations.php:
|
5176 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
|
5177 |
msgid "Together"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
-
#: core/lib/wpbc_all_translations.php:
|
5181 |
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
|
5182 |
#: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
|
5183 |
msgid "For"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: core/lib/wpbc_all_translations.php:
|
5187 |
#, php-format
|
5188 |
msgid "%s and %s terms have higher priority than a range %s days."
|
5189 |
msgstr ""
|
5190 |
|
5191 |
-
#: core/lib/wpbc_all_translations.php:
|
5192 |
#, php-format
|
5193 |
msgid "%s - definition of check-out date."
|
5194 |
msgstr ""
|
5195 |
|
5196 |
-
#: core/lib/wpbc_all_translations.php:
|
5197 |
#: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
|
5198 |
#: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
|
5199 |
#: inc/_ps/form/class-wpbc-form-help.php:535
|
5200 |
msgid "Example"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
-
#: core/lib/wpbc_all_translations.php:
|
5204 |
msgid ""
|
5205 |
"Specific cost will take affect, only if it active (the box at the left side is checked) and if "
|
5206 |
"\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
|
5207 |
msgstr ""
|
5208 |
|
5209 |
-
#: core/lib/wpbc_all_translations.php:
|
5210 |
#: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
|
5211 |
#: inc/_bm/biz_m.php:252
|
5212 |
msgid " for all days!"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#: core/lib/wpbc_all_translations.php:
|
5216 |
#: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
|
5217 |
msgid "from the cost of 1 day "
|
5218 |
msgstr ""
|
5219 |
|
5220 |
-
#: core/lib/wpbc_all_translations.php:
|
5221 |
#: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
|
5222 |
msgid "per 1 day"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#: core/lib/wpbc_all_translations.php:
|
5226 |
#: inc/_bm/admin/page-seasons.php:1564
|
5227 |
msgid "to"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: core/lib/wpbc_all_translations.php:
|
5231 |
#: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
|
5232 |
#, php-format
|
5233 |
msgid "Additional cost in %s per 1 day"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
-
#: core/lib/wpbc_all_translations.php:
|
5237 |
msgid "Customization of rates, valuation days cost and deposit amount "
|
5238 |
msgstr ""
|
5239 |
|
5240 |
-
#: core/lib/wpbc_all_translations.php:
|
5241 |
msgid "Costs and Rates Settings"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
-
#: core/lib/wpbc_all_translations.php:
|
5245 |
#: inc/_bm/admin/page-cost.php:228
|
5246 |
msgid "Set Rate"
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#: core/lib/wpbc_all_translations.php:
|
5250 |
#: inc/_bm/admin/page-cost.php:230
|
5251 |
msgid "Set Deposit Amount"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: core/lib/wpbc_all_translations.php:
|
5255 |
#: inc/_bm/admin/page-cost.php:684
|
5256 |
msgid "Valuation days"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: core/lib/wpbc_all_translations.php:
|
5260 |
-
#: inc/_bm/admin/page-cost.php:691 inc/gateways/page-gateways.php:
|
5261 |
msgid "Deposit"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: core/lib/wpbc_all_translations.php:
|
5265 |
msgid "Customizaton of Season Filters"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
-
#: core/lib/wpbc_all_translations.php:
|
5269 |
#: inc/_bm/admin/page-seasons.php:815
|
5270 |
msgid "Specific Dates Filter"
|
5271 |
msgstr ""
|
5272 |
|
5273 |
-
#: core/lib/wpbc_all_translations.php:
|
5274 |
#: inc/_bm/admin/page-seasons.php:821
|
5275 |
msgid "Conditional Dates Filter"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: core/lib/wpbc_all_translations.php:
|
5279 |
#: inc/_bm/admin/page-seasons.php:1257
|
5280 |
msgid "Filter Name"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: core/lib/wpbc_all_translations.php:
|
5284 |
#: inc/_bm/admin/page-seasons.php:1258
|
5285 |
msgid "Type filter name"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: core/lib/wpbc_all_translations.php:
|
5289 |
msgid "Weekdays"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: core/lib/wpbc_all_translations.php:
|
5293 |
msgid "Months"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: core/lib/wpbc_all_translations.php:
|
5297 |
#: inc/_bm/admin/page-seasons.php:1283
|
5298 |
msgid "January"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
-
#: core/lib/wpbc_all_translations.php:
|
5302 |
#: inc/_bm/admin/page-seasons.php:1284
|
5303 |
msgid "February"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#: core/lib/wpbc_all_translations.php:
|
5307 |
#: inc/_bm/admin/page-seasons.php:1285
|
5308 |
msgid "March"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#: core/lib/wpbc_all_translations.php:
|
5312 |
#: inc/_bm/admin/page-seasons.php:1286
|
5313 |
msgid "April"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: core/lib/wpbc_all_translations.php:
|
5317 |
#: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
|
5318 |
msgid "May"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: core/lib/wpbc_all_translations.php:
|
5322 |
#: inc/_bm/admin/page-seasons.php:1288
|
5323 |
msgid "June"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#: core/lib/wpbc_all_translations.php:
|
5327 |
#: inc/_bm/admin/page-seasons.php:1289
|
5328 |
msgid "July"
|
5329 |
msgstr ""
|
5330 |
|
5331 |
-
#: core/lib/wpbc_all_translations.php:
|
5332 |
#: inc/_bm/admin/page-seasons.php:1290
|
5333 |
msgid "August"
|
5334 |
msgstr ""
|
5335 |
|
5336 |
-
#: core/lib/wpbc_all_translations.php:
|
5337 |
#: inc/_bm/admin/page-seasons.php:1291
|
5338 |
msgid "September"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: core/lib/wpbc_all_translations.php:
|
5342 |
#: inc/_bm/admin/page-seasons.php:1292
|
5343 |
msgid "October"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#: core/lib/wpbc_all_translations.php:
|
5347 |
#: inc/_bm/admin/page-seasons.php:1293
|
5348 |
msgid "November"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
-
#: core/lib/wpbc_all_translations.php:
|
5352 |
#: inc/_bm/admin/page-seasons.php:1294
|
5353 |
msgid "December"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: core/lib/
|
5357 |
msgid "Years"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: core/lib/
|
5361 |
#: inc/_bm/admin/page-seasons.php:1487
|
5362 |
msgid "Mo"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: core/lib/
|
5366 |
#: inc/_bm/admin/page-seasons.php:1487
|
5367 |
msgid "Tu"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
-
#: core/lib/
|
5371 |
#: inc/_bm/admin/page-seasons.php:1487
|
5372 |
msgid "We"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
-
#: core/lib/
|
5376 |
#: inc/_bm/admin/page-seasons.php:1487
|
5377 |
msgid "Th"
|
5378 |
msgstr ""
|
5379 |
|
5380 |
-
#: core/lib/
|
5381 |
#: inc/_bm/admin/page-seasons.php:1487
|
5382 |
msgid "Fr"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: core/lib/
|
5386 |
#: inc/_bm/admin/page-seasons.php:1487
|
5387 |
msgid "Sa"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: core/lib/
|
5391 |
#: inc/_bm/admin/page-seasons.php:1487
|
5392 |
msgid "Su"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
-
#: core/lib/
|
5396 |
msgid "Jan"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#: core/lib/
|
5400 |
msgid "Feb"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: core/lib/
|
5404 |
msgid "Mar"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: core/lib/
|
5408 |
msgid "Apr"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#: core/lib/
|
5412 |
msgid "Jun"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
-
#: core/lib/
|
5416 |
msgid "Jul"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
-
#: core/lib/
|
5420 |
msgid "Aug"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
-
#: core/lib/
|
5424 |
msgid "Sep"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: core/lib/
|
5428 |
msgid "Oct"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
-
#: core/lib/
|
5432 |
msgid "Nov"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
-
#: core/lib/
|
5436 |
msgid "Dec"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#: core/lib/
|
5440 |
#: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
|
5441 |
#: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
|
5442 |
msgid "No days"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: core/lib/
|
5446 |
msgid "time"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: core/lib/
|
5450 |
msgid "Every"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: core/lib/
|
5454 |
msgid "Each day "
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#: core/lib/
|
5458 |
msgid "on each day "
|
5459 |
msgstr ""
|
5460 |
|
5461 |
-
#: core/lib/
|
5462 |
msgid "On each "
|
5463 |
msgstr ""
|
5464 |
|
5465 |
-
#: core/lib/
|
5466 |
msgid "on each "
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: core/lib/
|
5470 |
msgid "of every month "
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: core/lib/
|
5474 |
msgid "of"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: core/lib/
|
5478 |
msgid "for all days!"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: core/lib/
|
5482 |
msgid "Standard booking resource cost"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
-
#: core/lib/
|
5486 |
msgid "Total booking resource cost"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
-
#: core/lib/
|
5490 |
msgid "Delete selected booking form"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
-
#: core/lib/
|
5494 |
msgid "Do you really want to delete selected booking form ?"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
-
#: core/lib/
|
5498 |
msgid "Add New Custom Form"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
-
#: core/lib/
|
5502 |
msgid "Type the name of booking form"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
-
#: core/lib/
|
5506 |
msgid "Create"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: core/lib/
|
5510 |
msgid "Create new form"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
-
#: core/lib/
|
5514 |
msgid "There are no extended booking forms"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#: core/lib/
|
5518 |
msgid "Create conditional days filter"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
-
#: core/lib/
|
5522 |
#: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
|
5523 |
msgid "Apartment#1"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: core/lib/
|
5527 |
#: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
|
5528 |
msgid "Apartment#2"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: core/lib/
|
5532 |
#: inc/_ps/admin/activation-p.php:48
|
5533 |
msgid "Apartment#3"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#: core/lib/
|
5537 |
msgid "Range days"
|
5538 |
msgstr ""
|
5539 |
|
5540 |
-
#: core/lib/
|
5541 |
#, php-format
|
5542 |
msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#: core/lib/
|
5546 |
#, php-format
|
5547 |
msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: core/lib/
|
5551 |
#: inc/_bs/admin/api-settings-s.php:138
|
5552 |
msgid "Days selection number"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: core/lib/
|
5556 |
#, php-format
|
5557 |
msgid "Type your %snumber of days for range selection%s"
|
5558 |
msgstr ""
|
5559 |
|
5560 |
-
#: core/lib/
|
5561 |
#: inc/_bs/admin/api-settings-s.php:211
|
5562 |
msgid "Specific day(s) of week"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#: core/lib/
|
5566 |
#: inc/_bs/admin/api-settings-s.php:215
|
5567 |
msgid "Any day of week"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: core/lib/
|
5571 |
#: inc/_bs/admin/api-settings-s.php:223
|
5572 |
msgid "Start day of range"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: core/lib/
|
5576 |
#: inc/_bs/admin/api-settings-s.php:252
|
5577 |
msgid "Select your start day of range selection at week"
|
5578 |
msgstr ""
|
5579 |
|
5580 |
-
#: core/lib/
|
5581 |
#: inc/_bs/admin/api-settings-s.php:157
|
5582 |
msgid "Min"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#: core/lib/
|
5586 |
#: inc/_bs/admin/api-settings-s.php:175
|
5587 |
msgid "Max"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: core/lib/
|
5591 |
#, php-format
|
5592 |
msgid "Select your %sminimum and maximum number of days for range selection%s"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
-
#: core/lib/
|
5596 |
msgid "Specific days selections"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: core/lib/
|
5600 |
#, php-format
|
5601 |
msgid ""
|
5602 |
"Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
|
@@ -5604,771 +5618,772 @@ msgid ""
|
|
5604 |
"this: %s) or combination (example:%s, its the same like this: %s)"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#: core/lib/
|
5608 |
msgid "Use time selections as recurrent time slots"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#: core/lib/
|
5612 |
msgid ""
|
5613 |
"Check this box if you want to use recurrent time to reserve several days. This means that middle "
|
5614 |
"days will be partially booked by actual times, otherwise the time in the booking form will be "
|
5615 |
"used as check-in/check-out time for the first and last day of the reservation."
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: core/lib/
|
5619 |
msgid "Check this option, to use check in/out time during booking process. "
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: core/lib/
|
5623 |
#, php-format
|
5624 |
msgid "%s Important!%s This will overwrite any times selection in your booking form."
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: core/lib/
|
5628 |
msgid "Check-in time"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: core/lib/
|
5632 |
#, php-format
|
5633 |
msgid "Type your %sCheck-in%s time of booking"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#: core/lib/
|
5637 |
msgid "Check-Out time"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
-
#: core/lib/
|
5641 |
#, php-format
|
5642 |
msgid "Type your %sCheck-Out%s time of booking"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
-
#: core/lib/
|
5646 |
msgid "Change over days as triangles"
|
5647 |
msgstr ""
|
5648 |
|
5649 |
-
#: core/lib/
|
5650 |
msgid "Check this option, to show change over days as triangles. "
|
5651 |
msgstr ""
|
5652 |
|
5653 |
-
#: core/lib/
|
5654 |
msgid "Title of booked timeslot(s)"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
-
#: core/lib/
|
5658 |
#, php-format
|
5659 |
msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
-
#: core/lib/
|
5663 |
msgid "Time Format"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
#: core/lib/
|
5667 |
#, php-format
|
5668 |
msgid ""
|
5669 |
"Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#: core/lib/
|
5673 |
msgid "Auto approve all new bookings"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: core/lib/
|
5677 |
#, php-format
|
5678 |
msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: core/lib/
|
5682 |
#, php-format
|
5683 |
msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
|
5684 |
msgstr ""
|
5685 |
|
5686 |
-
#: core/lib/
|
5687 |
msgid "Cancel bookings older"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#: core/lib/
|
5691 |
msgid "Cancel only pending, unpaid bookings, which are older than this selection."
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: core/lib/
|
5695 |
msgid "Cancellation email sent"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: core/lib/
|
5699 |
#, php-format
|
5700 |
msgid "Check this box to %ssend%s cancellation email for this resource."
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#: core/lib/
|
5704 |
#: inc/_bs/admin/api-settings-s.php:560
|
5705 |
msgid "Reason for cancellation"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: core/lib/
|
5709 |
#, php-format
|
5710 |
msgid "Type the reason for %scancellation%s for the email template."
|
5711 |
msgstr ""
|
5712 |
|
5713 |
-
#: core/lib/
|
5714 |
msgid "Payment request"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
-
#: core/lib/
|
5718 |
msgid "Customization of email template, which is sending to Visitor after payment request"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
-
#: core/lib/
|
5722 |
msgid "Email with Payment Request which is sending to Visitor."
|
5723 |
msgstr ""
|
5724 |
|
5725 |
-
#: core/lib/
|
5726 |
msgid "Error! Please reset your check-in/check-out dates above."
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
#: core/lib/
|
5730 |
msgid ""
|
5731 |
"Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
|
5732 |
"another date or time."
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#: core/lib/
|
5736 |
msgid ""
|
5737 |
"End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
|
5738 |
"also be earlier that the start time, if only 1 day was selected! Please choose another date or "
|
5739 |
"time."
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: core/lib/
|
5743 |
msgid "The time(s) may be booked, or already in the past!"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
-
#: core/lib/
|
5747 |
msgid "Cost saved successfully"
|
5748 |
msgstr ""
|
5749 |
|
5750 |
-
#: core/lib/
|
5751 |
msgid "Cost is not correct. It must be greater than 0"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: core/lib/
|
5755 |
msgid "Request has been sent"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
-
#: core/lib/
|
5759 |
msgid "Request has failed"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
-
#: core/lib/
|
5763 |
msgid "The payment status is changed successfully"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: core/lib/
|
5767 |
msgid "The changing of payment status is failed"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: core/lib/
|
5771 |
msgid "deposit"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: core/lib/
|
5775 |
msgid "Total cost"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: core/lib/
|
5779 |
msgid "balance"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
-
#: core/lib/
|
5783 |
#: inc/_bs/s-toolbar.php:94
|
5784 |
msgid "Payment status"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: core/lib/
|
5788 |
msgid "Any Status"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: core/lib/
|
5792 |
msgid "Unknown Status"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: core/lib/
|
5796 |
msgid "Not Completed"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: core/lib/
|
5800 |
-
#: inc/_bs/lib_s.php:
|
5801 |
msgid "Failed"
|
5802 |
msgstr ""
|
5803 |
|
5804 |
-
#: core/lib/
|
5805 |
msgid "min"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
-
#: core/lib/
|
5809 |
msgid "max"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
-
#: core/lib/
|
5813 |
-
#: inc/_bs/lib_s.php:
|
5814 |
msgid "Completed"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
-
#: core/lib/
|
5818 |
msgid "In-Progress"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
-
#: core/lib/
|
5822 |
msgid "Partially paid"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: core/lib/
|
5826 |
msgid "Cancelled"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: core/lib/
|
5830 |
msgid "Refunded"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: core/lib/
|
5834 |
msgid "Fraud"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: core/lib/
|
5838 |
msgid "!Paid OK"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: core/lib/
|
5842 |
msgid "Unknown status"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
-
#: core/lib/
|
5846 |
msgid "Processed"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
-
#: core/lib/
|
5850 |
msgid "Canceled_Reversal"
|
5851 |
msgstr ""
|
5852 |
|
5853 |
-
#: core/lib/
|
5854 |
msgid "Denied"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: core/lib/
|
5858 |
msgid "Expired"
|
5859 |
msgstr ""
|
5860 |
|
5861 |
-
#: core/lib/
|
5862 |
msgid "Partially_Refunded"
|
5863 |
msgstr ""
|
5864 |
|
5865 |
-
#: core/lib/
|
5866 |
msgid "Reversed"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
-
#: core/lib/
|
5870 |
msgid "Voided"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: core/lib/
|
5874 |
msgid "Not authed"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: core/lib/
|
5878 |
msgid "Malformed"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: core/lib/
|
5882 |
msgid "Invalid"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: core/lib/
|
5886 |
msgid "Abort"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
-
#: core/lib/
|
5890 |
msgid "Rejected"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#: core/lib/
|
5894 |
msgid "Suspended"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: core/lib/
|
5898 |
msgid "Send payment request to visitor"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
-
#: core/lib/
|
5902 |
#: inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:131 inc/_ps/p-toolbar.php:507
|
5903 |
msgid "Print"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
-
#: core/lib/
|
5907 |
msgid "Save cost"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
-
#: core/lib/
|
5911 |
msgid "Change status"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#: core/lib/
|
5915 |
msgid "Send payment request to customer"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: core/lib/
|
5919 |
#, php-format
|
5920 |
msgid "Type your %sreason for payment%s request"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: core/lib/
|
5924 |
msgid "Send Request"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: core/lib/
|
5928 |
msgid "Auto-fill form"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: core/lib/
|
5932 |
msgid "Suite"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
-
#: core/lib/
|
5936 |
#: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
|
5937 |
msgid "User"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
-
#: core/lib/
|
5941 |
#: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
|
5942 |
#: inc/_mu/admin/page-users.php:599
|
5943 |
msgid "Super Admin"
|
5944 |
msgstr ""
|
5945 |
|
5946 |
-
#: core/lib/
|
5947 |
#: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
|
5948 |
#: inc/_mu/admin/page-users.php:607
|
5949 |
msgid "Regular User"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
-
#: core/lib/
|
5953 |
msgid "Inactive User"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
-
#: core/lib/
|
5957 |
#: inc/_mu/admin/page-users.php:433
|
5958 |
msgid "Users"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
-
#: core/lib/
|
5962 |
msgid "Manage Users"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
-
#: core/lib/
|
5966 |
msgid "Users Settings"
|
5967 |
msgstr ""
|
5968 |
|
5969 |
-
#: core/lib/
|
5970 |
#: inc/_mu/multiuser.php:649
|
5971 |
msgid "User is Activated"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
-
#: core/lib/
|
5975 |
#: inc/_mu/multiuser.php:699
|
5976 |
msgid "User is Deactivated"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: core/lib/
|
5980 |
msgid "User Role"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: core/lib/
|
5984 |
#: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
|
5985 |
msgid "Set user as"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: core/lib/
|
5989 |
msgid "Unlimited"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
-
#: core/lib/
|
5993 |
#: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
|
5994 |
#: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
|
5995 |
#: inc/_mu/admin/page-users.php:602
|
5996 |
msgid "Do you really want"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
-
#: core/lib/
|
6000 |
msgid "make user active"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#: core/lib/
|
6004 |
msgid "Activate"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#: core/lib/
|
6008 |
msgid "make user inactive"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#: core/lib/
|
6012 |
msgid "Deactivate"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
-
#: core/lib/
|
6016 |
msgid "delete configuration"
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#: core/lib/
|
6020 |
msgid "Delete settings"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#: core/lib/
|
6024 |
msgid "delete all booking data"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#: core/lib/
|
6028 |
msgid "Delete data"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
-
#: core/lib/
|
6032 |
msgid "Work days"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
-
#: core/lib/
|
6036 |
#, php-format
|
6037 |
msgid ""
|
6038 |
"%sYou do not have permissions for this page.%s Your account is not active, please contact "
|
6039 |
"administrator.%s"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
-
#: core/lib/
|
6043 |
#, php-format
|
6044 |
msgid "%sYou do not have permissions for this booking resources.%s"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: core/lib/
|
6048 |
#, php-format
|
6049 |
msgid "%sNo this booking resources.%s"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
-
#: core/lib/
|
6053 |
msgid "Please, reserve an apartment with fresh flowers."
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: core/lib/
|
6057 |
msgid "Default booking resource"
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: core/lib/
|
6061 |
msgid "Select your default booking resource."
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: core/lib/
|
6065 |
msgid "Resources number per page"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: core/lib/
|
6069 |
msgid "Select number of booking resources (single or parent) per page at Resource menu page"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
-
#: core/lib/
|
6073 |
#: inc/_ps/admin/api-settings-p.php:197
|
6074 |
msgid "Booking title"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#: core/lib/
|
6078 |
msgid "admin panel"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
-
#: core/lib/
|
6082 |
#, php-format
|
6083 |
msgid ""
|
6084 |
"Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
|
6085 |
"the shortcodes from the bottom form of Settings Fields page)."
|
6086 |
msgstr ""
|
6087 |
|
6088 |
-
#: core/lib/
|
6089 |
msgid "front panel"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
-
#: core/lib/
|
6093 |
#, php-format
|
6094 |
msgid ""
|
6095 |
"Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
|
6096 |
"from the bottom form of Settings Fields page."
|
6097 |
msgstr ""
|
6098 |
|
6099 |
-
#: core/lib/
|
6100 |
msgid "Booking details in popover"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#: core/lib/
|
6104 |
#, php-format
|
6105 |
msgid ""
|
6106 |
"Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
|
6107 |
"side."
|
6108 |
msgstr ""
|
6109 |
|
6110 |
-
#: core/lib/
|
6111 |
msgid "semicolon"
|
6112 |
msgstr ""
|
6113 |
|
6114 |
-
#: core/lib/
|
6115 |
msgid "comma"
|
6116 |
msgstr ""
|
6117 |
|
6118 |
-
#: core/lib/
|
6119 |
msgid "CSV data separator"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
-
#: core/lib/
|
6123 |
msgid "Select separator of data for export bookings to CSV."
|
6124 |
msgstr ""
|
6125 |
|
6126 |
-
#: core/lib/
|
6127 |
-
#: js/wpbc-gutenberg.js:
|
6128 |
msgid "URL to edit bookings"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
-
#: core/lib/
|
6132 |
#, php-format
|
6133 |
msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
|
6134 |
msgstr ""
|
6135 |
|
6136 |
-
#: core/lib/
|
6137 |
msgid "Change hash after the booking is approved"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
-
#: core/lib/
|
6141 |
msgid ""
|
6142 |
"Check this box if you want to change the booking hash after approval. When checked, visitor will "
|
6143 |
"not be able to edit or cancel the booking."
|
6144 |
msgstr ""
|
6145 |
|
6146 |
-
#: core/lib/
|
6147 |
msgid "Modified"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: core/lib/
|
6151 |
msgid "Customization of email template, which is sending after modification of booking"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
-
#: core/lib/
|
6155 |
msgid "Email is sending to Visitor after Editing of booking."
|
6156 |
msgstr ""
|
6157 |
|
6158 |
-
#: core/lib/
|
6159 |
msgid "Customizaton of booking resources"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
-
#: core/lib/
|
6163 |
#: inc/_ps/admin/page-settings-form.php:157
|
6164 |
msgid "Form fields"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
-
#: core/lib/
|
6168 |
msgid "Content of Booking Fields"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
-
#: core/lib/
|
6172 |
msgid "Generate tag"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
-
#: core/lib/
|
6176 |
#, php-format
|
6177 |
msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
-
#: core/lib/
|
6181 |
msgid "Form Template"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
-
#: core/lib/
|
6185 |
msgid "Standard Templates"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
-
#: core/lib/
|
6189 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111
|
6190 |
msgid "Columns"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
-
#: core/lib/
|
6194 |
msgid "Advanced Templates"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
-
#: core/lib/
|
6198 |
msgid "Wizard (several steps)"
|
6199 |
msgstr ""
|
6200 |
|
6201 |
-
#: core/lib/
|
6202 |
msgid "Time slots for different weekdays"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
-
#: core/lib/
|
|
|
6206 |
msgid "Hints"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
-
#: core/lib/
|
6210 |
msgid "Reset Form"
|
6211 |
msgstr ""
|
6212 |
|
6213 |
-
#: core/lib/
|
6214 |
msgid "Both"
|
6215 |
msgstr ""
|
6216 |
|
6217 |
-
#: core/lib/
|
6218 |
msgid "Reset Booking Form and Content of Booking Fields Form"
|
6219 |
msgstr ""
|
6220 |
|
6221 |
-
#: core/lib/
|
6222 |
-
#: inc/gateways/page-gateways.php:
|
6223 |
#, php-format
|
6224 |
msgid "%s - inserting data from fields of booking form"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
-
#: core/lib/
|
6228 |
#, php-format
|
6229 |
msgid "%s - inserting new line"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
-
#: core/lib/
|
6233 |
-
#: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:
|
6234 |
#, php-format
|
6235 |
msgid ""
|
6236 |
"You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
|
6237 |
"that all \"open\" tags (like %s) are closed (like this %s)."
|
6238 |
msgstr ""
|
6239 |
|
6240 |
-
#: core/lib/
|
6241 |
msgid "Upgrade to higher version"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
-
#: core/lib/
|
6245 |
msgid "No results found."
|
6246 |
msgstr ""
|
6247 |
|
6248 |
-
#: core/lib/
|
6249 |
#, php-format
|
6250 |
msgid "Wrap each item with %s tag"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
-
#: core/lib/
|
6254 |
msgid "Put a label before field"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
-
#: core/lib/
|
6258 |
#, php-format
|
6259 |
msgid "Make it %sexclusive%s"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#: core/lib/
|
6263 |
#: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
|
6264 |
#: inc/_ps/form/class-wpbc-field-help-text.php:194
|
6265 |
msgid "Default value"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
-
#: core/lib/
|
6269 |
#, php-format
|
6270 |
msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
|
6271 |
msgstr ""
|
6272 |
|
6273 |
-
#: core/lib/
|
6274 |
#: inc/_ps/form/class-wpbc-field-help-select.php:111
|
6275 |
#: inc/_ps/form/class-wpbc-field-help-text.php:177
|
6276 |
msgid "required"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
-
#: core/lib/
|
6280 |
#: inc/_ps/form/class-wpbc-field-help-select.php:129
|
6281 |
msgid "Titles of options"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
-
#: core/lib/
|
6285 |
#: inc/_ps/form/class-wpbc-field-help-select.php:86
|
6286 |
#, php-format
|
6287 |
msgid "One Value from %sOptions%s list"
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#: core/lib/
|
6291 |
#, php-format
|
6292 |
msgid "Allow %smultiple%s selections"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#: core/lib/
|
6296 |
#, php-format
|
6297 |
msgid "Set as %srequired%s"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
-
#: core/lib/
|
6301 |
msgid "Placeholder"
|
6302 |
msgstr ""
|
6303 |
|
6304 |
-
#: core/lib/
|
6305 |
msgid "Class"
|
6306 |
msgstr ""
|
6307 |
|
6308 |
-
#: core/lib/
|
6309 |
msgid "Size"
|
6310 |
msgstr ""
|
6311 |
|
6312 |
-
#: core/lib/
|
6313 |
msgid "Maxlength"
|
6314 |
msgstr ""
|
6315 |
|
6316 |
-
#: core/lib/
|
6317 |
msgid "Copy and paste this shortcode into the form at left side"
|
6318 |
msgstr ""
|
6319 |
|
6320 |
-
#: core/lib/
|
6321 |
#, php-format
|
6322 |
msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
|
6323 |
msgstr ""
|
6324 |
|
6325 |
-
#: core/lib/
|
6326 |
msgid "Rows"
|
6327 |
msgstr ""
|
6328 |
|
6329 |
-
#: core/lib/
|
6330 |
msgid "General Information"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: core/lib/
|
6334 |
msgid "Required Fields in Booking Form"
|
6335 |
msgstr ""
|
6336 |
|
6337 |
-
#: core/lib/
|
6338 |
#, php-format
|
6339 |
msgid "You must to have this shortcode:%s in the form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: core/lib/
|
6343 |
msgid ""
|
6344 |
"You can insert several calendars of different resources into the form allowing you to book "
|
6345 |
"several resources during one booking process."
|
6346 |
msgstr ""
|
6347 |
|
6348 |
-
#: core/lib/
|
6349 |
#, php-format
|
6350 |
msgid "Example: %s."
|
6351 |
msgstr ""
|
6352 |
|
6353 |
-
#: core/lib/
|
6354 |
#, php-format
|
6355 |
msgid ""
|
6356 |
"where %s – default calendar %s (you can select desired resource of calendar by inserting "
|
6357 |
"shortcode into page)%s"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
-
#: core/lib/
|
6361 |
#: inc/_ps/form/class-wpbc-form-help.php:123
|
6362 |
#, php-format
|
6363 |
msgid "%s – calendar of booking resource with %s"
|
6364 |
msgstr ""
|
6365 |
|
6366 |
-
#: core/lib/
|
6367 |
#, php-format
|
6368 |
msgid "Please check more about this feature %shere%s."
|
6369 |
msgstr ""
|
6370 |
|
6371 |
-
#: core/lib/
|
6372 |
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
|
6373 |
#: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
|
6374 |
#: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
|
@@ -6378,82 +6393,82 @@ msgstr ""
|
|
6378 |
msgid "You can %suse this shortcode only once%s in the form."
|
6379 |
msgstr ""
|
6380 |
|
6381 |
-
#: core/lib/
|
6382 |
msgid "Email Field"
|
6383 |
msgstr ""
|
6384 |
|
6385 |
-
#: core/lib/
|
6386 |
#, php-format
|
6387 |
msgid "You must have this shortcode:%s in the booking form."
|
6388 |
msgstr ""
|
6389 |
|
6390 |
-
#: core/lib/
|
6391 |
msgid "This is the primary email field, which is used for sending emails to visitors."
|
6392 |
msgstr ""
|
6393 |
|
6394 |
-
#: core/lib/
|
6395 |
msgid "Drop Down"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
-
#: core/lib/
|
6399 |
msgid "Checkbox(es)"
|
6400 |
msgstr ""
|
6401 |
|
6402 |
-
#: core/lib/
|
6403 |
msgid "Radio Button(s)"
|
6404 |
msgstr ""
|
6405 |
|
6406 |
-
#: core/lib/
|
6407 |
#, php-format
|
6408 |
msgid "Insert %s shortcode to prevent SPAM bookings."
|
6409 |
msgstr ""
|
6410 |
|
6411 |
-
#: core/lib/
|
6412 |
msgid "Submit Button"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
-
#: core/lib/
|
6416 |
msgid "Times Fields"
|
6417 |
msgstr ""
|
6418 |
|
6419 |
-
#: core/lib/
|
6420 |
msgid "Time Slot List"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
-
#: core/lib/
|
6424 |
#: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
|
6425 |
#: inc/_ps/form/class-wpbc-form-help.php:379
|
6426 |
#, php-format
|
6427 |
msgid "Select the %s using the predefined %sTime List%s."
|
6428 |
msgstr ""
|
6429 |
|
6430 |
-
#: core/lib/
|
6431 |
msgid "Time Slot"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
-
#: core/lib/
|
6435 |
#, php-format
|
6436 |
msgid ""
|
6437 |
"Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
|
6438 |
"slots, this time field will %sdisable booked times slots%s (set them as grayed)."
|
6439 |
msgstr ""
|
6440 |
|
6441 |
-
#: core/lib/
|
6442 |
#, php-format
|
6443 |
msgid "It works only in %ssingle day selection%s mode."
|
6444 |
msgstr ""
|
6445 |
|
6446 |
-
#: core/lib/
|
6447 |
msgid ""
|
6448 |
"Also some early versions of the IE do not support disabling of the options in the selectboxes."
|
6449 |
msgstr ""
|
6450 |
|
6451 |
-
#: core/lib/
|
6452 |
msgid ""
|
6453 |
"Even if visitor selects the booked timeslot, system will not allow them to make the booking."
|
6454 |
msgstr ""
|
6455 |
|
6456 |
-
#: core/lib/
|
6457 |
#: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
|
6458 |
#, php-format
|
6459 |
msgid ""
|
@@ -6461,117 +6476,117 @@ msgid ""
|
|
6461 |
"Time)%s only."
|
6462 |
msgstr ""
|
6463 |
|
6464 |
-
#: core/lib/
|
6465 |
#, php-format
|
6466 |
msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
|
6467 |
msgstr ""
|
6468 |
|
6469 |
-
#: core/lib/
|
6470 |
msgid "Start Time - Text field"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
-
#: core/lib/
|
6474 |
#: inc/_ps/form/class-wpbc-form-help.php:288
|
6475 |
#, php-format
|
6476 |
msgid "Enter %s in text field."
|
6477 |
msgstr ""
|
6478 |
|
6479 |
-
#: core/lib/
|
6480 |
#: inc/_ps/admin/api-settings-p.php:115 inc/_ps/form/class-wpbc-form-help.php:275
|
6481 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
|
6482 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6483 |
msgid "Start Time"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
-
#: core/lib/
|
6487 |
#: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
|
6488 |
#, php-format
|
6489 |
msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
|
6490 |
msgstr ""
|
6491 |
|
6492 |
-
#: core/lib/
|
6493 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6494 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6495 |
#, php-format
|
6496 |
msgid "You can also use the %s in the form."
|
6497 |
msgstr ""
|
6498 |
|
6499 |
-
#: core/lib/
|
6500 |
#: inc/_ps/admin/api-settings-p.php:134 inc/_ps/form/class-wpbc-form-help.php:279
|
6501 |
#: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
|
6502 |
#: inc/_ps/form/class-wpbc-form-help.php:340
|
6503 |
msgid "End Time"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
-
#: core/lib/
|
6507 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6508 |
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
|
6509 |
msgid "Duration Time"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
-
#: core/lib/
|
6513 |
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6514 |
#: inc/_ps/form/class-wpbc-form-help.php:344
|
6515 |
msgid "fields"
|
6516 |
msgstr ""
|
6517 |
|
6518 |
-
#: core/lib/
|
6519 |
msgid "End Time - Text field"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
-
#: core/lib/
|
6523 |
msgid "Start Time - Drop Down list"
|
6524 |
msgstr ""
|
6525 |
|
6526 |
-
#: core/lib/
|
6527 |
#, php-format
|
6528 |
msgid ""
|
6529 |
"Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
|
6530 |
"Time)%s only."
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: core/lib/
|
6534 |
msgid "End Time - Drop Down list"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
#: core/lib/
|
6538 |
msgid "Duration Time - Drop Down list"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: core/lib/
|
6542 |
msgid "field"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
-
#: core/lib/
|
6546 |
msgid "Different time slots, for the different week days"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
-
#: core/lib/
|
6550 |
msgid ""
|
6551 |
"This feature provides the possibility to use the different time slot selections in the booking "
|
6552 |
"form for the different week days or different days - which are assigned to the specific season "
|
6553 |
"filters. So each week day (day of specific season filter) can have a different time slots list."
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#: core/lib/
|
6557 |
#: inc/_ps/form/class-wpbc-form-help.php:568
|
6558 |
msgid "Configuration"
|
6559 |
msgstr ""
|
6560 |
|
6561 |
-
#: core/lib/
|
6562 |
#: inc/_ps/form/class-wpbc-form-help.php:569
|
6563 |
#, php-format
|
6564 |
msgid "The general structure of the configuration %scondition rule%s is as follows"
|
6565 |
msgstr ""
|
6566 |
|
6567 |
-
#: core/lib/
|
6568 |
#: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
|
6569 |
#: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
|
6570 |
#: inc/_ps/form/class-wpbc-form-help.php:619
|
6571 |
msgid "Parameters"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
-
#: core/lib/
|
6575 |
#: inc/_ps/form/class-wpbc-form-help.php:576
|
6576 |
#, php-format
|
6577 |
msgid ""
|
@@ -6581,7 +6596,7 @@ msgid ""
|
|
6581 |
"conditions. Please check more about it, in the examples."
|
6582 |
msgstr ""
|
6583 |
|
6584 |
-
#: core/lib/
|
6585 |
#: inc/_ps/form/class-wpbc-form-help.php:577
|
6586 |
#, php-format
|
6587 |
msgid ""
|
@@ -6592,7 +6607,7 @@ msgid ""
|
|
6592 |
"filter in the Season Filters page."
|
6593 |
msgstr ""
|
6594 |
|
6595 |
-
#: core/lib/
|
6596 |
#, php-format
|
6597 |
msgid ""
|
6598 |
"%svalue%s – value of the specific conditions. If the value is true, the content of the "
|
@@ -6601,47 +6616,47 @@ msgid ""
|
|
6601 |
"at initial stage, when the date in calendar is not yet selected."
|
6602 |
msgstr ""
|
6603 |
|
6604 |
-
#: core/lib/
|
6605 |
#: inc/_ps/form/class-wpbc-form-help.php:580
|
6606 |
msgid "Examples"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
-
#: core/lib/
|
6610 |
#: inc/_ps/form/class-wpbc-form-help.php:581
|
6611 |
msgid "Week days conditions."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
-
#: core/lib/
|
6615 |
#: inc/_ps/form/class-wpbc-form-help.php:597
|
6616 |
msgid "default value, if no dates are selected, or none exist conditions are true."
|
6617 |
msgstr ""
|
6618 |
|
6619 |
-
#: core/lib/
|
6620 |
#: inc/_ps/form/class-wpbc-form-help.php:475
|
6621 |
msgid "You can use the several values, separated by comma."
|
6622 |
msgstr ""
|
6623 |
|
6624 |
-
#: core/lib/
|
6625 |
#: inc/_ps/form/class-wpbc-form-help.php:607
|
6626 |
msgid "Season filters conditions."
|
6627 |
msgstr ""
|
6628 |
|
6629 |
-
#: core/lib/
|
6630 |
#: inc/_ps/form/class-wpbc-form-help.php:620
|
6631 |
msgid "Season filter on the Season Filters page,"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: core/lib/
|
6635 |
#: inc/_ps/form/class-wpbc-form-help.php:621
|
6636 |
msgid "Season filter on the Season Filters page"
|
6637 |
msgstr ""
|
6638 |
|
6639 |
-
#: core/lib/
|
6640 |
#: inc/_ps/form/class-wpbc-form-help.php:624
|
6641 |
msgid "Additional info"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: core/lib/
|
6645 |
#: inc/_ps/form/class-wpbc-form-help.php:625
|
6646 |
#, php-format
|
6647 |
msgid ""
|
@@ -6649,103 +6664,103 @@ msgid ""
|
|
6649 |
"section."
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#: core/lib/
|
6653 |
#: inc/_ps/form/class-wpbc-form-help.php:626
|
6654 |
#, php-format
|
6655 |
msgid "Please check more about this feature at %sthis page%s"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
-
#: core/lib/
|
6659 |
msgid "Time Field"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: core/lib/
|
6663 |
#, php-format
|
6664 |
msgid "Enter the %sTime%s using the text field."
|
6665 |
msgstr ""
|
6666 |
|
6667 |
-
#: core/lib/
|
6668 |
msgid "This field does not impact to availability (booking for the specific time) ."
|
6669 |
msgstr ""
|
6670 |
|
6671 |
-
#: core/lib/
|
6672 |
msgid "The value of this field is just saved into DB."
|
6673 |
msgstr ""
|
6674 |
|
6675 |
-
#: core/lib/
|
6676 |
msgid "Country List"
|
6677 |
msgstr ""
|
6678 |
|
6679 |
-
#: core/lib/
|
6680 |
msgid "Select the country from the predefined country list."
|
6681 |
msgstr ""
|
6682 |
|
6683 |
-
#: core/lib/
|
6684 |
#, php-format
|
6685 |
msgid "You can customize the country list at this file: %s"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
-
#: core/lib/
|
6689 |
msgid "You can insert this field with default selected value."
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: core/lib/
|
6693 |
#, php-format
|
6694 |
msgid "Example: %s - %s\"United States\"%s is selected by default."
|
6695 |
msgstr ""
|
6696 |
|
6697 |
-
#: core/lib/
|
6698 |
msgid "Language Sections"
|
6699 |
msgstr ""
|
6700 |
|
6701 |
-
#: core/lib/
|
6702 |
msgid "Plugin support configurations of the booking form are available in different languages."
|
6703 |
msgstr ""
|
6704 |
|
6705 |
-
#: core/lib/
|
6706 |
msgid "The active language of the booking form depends on the active locale of the site."
|
6707 |
msgstr ""
|
6708 |
|
6709 |
-
#: core/lib/
|
6710 |
msgid ""
|
6711 |
"Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#: core/lib/
|
6715 |
msgid "Usage"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#: core/lib/
|
6719 |
#, php-format
|
6720 |
msgid "start new translation section in specific language, where %s - locale of the translation."
|
6721 |
msgstr ""
|
6722 |
|
6723 |
-
#: core/lib/
|
6724 |
msgid "English and French translation"
|
6725 |
msgstr ""
|
6726 |
|
6727 |
-
#: core/lib/
|
6728 |
msgid "of configuration booking form in English and French languages"
|
6729 |
msgstr ""
|
6730 |
|
6731 |
-
#: core/lib/
|
6732 |
msgid ""
|
6733 |
"Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
|
6734 |
"translation\" page. Required WPML 3.2 with String Translation plugin."
|
6735 |
msgstr ""
|
6736 |
|
6737 |
-
#: core/lib/
|
6738 |
msgid "Different form fields, for the different week days"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
-
#: core/lib/
|
6742 |
msgid ""
|
6743 |
"This feature provides the possibility to show the different form fields or any other HTML "
|
6744 |
"content in the booking form, depending on the selection of specific week day in calendar or "
|
6745 |
"different days, which are assigned to the specific season filters"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: core/lib/
|
6749 |
#, php-format
|
6750 |
msgid ""
|
6751 |
"%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
|
@@ -6754,54 +6769,54 @@ msgid ""
|
|
6754 |
"at initial stage, when the date in calendar is not yet selected."
|
6755 |
msgstr ""
|
6756 |
|
6757 |
-
#: core/lib/
|
6758 |
msgid "You can use several values, separated by comma."
|
6759 |
msgstr ""
|
6760 |
|
6761 |
-
#: core/lib/
|
6762 |
msgid "You can use several values, separated by a comma."
|
6763 |
msgstr ""
|
6764 |
|
6765 |
-
#: core/lib/
|
6766 |
msgid "Cost Fields"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
-
#: core/lib/
|
6770 |
msgid "Cost Correction Field"
|
6771 |
msgstr ""
|
6772 |
|
6773 |
-
#: core/lib/
|
6774 |
#, php-format
|
6775 |
msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#: core/lib/
|
6779 |
#, php-format
|
6780 |
msgid "Use this field for %scorrecting the cost%s during adding new booking."
|
6781 |
msgstr ""
|
6782 |
|
6783 |
-
#: core/lib/
|
6784 |
msgid "Discount Coupon field"
|
6785 |
msgstr ""
|
6786 |
|
6787 |
-
#: core/lib/
|
6788 |
msgid "Please use this field for possibility to use coupon discounts by your visitors."
|
6789 |
msgstr ""
|
6790 |
|
6791 |
-
#: core/lib/
|
6792 |
#, php-format
|
6793 |
msgid "You can configure the discount coupon codes at this %spage%s."
|
6794 |
msgstr ""
|
6795 |
|
6796 |
-
#: core/lib/
|
6797 |
msgid "Hints for your form"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
-
#: core/lib/
|
6801 |
msgid "Cost Hints"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: core/lib/
|
6805 |
#: inc/_ps/form/class-wpbc-form-help.php:697
|
6806 |
#, php-format
|
6807 |
msgid ""
|
@@ -6809,114 +6824,115 @@ msgid ""
|
|
6809 |
"calendar or options in checkboxes or selectboxes)%s."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: core/lib/
|
6813 |
msgid "Dates and Times Hints"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
-
#: core/lib/
|
6817 |
-
#: inc/gateways/page-gateways.php:
|
6818 |
msgid "Selected Check In date."
|
6819 |
msgstr ""
|
6820 |
|
6821 |
-
#: core/lib/
|
|
|
6822 |
#: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
|
6823 |
#: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
|
6824 |
#: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
|
6825 |
#: inc/_ps/form/class-wpbc-form-help.php:721 inc/_ps/form/class-wpbc-form-help.php:724
|
6826 |
#: inc/_ps/form/class-wpbc-form-help.php:727 inc/_ps/form/class-wpbc-form-help.php:730
|
6827 |
-
#: inc/gateways/page-gateways.php:
|
6828 |
-
#: inc/gateways/page-gateways.php:
|
6829 |
-
#: inc/gateways/page-gateways.php:
|
6830 |
-
#: inc/gateways/page-gateways.php:
|
6831 |
-
#: inc/gateways/page-gateways.php:
|
6832 |
msgid "Example:"
|
6833 |
msgstr ""
|
6834 |
|
6835 |
-
#: core/lib/
|
6836 |
-
#: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:
|
6837 |
msgid "Selected Check Out date."
|
6838 |
msgstr ""
|
6839 |
|
6840 |
-
#: core/lib/
|
6841 |
-
#: inc/gateways/page-gateways.php:
|
6842 |
msgid "Selected Start Time."
|
6843 |
msgstr ""
|
6844 |
|
6845 |
-
#: core/lib/
|
6846 |
-
#: inc/gateways/page-gateways.php:
|
6847 |
msgid "Selected End Time."
|
6848 |
msgstr ""
|
6849 |
|
6850 |
-
#: core/lib/
|
6851 |
-
#: inc/gateways/page-gateways.php:
|
6852 |
msgid "All selected dates."
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#: core/lib/
|
6856 |
-
#: inc/gateways/page-gateways.php:
|
6857 |
msgid "All selected dates with times."
|
6858 |
msgstr ""
|
6859 |
|
6860 |
-
#: core/lib/
|
6861 |
-
#: inc/gateways/page-gateways.php:
|
6862 |
msgid "All selected dates in \"short\" format."
|
6863 |
msgstr ""
|
6864 |
|
6865 |
-
#: core/lib/
|
6866 |
-
#: inc/gateways/page-gateways.php:
|
6867 |
msgid "All selected dates with times in \"short\" format.."
|
6868 |
msgstr ""
|
6869 |
|
6870 |
-
#: core/lib/
|
6871 |
-
#: inc/gateways/page-gateways.php:
|
6872 |
msgid "Number of selected days."
|
6873 |
msgstr ""
|
6874 |
|
6875 |
-
#: core/lib/
|
6876 |
-
#: inc/gateways/page-gateways.php:
|
6877 |
msgid "Number of selected nights."
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: core/lib/
|
6881 |
msgid "Other Hints"
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: core/lib/
|
6885 |
-
#: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:
|
6886 |
msgid "title of booking resource"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#: core/lib/
|
6890 |
msgid "ID of booking resource."
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: core/lib/
|
6894 |
msgid "cost of booking resource."
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#: core/lib/
|
6898 |
msgid "capacity of booking resource."
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#: core/lib/
|
6902 |
msgid "maximum number of visitors per booking resource."
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#: core/lib/
|
6906 |
msgid "Tips and Tricks"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#: core/lib/
|
6910 |
#, php-format
|
6911 |
msgid "%sEmail verification field%s."
|
6912 |
msgstr ""
|
6913 |
|
6914 |
-
#: core/lib/
|
6915 |
#, php-format
|
6916 |
msgid "%sDescription of usage%s."
|
6917 |
msgstr ""
|
6918 |
|
6919 |
-
#: core/lib/
|
6920 |
#, php-format
|
6921 |
msgid ""
|
6922 |
"To create verification email, you need to use special CSS class in other email field. This CSS "
|
@@ -6924,280 +6940,280 @@ msgid ""
|
|
6924 |
"field: %s"
|
6925 |
msgstr ""
|
6926 |
|
6927 |
-
#: core/lib/
|
6928 |
#, php-format
|
6929 |
msgid "%sExample%s."
|
6930 |
msgstr ""
|
6931 |
|
6932 |
-
#: core/lib/
|
6933 |
msgid "confirmation email field of the primary email field"
|
6934 |
msgstr ""
|
6935 |
|
6936 |
-
#: core/lib/
|
6937 |
msgid "Generate Tag"
|
6938 |
msgstr ""
|
6939 |
|
6940 |
-
#: core/lib/
|
6941 |
msgid "Select option to configure or show help info about tags"
|
6942 |
msgstr ""
|
6943 |
|
6944 |
-
#: core/lib/
|
6945 |
msgid "Keyword"
|
6946 |
msgstr ""
|
6947 |
|
6948 |
-
#: core/lib/
|
6949 |
msgid "Enter Keyword here"
|
6950 |
msgstr ""
|
6951 |
|
6952 |
-
#: core/lib/
|
6953 |
msgid ""
|
6954 |
"Save filter settings as default template (Please, click Apply filter button, before saving!)"
|
6955 |
msgstr ""
|
6956 |
|
6957 |
-
#: core/lib/
|
6958 |
msgid "Save as Default"
|
6959 |
msgstr ""
|
6960 |
|
6961 |
-
#: core/lib/
|
6962 |
msgid "Delete your previously saved default filer template!"
|
6963 |
msgstr ""
|
6964 |
|
6965 |
-
#: core/lib/
|
6966 |
msgid "Delete template"
|
6967 |
msgstr ""
|
6968 |
|
6969 |
-
#: core/lib/
|
6970 |
msgid "Print bookings listing"
|
6971 |
msgstr ""
|
6972 |
|
6973 |
-
#: core/lib/
|
6974 |
msgid "Export only current page of bookings to CSV format"
|
6975 |
msgstr ""
|
6976 |
|
6977 |
-
#: core/lib/
|
6978 |
msgid "Export All"
|
6979 |
msgstr ""
|
6980 |
|
6981 |
-
#: core/lib/
|
6982 |
msgid "Export All bookings to CSV format"
|
6983 |
msgstr ""
|
6984 |
|
6985 |
-
#: core/lib/
|
6986 |
msgid "Edit Note"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
-
#: core/lib/
|
6990 |
msgid "Change Language"
|
6991 |
msgstr ""
|
6992 |
|
6993 |
-
#: core/lib/
|
6994 |
msgid "Default Locale"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
-
#: core/lib/
|
6998 |
msgid "Change Resource"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
-
#: core/lib/
|
7002 |
-
#: inc/_ps/personal.php:
|
7003 |
msgid "Duplicate Booking"
|
7004 |
msgstr ""
|
7005 |
|
7006 |
-
#: core/lib/
|
7007 |
msgid "Save"
|
7008 |
msgstr ""
|
7009 |
|
7010 |
-
#: core/lib/
|
7011 |
msgid "Change"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
-
#: core/lib/
|
7015 |
msgid "Print bookings"
|
7016 |
msgstr ""
|
7017 |
|
7018 |
-
#: core/lib/
|
7019 |
msgid "Export bookings"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
-
#: core/lib/
|
7023 |
msgid "Download the CSV file of exported booking data"
|
7024 |
msgstr ""
|
7025 |
|
7026 |
-
#: core/lib/
|
7027 |
msgid "Download"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
-
#: core/lib/
|
7031 |
msgid "Clear booking resources selection"
|
7032 |
msgstr ""
|
7033 |
|
7034 |
-
#: core/lib/
|
7035 |
msgid "Apply booking resources selection"
|
7036 |
msgstr ""
|
7037 |
|
7038 |
-
#: core/lib/
|
7039 |
msgid ""
|
7040 |
"Please note, its not possible to add new resources, if \"All resources\" option is selected. "
|
7041 |
"Please clear the selection, then add new resources."
|
7042 |
msgstr ""
|
7043 |
|
7044 |
-
#: core/lib/
|
7045 |
msgid "Add New Booking Resource(s)"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
-
#: core/lib/
|
7049 |
msgid "Enter name of booking resource"
|
7050 |
msgstr ""
|
7051 |
|
7052 |
-
#: core/lib/
|
7053 |
msgid "Resources count"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: core/lib/
|
7057 |
msgid "This booking resources does not exist"
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#: core/lib/
|
7061 |
msgid "Generating columns"
|
7062 |
msgstr ""
|
7063 |
|
7064 |
-
#: core/lib/
|
7065 |
msgid "Exporting booking data"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
-
#: core/lib/
|
7069 |
msgid "Generating content of file"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: core/lib/
|
7073 |
msgid "Saving to file"
|
7074 |
msgstr ""
|
7075 |
|
7076 |
-
#: core/lib/
|
7077 |
msgid "The booking was canceled by the visitor."
|
7078 |
msgstr ""
|
7079 |
|
7080 |
-
#: core/lib/
|
7081 |
msgid "The booking has been canceled successfully"
|
7082 |
msgstr ""
|
7083 |
|
7084 |
-
#: core/lib/
|
7085 |
msgid "Incorrect date format"
|
7086 |
msgstr ""
|
7087 |
|
7088 |
-
#: core/lib/
|
7089 |
msgid "Change your Booking"
|
7090 |
msgstr ""
|
7091 |
|
7092 |
-
#: core/lib/
|
7093 |
msgid "Cancel Booking"
|
7094 |
msgstr ""
|
7095 |
|
7096 |
-
#: core/lib/
|
7097 |
msgid "Warning! The resource was not changed. Current dates are already booked there."
|
7098 |
msgstr ""
|
7099 |
|
7100 |
-
#: core/lib/
|
7101 |
msgid "The booking has been duplicated successfully"
|
7102 |
msgstr ""
|
7103 |
|
7104 |
-
#: core/lib/
|
7105 |
msgid "Warning! Operation failed. Current dates are already booked there."
|
7106 |
msgstr ""
|
7107 |
|
7108 |
-
#: core/lib/
|
7109 |
msgid "Sending request..."
|
7110 |
msgstr ""
|
7111 |
|
7112 |
-
#: core/lib/
|
7113 |
msgid "Order number"
|
7114 |
msgstr ""
|
7115 |
|
7116 |
-
#: core/lib/
|
7117 |
msgid "Register"
|
7118 |
msgstr ""
|
7119 |
|
7120 |
-
#: core/lib/
|
7121 |
msgid ""
|
7122 |
"Please, enter order number of your purchased version, which you received to your billing email."
|
7123 |
msgstr ""
|
7124 |
|
7125 |
-
#: core/lib/
|
7126 |
#, php-format
|
7127 |
msgid "If you will get any difficulties or have a questions, please contact by email %s"
|
7128 |
msgstr ""
|
7129 |
|
7130 |
-
#: core/lib/
|
7131 |
msgid "Default form"
|
7132 |
msgstr ""
|
7133 |
|
7134 |
-
#: core/lib/
|
7135 |
#, php-format
|
7136 |
msgid ""
|
7137 |
"There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
|
7138 |
"version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
-
#: core/lib/
|
7142 |
#, php-format
|
7143 |
msgid "You can request the new update of plugin on %1$sthis page%2$s."
|
7144 |
msgstr ""
|
7145 |
|
7146 |
-
#: core/lib/
|
7147 |
msgid "Upgrade Notice"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
-
#: core/lib/
|
7151 |
#, php-format
|
7152 |
msgid "Version %s By %s"
|
7153 |
msgstr ""
|
7154 |
|
7155 |
-
#: core/lib/
|
7156 |
msgid "View details"
|
7157 |
msgstr ""
|
7158 |
|
7159 |
-
#: core/lib/
|
7160 |
#: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
|
7161 |
#: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
|
7162 |
msgid "First Name (required)"
|
7163 |
msgstr ""
|
7164 |
|
7165 |
-
#: core/lib/
|
7166 |
#: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
|
7167 |
#: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
|
7168 |
msgid "Last Name (required)"
|
7169 |
msgstr ""
|
7170 |
|
7171 |
-
#: core/lib/
|
7172 |
#: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
|
7173 |
#: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
|
7174 |
msgid "Email (required)"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
-
#: core/lib/
|
7178 |
#: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
|
7179 |
#: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
|
7180 |
#: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
|
7181 |
#: inc/_ps/wpbc-form-templates.php:174 inc/_ps/wpbc-form-templates.php:189
|
7182 |
-
#: inc/gateways/page-gateways.php:
|
7183 |
msgid "Phone"
|
7184 |
msgstr ""
|
7185 |
|
7186 |
-
#: core/lib/
|
7187 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7188 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
|
7189 |
#: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
|
7190 |
msgid "Adults"
|
7191 |
msgstr ""
|
7192 |
|
7193 |
-
#: core/lib/
|
7194 |
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7195 |
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
|
7196 |
#: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
|
7197 |
msgid "Children"
|
7198 |
msgstr ""
|
7199 |
|
7200 |
-
#: core/lib/
|
7201 |
#: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
|
7202 |
#: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
|
7203 |
#: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
|
@@ -7205,116 +7221,116 @@ msgstr ""
|
|
7205 |
msgid "Details"
|
7206 |
msgstr ""
|
7207 |
|
7208 |
-
#: core/lib/
|
7209 |
#: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
|
7210 |
#: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
|
7211 |
msgid "I Accept term and conditions"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
-
#: core/lib/
|
7215 |
#: inc/_ps/wpbc-form-templates.php:68
|
7216 |
msgid "Select Times"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
-
#: core/lib/
|
7220 |
#: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
|
7221 |
#: inc/_ps/wpbc-form-templates.php:118
|
7222 |
msgid "Address (required)"
|
7223 |
msgstr ""
|
7224 |
|
7225 |
-
#: core/lib/
|
7226 |
#: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
|
7227 |
#: inc/_ps/wpbc-form-templates.php:119
|
7228 |
msgid "City (required)"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
-
#: core/lib/
|
7232 |
#: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
|
7233 |
#: inc/_ps/wpbc-form-templates.php:120
|
7234 |
msgid "Post code (required)"
|
7235 |
msgstr ""
|
7236 |
|
7237 |
-
#: core/lib/
|
7238 |
#: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
|
7239 |
#: inc/_ps/wpbc-form-templates.php:121
|
7240 |
msgid "Country (required)"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
-
#: core/lib/
|
7244 |
msgid "night(s)"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
-
#: core/lib/
|
7248 |
#: inc/_ps/wpbc-form-templates.php:112
|
7249 |
msgid "Full cost of the booking"
|
7250 |
msgstr ""
|
7251 |
|
7252 |
-
#: core/lib/
|
7253 |
#: inc/_ps/wpbc-form-templates.php:194
|
7254 |
msgid "Visitors"
|
7255 |
msgstr ""
|
7256 |
|
7257 |
-
#: core/lib/
|
7258 |
#: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
|
7259 |
#: inc/_ps/wpbc-form-templates.php:187
|
7260 |
msgid "Last Name"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: core/lib/
|
7264 |
#: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
|
7265 |
#: inc/_ps/wpbc-form-templates.php:188
|
7266 |
msgid "Email"
|
7267 |
msgstr ""
|
7268 |
|
7269 |
-
#: core/lib/
|
7270 |
#: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
|
7271 |
msgid "Address"
|
7272 |
msgstr ""
|
7273 |
|
7274 |
-
#: core/lib/
|
7275 |
#: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
|
7276 |
msgid "City"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
-
#: core/lib/
|
7280 |
#: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
|
7281 |
msgid "Post code"
|
7282 |
msgstr ""
|
7283 |
|
7284 |
-
#: core/lib/
|
7285 |
#: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
|
7286 |
-
#: inc/gateways/page-gateways.php:
|
7287 |
msgid "Country"
|
7288 |
msgstr ""
|
7289 |
|
7290 |
-
#: core/lib/
|
7291 |
#: inc/_ps/wpbc-form-templates.php:242 inc/_ps/wpbc-form-templates.php:252
|
7292 |
#: inc/_ps/wpbc-form-templates.php:262 inc/_ps/wpbc-form-templates.php:272
|
7293 |
msgid "Check in"
|
7294 |
msgstr ""
|
7295 |
|
7296 |
-
#: core/lib/
|
7297 |
#: inc/_ps/wpbc-form-templates.php:243 inc/_ps/wpbc-form-templates.php:253
|
7298 |
#: inc/_ps/wpbc-form-templates.php:263 inc/_ps/wpbc-form-templates.php:273
|
7299 |
msgid "Check out"
|
7300 |
msgstr ""
|
7301 |
|
7302 |
-
#: core/lib/
|
7303 |
#: inc/_ps/wpbc-form-templates.php:244 inc/_ps/wpbc-form-templates.php:254
|
7304 |
#: inc/_ps/wpbc-form-templates.php:264 inc/_ps/wpbc-form-templates.php:274
|
7305 |
msgid "Guests"
|
7306 |
msgstr ""
|
7307 |
|
7308 |
-
#: core/lib/
|
7309 |
#: inc/_ps/wpbc-form-templates.php:334 inc/_ps/wpbc-form-templates.php:351
|
7310 |
msgid "Max. persons"
|
7311 |
msgstr ""
|
7312 |
|
7313 |
-
#: core/lib/
|
7314 |
msgid "Data"
|
7315 |
msgstr ""
|
7316 |
|
7317 |
-
#: core/lib/
|
7318 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
|
7319 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:318
|
7320 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
|
@@ -7322,20 +7338,20 @@ msgstr ""
|
|
7322 |
msgid "Enable this payment gateway"
|
7323 |
msgstr ""
|
7324 |
|
7325 |
-
#: core/lib/
|
7326 |
msgid "API Login ID"
|
7327 |
msgstr ""
|
7328 |
|
7329 |
-
#: core/lib/
|
7330 |
#, php-format
|
7331 |
msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
|
7332 |
msgstr ""
|
7333 |
|
7334 |
-
#: core/lib/
|
7335 |
msgid "Transaction Key"
|
7336 |
msgstr ""
|
7337 |
|
7338 |
-
#: core/lib/
|
7339 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:529
|
7340 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:546
|
7341 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:561
|
@@ -7343,99 +7359,99 @@ msgstr ""
|
|
7343 |
msgid "This parameter have to assigned to you by %s"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
-
#: core/lib/
|
7347 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
|
7348 |
#: inc/gateways/sage/wpbc-gw-sage.php:424
|
7349 |
msgid "Chose payment mode"
|
7350 |
msgstr ""
|
7351 |
|
7352 |
-
#: core/lib/
|
7353 |
msgid ""
|
7354 |
"Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
|
7355 |
"for using Developer account."
|
7356 |
msgstr ""
|
7357 |
|
7358 |
-
#: core/lib/
|
7359 |
msgid ""
|
7360 |
"Transactions posted against live merchant accounts using either of the above testing methods are "
|
7361 |
"not submitted to financial institutions for authorization and are not stored in the Merchant "
|
7362 |
"Interface."
|
7363 |
msgstr ""
|
7364 |
|
7365 |
-
#: core/lib/
|
7366 |
msgid "Developer Test"
|
7367 |
msgstr ""
|
7368 |
|
7369 |
-
#: core/lib/
|
7370 |
msgid "Live Test"
|
7371 |
msgstr ""
|
7372 |
|
7373 |
-
#: core/lib/
|
7374 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:429
|
7375 |
msgid "Live"
|
7376 |
msgstr ""
|
7377 |
|
7378 |
-
#: core/lib/
|
7379 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
|
7380 |
msgid "Transaction type"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
-
#: core/lib/
|
7384 |
msgid "Select transaction type, which supported by the payment gateway."
|
7385 |
msgstr ""
|
7386 |
|
7387 |
-
#: core/lib/
|
7388 |
msgid "Authorization and Capture"
|
7389 |
msgstr ""
|
7390 |
|
7391 |
-
#: core/lib/
|
7392 |
msgid "Authorization Only"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: core/lib/
|
7396 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:438 inc/gateways/sage/wpbc-gw-sage.php:453
|
7397 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:582
|
7398 |
msgid "U.S. Dollars"
|
7399 |
msgstr ""
|
7400 |
|
7401 |
-
#: core/lib/
|
7402 |
#: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:583
|
7403 |
msgid "Pounds Sterling"
|
7404 |
msgstr ""
|
7405 |
|
7406 |
-
#: core/lib/
|
7407 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
|
7408 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:584
|
7409 |
msgid "Euros"
|
7410 |
msgstr ""
|
7411 |
|
7412 |
-
#: core/lib/
|
7413 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
|
7414 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:585
|
7415 |
msgid "Canadian Dollars"
|
7416 |
msgstr ""
|
7417 |
|
7418 |
-
#: core/lib/
|
7419 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:369 inc/gateways/paypal/wpbc-gw-paypal.php:466
|
7420 |
#: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:726
|
7421 |
msgid "Accepted Currency"
|
7422 |
msgstr ""
|
7423 |
|
7424 |
-
#: core/lib/
|
7425 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:370 inc/gateways/paypal/wpbc-gw-paypal.php:467
|
7426 |
#: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:727
|
7427 |
msgid "The currency code that gateway will process the payment in."
|
7428 |
msgstr ""
|
7429 |
|
7430 |
-
#: core/lib/
|
7431 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:730
|
7432 |
msgid ""
|
7433 |
"Setting the currency that is not supported by the payment processor will result in an error."
|
7434 |
msgstr ""
|
7435 |
|
7436 |
-
#: core/lib/
|
7437 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
7438 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
7439 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
|
7440 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:1046 inc/gateways/ipay88/wpbc-gw-ipay88.php:379
|
7441 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:380 inc/gateways/ipay88/wpbc-gw-ipay88.php:986
|
@@ -7448,23 +7464,23 @@ msgstr ""
|
|
7448 |
msgid "Pay via"
|
7449 |
msgstr ""
|
7450 |
|
7451 |
-
#: core/lib/
|
7452 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:381
|
7453 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
|
7454 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:750
|
7455 |
msgid "Payment button title"
|
7456 |
msgstr ""
|
7457 |
|
7458 |
-
#: core/lib/
|
7459 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
|
7460 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
|
7461 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:751
|
7462 |
msgid "Enter the title of the payment button"
|
7463 |
msgstr ""
|
7464 |
|
7465 |
-
#: core/lib/
|
7466 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
7467 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:
|
7468 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
|
7469 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:393 inc/gateways/ipay88/wpbc-gw-ipay88.php:394
|
7470 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:983 inc/gateways/paypal/wpbc-gw-paypal.php:523
|
@@ -7477,104 +7493,104 @@ msgstr ""
|
|
7477 |
msgid "Payment for booking %s on these day(s): %s"
|
7478 |
msgstr ""
|
7479 |
|
7480 |
-
#: core/lib/
|
7481 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:395
|
7482 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
|
7483 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:764
|
7484 |
msgid "Payment description at gateway website"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
-
#: core/lib/
|
7488 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:396
|
7489 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
|
7490 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:765
|
7491 |
msgid "Enter the service name or the reason for the payment here."
|
7492 |
msgstr ""
|
7493 |
|
7494 |
-
#: core/lib/
|
7495 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:397
|
7496 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
|
7497 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:766
|
7498 |
msgid "You can use any shortcodes, which you have used in content of booking fields data form."
|
7499 |
msgstr ""
|
7500 |
|
7501 |
-
#: core/lib/
|
7502 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:400
|
7503 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
|
7504 |
#, php-format
|
7505 |
msgid "This field support only up to %s characters by payment system."
|
7506 |
msgstr ""
|
7507 |
|
7508 |
-
#: core/lib/
|
7509 |
msgid "Activate Relay Response"
|
7510 |
msgstr ""
|
7511 |
|
7512 |
-
#: core/lib/
|
7513 |
msgid ""
|
7514 |
"Indicate to the payment gateway that you would like to receive the transaction response to your "
|
7515 |
"site."
|
7516 |
msgstr ""
|
7517 |
|
7518 |
-
#: core/lib/
|
7519 |
msgid ""
|
7520 |
"You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
|
7521 |
"Interface, if a Relay Response is activated here."
|
7522 |
msgstr ""
|
7523 |
|
7524 |
-
#: core/lib/
|
7525 |
msgid "MD5 Hash value"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
-
#: core/lib/
|
7529 |
msgid ""
|
7530 |
"Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
|
7531 |
msgstr ""
|
7532 |
|
7533 |
-
#: core/lib/
|
7534 |
msgid "To configure MD5 Hash value in Relay Response for your transactions"
|
7535 |
msgstr ""
|
7536 |
|
7537 |
-
#: core/lib/
|
7538 |
msgid "Log on to the Merchant Interface"
|
7539 |
msgstr ""
|
7540 |
|
7541 |
-
#: core/lib/
|
7542 |
msgid "Click Settings under Account in the main menu on the left"
|
7543 |
msgstr ""
|
7544 |
|
7545 |
-
#: core/lib/
|
7546 |
msgid "Click MD5-Hash in the Security Settings section"
|
7547 |
msgstr ""
|
7548 |
|
7549 |
-
#: core/lib/
|
7550 |
msgid "Enter this value"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
-
#: core/lib/
|
7554 |
msgid "Click Submit"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
-
#: core/lib/
|
7558 |
#, php-format
|
7559 |
msgid ""
|
7560 |
"For more information about configuring Relay Response in the Merchant Interface, please see the "
|
7561 |
"%sMerchant Integration Guide%s"
|
7562 |
msgstr ""
|
7563 |
|
7564 |
-
#: core/lib/
|
7565 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:421
|
7566 |
#: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:790
|
7567 |
msgid "Return URL after Successful order"
|
7568 |
msgstr ""
|
7569 |
|
7570 |
-
#: core/lib/
|
7571 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:437
|
7572 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
|
7573 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:808
|
7574 |
msgid "The URL where visitor will be redirected after completing payment."
|
7575 |
msgstr ""
|
7576 |
|
7577 |
-
#: core/lib/
|
7578 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:438
|
7579 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
|
7580 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:809
|
@@ -7582,20 +7598,20 @@ msgstr ""
|
|
7582 |
msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
|
7583 |
msgstr ""
|
7584 |
|
7585 |
-
#: core/lib/
|
7586 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:452
|
7587 |
#: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:824
|
7588 |
msgid "Return URL after Failed order"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
-
#: core/lib/
|
7592 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:468
|
7593 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
|
7594 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:842
|
7595 |
msgid "The URL where the visitor will be redirected after completing payment."
|
7596 |
msgstr ""
|
7597 |
|
7598 |
-
#: core/lib/
|
7599 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:469
|
7600 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
|
7601 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:843
|
@@ -7603,21 +7619,21 @@ msgstr ""
|
|
7603 |
msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
|
7604 |
msgstr ""
|
7605 |
|
7606 |
-
#: core/lib/
|
7607 |
msgid "Automatically approve booking"
|
7608 |
msgstr ""
|
7609 |
|
7610 |
-
#: core/lib/
|
7611 |
msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
|
7612 |
msgstr ""
|
7613 |
|
7614 |
-
#: core/lib/
|
7615 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/paypal/wpbc-gw-paypal.php:640
|
7616 |
#: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:857
|
7617 |
msgid "This will not work, if the visitor leaves the payment page."
|
7618 |
msgstr ""
|
7619 |
|
7620 |
-
#: core/lib/
|
7621 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7622 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7623 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
|
@@ -7631,11 +7647,11 @@ msgstr ""
|
|
7631 |
msgid "%s Settings"
|
7632 |
msgstr ""
|
7633 |
|
7634 |
-
#: core/lib/
|
7635 |
msgid "Integration of authorizenet payment system"
|
7636 |
msgstr ""
|
7637 |
|
7638 |
-
#: core/lib/
|
7639 |
#, php-format
|
7640 |
msgid ""
|
7641 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
@@ -7643,233 +7659,233 @@ msgid ""
|
|
7643 |
"gateway."
|
7644 |
msgstr ""
|
7645 |
|
7646 |
-
#: core/lib/
|
7647 |
msgid ""
|
7648 |
"Please configure all fields inside the Billing form fields tab at this page, when using a "
|
7649 |
"European payment processor"
|
7650 |
msgstr ""
|
7651 |
|
7652 |
-
#: core/lib/
|
7653 |
msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
|
7654 |
msgstr ""
|
7655 |
|
7656 |
-
#: core/lib/
|
7657 |
#, php-format
|
7658 |
msgid "%s - Server Integration Method (SIM)"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
-
#: core/lib/
|
7662 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
|
7663 |
msgid "Payment method description that the customer will see on your payment page."
|
7664 |
msgstr ""
|
7665 |
|
7666 |
-
#: core/lib/
|
7667 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
|
7668 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7669 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7670 |
msgid "Bank Transfer"
|
7671 |
msgstr ""
|
7672 |
|
7673 |
-
#: core/lib/
|
7674 |
msgid "Integration of Bank Transfer payment system"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
-
#: core/lib/
|
7678 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
|
7679 |
msgid "Account details"
|
7680 |
msgstr ""
|
7681 |
|
7682 |
-
#: core/lib/
|
7683 |
#, php-format
|
7684 |
msgid "Allow payments by %sdirect bank / wire transfer%s"
|
7685 |
msgstr ""
|
7686 |
|
7687 |
-
#: core/lib/
|
7688 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
|
7689 |
msgid "Its only show fixed payment details."
|
7690 |
msgstr ""
|
7691 |
|
7692 |
-
#: core/lib/
|
7693 |
msgid "Sort Code"
|
7694 |
msgstr ""
|
7695 |
|
7696 |
-
#: core/lib/
|
7697 |
#, php-format
|
7698 |
msgid ""
|
7699 |
"Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
|
7700 |
"the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
|
7701 |
msgstr ""
|
7702 |
|
7703 |
-
#: core/lib/
|
7704 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
|
7705 |
msgid "Account Number"
|
7706 |
msgstr ""
|
7707 |
|
7708 |
-
#: core/lib/
|
7709 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
|
7710 |
msgid "IBAN"
|
7711 |
msgstr ""
|
7712 |
|
7713 |
-
#: core/lib/
|
7714 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
|
7715 |
msgid "BIC / Swift"
|
7716 |
msgstr ""
|
7717 |
|
7718 |
-
#: core/lib/
|
7719 |
msgid "Account Name"
|
7720 |
msgstr ""
|
7721 |
|
7722 |
-
#: core/lib/
|
7723 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:324
|
7724 |
msgid "Bank Name"
|
7725 |
msgstr ""
|
7726 |
|
7727 |
-
#: core/lib/
|
7728 |
msgid "BSB"
|
7729 |
msgstr ""
|
7730 |
|
7731 |
-
#: core/lib/
|
7732 |
msgid "Bank Transit Number"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
-
#: core/lib/
|
7736 |
msgid "IFSC"
|
7737 |
msgstr ""
|
7738 |
|
7739 |
-
#: core/lib/
|
7740 |
msgid "Branch Sort"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
-
#: core/lib/
|
7744 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
|
7745 |
msgid "Bank Code"
|
7746 |
msgstr ""
|
7747 |
|
7748 |
-
#: core/lib/
|
7749 |
msgid "Routing Number"
|
7750 |
msgstr ""
|
7751 |
|
7752 |
-
#: core/lib/
|
7753 |
msgid "Branch Code"
|
7754 |
msgstr ""
|
7755 |
|
7756 |
-
#: core/lib/
|
7757 |
#, php-format
|
7758 |
msgid "%s - inserting all bank accounts details"
|
7759 |
msgstr ""
|
7760 |
|
7761 |
-
#: core/lib/
|
7762 |
#, php-format
|
7763 |
msgid "%s - inserting account name"
|
7764 |
msgstr ""
|
7765 |
|
7766 |
-
#: core/lib/
|
7767 |
#, php-format
|
7768 |
msgid "%s - inserting account number"
|
7769 |
msgstr ""
|
7770 |
|
7771 |
-
#: core/lib/
|
7772 |
#, php-format
|
7773 |
msgid "%s - inserting bank name "
|
7774 |
msgstr ""
|
7775 |
|
7776 |
-
#: core/lib/
|
7777 |
#, php-format
|
7778 |
msgid "%s - inserting sort code "
|
7779 |
msgstr ""
|
7780 |
|
7781 |
-
#: core/lib/
|
7782 |
#, php-format
|
7783 |
msgid "%s - inserting IBAN "
|
7784 |
msgstr ""
|
7785 |
|
7786 |
-
#: core/lib/
|
7787 |
#, php-format
|
7788 |
msgid "%s - inserting BIC "
|
7789 |
msgstr ""
|
7790 |
|
7791 |
-
#: core/lib/
|
7792 |
msgid ""
|
7793 |
"You can use any shortcodes, that you can use in payment description form at Settings Payment "
|
7794 |
"General page"
|
7795 |
msgstr ""
|
7796 |
|
7797 |
-
#: core/lib/
|
7798 |
msgid "+ Add Account"
|
7799 |
msgstr ""
|
7800 |
|
7801 |
-
#: core/lib/
|
7802 |
msgid "Remove selected account(s)"
|
7803 |
msgstr ""
|
7804 |
|
7805 |
-
#: core/lib/
|
7806 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:570
|
7807 |
msgid "Successful payment"
|
7808 |
msgstr ""
|
7809 |
|
7810 |
-
#: core/lib/
|
7811 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:573
|
7812 |
msgid " Parameters are incorrect,"
|
7813 |
msgstr ""
|
7814 |
|
7815 |
-
#: core/lib/
|
7816 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:575
|
7817 |
msgid "Cannot find the record"
|
7818 |
msgstr ""
|
7819 |
|
7820 |
-
#: core/lib/
|
7821 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:577
|
7822 |
msgid "Amount different"
|
7823 |
msgstr ""
|
7824 |
|
7825 |
-
#: core/lib/
|
7826 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:579
|
7827 |
msgid "Payment failed"
|
7828 |
msgstr ""
|
7829 |
|
7830 |
-
#: core/lib/
|
7831 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:581
|
7832 |
msgid "Payment status updated by Mobile88 Admin(Fail)"
|
7833 |
msgstr ""
|
7834 |
|
7835 |
-
#: core/lib/
|
7836 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:583
|
7837 |
msgid "Connection Error"
|
7838 |
msgstr ""
|
7839 |
|
7840 |
-
#: core/lib/
|
7841 |
msgid "Merchant Code"
|
7842 |
msgstr ""
|
7843 |
|
7844 |
-
#: core/lib/
|
7845 |
msgid "Enter your iPay88 Merchant Code."
|
7846 |
msgstr ""
|
7847 |
|
7848 |
-
#: core/lib/
|
7849 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:343
|
7850 |
msgid "Merchant Key"
|
7851 |
msgstr ""
|
7852 |
|
7853 |
-
#: core/lib/
|
7854 |
msgid "Enter your iPay88 Merchant Key."
|
7855 |
msgstr ""
|
7856 |
|
7857 |
-
#: core/lib/
|
7858 |
msgid "Malaysian Ringgit"
|
7859 |
msgstr ""
|
7860 |
|
7861 |
-
#: core/lib/
|
7862 |
#: inc/gateways/sage/wpbc-gw-sage.php:471
|
7863 |
msgid "Philippine Pesos"
|
7864 |
msgstr ""
|
7865 |
|
7866 |
-
#: core/lib/
|
7867 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:479 inc/gateways/paypal/wpbc-gw-paypal.php:637
|
7868 |
#: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:854
|
7869 |
msgid "Automatically approve/cancel booking"
|
7870 |
msgstr ""
|
7871 |
|
7872 |
-
#: core/lib/
|
7873 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:480 inc/gateways/paypal/wpbc-gw-paypal.php:638
|
7874 |
#: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:855
|
7875 |
msgid ""
|
@@ -7877,11 +7893,11 @@ msgid ""
|
|
7877 |
"automatically cancel the booking, when visitor makes a payment cancellation."
|
7878 |
msgstr ""
|
7879 |
|
7880 |
-
#: core/lib/
|
7881 |
msgid "Integration of iPay88 payment system"
|
7882 |
msgstr ""
|
7883 |
|
7884 |
-
#: core/lib/
|
7885 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:832 inc/gateways/sage/wpbc-gw-sage.php:883
|
7886 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1113
|
7887 |
#, php-format
|
@@ -7890,734 +7906,734 @@ msgid ""
|
|
7890 |
"tab."
|
7891 |
msgstr ""
|
7892 |
|
7893 |
-
#: core/lib/
|
7894 |
msgid "for 1 day"
|
7895 |
msgstr ""
|
7896 |
|
7897 |
-
#: core/lib/
|
7898 |
msgid "for 1 night"
|
7899 |
msgstr ""
|
7900 |
|
7901 |
-
#: core/lib/
|
7902 |
msgid "fixed sum"
|
7903 |
msgstr ""
|
7904 |
|
7905 |
-
#: core/lib/
|
7906 |
msgid "for 1 hour"
|
7907 |
msgstr ""
|
7908 |
|
7909 |
-
#: core/lib/
|
7910 |
msgid "Set the cost"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
-
#: core/lib/
|
7914 |
msgid " Select your cost configuration."
|
7915 |
msgstr ""
|
7916 |
|
7917 |
-
#: core/lib/
|
7918 |
msgid "Time impact to cost"
|
7919 |
msgstr ""
|
7920 |
|
7921 |
-
#: core/lib/
|
7922 |
#, php-format
|
7923 |
msgid ""
|
7924 |
"Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
|
7925 |
"calculation%s."
|
7926 |
msgstr ""
|
7927 |
|
7928 |
-
#: core/lib/
|
7929 |
msgid ""
|
7930 |
"Check this box if you want that specific additional cost, which configured as percentage for "
|
7931 |
"some option, apply to other additional fixed costs and not only to original booking cost."
|
7932 |
msgstr ""
|
7933 |
|
7934 |
-
#: core/lib/
|
7935 |
-
#: inc/gateways/page-gateways.php:
|
7936 |
msgid "Currency"
|
7937 |
msgstr ""
|
7938 |
|
7939 |
-
#: core/lib/
|
7940 |
msgid ""
|
7941 |
"This is default currency that showing at your website. Specific payment gateway(s) can support "
|
7942 |
"or does not suport it."
|
7943 |
msgstr ""
|
7944 |
|
7945 |
-
#: core/lib/
|
7946 |
-
#: inc/gateways/page-gateways.php:
|
7947 |
msgid "Important"
|
7948 |
msgstr ""
|
7949 |
|
7950 |
-
#: core/lib/
|
7951 |
msgid "Check and configure currency at each activated payment gateway."
|
7952 |
msgstr ""
|
7953 |
|
7954 |
-
#: core/lib/
|
7955 |
msgid "Currency Position"
|
7956 |
msgstr ""
|
7957 |
|
7958 |
-
#: core/lib/
|
7959 |
msgid "Set position of the currency symbol."
|
7960 |
msgstr ""
|
7961 |
|
7962 |
-
#: core/lib/
|
7963 |
msgid "Left"
|
7964 |
msgstr ""
|
7965 |
|
7966 |
-
#: core/lib/
|
7967 |
msgid "Right"
|
7968 |
msgstr ""
|
7969 |
|
7970 |
-
#: core/lib/
|
7971 |
msgid "Left with space"
|
7972 |
msgstr ""
|
7973 |
|
7974 |
-
#: core/lib/
|
7975 |
msgid "Right with space"
|
7976 |
msgstr ""
|
7977 |
|
7978 |
-
#: core/lib/
|
7979 |
msgid "Currency format"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
-
#: core/lib/
|
7983 |
msgid "Number of decimal points"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
-
#: core/lib/
|
7987 |
-
#: inc/gateways/page-gateways.php:
|
7988 |
msgid "No separator"
|
7989 |
msgstr ""
|
7990 |
|
7991 |
-
#: core/lib/
|
7992 |
-
#: inc/gateways/page-gateways.php:
|
7993 |
msgid "Space"
|
7994 |
msgstr ""
|
7995 |
|
7996 |
-
#: core/lib/
|
7997 |
-
#: inc/gateways/page-gateways.php:
|
7998 |
msgid "Dot"
|
7999 |
msgstr ""
|
8000 |
|
8001 |
-
#: core/lib/
|
8002 |
-
#: inc/gateways/page-gateways.php:
|
8003 |
msgid "Comma"
|
8004 |
msgstr ""
|
8005 |
|
8006 |
-
#: core/lib/
|
8007 |
msgid "Separator for the decimal point"
|
8008 |
msgstr ""
|
8009 |
|
8010 |
-
#: core/lib/
|
8011 |
msgid "Thousands separator"
|
8012 |
msgstr ""
|
8013 |
|
8014 |
-
#: core/lib/
|
8015 |
msgid "Please select"
|
8016 |
msgstr ""
|
8017 |
|
8018 |
-
#: core/lib/
|
8019 |
msgid ""
|
8020 |
"Please select a field from your booking form. This field will be automatically assigned to the "
|
8021 |
"current field in the billing form."
|
8022 |
msgstr ""
|
8023 |
|
8024 |
-
#: core/lib/
|
8025 |
msgid "Customer Email"
|
8026 |
msgstr ""
|
8027 |
|
8028 |
-
#: core/lib/
|
8029 |
msgid "First Name(s)"
|
8030 |
msgstr ""
|
8031 |
|
8032 |
-
#: core/lib/
|
8033 |
msgid "Last name"
|
8034 |
msgstr ""
|
8035 |
|
8036 |
-
#: core/lib/
|
8037 |
msgid "Billing Address"
|
8038 |
msgstr ""
|
8039 |
|
8040 |
-
#: core/lib/
|
8041 |
msgid "Billing City"
|
8042 |
msgstr ""
|
8043 |
|
8044 |
-
#: core/lib/
|
8045 |
msgid "Post Code"
|
8046 |
msgstr ""
|
8047 |
|
8048 |
-
#: core/lib/
|
8049 |
msgid "State"
|
8050 |
msgstr ""
|
8051 |
|
8052 |
-
#: core/lib/
|
8053 |
msgid "Show booking details in payment form"
|
8054 |
msgstr ""
|
8055 |
|
8056 |
-
#: core/lib/
|
8057 |
#, php-format
|
8058 |
msgid ""
|
8059 |
" Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
|
8060 |
msgstr ""
|
8061 |
|
8062 |
-
#: core/lib/
|
8063 |
msgid "Configure booking details summary above the payment form"
|
8064 |
msgstr ""
|
8065 |
|
8066 |
-
#: core/lib/
|
8067 |
msgid "Payments"
|
8068 |
msgstr ""
|
8069 |
|
8070 |
-
#: core/lib/
|
8071 |
msgid "Customizaton of Payment"
|
8072 |
msgstr ""
|
8073 |
|
8074 |
-
#: core/lib/
|
8075 |
msgid "Payment Gateways"
|
8076 |
msgstr ""
|
8077 |
|
8078 |
-
#: core/lib/
|
8079 |
-
#: inc/gateways/page-gateways.php:
|
8080 |
msgid "Payment Settings"
|
8081 |
msgstr ""
|
8082 |
|
8083 |
-
#: core/lib/
|
8084 |
msgid "Payment Gateways - General Settings"
|
8085 |
msgstr ""
|
8086 |
|
8087 |
-
#: core/lib/
|
8088 |
-
#: inc/gateways/page-gateways.php:
|
8089 |
msgid "Active Payment Gateways"
|
8090 |
msgstr ""
|
8091 |
|
8092 |
-
#: core/lib/
|
8093 |
-
#: inc/gateways/page-gateways.php:
|
8094 |
msgid "Billing form fields"
|
8095 |
msgstr ""
|
8096 |
|
8097 |
-
#: core/lib/
|
8098 |
-
#: inc/gateways/page-gateways.php:
|
8099 |
msgid "Payment Description"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
-
#: core/lib/
|
8103 |
msgid "Gateway"
|
8104 |
msgstr ""
|
8105 |
|
8106 |
-
#: core/lib/
|
8107 |
#, php-format
|
8108 |
msgid "Some currencies at payment gateways are different from main currency %s"
|
8109 |
msgstr ""
|
8110 |
|
8111 |
-
#: core/lib/
|
8112 |
#, php-format
|
8113 |
msgid ""
|
8114 |
"Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
|
8115 |
"payment form without currency exchange! Its can be reason of wrong cost."
|
8116 |
msgstr ""
|
8117 |
|
8118 |
-
#: core/lib/
|
8119 |
msgid "ID of booking"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
-
#: core/lib/
|
8123 |
msgid "ID of booking resources"
|
8124 |
msgstr ""
|
8125 |
|
8126 |
-
#: core/lib/
|
8127 |
msgid "current date"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
-
#: core/lib/
|
8131 |
msgid "current time"
|
8132 |
msgstr ""
|
8133 |
|
8134 |
-
#: core/lib/
|
8135 |
msgid "content data of this booking"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
-
#: core/lib/
|
8139 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
|
8140 |
msgid "show amount to pay"
|
8141 |
msgstr ""
|
8142 |
|
8143 |
-
#: core/lib/
|
8144 |
msgid "total booking cost"
|
8145 |
msgstr ""
|
8146 |
|
8147 |
-
#: core/lib/
|
8148 |
msgid "deposit cost"
|
8149 |
msgstr ""
|
8150 |
|
8151 |
-
#: core/lib/
|
8152 |
msgid "balance cost"
|
8153 |
msgstr ""
|
8154 |
|
8155 |
-
#: core/lib/
|
8156 |
msgid "original booking cost"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
-
#: core/lib/
|
8160 |
msgid "additional booking cost"
|
8161 |
msgstr ""
|
8162 |
|
8163 |
-
#: core/lib/
|
8164 |
msgid "Amount to pay"
|
8165 |
msgstr ""
|
8166 |
|
8167 |
-
#: core/lib/
|
8168 |
#, php-format
|
8169 |
msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
|
8170 |
msgstr ""
|
8171 |
|
8172 |
-
#: core/lib/
|
8173 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
|
8174 |
msgid "Pay in Cash"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
-
#: core/lib/
|
8178 |
msgid "Integration of Pay in Cash payment system"
|
8179 |
msgstr ""
|
8180 |
|
8181 |
-
#: core/lib/
|
8182 |
#, php-format
|
8183 |
msgid "If you accept %scash payment%s, you can write details about it here"
|
8184 |
msgstr ""
|
8185 |
|
8186 |
-
#: core/lib/
|
8187 |
#, php-format
|
8188 |
msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
|
8189 |
msgstr ""
|
8190 |
|
8191 |
-
#: core/lib/
|
8192 |
msgid "Error IPN"
|
8193 |
msgstr ""
|
8194 |
|
8195 |
-
#: core/lib/
|
8196 |
msgid "Verified IPN"
|
8197 |
msgstr ""
|
8198 |
|
8199 |
-
#: core/lib/
|
8200 |
msgid "Invalid IPN"
|
8201 |
msgstr ""
|
8202 |
|
8203 |
-
#: core/lib/
|
8204 |
msgid "Make payments with payPal - its fast, free and secure!"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
-
#: core/lib/
|
8208 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8209 |
msgid "Paypal Standard"
|
8210 |
msgstr ""
|
8211 |
|
8212 |
-
#: core/lib/
|
8213 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8214 |
msgid "Paypal Pro Hosted Solution"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
-
#: core/lib/
|
8218 |
msgid "Account Type"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
-
#: core/lib/
|
8222 |
msgid "Paypal Email address to receive payments"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
-
#: core/lib/
|
8226 |
msgid "This is the Paypal Email address where payments will be sent"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
-
#: core/lib/
|
8230 |
msgid "Secure Merchant ID"
|
8231 |
msgstr ""
|
8232 |
|
8233 |
-
#: core/lib/
|
8234 |
msgid "This is the Secure Merchant ID, which can be found on the profile page"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
-
#: core/lib/
|
8238 |
msgid ""
|
8239 |
" Indicates whether the transaction is payment on a final sale or an authorization for a final "
|
8240 |
"sale, to be captured later. "
|
8241 |
msgstr ""
|
8242 |
|
8243 |
-
#: core/lib/
|
8244 |
msgid "Sale"
|
8245 |
msgstr ""
|
8246 |
|
8247 |
-
#: core/lib/
|
8248 |
msgid "Authorization"
|
8249 |
msgstr ""
|
8250 |
|
8251 |
-
#: core/lib/
|
8252 |
msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
|
8253 |
msgstr ""
|
8254 |
|
8255 |
-
#: core/lib/
|
8256 |
msgid "Sandbox"
|
8257 |
msgstr ""
|
8258 |
|
8259 |
-
#: core/lib/
|
8260 |
msgid "British Pound"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
-
#: core/lib/
|
8264 |
msgid "Japanese Yen"
|
8265 |
msgstr ""
|
8266 |
|
8267 |
-
#: core/lib/
|
8268 |
#: inc/gateways/sage/wpbc-gw-sage.php:455
|
8269 |
msgid "Australian Dollars"
|
8270 |
msgstr ""
|
8271 |
|
8272 |
-
#: core/lib/
|
8273 |
#: inc/gateways/sage/wpbc-gw-sage.php:457
|
8274 |
msgid "New Zealand Dollar"
|
8275 |
msgstr ""
|
8276 |
|
8277 |
-
#: core/lib/
|
8278 |
#: inc/gateways/sage/wpbc-gw-sage.php:458
|
8279 |
msgid "Swiss Franc"
|
8280 |
msgstr ""
|
8281 |
|
8282 |
-
#: core/lib/
|
8283 |
#: inc/gateways/sage/wpbc-gw-sage.php:459
|
8284 |
msgid "Hong Kong Dollar"
|
8285 |
msgstr ""
|
8286 |
|
8287 |
-
#: core/lib/
|
8288 |
#: inc/gateways/sage/wpbc-gw-sage.php:460
|
8289 |
msgid "Singapore Dollar"
|
8290 |
msgstr ""
|
8291 |
|
8292 |
-
#: core/lib/
|
8293 |
#: inc/gateways/sage/wpbc-gw-sage.php:461
|
8294 |
msgid "Swedish Krona"
|
8295 |
msgstr ""
|
8296 |
|
8297 |
-
#: core/lib/
|
8298 |
#: inc/gateways/sage/wpbc-gw-sage.php:462
|
8299 |
msgid "Danish Krone"
|
8300 |
msgstr ""
|
8301 |
|
8302 |
-
#: core/lib/
|
8303 |
#: inc/gateways/sage/wpbc-gw-sage.php:463
|
8304 |
msgid "Polish Zloty"
|
8305 |
msgstr ""
|
8306 |
|
8307 |
-
#: core/lib/
|
8308 |
#: inc/gateways/sage/wpbc-gw-sage.php:464
|
8309 |
msgid "Norwegian Krone"
|
8310 |
msgstr ""
|
8311 |
|
8312 |
-
#: core/lib/
|
8313 |
#: inc/gateways/sage/wpbc-gw-sage.php:465
|
8314 |
msgid "Hungarian Forint"
|
8315 |
msgstr ""
|
8316 |
|
8317 |
-
#: core/lib/
|
8318 |
#: inc/gateways/sage/wpbc-gw-sage.php:466
|
8319 |
msgid "Czech Koruna"
|
8320 |
msgstr ""
|
8321 |
|
8322 |
-
#: core/lib/
|
8323 |
msgid "Israeli New Shekel"
|
8324 |
msgstr ""
|
8325 |
|
8326 |
-
#: core/lib/
|
8327 |
#: inc/gateways/sage/wpbc-gw-sage.php:468
|
8328 |
msgid "Mexican Peso"
|
8329 |
msgstr ""
|
8330 |
|
8331 |
-
#: core/lib/
|
8332 |
#: inc/gateways/sage/wpbc-gw-sage.php:469
|
8333 |
msgid "Brazilian Real (only for Brazilian users)"
|
8334 |
msgstr ""
|
8335 |
|
8336 |
-
#: core/lib/
|
8337 |
#: inc/gateways/sage/wpbc-gw-sage.php:470
|
8338 |
msgid "Malaysian Ringgits (only for Malaysian users)"
|
8339 |
msgstr ""
|
8340 |
|
8341 |
-
#: core/lib/
|
8342 |
#: inc/gateways/sage/wpbc-gw-sage.php:472
|
8343 |
msgid "Taiwan New Dollars"
|
8344 |
msgstr ""
|
8345 |
|
8346 |
-
#: core/lib/
|
8347 |
#: inc/gateways/sage/wpbc-gw-sage.php:473
|
8348 |
msgid "Thai Baht"
|
8349 |
msgstr ""
|
8350 |
|
8351 |
-
#: core/lib/
|
8352 |
msgid "Turkish Lira (only for Turkish members)"
|
8353 |
msgstr ""
|
8354 |
|
8355 |
-
#: core/lib/
|
8356 |
msgid "Custom button title"
|
8357 |
msgstr ""
|
8358 |
|
8359 |
-
#: core/lib/
|
8360 |
msgid "Payment Button type"
|
8361 |
msgstr ""
|
8362 |
|
8363 |
-
#: core/lib/
|
8364 |
msgid "Show Reference Text Box"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
-
#: core/lib/
|
8368 |
msgid "Check this box to show Reference Text Box"
|
8369 |
msgstr ""
|
8370 |
|
8371 |
-
#: core/lib/
|
8372 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
|
8373 |
msgid "Enter your phone number"
|
8374 |
msgstr ""
|
8375 |
|
8376 |
-
#: core/lib/
|
8377 |
msgid "Reference Text Box Title"
|
8378 |
msgstr ""
|
8379 |
|
8380 |
-
#: core/lib/
|
8381 |
msgid ""
|
8382 |
"Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
|
8383 |
msgstr ""
|
8384 |
|
8385 |
-
#: core/lib/
|
8386 |
msgid "Return URL from PayPal"
|
8387 |
msgstr ""
|
8388 |
|
8389 |
-
#: core/lib/
|
8390 |
msgid "Cancel Return URL from PayPal"
|
8391 |
msgstr ""
|
8392 |
|
8393 |
-
#: core/lib/
|
8394 |
#, php-format
|
8395 |
msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
|
8396 |
msgstr ""
|
8397 |
|
8398 |
-
#: core/lib/
|
8399 |
msgid "Follow these steps to configure it:"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
-
#: core/lib/
|
8403 |
msgid "Log in to your PayPal account."
|
8404 |
msgstr ""
|
8405 |
|
8406 |
-
#: core/lib/
|
8407 |
msgid "Click the Profile subtab."
|
8408 |
msgstr ""
|
8409 |
|
8410 |
-
#: core/lib/
|
8411 |
msgid "Click Website Payment Preferences in the Seller Preferences column."
|
8412 |
msgstr ""
|
8413 |
|
8414 |
-
#: core/lib/
|
8415 |
msgid "Under Auto Return for Website Payments, click the On radio button."
|
8416 |
msgstr ""
|
8417 |
|
8418 |
-
#: core/lib/
|
8419 |
msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
|
8420 |
msgstr ""
|
8421 |
|
8422 |
-
#: core/lib/
|
8423 |
msgid ""
|
8424 |
"Instant Payment Notification (IPN) is a message service that notifies you of events related to "
|
8425 |
"PayPal transactions"
|
8426 |
msgstr ""
|
8427 |
|
8428 |
-
#: core/lib/
|
8429 |
msgid "Sending email for verified transaction"
|
8430 |
msgstr ""
|
8431 |
|
8432 |
-
#: core/lib/
|
8433 |
#, php-format
|
8434 |
msgid "Email for getting report for %sverified%s transactions."
|
8435 |
msgstr ""
|
8436 |
|
8437 |
-
#: core/lib/
|
8438 |
msgid "Sending email for invalid transaction"
|
8439 |
msgstr ""
|
8440 |
|
8441 |
-
#: core/lib/
|
8442 |
#, php-format
|
8443 |
msgid "Email for getting report for %sinvalid%s transactions."
|
8444 |
msgstr ""
|
8445 |
|
8446 |
-
#: core/lib/
|
8447 |
msgid "Sending email if error occur during verification"
|
8448 |
msgstr ""
|
8449 |
|
8450 |
-
#: core/lib/
|
8451 |
#, php-format
|
8452 |
msgid "Email for getting report for %ssome errors in verification process%s."
|
8453 |
msgstr ""
|
8454 |
|
8455 |
-
#: core/lib/
|
8456 |
msgid "Use SSL connection"
|
8457 |
msgstr ""
|
8458 |
|
8459 |
-
#: core/lib/
|
8460 |
msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
|
8461 |
msgstr ""
|
8462 |
|
8463 |
-
#: core/lib/
|
8464 |
msgid "Use cURL posting"
|
8465 |
msgstr ""
|
8466 |
|
8467 |
-
#: core/lib/
|
8468 |
msgid "Use the cURL for posting data, instead of fsockopen() function"
|
8469 |
msgstr ""
|
8470 |
|
8471 |
-
#: core/lib/
|
8472 |
msgid " Follow these instructions to set up your listener at your PayPal account:"
|
8473 |
msgstr ""
|
8474 |
|
8475 |
-
#: core/lib/
|
8476 |
msgid "Click Profile on the My Account tab."
|
8477 |
msgstr ""
|
8478 |
|
8479 |
-
#: core/lib/
|
8480 |
msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
|
8481 |
msgstr ""
|
8482 |
|
8483 |
-
#: core/lib/
|
8484 |
msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
|
8485 |
msgstr ""
|
8486 |
|
8487 |
-
#: core/lib/
|
8488 |
msgid "Specify the URL for your listener in the Notification URL field as:"
|
8489 |
msgstr ""
|
8490 |
|
8491 |
-
#: core/lib/
|
8492 |
msgid "Click Receive IPN messages (Enabled) to enable your listener."
|
8493 |
msgstr ""
|
8494 |
|
8495 |
-
#: core/lib/
|
8496 |
msgid "Click Save."
|
8497 |
msgstr ""
|
8498 |
|
8499 |
-
#: core/lib/
|
8500 |
msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
|
8501 |
msgstr ""
|
8502 |
|
8503 |
-
#: core/lib/
|
8504 |
msgid "PayPal"
|
8505 |
msgstr ""
|
8506 |
|
8507 |
-
#: core/lib/
|
8508 |
msgid "Integration of Paypal payment system"
|
8509 |
msgstr ""
|
8510 |
|
8511 |
-
#: core/lib/
|
8512 |
msgid "PayPal IPN"
|
8513 |
msgstr ""
|
8514 |
|
8515 |
-
#: core/lib/
|
8516 |
#, php-format
|
8517 |
msgid "Pay using %s payment service"
|
8518 |
msgstr ""
|
8519 |
|
8520 |
-
#: core/lib/
|
8521 |
msgid "Vendor Name"
|
8522 |
msgstr ""
|
8523 |
|
8524 |
-
#: core/lib/
|
8525 |
msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
|
8526 |
msgstr ""
|
8527 |
|
8528 |
-
#: core/lib/
|
8529 |
msgid "XOR Encryption password"
|
8530 |
msgstr ""
|
8531 |
|
8532 |
-
#: core/lib/
|
8533 |
msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
|
8534 |
msgstr ""
|
8535 |
|
8536 |
-
#: core/lib/
|
8537 |
#: inc/gateways/sage/wpbc-gw-sage.php:425
|
8538 |
msgid "Select TEST for the Test Server and LIVE in the live environment"
|
8539 |
msgstr ""
|
8540 |
|
8541 |
-
#: core/lib/
|
8542 |
#: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:501
|
8543 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
8544 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
8545 |
msgid "TEST"
|
8546 |
msgstr ""
|
8547 |
|
8548 |
-
#: core/lib/
|
8549 |
#: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:502
|
8550 |
msgid "LIVE"
|
8551 |
msgstr ""
|
8552 |
|
8553 |
-
#: core/lib/
|
8554 |
msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
|
8555 |
msgstr ""
|
8556 |
|
8557 |
-
#: core/lib/
|
8558 |
msgid "PAYMENT"
|
8559 |
msgstr ""
|
8560 |
|
8561 |
-
#: core/lib/
|
8562 |
msgid "DEFERRED"
|
8563 |
msgstr ""
|
8564 |
|
8565 |
-
#: core/lib/
|
8566 |
msgid "AUTHENTICATE"
|
8567 |
msgstr ""
|
8568 |
|
8569 |
-
#: core/lib/
|
8570 |
msgid "Yen"
|
8571 |
msgstr ""
|
8572 |
|
8573 |
-
#: core/lib/
|
8574 |
msgid "Israeli Shekel"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
-
#: core/lib/
|
8578 |
msgid "Sage"
|
8579 |
msgstr ""
|
8580 |
|
8581 |
-
#: core/lib/
|
8582 |
msgid "Integration of Sage payment system"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
-
#: core/lib/
|
8586 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1059
|
8587 |
#, php-format
|
8588 |
msgid "If you have no account on this system, please visit %s to create one."
|
8589 |
msgstr ""
|
8590 |
|
8591 |
-
#: core/lib/
|
8592 |
msgid "Payment rejected"
|
8593 |
msgstr ""
|
8594 |
|
8595 |
-
#: core/lib/
|
8596 |
msgid "Merchant ID"
|
8597 |
msgstr ""
|
8598 |
|
8599 |
-
#: core/lib/
|
8600 |
msgid "Enter your iDEAL Merchant ID"
|
8601 |
msgstr ""
|
8602 |
|
8603 |
-
#: core/lib/
|
8604 |
msgid "Enter your iDEAL Merchant Key."
|
8605 |
msgstr ""
|
8606 |
|
8607 |
-
#: core/lib/
|
8608 |
#, php-format
|
8609 |
msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
|
8610 |
msgstr ""
|
8611 |
|
8612 |
-
#: core/lib/
|
8613 |
msgid "Test with Simulator"
|
8614 |
msgstr ""
|
8615 |
|
8616 |
-
#: core/lib/
|
8617 |
msgid "My Profile – Connection"
|
8618 |
msgstr ""
|
8619 |
|
8620 |
-
#: core/lib/
|
8621 |
#, php-format
|
8622 |
msgid ""
|
8623 |
"If not supplied then the description as configured in the administration/management portal "
|
@@ -8625,285 +8641,285 @@ msgid ""
|
|
8625 |
"be applied."
|
8626 |
msgstr ""
|
8627 |
|
8628 |
-
#: core/lib/
|
8629 |
msgid "Always use Description"
|
8630 |
msgstr ""
|
8631 |
|
8632 |
-
#: core/lib/
|
8633 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:966
|
8634 |
#, php-format
|
8635 |
msgid "Integration of %s payment system"
|
8636 |
msgstr ""
|
8637 |
|
8638 |
-
#: core/lib/
|
8639 |
#, php-format
|
8640 |
msgid "Processing your %s payments through %s"
|
8641 |
msgstr ""
|
8642 |
|
8643 |
-
#: core/lib/
|
8644 |
#, php-format
|
8645 |
msgid "%s - inserting link for export booking to"
|
8646 |
msgstr ""
|
8647 |
|
8648 |
-
#: core/lib/
|
8649 |
msgid ".ics Feed URL"
|
8650 |
msgstr ""
|
8651 |
|
8652 |
-
#: core/lib/
|
8653 |
-
#: core/wpbc-emails.php:
|
8654 |
-
#: core/wpbc-emails.php:
|
8655 |
#, php-format
|
8656 |
msgid "%s - inserting modification date of booking "
|
8657 |
msgstr ""
|
8658 |
|
8659 |
-
#: core/lib/
|
8660 |
msgid "Coupon discount value of the booking."
|
8661 |
msgstr ""
|
8662 |
|
8663 |
-
#: core/lib/
|
8664 |
msgid "Stripe. Ouch, something went wrong!"
|
8665 |
msgstr ""
|
8666 |
|
8667 |
-
#: core/lib/
|
8668 |
#, php-format
|
8669 |
msgid "Please pay %s"
|
8670 |
msgstr ""
|
8671 |
|
8672 |
-
#: core/lib/
|
8673 |
msgid "Chose payment account"
|
8674 |
msgstr ""
|
8675 |
|
8676 |
-
#: core/lib/
|
8677 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
8678 |
msgid "Publishable key"
|
8679 |
msgstr ""
|
8680 |
|
8681 |
-
#: core/lib/
|
8682 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
8683 |
msgid "Secret key"
|
8684 |
msgstr ""
|
8685 |
|
8686 |
-
#: core/lib/
|
8687 |
msgid "For more information:"
|
8688 |
msgstr ""
|
8689 |
|
8690 |
-
#: core/lib/
|
8691 |
#, php-format
|
8692 |
msgid "require PHP version %s or newer!"
|
8693 |
msgstr ""
|
8694 |
|
8695 |
-
#: core/lib/
|
8696 |
#, php-format
|
8697 |
msgid "%s - ID of booking resource, "
|
8698 |
msgstr ""
|
8699 |
|
8700 |
-
#: core/lib/
|
8701 |
#, php-format
|
8702 |
msgid "%s - ID of page with booking form, "
|
8703 |
msgstr ""
|
8704 |
|
8705 |
-
#: core/lib/
|
8706 |
msgid "Email with Payment Request which is sent to Visitor."
|
8707 |
msgstr ""
|
8708 |
|
8709 |
-
#: core/lib/
|
8710 |
msgid "Customization of email template, which is sent after modification of booking"
|
8711 |
msgstr ""
|
8712 |
|
8713 |
-
#: core/lib/
|
8714 |
msgid "Email is sent to Visitor after Editing of booking."
|
8715 |
msgstr ""
|
8716 |
|
8717 |
-
#: core/lib/
|
8718 |
msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
|
8719 |
msgstr ""
|
8720 |
|
8721 |
-
#: core/lib/
|
8722 |
msgid "My bookings"
|
8723 |
msgstr ""
|
8724 |
|
8725 |
-
#: core/lib/
|
8726 |
#, php-format
|
8727 |
msgid ""
|
8728 |
"%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
|
8729 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
8730 |
msgstr ""
|
8731 |
|
8732 |
-
#: core/lib/
|
8733 |
msgid "Inline Search Form Template"
|
8734 |
msgstr ""
|
8735 |
|
8736 |
-
#: core/lib/
|
8737 |
msgid "Show booking details in tooltip"
|
8738 |
msgstr ""
|
8739 |
|
8740 |
-
#: core/lib/
|
8741 |
#, php-format
|
8742 |
msgid ""
|
8743 |
"Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
|
8744 |
"calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
|
8745 |
msgstr ""
|
8746 |
|
8747 |
-
#: core/lib/
|
8748 |
msgid "Booking details"
|
8749 |
msgstr ""
|
8750 |
|
8751 |
-
#: core/lib/
|
8752 |
msgid "You can use the shortcodes from the bottom form of Settings Fields page."
|
8753 |
msgstr ""
|
8754 |
|
8755 |
-
#: core/lib/
|
8756 |
msgid "This option can impact to speed of page loading."
|
8757 |
msgstr ""
|
8758 |
|
8759 |
-
#: core/lib/
|
8760 |
msgid ""
|
8761 |
"Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
|
8762 |
"mathematics operations"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
-
#: core/lib/
|
8766 |
#, php-format
|
8767 |
msgid "if selected %s"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
-
#: core/lib/
|
8771 |
msgid "Set check out date as available"
|
8772 |
msgstr ""
|
8773 |
|
8774 |
-
#: core/lib/
|
8775 |
msgid "Check this option, to remove last selected day of saving to booking."
|
8776 |
msgstr ""
|
8777 |
|
8778 |
-
#: core/lib/
|
8779 |
msgid "Auto approve bookings during import"
|
8780 |
msgstr ""
|
8781 |
|
8782 |
-
#: core/lib/
|
8783 |
#, php-format
|
8784 |
msgid ""
|
8785 |
"Check this checkbox to activate auto approve of all bookings %sduring import from external "
|
8786 |
"source(s)%s."
|
8787 |
msgstr ""
|
8788 |
|
8789 |
-
#: core/lib/
|
8790 |
msgid "Auto approve booking, if booking cost is zero"
|
8791 |
msgstr ""
|
8792 |
|
8793 |
-
#: core/lib/
|
8794 |
#, php-format
|
8795 |
msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
|
8796 |
msgstr ""
|
8797 |
|
8798 |
-
#: core/lib/
|
8799 |
msgid "Auto approve bookings after creation booking in admin panel"
|
8800 |
msgstr ""
|
8801 |
|
8802 |
-
#: core/lib/
|
8803 |
#, php-format
|
8804 |
msgid ""
|
8805 |
"Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
|
8806 |
msgstr ""
|
8807 |
|
8808 |
-
#: core/lib/
|
8809 |
msgid "Activate custom booking forms for regular users"
|
8810 |
msgstr ""
|
8811 |
|
8812 |
-
#: core/lib/
|
8813 |
msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
|
8814 |
msgstr ""
|
8815 |
|
8816 |
-
#: core/lib/
|
8817 |
msgid "Start / End time for Calendar Overview"
|
8818 |
msgstr ""
|
8819 |
|
8820 |
-
#: core/lib/
|
8821 |
#, php-format
|
8822 |
msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
|
8823 |
msgstr ""
|
8824 |
|
8825 |
-
#: core/lib/
|
8826 |
msgid "Show / hide notes"
|
8827 |
msgstr ""
|
8828 |
|
8829 |
-
#: core/lib/
|
8830 |
msgid "Check this box if you want to open notes section by default in Booking Listing page."
|
8831 |
msgstr ""
|
8832 |
|
8833 |
-
#: core/lib/
|
8834 |
-
#: js/wpbc-gutenberg.js:
|
8835 |
msgid "URL of page for customer bookings listing"
|
8836 |
msgstr ""
|
8837 |
|
8838 |
-
#: core/lib/
|
8839 |
#, php-format
|
8840 |
msgid ""
|
8841 |
"Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
|
8842 |
msgstr ""
|
8843 |
|
8844 |
-
#: core/lib/
|
8845 |
msgid "Do not show payment form, after submit booking form"
|
8846 |
msgstr ""
|
8847 |
|
8848 |
-
#: core/lib/
|
8849 |
msgid "Check this box if you want to show payment form only after sending payment request by email"
|
8850 |
msgstr ""
|
8851 |
|
8852 |
-
#: core/lib/
|
8853 |
msgid "Auto send payment request after creation booking in admin panel"
|
8854 |
msgstr ""
|
8855 |
|
8856 |
-
#: core/lib/
|
8857 |
msgid ""
|
8858 |
"Check this box if you want automatically send payment request to visitor, if booking was made in "
|
8859 |
"admin panel"
|
8860 |
msgstr ""
|
8861 |
|
8862 |
-
#: core/lib/
|
8863 |
msgid "Show deposit and total booking cost together"
|
8864 |
msgstr ""
|
8865 |
|
8866 |
-
#: core/lib/
|
8867 |
msgid ""
|
8868 |
"Check this box if you want to show deposit amount and total booking cost, after submit of "
|
8869 |
"booking."
|
8870 |
msgstr ""
|
8871 |
|
8872 |
-
#: core/lib/
|
8873 |
msgid ""
|
8874 |
"Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
|
8875 |
"not depend from the visitor choice of this payment. You need to check each such payment manually!"
|
8876 |
msgstr ""
|
8877 |
|
8878 |
-
#: core/lib/
|
8879 |
msgid "Send email on cost changes"
|
8880 |
msgstr ""
|
8881 |
|
8882 |
-
#: core/lib/
|
8883 |
msgid ""
|
8884 |
"Check this box if you want to send booking modification email, if cost of booking was edited in "
|
8885 |
"booking listing page."
|
8886 |
msgstr ""
|
8887 |
|
8888 |
-
#: core/lib/
|
8889 |
-
#: inc/gateways/page-gateways.php:
|
8890 |
msgid "Payment Options"
|
8891 |
msgstr ""
|
8892 |
|
8893 |
-
#: core/lib/
|
8894 |
msgid "Times:"
|
8895 |
msgstr ""
|
8896 |
|
8897 |
-
#: core/lib/
|
8898 |
msgid "Set Early / Late Booking"
|
8899 |
msgstr ""
|
8900 |
|
8901 |
-
#: core/lib/
|
8902 |
#, php-format
|
8903 |
msgid "%sEarly booking discount%s for booking resource"
|
8904 |
msgstr ""
|
8905 |
|
8906 |
-
#: core/lib/
|
8907 |
#: inc/_bm/admin/page-cost-early-late-booking.php:166
|
8908 |
#: inc/_bm/admin/page-cost-early-late-booking.php:185
|
8909 |
#: inc/_bm/admin/page-cost-early-late-booking.php:358
|
@@ -8912,387 +8928,411 @@ msgstr ""
|
|
8912 |
msgid "Discount"
|
8913 |
msgstr ""
|
8914 |
|
8915 |
-
#: core/lib/
|
8916 |
#, php-format
|
8917 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
|
8918 |
msgstr ""
|
8919 |
|
8920 |
-
#: core/lib/
|
8921 |
#: inc/_bm/admin/page-cost-early-late-booking.php:476
|
8922 |
#, php-format
|
8923 |
msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
|
8924 |
msgstr ""
|
8925 |
|
8926 |
-
#: core/lib/
|
8927 |
#, php-format
|
8928 |
msgid "%sLast minute booking discount%s for booking resource"
|
8929 |
msgstr ""
|
8930 |
|
8931 |
-
#: core/lib/
|
8932 |
#, php-format
|
8933 |
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
|
8934 |
msgstr ""
|
8935 |
|
8936 |
-
#: core/lib/
|
8937 |
msgid "Early / Late Booking"
|
8938 |
msgstr ""
|
8939 |
|
8940 |
-
#: core/lib/
|
8941 |
msgid "Set Early / Late Booking Amount"
|
8942 |
msgstr ""
|
8943 |
|
8944 |
-
#: core/lib/
|
8945 |
msgid "Set Early / Late booking discount"
|
8946 |
msgstr ""
|
8947 |
|
8948 |
-
#: core/lib/
|
8949 |
msgid "Early / Late"
|
8950 |
msgstr ""
|
8951 |
|
8952 |
-
#: core/lib/
|
8953 |
msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
|
8954 |
msgstr ""
|
8955 |
|
8956 |
-
#: core/lib/
|
8957 |
msgid "Configure Booking Calendar Block"
|
8958 |
msgstr ""
|
8959 |
|
8960 |
-
#: core/lib/
|
8961 |
msgid "Click to Preview Block"
|
8962 |
msgstr ""
|
8963 |
|
8964 |
-
#: core/lib/
|
8965 |
-
#: js/wpbc-gutenberg.js:
|
8966 |
msgid "Visible months number"
|
8967 |
msgstr ""
|
8968 |
|
8969 |
-
#: core/lib/
|
8970 |
-
#: js/wpbc-gutenberg.js:
|
8971 |
msgid "Start month"
|
8972 |
msgstr ""
|
8973 |
|
8974 |
-
#: core/lib/
|
8975 |
msgid "Custom booking form"
|
8976 |
msgstr ""
|
8977 |
|
8978 |
-
#: core/lib/
|
8979 |
-
#: js/wpbc-gutenberg.js:
|
8980 |
msgid "Unavailable dates from other booking resources"
|
8981 |
msgstr ""
|
8982 |
|
8983 |
-
#: core/lib/
|
8984 |
msgid "Availability Calendar"
|
8985 |
msgstr ""
|
8986 |
|
8987 |
-
#: core/lib/
|
8988 |
msgid "Booking resource(s)"
|
8989 |
msgstr ""
|
8990 |
|
8991 |
-
#: core/lib/
|
8992 |
msgid "Show from/to"
|
8993 |
msgstr ""
|
8994 |
|
8995 |
-
#: core/lib/
|
8996 |
msgid "All booking resources"
|
8997 |
msgstr ""
|
8998 |
|
8999 |
-
#: core/lib/
|
9000 |
msgid "Selection of Resources"
|
9001 |
msgstr ""
|
9002 |
|
9003 |
-
#: core/lib/
|
9004 |
msgid "Selected booking resource (by default)"
|
9005 |
msgstr ""
|
9006 |
|
9007 |
-
#: core/lib/
|
9008 |
msgid "Title of first option in list"
|
9009 |
msgstr ""
|
9010 |
|
9011 |
-
#: core/lib/
|
9012 |
msgid "Custom booking form for all booking resources"
|
9013 |
msgstr ""
|
9014 |
|
9015 |
-
#: core/lib/
|
9016 |
msgid "Booking Form (without calendar)"
|
9017 |
msgstr ""
|
9018 |
|
9019 |
-
#: core/lib/
|
9020 |
msgid "Date for submit booking"
|
9021 |
msgstr ""
|
9022 |
|
9023 |
-
#: core/lib/
|
9024 |
msgid "Search Availability form"
|
9025 |
msgstr ""
|
9026 |
|
9027 |
-
#: core/lib/
|
9028 |
msgid "Show search results on other page"
|
9029 |
msgstr ""
|
9030 |
|
9031 |
-
#: core/lib/
|
9032 |
msgid "Search results page must have this shortcode"
|
9033 |
msgstr ""
|
9034 |
|
9035 |
-
#: core/lib/
|
9036 |
msgid "Show search results in the same page"
|
9037 |
msgstr ""
|
9038 |
|
9039 |
-
#: core/lib/
|
9040 |
msgid "Search Results Title"
|
9041 |
msgstr ""
|
9042 |
|
9043 |
-
#: core/lib/
|
9044 |
msgid "Title, if no search results"
|
9045 |
msgstr ""
|
9046 |
|
9047 |
-
#: core/lib/
|
9048 |
msgid "Search in booking resources of WP users"
|
9049 |
msgstr ""
|
9050 |
|
9051 |
-
#: core/lib/
|
9052 |
msgid "Show search results on this page, after redirection from search form at other page."
|
9053 |
msgstr ""
|
9054 |
|
9055 |
-
#: core/lib/
|
9056 |
msgid "System Block"
|
9057 |
msgstr ""
|
9058 |
|
9059 |
-
#: core/lib/
|
9060 |
msgid "Booking Calendar Editing"
|
9061 |
msgstr ""
|
9062 |
|
9063 |
-
#: core/lib/
|
9064 |
msgid ""
|
9065 |
"This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
|
9066 |
"for ability to show payment form, after sending payment request."
|
9067 |
msgstr ""
|
9068 |
|
9069 |
-
#: core/lib/
|
9070 |
msgid "Link to this page must be defined"
|
9071 |
msgstr ""
|
9072 |
|
9073 |
-
#: core/lib/
|
9074 |
msgid "at this option"
|
9075 |
msgstr ""
|
9076 |
|
9077 |
-
#: core/lib/
|
9078 |
msgid "You can not open this page directly. Please, use links in "
|
9079 |
msgstr ""
|
9080 |
|
9081 |
-
#: core/lib/
|
9082 |
msgid "If you open this page directly, then you will see this error"
|
9083 |
msgstr ""
|
9084 |
|
9085 |
-
#: core/lib/
|
9086 |
msgid "Customer Bookings Listing"
|
9087 |
msgstr ""
|
9088 |
|
9089 |
-
#: core/lib/
|
9090 |
msgid ""
|
9091 |
"Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
|
9092 |
"which is sending after booking created."
|
9093 |
msgstr ""
|
9094 |
|
9095 |
-
#: core/lib/
|
9096 |
msgid "Show Info of Booking Resource"
|
9097 |
msgstr ""
|
9098 |
|
9099 |
-
#: core/lib/
|
9100 |
msgid "Click to edit"
|
9101 |
msgstr ""
|
9102 |
|
9103 |
-
#: core/lib/
|
9104 |
msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
|
9105 |
msgstr ""
|
9106 |
|
9107 |
-
#: core/lib/
|
9108 |
msgid "Sort search results by"
|
9109 |
msgstr ""
|
9110 |
|
9111 |
-
#: core/lib/
|
9112 |
msgid "Select type of sorting search results"
|
9113 |
msgstr ""
|
9114 |
|
9115 |
-
#: core/lib/
|
9116 |
#: inc/_bl/admin/page-search.php:181
|
9117 |
msgid "ID of booking resource"
|
9118 |
msgstr ""
|
9119 |
|
9120 |
-
#: core/lib/
|
9121 |
#: inc/_bl/admin/page-search.php:183
|
9122 |
msgid "Title of booking resource"
|
9123 |
msgstr ""
|
9124 |
|
9125 |
-
#: core/lib/
|
9126 |
#: inc/_bl/admin/page-search.php:185
|
9127 |
msgid "Priority field of booking resource"
|
9128 |
msgstr ""
|
9129 |
|
9130 |
-
#: core/lib/
|
9131 |
#: inc/_bl/admin/page-search.php:187
|
9132 |
msgid "Cost of booking resource"
|
9133 |
msgstr ""
|
9134 |
|
9135 |
-
#: core/lib/
|
9136 |
#: inc/_bl/admin/page-search.php:189
|
9137 |
msgid "Cost of booking"
|
9138 |
msgstr ""
|
9139 |
|
9140 |
-
#: core/lib/
|
9141 |
msgid "Deactivate send email option at Add Booking page"
|
9142 |
msgstr ""
|
9143 |
|
9144 |
-
#: core/lib/
|
9145 |
msgid ""
|
9146 |
"Check this box if you want to deactivate by default option \"Send email\" at Add Booking page."
|
9147 |
msgstr ""
|
9148 |
|
9149 |
-
#: core/lib/
|
9150 |
msgid "Deactivate send email option at Booking Listing page"
|
9151 |
msgstr ""
|
9152 |
|
9153 |
-
#: core/lib/
|
9154 |
msgid ""
|
9155 |
"Check this box if you want to deactivate by default option \"Send email\" at Booking Listing "
|
9156 |
"page."
|
9157 |
msgstr ""
|
9158 |
|
9159 |
-
#: core/lib/
|
9160 |
msgid "Force change booking resource for exist booking"
|
9161 |
msgstr ""
|
9162 |
|
9163 |
-
#: core/lib/
|
9164 |
msgid ""
|
9165 |
"Check this box if you want to skip checking availability of new booking resource during changing "
|
9166 |
"booking resource of exist booking at Booking Listing page."
|
9167 |
msgstr ""
|
9168 |
|
9169 |
-
#: core/lib/
|
9170 |
msgid "Signature Key"
|
9171 |
msgstr ""
|
9172 |
|
9173 |
-
#: core/lib/
|
9174 |
msgid "Please enter the Signature Key, which you generated in the settings of Merchant Interface."
|
9175 |
msgstr ""
|
9176 |
|
9177 |
-
#: core/lib/
|
9178 |
msgid "To generate new Signature Key"
|
9179 |
msgstr ""
|
9180 |
|
9181 |
-
#: core/lib/
|
9182 |
#, php-format
|
9183 |
msgid "Log on to the %sMerchant Interface%s"
|
9184 |
msgstr ""
|
9185 |
|
9186 |
-
#: core/lib/
|
9187 |
msgid ""
|
9188 |
"In the merchant interface, go to Account > Settings > Security Settings > General Security "
|
9189 |
"Settings > API Credential & Keys"
|
9190 |
msgstr ""
|
9191 |
|
9192 |
-
#: core/lib/
|
9193 |
msgid "Answer the secret question."
|
9194 |
msgstr ""
|
9195 |
|
9196 |
-
#: core/lib/
|
9197 |
msgid "Select New Signature Key. Your signature key is displayed as a string."
|
9198 |
msgstr ""
|
9199 |
|
9200 |
-
#: core/lib/
|
9201 |
msgid "Click Copy to Clipboard."
|
9202 |
msgstr ""
|
9203 |
|
9204 |
-
#: core/lib/
|
9205 |
#, php-format
|
9206 |
msgid "For more information, please check %shere%s"
|
9207 |
msgstr ""
|
9208 |
|
9209 |
-
#: core/lib/
|
9210 |
#, php-format
|
9211 |
msgid ""
|
9212 |
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
9213 |
"an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway."
|
9214 |
msgstr ""
|
9215 |
|
9216 |
-
#: core/lib/
|
9217 |
msgid "Loading"
|
9218 |
msgstr ""
|
9219 |
|
9220 |
-
#: core/lib/
|
9221 |
#, php-format
|
9222 |
msgid "%s - inserting link to approve booking in 1 mouse click "
|
9223 |
msgstr ""
|
9224 |
|
9225 |
-
#: core/lib/
|
9226 |
#, php-format
|
9227 |
msgid "%s - inserting link to set booking as pending in 1 mouse click "
|
9228 |
msgstr ""
|
9229 |
|
9230 |
-
#: core/lib/
|
9231 |
#, php-format
|
9232 |
msgid "%s - inserting link for move booking to trash in 1 mouse click "
|
9233 |
msgstr ""
|
9234 |
|
9235 |
-
#: core/lib/
|
9236 |
msgid "Flex Search Form Template"
|
9237 |
msgstr ""
|
9238 |
|
9239 |
-
#: core/lib/
|
9240 |
msgid "Flex"
|
9241 |
msgstr ""
|
9242 |
|
9243 |
-
#: core/lib/
|
9244 |
#, php-format
|
9245 |
msgid "Booking %s have been approved."
|
9246 |
msgstr ""
|
9247 |
|
9248 |
-
#: core/lib/
|
9249 |
#, php-format
|
9250 |
msgid "Booking %s have been set as pending."
|
9251 |
msgstr ""
|
9252 |
|
9253 |
-
#: core/lib/
|
9254 |
#, php-format
|
9255 |
msgid "Booking %s have been moved to trash."
|
9256 |
msgstr ""
|
9257 |
|
9258 |
-
#: core/lib/
|
9259 |
msgid "Find lost bookings"
|
9260 |
msgstr ""
|
9261 |
|
9262 |
-
#: core/lib/
|
9263 |
#, php-format
|
9264 |
msgid "require correct configuration of this option: %sURL to edit bookings%s"
|
9265 |
msgstr ""
|
9266 |
|
9267 |
-
#: core/lib/
|
9268 |
msgid "You may test your integration over HTTP. However, live integrations must use HTTPS."
|
9269 |
msgstr ""
|
9270 |
|
9271 |
-
#: inc/_bl/admin/page-search.php:
|
9272 |
msgid "Select date format for search form"
|
9273 |
msgstr ""
|
9274 |
|
9275 |
-
#: inc/_ps/admin/api-settings-p.php:301
|
9276 |
msgid "Logging of booking approving or rejection"
|
9277 |
msgstr ""
|
9278 |
|
9279 |
-
#: inc/_ps/admin/api-settings-p.php:302
|
9280 |
msgid ""
|
9281 |
"Check this box if you want to log approving or rejection of bookings and add it to your booking "
|
9282 |
"notes."
|
9283 |
msgstr ""
|
9284 |
|
9285 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:821
|
9286 |
#, php-format
|
9287 |
msgid "%sFor Malaysia Only%s. iPay88 - Payment Switching Gateway integration %s"
|
9288 |
msgstr ""
|
9289 |
|
9290 |
-
#: inc/gateways/page-gateways.php:125
|
9291 |
msgid "Update cost, after booking editing in admin panel"
|
9292 |
msgstr ""
|
9293 |
|
9294 |
-
#: inc/gateways/page-gateways.php:126
|
9295 |
msgid ""
|
9296 |
"Check this box if you want to update cost after editing booking in admin panel, based on new "
|
9297 |
"booking data"
|
9298 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: booking\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2020-02-06 10:43+0200\n"
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Generator: Poedit 2.0.1\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: core/admin/api-settings.php:68 core/lib/wpbc_all_translations.php:2
|
22 |
msgid "Calendar Skin"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: core/admin/api-settings.php:69 core/lib/wpbc_all_translations.php:3
|
26 |
msgid "Select the skin of the booking calendar"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: core/admin/api-settings.php:88 core/lib/wpbc_all_translations.php:4
|
30 |
msgid "month(s)"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: core/admin/api-settings.php:89 core/lib/wpbc_all_translations.php:5
|
34 |
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:803
|
39 |
msgid "Number of months to scroll"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: core/admin/api-settings.php:95 core/lib/wpbc_all_translations.php:7
|
43 |
msgid "Select the maximum number of months to show (scroll)"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: core/admin/api-settings.php:106 core/lib/wpbc_all_translations.php:8
|
47 |
msgid "Start Day of the week"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: core/admin/api-settings.php:107 core/lib/wpbc_all_translations.php:9
|
51 |
msgid "Select your start day of the week"
|
52 |
msgstr ""
|
53 |
|
54 |
#: core/admin/api-settings.php:109 core/admin/api-settings.php:192
|
55 |
+
#: core/lib/wpbc_all_translations.php:10 core/timeline/v2/wpbc-class-timeline_v2.php:86
|
56 |
#: inc/_bm/admin/page-seasons.php:991 inc/_bs/admin/api-settings-s.php:108
|
57 |
#: inc/_bs/admin/api-settings-s.php:241 inc/_ps/form/class-wpbc-form-help.php:451
|
58 |
#: inc/_ps/form/class-wpbc-form-help.php:598
|
60 |
msgstr ""
|
61 |
|
62 |
#: core/admin/api-settings.php:110 core/admin/api-settings.php:195
|
63 |
+
#: core/lib/wpbc_all_translations.php:11 core/timeline/v2/wpbc-class-timeline_v2.php:80
|
64 |
#: inc/_bm/admin/page-seasons.php:992 inc/_bs/admin/api-settings-s.php:109
|
65 |
#: inc/_bs/admin/api-settings-s.php:242 inc/_ps/form/class-wpbc-form-help.php:452
|
66 |
#: inc/_ps/form/class-wpbc-form-help.php:599
|
68 |
msgstr ""
|
69 |
|
70 |
#: core/admin/api-settings.php:111 core/admin/api-settings.php:198
|
71 |
+
#: core/lib/wpbc_all_translations.php:12 core/timeline/v2/wpbc-class-timeline_v2.php:81
|
72 |
#: inc/_bm/admin/page-seasons.php:993 inc/_bs/admin/api-settings-s.php:110
|
73 |
#: inc/_bs/admin/api-settings-s.php:243 inc/_ps/form/class-wpbc-form-help.php:453
|
74 |
#: inc/_ps/form/class-wpbc-form-help.php:600
|
76 |
msgstr ""
|
77 |
|
78 |
#: core/admin/api-settings.php:112 core/admin/api-settings.php:201
|
79 |
+
#: core/lib/wpbc_all_translations.php:13 core/timeline/v2/wpbc-class-timeline_v2.php:82
|
80 |
#: inc/_bm/admin/page-seasons.php:994 inc/_bs/admin/api-settings-s.php:111
|
81 |
#: inc/_bs/admin/api-settings-s.php:244 inc/_ps/form/class-wpbc-form-help.php:454
|
82 |
#: inc/_ps/form/class-wpbc-form-help.php:601
|
84 |
msgstr ""
|
85 |
|
86 |
#: core/admin/api-settings.php:113 core/admin/api-settings.php:204
|
87 |
+
#: core/lib/wpbc_all_translations.php:14 core/timeline/v2/wpbc-class-timeline_v2.php:83
|
88 |
#: inc/_bm/admin/page-seasons.php:995 inc/_bs/admin/api-settings-s.php:112
|
89 |
#: inc/_bs/admin/api-settings-s.php:245 inc/_ps/form/class-wpbc-form-help.php:455
|
90 |
#: inc/_ps/form/class-wpbc-form-help.php:602
|
92 |
msgstr ""
|
93 |
|
94 |
#: core/admin/api-settings.php:114 core/admin/api-settings.php:207
|
95 |
+
#: core/lib/wpbc_all_translations.php:15 core/timeline/v2/wpbc-class-timeline_v2.php:84
|
96 |
#: inc/_bm/admin/page-seasons.php:996 inc/_bs/admin/api-settings-s.php:113
|
97 |
#: inc/_bs/admin/api-settings-s.php:246 inc/_ps/form/class-wpbc-form-help.php:456
|
98 |
#: inc/_ps/form/class-wpbc-form-help.php:603
|
100 |
msgstr ""
|
101 |
|
102 |
#: core/admin/api-settings.php:115 core/admin/api-settings.php:210
|
103 |
+
#: core/lib/wpbc_all_translations.php:16 core/timeline/v2/wpbc-class-timeline_v2.php:85
|
104 |
#: inc/_bm/admin/page-seasons.php:997 inc/_bs/admin/api-settings-s.php:114
|
105 |
#: inc/_bs/admin/api-settings-s.php:247 inc/_ps/form/class-wpbc-form-help.php:457
|
106 |
#: inc/_ps/form/class-wpbc-form-help.php:604
|
107 |
msgid "Saturday"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: core/admin/api-settings.php:127 core/lib/wpbc_all_translations.php:17
|
111 |
#: inc/_bs/admin/api-settings-s.php:29
|
112 |
msgid "Single day"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: core/admin/api-settings.php:133 core/lib/wpbc_all_translations.php:18
|
116 |
#: inc/_bs/admin/api-settings-s.php:30
|
117 |
msgid "Multiple days"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: core/admin/api-settings.php:143 core/lib/wpbc_all_translations.php:19
|
121 |
#: inc/_bs/admin/api-settings-s.php:36
|
122 |
msgid "Type of days selection in calendar"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: core/admin/api-settings.php:162 core/lib/wpbc_all_translations.php:20
|
126 |
msgid "Do not change background color for partially booked days"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: core/admin/api-settings.php:163 core/lib/wpbc_all_translations.php:21
|
130 |
msgid "Show partially booked days with same background as in legend item"
|
131 |
msgstr ""
|
132 |
|
133 |
#: core/admin/api-settings.php:164 core/admin/api-settings.php:314 core/admin/api-settings.php:474
|
134 |
+
#: core/admin/api-settings.php:509 core/admin/api-settings.php:830
|
135 |
#: core/admin/page-form-free.php:189 core/admin/page-ics-export.php:467
|
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:1026
|
140 |
msgid "Note"
|
141 |
msgstr ""
|
142 |
|
143 |
#: core/admin/api-settings.php:165 core/admin/api-settings.php:475
|
144 |
+
#: core/lib/wpbc_all_translations.php:23
|
145 |
msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: core/admin/api-settings.php:187 core/lib/wpbc_all_translations.php:24
|
149 |
msgid "Unavailable week days"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: core/admin/api-settings.php:217 core/lib/wpbc_all_translations.php:25
|
153 |
msgid "Check unavailable days in calendars. This option will overwrite all other settings."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: core/admin/api-settings.php:235 core/lib/wpbc_all_translations.php:26
|
157 |
msgid "Unavailable days from today"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: core/admin/api-settings.php:236 core/lib/wpbc_all_translations.php:27
|
161 |
msgid "Select number of unavailable days in calendar start from today."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: core/admin/api-settings.php:275 core/lib/wpbc_all_translations.php:28 inc/_ps/lib_p.php:268
|
165 |
msgid "Simple"
|
166 |
msgstr ""
|
167 |
|
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:398
|
172 |
+
#: inc/_ps/lib_p.php:268 js/wpbc-gutenberg.js:559
|
173 |
msgid "Booking Form"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:30 inc/_ps/lib_p.php:264
|
177 |
msgid ""
|
178 |
"Check the box, if you want to use simple booking form customization from Free plugin version at "
|
179 |
"Settings - Form page."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: core/admin/api-settings.php:284 core/lib/wpbc_all_translations.php:31
|
183 |
msgid "Syntax highlighter"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: core/admin/api-settings.php:285 core/lib/wpbc_all_translations.php:32
|
187 |
msgid "Check the box, if you want to use syntax highlighter during customization booking form."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: core/admin/api-settings.php:296 core/lib/wpbc_all_translations.php:33
|
191 |
#: inc/_ps/form/class-wpbc-form-help.php:194
|
192 |
msgid "CAPTCHA"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: core/admin/api-settings.php:297 core/lib/wpbc_all_translations.php:34
|
196 |
msgid "Check the box to activate CAPTCHA inside the booking form."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: core/admin/api-settings.php:304 core/lib/wpbc_all_translations.php:35
|
200 |
msgid "Auto-fill fields"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: core/admin/api-settings.php:305 core/lib/wpbc_all_translations.php:36
|
204 |
msgid "Check the box to activate auto-fill form fields for logged in users."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: core/admin/api-settings.php:312 core/lib/wpbc_all_translations.php:37
|
208 |
msgid "Use CSS BootStrap"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: core/admin/api-settings.php:313 core/lib/wpbc_all_translations.php:38
|
212 |
msgid "Using BootStrap CSS for the form fields"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: core/admin/api-settings.php:314 core/lib/wpbc_all_translations.php:39
|
216 |
msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: core/admin/api-settings.php:324 core/lib/wpbc_all_translations.php:40
|
220 |
msgid "Show legend below calendar"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: core/admin/api-settings.php:325 core/lib/wpbc_all_translations.php:41
|
224 |
msgid "Check this box to display a legend of dates below the booking calendar."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: core/admin/api-settings.php:337 core/lib/wpbc_all_translations.php:42
|
228 |
msgid "Available item"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: core/admin/api-settings.php:351 core/lib/wpbc_all_translations.php:43
|
232 |
+
#: core/wpbc-activation.php:1030
|
233 |
msgid "Available"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: core/admin/api-settings.php:360 core/lib/wpbc_all_translations.php:44
|
237 |
#, php-format
|
238 |
msgid "Activate and type your %stitle of available%s item in legend"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: core/admin/api-settings.php:374 core/lib/wpbc_all_translations.php:45
|
242 |
msgid "Pending item"
|
243 |
msgstr ""
|
244 |
|
245 |
#: core/admin/api-settings.php:388 core/admin/page-email-deny.php:558
|
246 |
#: core/admin/wpbc-class-listing.php:328 core/admin/wpbc-class-listing.php:426
|
247 |
#: core/admin/wpbc-toolbars.php:549 core/admin/wpbc-toolbars.php:964
|
248 |
+
#: core/lib/wpbc_all_translations.php:46 core/timeline/v2/wpbc-class-timeline_v2.php:2676
|
249 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2729 core/wpbc-activation.php:1034
|
250 |
+
#: inc/_bs/lib_s.php:327 inc/_ps/personal.php:359 inc/_ps/wpbc-print.php:119
|
251 |
msgid "Pending"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: core/admin/api-settings.php:397 core/lib/wpbc_all_translations.php:47
|
255 |
#, php-format
|
256 |
msgid "Activate and type your %stitle of pending%s item in legend"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: core/admin/api-settings.php:411 core/lib/wpbc_all_translations.php:48
|
260 |
msgid "Approved item"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: core/admin/api-settings.php:425 core/lib/wpbc_all_translations.php:49
|
264 |
+
#: core/wpbc-activation.php:1038
|
265 |
msgid "Booked"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: core/admin/api-settings.php:434 core/lib/wpbc_all_translations.php:50
|
269 |
#, php-format
|
270 |
msgid "Activate and type your %stitle of approved%s item in legend"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: core/admin/api-settings.php:449 core/lib/wpbc_all_translations.php:51
|
274 |
msgid "Partially booked item"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: core/admin/api-settings.php:463 core/lib/wpbc_all_translations.php:52
|
278 |
+
#: core/wpbc-activation.php:1044
|
279 |
msgid "Partially booked"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: core/admin/api-settings.php:472 core/lib/wpbc_all_translations.php:53
|
283 |
#, php-format
|
284 |
msgid "Activate and type your %stitle of partially booked%s item in legend"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: core/admin/api-settings.php:497 core/lib/wpbc_all_translations.php:54
|
288 |
msgid "Show date number in legend"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: core/admin/api-settings.php:498 core/lib/wpbc_all_translations.php:55
|
292 |
msgid "Check this box to display today date number in legend cells. "
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: core/admin/api-settings.php:506 core/lib/wpbc_all_translations.php:56
|
296 |
msgid "Show \"Thank You\" message"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: core/admin/api-settings.php:507 core/lib/wpbc_all_translations.php:57
|
300 |
msgid "Redirect visitor to a new \"Thank You\" page"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: core/admin/api-settings.php:509 core/lib/wpbc_all_translations.php:58
|
304 |
msgid "This action will have no effect, if the payment form(s) is active!"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: core/admin/api-settings.php:514 core/lib/wpbc_all_translations.php:59
|
308 |
msgid "Action after booking is done"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: core/admin/api-settings.php:523 core/lib/wpbc_all_translations.php:60
|
312 |
#: core/wpbc-activation.php:868
|
313 |
#, php-format
|
314 |
msgid ""
|
316 |
"possible."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: core/admin/api-settings.php:524 core/lib/wpbc_all_translations.php:61
|
320 |
msgid "Message title"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: core/admin/api-settings.php:525 core/lib/wpbc_all_translations.php:62
|
324 |
#, php-format
|
325 |
msgid "Type title of message %safter booking has done by user%s"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: core/admin/api-settings.php:536 core/lib/wpbc_all_translations.php:63
|
329 |
msgid "Time of message showing"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: core/admin/api-settings.php:537 core/lib/wpbc_all_translations.php:64
|
333 |
msgid "Set duration of time (milliseconds) to show this message"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: core/admin/api-settings.php:564 core/lib/wpbc_all_translations.php:65
|
337 |
msgid "URL of \"thank you\" page"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: core/admin/api-settings.php:580 core/lib/wpbc_all_translations.php:66
|
341 |
#, php-format
|
342 |
msgid "Type URL of %s\"Thank You\" page%s"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: core/admin/api-settings.php:592 core/lib/wpbc_all_translations.php:67 core/wpbc.php:137
|
346 |
#: core/wpbc.php:138
|
347 |
msgid "Bookings Listing"
|
348 |
msgstr ""
|
349 |
|
350 |
#: core/admin/api-settings.php:593 core/admin/page-settings.php:231 core/admin/page-timeline.php:45
|
351 |
#: core/admin/page-timeline.php:46 core/admin/page-timeline.php:47 core/admin/wpbc-toolbars.php:482
|
352 |
+
#: core/lib/wpbc_all_translations.php:68 core/wpbc-functions.php:1878
|
353 |
msgid "Calendar Overview"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: core/admin/api-settings.php:598 core/lib/wpbc_all_translations.php:69
|
357 |
msgid "Default booking admin page"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: core/admin/api-settings.php:599 core/lib/wpbc_all_translations.php:70
|
361 |
msgid "Select your default view mode of bookings at the booking listing page"
|
362 |
msgstr ""
|
363 |
|
364 |
#: core/admin/api-settings.php:615 core/admin/wpbc-toolbar-tiny.php:393
|
365 |
#: core/admin/wpbc-toolbars.php:1184 core/admin/wpbc-toolbars.php:1244
|
366 |
+
#: core/lib/wpbc_all_translations.php:71 inc/_bl/admin/page-coupons.php:526
|
367 |
msgid "Day"
|
368 |
msgstr ""
|
369 |
|
370 |
#: core/admin/api-settings.php:616 core/admin/wpbc-toolbar-tiny.php:394
|
371 |
#: core/admin/wpbc-toolbars.php:1201 core/admin/wpbc-toolbars.php:1258
|
372 |
+
#: core/lib/wpbc_all_translations.php:72
|
373 |
msgid "Week"
|
374 |
msgstr ""
|
375 |
|
376 |
#: core/admin/api-settings.php:617 core/admin/api-settings.php:624
|
377 |
#: core/admin/wpbc-toolbar-tiny.php:396 core/admin/wpbc-toolbars.php:1218
|
378 |
+
#: core/admin/wpbc-toolbars.php:1272 core/lib/wpbc_all_translations.php:73
|
379 |
#: inc/_bl/admin/page-coupons.php:525
|
380 |
msgid "Month"
|
381 |
msgstr ""
|
382 |
|
383 |
#: core/admin/api-settings.php:618 core/admin/wpbc-toolbar-tiny.php:398
|
384 |
+
#: core/admin/wpbc-toolbars.php:1286 core/lib/wpbc_all_translations.php:74
|
385 |
msgid "2 Months"
|
386 |
msgstr ""
|
387 |
|
388 |
#: core/admin/api-settings.php:619 core/admin/api-settings.php:625
|
389 |
+
#: core/admin/wpbc-toolbar-tiny.php:400 core/lib/wpbc_all_translations.php:75
|
390 |
msgid "3 Months"
|
391 |
msgstr ""
|
392 |
|
393 |
#: core/admin/api-settings.php:620 core/admin/api-settings.php:626
|
394 |
#: core/admin/wpbc-toolbar-tiny.php:401 core/admin/wpbc-toolbars.php:579
|
395 |
+
#: core/admin/wpbc-toolbars.php:813 core/lib/wpbc_all_translations.php:76
|
396 |
#: inc/_bl/admin/page-coupons.php:524
|
397 |
msgid "Year"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: core/admin/api-settings.php:631 core/lib/wpbc_all_translations.php:77
|
401 |
msgid "Default calendar view mode"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: core/admin/api-settings.php:632 core/lib/wpbc_all_translations.php:78
|
405 |
msgid "Select your default calendar view mode at booking calendar overview page"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: core/admin/api-settings.php:642 core/lib/wpbc_all_translations.php:79
|
409 |
msgid "Filter tab"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: core/admin/api-settings.php:643 core/lib/wpbc_all_translations.php:80
|
413 |
msgid "Actions tab"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: core/admin/api-settings.php:648 core/lib/wpbc_all_translations.php:81
|
417 |
msgid "Default toolbar tab"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: core/admin/api-settings.php:649 core/lib/wpbc_all_translations.php:82
|
421 |
msgid "Select your default opened tab in toolbar at booking listing page"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: core/admin/api-settings.php:661 core/lib/wpbc_all_translations.php:83
|
425 |
msgid "Bookings number per page"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: core/admin/api-settings.php:662 core/lib/wpbc_all_translations.php:84
|
429 |
msgid "Select number of bookings per page in booking listing"
|
430 |
msgstr ""
|
431 |
|
432 |
#: core/admin/api-settings.php:669 core/admin/api-settings.php:670
|
433 |
#: core/admin/wpbc-class-listing.php:122 core/admin/wpbc-toolbars.php:735
|
434 |
+
#: core/admin/wpbc-toolbars.php:738 core/lib/wpbc_all_translations.php:85
|
435 |
#: core/sync/wpbc-gcal-class.php:640 core/sync/wpbc-gcal-class.php:661
|
436 |
#: inc/_bl/admin/page-coupons.php:495 inc/_bm/admin/page-availability.php:491
|
437 |
#: inc/_bm/admin/page-availability.php:972 inc/_bm/admin/page-cost-rate.php:148
|
438 |
+
#: inc/_bm/admin/page-cost.php:571 inc/_bm/admin/page-seasons.php:506 inc/_bs/lib_s.php:180
|
439 |
+
#: inc/_bs/lib_s.php:185 inc/_mu/admin/page-users.php:428
|
440 |
#: inc/_ps/admin/br-table-export-feeds.php:168 inc/_ps/admin/br-table-import-gcal-p.php:140
|
441 |
#: inc/_ps/admin/page-resources.php:455 inc/_ps/form/class-wpbc-field-help-text.php:211
|
442 |
#: inc/_ps/lib_p.php:124 inc/_ps/lib_p.php:128 inc/_ps/wpbc-print.php:82
|
443 |
+
#: inc/gateways/page-gateways.php:868
|
444 |
msgid "ID"
|
445 |
msgstr ""
|
446 |
|
447 |
#: core/admin/api-settings.php:669 core/admin/api-settings.php:671 core/admin/api-settings.php:675
|
448 |
+
#: core/admin/api-settings.php:679 core/lib/wpbc_all_translations.php:86
|
449 |
#: inc/_bl/admin/page-search.php:180 inc/_bl/admin/page-search.php:182
|
450 |
#: inc/_bl/admin/page-search.php:184 inc/_bl/admin/page-search.php:186
|
451 |
#: inc/_bl/admin/page-search.php:188
|
453 |
msgstr ""
|
454 |
|
455 |
#: core/admin/api-settings.php:670 core/admin/api-settings.php:672 core/admin/api-settings.php:676
|
456 |
+
#: core/admin/api-settings.php:680 core/lib/wpbc_all_translations.php:87
|
457 |
#: inc/_bl/admin/page-search.php:181 inc/_bl/admin/page-search.php:183
|
458 |
#: inc/_bl/admin/page-search.php:185 inc/_bl/admin/page-search.php:187
|
459 |
#: inc/_bl/admin/page-search.php:189
|
463 |
#: core/admin/api-settings.php:671 core/admin/api-settings.php:672 core/admin/wpbc-toolbars.php:588
|
464 |
#: core/admin/wpbc-toolbars.php:650 core/admin/wpbc-toolbars.php:736
|
465 |
#: core/admin/wpbc-toolbars.php:739 core/admin/wpbc-toolbars.php:855
|
466 |
+
#: core/lib/wpbc_all_translations.php:88 core/sync/wpbc-gcal-class.php:643
|
467 |
#: core/sync/wpbc-gcal-class.php:678 core/timeline/v2/wpbc-class-timeline_v2.php:73
|
468 |
+
#: inc/_bs/lib_s.php:181 inc/_bs/lib_s.php:186 inc/_ps/lib_p.php:125 inc/_ps/lib_p.php:129
|
469 |
#: inc/_ps/wpbc-form-templates.php:89 inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
|
470 |
msgid "Dates"
|
471 |
msgstr ""
|
472 |
|
473 |
#: core/admin/api-settings.php:675 core/admin/api-settings.php:676
|
474 |
+
#: core/lib/wpbc_all_translations.php:89 inc/_bl/admin/page-search.php:942
|
475 |
#: inc/_bm/admin/page-availability.php:876 inc/_bm/admin/page-cost-rate.php:106
|
476 |
+
#: inc/_bm/admin/page-cost-valuation.php:134 inc/_bs/lib_s.php:182 inc/_bs/lib_s.php:187
|
477 |
#: inc/_ps/lib_p.php:126 inc/_ps/lib_p.php:130
|
478 |
msgid "Resource"
|
479 |
msgstr ""
|
480 |
|
481 |
#: core/admin/api-settings.php:679 core/admin/api-settings.php:680
|
482 |
+
#: core/admin/wpbc-toolbar-tiny.php:1803 core/lib/wpbc_all_translations.php:90
|
483 |
+
#: inc/_bs/admin/api-settings-s.php:924 inc/_bs/lib_s.php:140 inc/_bs/lib_s.php:183
|
484 |
+
#: inc/_bs/lib_s.php:188 inc/_ps/wpbc-print.php:86
|
485 |
msgid "Cost"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: core/admin/api-settings.php:685 core/lib/wpbc_all_translations.php:91
|
489 |
msgid "Bookings default order"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: core/admin/api-settings.php:686 core/lib/wpbc_all_translations.php:92
|
493 |
msgid "Select your default order of bookings in the booking listing"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: core/admin/api-settings.php:703 core/lib/wpbc_all_translations.php:93
|
497 |
+
#: inc/_bl/admin/page-search.php:223
|
498 |
msgid "Date Format"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: core/admin/api-settings.php:708 core/lib/wpbc_all_translations.php:94
|
502 |
msgid "F j, Y"
|
503 |
msgstr ""
|
504 |
|
505 |
#: core/admin/api-settings.php:711 core/admin/wpbc-toolbars.php:1484
|
506 |
+
#: core/lib/wpbc_all_translations.php:95 inc/_bm/admin/api-settings-m.php:197
|
507 |
+
#: inc/_bs/admin/api-settings-s.php:426 inc/_bs/lib_s.php:55
|
508 |
msgid "Custom"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: core/admin/api-settings.php:737 core/lib/wpbc_all_translations.php:96
|
512 |
#, php-format
|
513 |
msgid ""
|
514 |
"Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: core/admin/api-settings.php: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:97
|
529 |
msgid "Short days view"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: core/admin/api-settings.php:762 core/lib/wpbc_all_translations.php:98
|
533 |
msgid "Wide days view"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: core/admin/api-settings.php:767 core/lib/wpbc_all_translations.php:99
|
537 |
msgid "Dates view"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: core/admin/api-settings.php:768 core/lib/wpbc_all_translations.php:100
|
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:101
|
545 |
msgid "Show / hide hints"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: core/admin/api-settings.php:785 core/lib/wpbc_all_translations.php:102
|
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:103
|
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:104
|
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:105
|
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:106
|
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:107
|
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:108
|
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:109
|
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:110
|
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:111
|
596 |
msgid "Show advanced settings of JavaScript loading"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: core/admin/api-settings.php:850 core/lib/wpbc_all_translations.php:112
|
600 |
msgid "Hide advanced settings of JavaScript loading"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: core/admin/api-settings.php:858 core/lib/wpbc_all_translations.php:113
|
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:114
|
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:115
|
615 |
msgid "Disable Bootstrap loading on Back-End"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: core/admin/api-settings.php:877 core/lib/wpbc_all_translations.php:116
|
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:117
|
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:118
|
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:119
|
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:120
|
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:121
|
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:122
|
646 |
msgid "Show settings of powered by notice"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: core/admin/api-settings.php:921 core/lib/wpbc_all_translations.php:123
|
650 |
msgid "Hide settings of powered by notice"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: core/admin/api-settings.php:928 core/lib/wpbc_all_translations.php:124
|
654 |
msgid "Powered by notice"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: core/admin/api-settings.php:929 core/lib/wpbc_all_translations.php:125
|
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:126
|
662 |
msgid "Help and info notices"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: core/admin/api-settings.php:938 core/lib/wpbc_all_translations.php:127
|
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:128
|
670 |
msgid "Plugin menu position"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: core/admin/api-settings.php:969 core/lib/wpbc_all_translations.php:129
|
674 |
msgid "Top"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: core/admin/api-settings.php:970 core/lib/wpbc_all_translations.php:130
|
678 |
msgid "Middle"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: core/admin/api-settings.php:971 core/lib/wpbc_all_translations.php:131
|
682 |
msgid "Bottom"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: core/admin/api-settings.php:982 core/lib/wpbc_all_translations.php:132
|
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:133
|
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:134 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:135 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
|
707 |
#: inc/_bm/admin/page-cost-valuation.php:133 inc/_mu/admin/page-users.php:446
|
710 |
msgid "Resources"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: core/admin/api-settings.php:1025 core/lib/wpbc_all_translations.php:136
|
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:137
|
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:138 core/wpbc.php:204
|
724 |
msgid "Premium"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: core/admin/api-settings.php:1038 core/lib/wpbc_all_translations.php:139
|
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:140 core/lib/wpdev-booking-widget.php:104
|
734 |
+
#: js/wpbc-gutenberg.js:1326
|
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:141 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:142
|
745 |
msgid "Delete booking data, when plugin deactivated"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: core/admin/api-settings.php:1060 core/lib/wpbc_all_translations.php:143
|
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:144 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
|
758 |
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:145
|
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:146
|
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
|
772 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:857
|
773 |
msgid "Warning"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: core/admin/api-settings.php:1246 core/lib/wpbc_all_translations.php:147
|
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:148
|
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:149
|
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:150
|
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:151
|
801 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2630 core/wpbc-functions.php:1886
|
802 |
msgid "Booking Listing"
|
803 |
msgstr ""
|
804 |
|
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:152 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
|
812 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
|
813 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:377 inc/gateways/ipay88/wpbc-gw-ipay88.php:317
|
814 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:343
|
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:153 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:154 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:155 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:156
|
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:157
|
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:158
|
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
|
880 |
+
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:309
|
881 |
+
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:343 inc/gateways/ideal/wpbc-gw-ideal.php:389
|
882 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:404 inc/gateways/ipay88/wpbc-gw-ipay88.php:329
|
883 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:344 inc/gateways/paypal/wpbc-gw-paypal.php:376
|
884 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:392 inc/gateways/sage/wpbc-gw-sage.php:396
|
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:159 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:160 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:797
|
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:161
|
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
|
930 |
#: inc/_ps/form/class-wpbc-field-help-text.php:228 inc/_ps/form/class-wpbc-field-help-text.php:247
|
931 |
#: inc/_ps/form/class-wpbc-field-help-text.php:264 inc/_ps/form/class-wpbc-field-help-text.php:281
|
932 |
#: inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
933 |
+
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111 inc/gateways/page-gateways.php:379
|
934 |
msgid "optional"
|
935 |
msgstr ""
|
936 |
|
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:162 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:163
|
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:164
|
953 |
+
#: core/wpbc-activation.php:998
|
954 |
msgid "Your booking has been approved"
|
955 |
msgstr ""
|
956 |
|
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:165 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:166 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:167
|
975 |
+
#: core/wpbc-activation.php:1000
|
976 |
#, php-format
|
977 |
msgid ""
|
978 |
"Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
|
979 |
"you, %s"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:168
|
983 |
+
#: core/wpbc-activation.php:1002
|
984 |
#, php-format
|
985 |
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
986 |
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:169 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:170 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:171 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:172 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:173 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:174 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:175 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:176 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:177 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:178 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:179 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:180 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:181 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:182 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:183 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:184 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:185 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:186 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:187 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:188 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:189 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:190 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:191 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:192 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"
|
1192 |
msgstr ""
|
1193 |
|
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:193 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:194 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:195 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:196
|
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"
|
1226 |
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:197 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:198
|
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:199
|
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:200 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:201 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:202 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:203 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:204 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
|
1297 |
#: inc/_bm/admin/page-cost-deposit.php:362 inc/_bm/admin/page-cost-early-late-booking.php:544
|
1298 |
#: inc/_bm/admin/page-cost-rate.php:231 inc/_bm/admin/page-cost-valuation.php:257
|
1302 |
#: inc/_mu/admin/page-users.php:168 inc/_ps/admin/page-email-edit.php:726
|
1303 |
#: inc/_ps/admin/page-email-edit.php:762 inc/_ps/admin/page-resources.php:193
|
1304 |
#: inc/_ps/admin/page-settings-form.php:125 inc/_ps/admin/page-settings-form.php:187
|
1305 |
+
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:930
|
1306 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:489
|
1307 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:923 inc/gateways/ipay88/wpbc-gw-ipay88.php:864
|
1308 |
+
#: inc/gateways/page-gateways.php:686 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:402
|
1309 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1085 inc/gateways/sage/wpbc-gw-sage.php:913
|
1310 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1150
|
1311 |
msgid "Save Changes"
|
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:205 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:206 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
|
1333 |
+
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:452 inc/gateways/page-gateways.php:675
|
1334 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:393 inc/gateways/paypal/wpbc-gw-paypal.php:1059
|
1335 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1076
|
1336 |
msgid "Help"
|
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:207 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:208 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:209 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
|
1362 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1106
|
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:210 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:211 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:212
|
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:213
|
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:430
|
1403 |
+
#: core/lib/wpbc_all_translations.php:214 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:553
|
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:215
|
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:216
|
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:217
|
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:218
|
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:219
|
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:220
|
1435 |
+
#: core/wpbc-activation.php:981
|
1436 |
#, php-format
|
1437 |
msgid ""
|
1438 |
"You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
|
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:221
|
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:222
|
1449 |
msgid "New"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:223
|
1453 |
msgid "admin"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:224
|
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:225
|
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:226
|
1465 |
+
#: core/wpbc-activation.php:989
|
1466 |
#, php-format
|
1467 |
msgid ""
|
1468 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
|
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:227
|
1473 |
+
#: core/wpbc-activation.php:991
|
1474 |
#, php-format
|
1475 |
msgid ""
|
1476 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
|
1477 |
"%s"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:228
|
1481 |
msgid "visitor"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:229
|
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:230
|
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:231 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:232
|
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:233
|
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:234
|
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:235
|
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:236
|
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:237
|
1524 |
msgid "Check Premium Features"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:238
|
1528 |
msgid "Upgrade to higher versions"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:239
|
1532 |
msgid "Form Field Configuration"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: core/admin/page-form-free.php:190 core/lib/wpbc_all_translations.php:240
|
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:241
|
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:242
|
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:243
|
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
|
1561 |
#: inc/_bm/admin/page-seasons.php:602 inc/_ps/admin/page-resources.php:222
|
1562 |
+
#: inc/_ps/personal.php:2134
|
1563 |
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:244
|
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:245 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:246
|
1577 |
msgid "Form Field"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: core/admin/page-form-free.php:923 core/lib/wpbc_all_translations.php:247
|
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:248
|
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:249
|
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:250
|
1596 |
msgid "Checkbox"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: core/admin/page-form-free.php:971 core/lib/wpbc_all_translations.php:251
|
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:252
|
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:253
|
1614 |
msgid "View"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: core/admin/page-form-free.php:1052 core/lib/wpbc_all_translations.php:254
|
1618 |
msgid "Standard Forms"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: core/admin/page-form-free.php:1055 core/lib/wpbc_all_translations.php:255
|
1622 |
msgid "Form under calendar"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: core/admin/page-form-free.php:1065 core/lib/wpbc_all_translations.php:256
|
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:257
|
1630 |
msgid "Form and calendar are centered"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: core/admin/page-form-free.php:1085 core/lib/wpbc_all_translations.php:258
|
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:259
|
1639 |
msgid "Active"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: core/admin/page-form-free.php:1146 core/lib/wpbc_all_translations.php:260
|
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:261 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:262
|
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:263
|
1664 |
msgid "Remove"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: core/admin/page-form-free.php:1894 core/lib/wpbc_all_translations.php:264
|
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:265
|
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:266
|
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:267
|
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:268
|
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:269
|
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:270
|
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:271
|
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:272 inc/_ps/form/class-wpbc-field-help-button.php:73
|
1717 |
+
#: js/wpbc-gutenberg.js:877
|
1718 |
msgid "Label"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: core/admin/page-form-free.php:2121 core/lib/wpbc_all_translations.php:273
|
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:274
|
1727 |
msgid "Values"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: core/admin/page-form-free.php:2147 core/lib/wpbc_all_translations.php:275
|
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:276
|
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:277
|
1743 |
+
#: core/timeline/v2/wpbc-class-timeline_v2.php:2698 inc/_bm/m-toolbar.php:373
|
1744 |
+
#: inc/_bm/m-toolbar.php:374 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:278
|
1750 |
msgid "in 24 hour format"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:279
|
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:280
|
1760 |
msgid "Titles"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:281
|
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:282
|
1770 |
msgid "Visible options in selectbox"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:283
|
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:284
|
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:285 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:286
|
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:287
|
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:288
|
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:289 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:290
|
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:291 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:292
|
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:293 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:294
|
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:295 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
|
1867 |
#: inc/_ps/form/class-wpbc-form-help.php:343 inc/_ps/form/class-wpbc-form-help.php:380
|
1868 |
#: inc/_ps/form/class-wpbc-form-help.php:382 inc/_ps/form/class-wpbc-form-help.php:497
|
1869 |
#: inc/_ps/form/class-wpbc-form-help.php:515 inc/_ps/form/class-wpbc-form-help.php:645
|
1870 |
+
#: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:460
|
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:1164
|
1875 |
+
#: js/wpbc-gutenberg.js:1250
|
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:296
|
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:297
|
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:298
|
1892 |
msgid ".ics feed URL"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:299
|
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:300
|
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:301
|
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:302 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:303
|
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:304
|
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:305
|
1926 |
msgid "Event Description (optional field)"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:306
|
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:307 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:308
|
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:309
|
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:310
|
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:311
|
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:312
|
1959 |
msgid "Append check out day"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:313
|
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:314
|
1967 |
msgid "Export only approved bookings"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: core/admin/page-ics-general.php:189 core/lib/wpbc_all_translations.php:315
|
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:316
|
1975 |
msgid "Force import"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: core/admin/page-ics-general.php:202 core/lib/wpbc_all_translations.php:317
|
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:318
|
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:319
|
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:320 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:321 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:322
|
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:323
|
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
|
2014 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:914 inc/gateways/ipay88/wpbc-gw-ipay88.php:855
|
2015 |
#: inc/gateways/paypal/wpbc-gw-paypal.php:1052 inc/gateways/sage/wpbc-gw-sage.php:904
|
2016 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1141
|
2017 |
msgid "Advanced"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:324
|
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:325
|
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:326
|
2031 |
msgid "Enter URL to .ics feed"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: core/admin/page-ics-import.php:465 core/lib/wpbc_all_translations.php:327
|
2035 |
msgid "Choose file"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: core/admin/page-ics-import.php:466 core/lib/wpbc_all_translations.php:328
|
2039 |
msgid "Insert file URL"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: core/admin/page-ics-import.php:467 core/lib/wpbc_all_translations.php:329
|
2043 |
msgid "Upload / Select "
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: core/admin/page-ics-import.php:504 core/lib/wpbc_all_translations.php:330
|
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:331
|
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:332
|
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:333
|
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:334
|
2069 |
msgid "Is it automatic process?"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: core/admin/page-ics-import.php:565 core/lib/wpbc_all_translations.php:335
|
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:336
|
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:337
|
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:338
|
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:339
|
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:340
|
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:341
|
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:342
|
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:343
|
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:344
|
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:345
|
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:346
|
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:347
|
2140 |
msgid "Activate auto import"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:348
|
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:349 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:350
|
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
|
2168 |
#: inc/_bm/admin/page-cost-valuation.php:348 inc/_bm/admin/page-cost-valuation.php:481
|
2169 |
#: inc/_bm/admin/page-seasons.php:1051 inc/_bs/admin/api-settings-s.php:536
|
2170 |
+
#: inc/_ps/admin/page-settings-form.php:447 inc/_ps/wpbc-form-templates.php:231
|
2171 |
+
#: inc/_ps/wpbc-form-templates.php:266
|
2172 |
msgid "days"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:351
|
2176 |
msgid "Import events every"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:352
|
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:353
|
2184 |
msgid "Google API Key"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:354
|
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:355
|
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
|
2195 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:477 inc/gateways/ideal/wpbc-gw-ideal.php:481
|
2196 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:399 inc/gateways/paypal/wpbc-gw-paypal.php:529
|
2197 |
#: inc/gateways/sage/wpbc-gw-sage.php:508 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:564
|
2199 |
msgid "Note:"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:356
|
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:357
|
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:358
|
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:359
|
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:360 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:361 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:362 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:363 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:364 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:365
|
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:366 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:367
|
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:368 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:369 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:370 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:371 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:372 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:373
|
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:374 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:375
|
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:376
|
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:377
|
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:378
|
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:379
|
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:380
|
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:381
|
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:382
|
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:383
|
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:384
|
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:385
|
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:386
|
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:387
|
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:388
|
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:389
|
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:390
|
2367 |
msgid "Find Your Calendar ID"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:391
|
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:392
|
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:393
|
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:394
|
2390 |
msgid "Default settings for retrieving events"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:395
|
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:396
|
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:397 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:398
|
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:399 js/wpbc-gutenberg.js:737
|
2419 |
msgid "Timeline"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: core/admin/page-settings.php:116 core/lib/wpbc_all_translations.php:400
|
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:401
|
2428 |
msgid "Plugin Menu"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: core/admin/page-settings.php:131 core/lib/wpbc_all_translations.php:402
|
2432 |
msgid "Uninstall"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: core/admin/page-settings.php:243 core/lib/wpbc_all_translations.php:403
|
2436 |
msgid "Auto cancellation / auto approval of bookings"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:404
|
2440 |
msgid "Information"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: core/admin/page-settings.php:275 core/lib/wpbc_all_translations.php:405
|
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:406 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:407
|
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:408
|
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:409
|
2469 |
msgid "Booking Data"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:410
|
2473 |
msgid "Booking Dates"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:411
|
2477 |
msgid "Show ALL dates of booking"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:412
|
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:413
|
2485 |
msgid "Resource not exist"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:414
|
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:560
|
2495 |
+
msgid "In Trash / Rejected"
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: core/admin/wpbc-class-listing.php:334 core/lib/wpbc_all_translations.php:415
|
2499 |
msgid "Imported"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: core/admin/wpbc-class-listing.php:398 core/lib/wpbc_all_translations.php:416
|
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:417 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:418
|
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:419
|
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:420 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:421
|
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:422
|
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:423 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:424
|
2544 |
msgid "Video guide"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:425
|
2548 |
msgid "Support"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:426
|
2552 |
msgid "Getting Started"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:427
|
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:428
|
2561 |
msgid "FAQ"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:429
|
2565 |
msgid "Contact email"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:430
|
2569 |
msgid "Rate plugin (thanks:)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:431
|
2573 |
msgid "Current version"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:432
|
2577 |
msgid "Demo"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:433
|
2581 |
msgid "Version"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:434
|
2585 |
msgid "Used for"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:435
|
2589 |
msgid "websites"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:436
|
2593 |
msgid "website"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:437
|
2597 |
msgid "Release date"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:438
|
2601 |
msgid "Explore Premium Features"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:439
|
2605 |
msgid "Statistic"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:440
|
2609 |
msgid "New (unverified) booking(s)"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:441
|
2613 |
msgid "Pending booking(s)"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:442
|
2617 |
msgid "Agenda"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:443
|
2621 |
msgid "New booking(s) made today"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:444
|
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:445
|
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:446
|
2635 |
msgid "Booking calendar"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: core/admin/wpbc-toolbar-tiny.php:225 core/lib/wpbc_all_translations.php:447
|
2639 |
msgid "Insert Shortcode"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:448
|
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:449
|
2648 |
msgid "Resources Selection"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:450
|
2652 |
+
#: core/wpbc-functions.php:2017 inc/_bl/admin/page-search.php:353 inc/_bl/biz_l.php:753
|
2653 |
+
#: inc/_bl/biz_l.php:768
|
2654 |
msgid "Search"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:451
|
2658 |
msgid "Only Form"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:452
|
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:453
|
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:454 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:455
|
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:456
|
2681 |
+
#: js/wpbc-gutenberg.js:794
|
2682 |
msgid "View mode"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: core/admin/wpbc-toolbar-tiny.php:407 core/lib/wpbc_all_translations.php:457
|
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:458
|
2691 |
msgid "All bookings"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: core/admin/wpbc-toolbar-tiny.php:461 core/lib/wpbc_all_translations.php:459
|
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:460
|
2699 |
+
#: js/wpbc-gutenberg.js:800
|
2700 |
msgid "Number of days to scroll"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: core/admin/wpbc-toolbar-tiny.php:483 core/lib/wpbc_all_translations.php:461
|
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:462 js/wpbc-gutenberg.js:806
|
2709 |
msgid "Start Date"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: core/admin/wpbc-toolbar-tiny.php:581 core/lib/wpbc_all_translations.php:463
|
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:464 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:600 js/wpbc-gutenberg.js:690
|
2721 |
+
#: js/wpbc-gutenberg.js:957 js/wpbc-gutenberg.js:1323
|
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:465 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:466
|
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:467 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:468
|
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:469
|
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:470
|
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:471
|
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:472
|
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:473
|
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:474
|
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:475 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:615
|
2785 |
+
#: js/wpbc-gutenberg.js:702 js/wpbc-gutenberg.js:898
|
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:476
|
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:477
|
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:478 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:479
|
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:480
|
2819 |
msgid "Code Example"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: core/admin/wpbc-toolbar-tiny.php:851 core/lib/wpbc_all_translations.php:481
|
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:482
|
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:483
|
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:484
|
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:485
|
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:486
|
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
|
2856 |
#: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
|
2857 |
+
#: inc/_ps/admin/page-resources.php:201 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:885
|
2858 |
+
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:900
|
2859 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
|
2860 |
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
|
2861 |
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:875
|
2863 |
msgid "Note!"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: core/admin/wpbc-toolbar-tiny.php:1131 core/lib/wpbc_all_translations.php:487
|
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:488 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:489
|
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:490
|
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:491
|
2892 |
msgid "Define preselected resource."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: core/admin/wpbc-toolbar-tiny.php:1204 core/lib/wpbc_all_translations.php:492
|
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:493
|
2902 |
msgid "Please select the resource:"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: core/admin/wpbc-toolbar-tiny.php:1221 core/lib/wpbc_all_translations.php:494
|
2906 |
msgid "Title near your select box."
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:495
|
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:496
|
2915 |
+
#: inc/_ps/personal.php:543 js/wpbc-gutenberg.js:831
|
2916 |
msgid "Please Select"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:497
|
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:498
|
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:499
|
2931 |
msgid "Select shortcode to insert"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:500
|
2935 |
msgid "Search form"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: core/admin/wpbc-toolbar-tiny.php:1445 core/lib/wpbc_all_translations.php:501
|
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:502
|
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:503
|
2949 |
msgid "URL of search results:"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: core/admin/wpbc-toolbar-tiny.php:1483 core/lib/wpbc_all_translations.php:504
|
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:505
|
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:506 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:507
|
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:508
|
2970 |
msgid "show number of search results"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: core/admin/wpbc-toolbar-tiny.php:1519 core/lib/wpbc_all_translations.php:509
|
2974 |
msgid "Nothing Found Message:"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: core/admin/wpbc-toolbar-tiny.php:1521 core/lib/wpbc_all_translations.php:510
|
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:511
|
2982 |
msgid "Search only for users:"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: core/admin/wpbc-toolbar-tiny.php:1543 core/lib/wpbc_all_translations.php:512
|
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:513
|
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:514
|
2999 |
msgid "date"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: core/admin/wpbc-toolbar-tiny.php:1685 core/lib/wpbc_all_translations.php:515
|
3003 |
msgid "Define date for booking"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:516
|
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:517
|
3012 |
msgid "Show listing of customer bookings"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:518
|
3016 |
msgid "Show info about Booking Resource"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:519
|
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:520
|
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:521
|
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:522
|
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:523
|
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:524
|
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:525
|
3058 |
msgid "Trick"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: core/admin/wpbc-toolbar-tiny.php:1805 core/lib/wpbc_all_translations.php:526
|
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:527
|
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:528
|
3074 |
msgid "No booking resources"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:529
|
3078 |
msgid "Filters"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
+
#: core/admin/wpbc-toolbars.php:350 core/lib/wpbc_all_translations.php:530
|
3082 |
msgid "Expand Advanced Toolbar"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: core/admin/wpbc-toolbars.php:357 core/lib/wpbc_all_translations.php:531
|
3086 |
msgid "Collapse Advanced Toolbar"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: core/admin/wpbc-toolbars.php:379 core/lib/wpbc_all_translations.php:532
|
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:533
|
3094 |
msgid "Emails sending"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: core/admin/wpbc-toolbars.php:405 core/lib/wpbc_all_translations.php:534
|
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:535
|
3103 |
msgid "Go"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: core/admin/wpbc-toolbars.php:442 core/lib/wpbc_all_translations.php:536
|
3107 |
msgid "Technical Support"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: core/admin/wpbc-toolbars.php:444 core/lib/wpbc_all_translations.php:537
|
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:538 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:539
|
3121 |
msgid "Refresh booking listing"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: core/admin/wpbc-toolbars.php:526 core/lib/wpbc_all_translations.php:540
|
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:541
|
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:542
|
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:543
|
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:544
|
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:545
|
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:546
|
3157 |
msgid "Filter bookings by booking dates"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: core/admin/wpbc-toolbars.php:590 core/lib/wpbc_all_translations.php:547
|
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:548
|
3166 |
msgid "Today"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:549
|
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:550
|
3175 |
msgid "All dates"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: core/admin/wpbc-toolbars.php:595 core/lib/wpbc_all_translations.php:551
|
3179 |
msgid "Today check in/out"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: core/admin/wpbc-toolbars.php:596 core/lib/wpbc_all_translations.php:552
|
3183 |
msgid "Check In - Tomorrow"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: core/admin/wpbc-toolbars.php:597 core/lib/wpbc_all_translations.php:553
|
3187 |
msgid "Check Out - Tomorrow"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: core/admin/wpbc-toolbars.php:602 core/lib/wpbc_all_translations.php:554
|
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:555
|
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:556
|
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:557
|
3207 |
msgid "Check-out"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: core/admin/wpbc-toolbars.php:750 core/lib/wpbc_all_translations.php:558
|
3211 |
msgid "Order by"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: core/admin/wpbc-toolbars.php:764 core/lib/wpbc_all_translations.php:559
|
3215 |
msgid "Exist"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: core/admin/wpbc-toolbars.php:786 core/lib/wpbc_all_translations.php:561
|
|
|
|
|
|
|
|
|
3219 |
msgid "New bookings"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: core/admin/wpbc-toolbars.php:823 core/lib/wpbc_all_translations.php:562
|
3223 |
msgid "Creation"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: core/admin/wpbc-toolbars.php:950 core/lib/wpbc_all_translations.php:563
|
3227 |
msgid "Approve selected bookings"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: core/admin/wpbc-toolbars.php:965 core/lib/wpbc_all_translations.php:564
|
3231 |
msgid "Set selected bookings as pending"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: core/admin/wpbc-toolbars.php:995 core/lib/wpbc_all_translations.php:565
|
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:566
|
3239 |
msgid "Restore selected bookings"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: core/admin/wpbc-toolbars.php:1028 core/lib/wpbc_all_translations.php:567
|
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:293
|
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:568
|
3253 |
msgid "Delete selected bookings"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: core/admin/wpbc-toolbars.php:1031 core/lib/wpbc_all_translations.php:569
|
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:570
|
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:346
|
3266 |
+
#: core/lib/wpbc_all_translations.php:571
|
3267 |
msgid "Empty Trash"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: core/admin/wpbc-toolbars.php:1106 core/lib/wpbc_all_translations.php:572
|
3271 |
msgid "Read All"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: core/admin/wpbc-toolbars.php:1107 core/lib/wpbc_all_translations.php:573
|
3275 |
msgid "Mark as read all bookings"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: core/admin/wpbc-toolbars.php:1120 core/lib/wpbc_all_translations.php:574
|
3279 |
msgid "Read"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: core/admin/wpbc-toolbars.php:1121 core/lib/wpbc_all_translations.php:575
|
3283 |
msgid "Mark as read selected bookings"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: core/admin/wpbc-toolbars.php:1135 core/lib/wpbc_all_translations.php:576
|
3287 |
msgid "Unread"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: core/admin/wpbc-toolbars.php:1136 core/lib/wpbc_all_translations.php:577
|
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:578
|
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:579
|
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:580
|
3306 |
msgid "Show month"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: core/admin/wpbc-toolbars.php:1287 core/lib/wpbc_all_translations.php:581
|
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:582
|
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:583
|
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:584
|
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:585
|
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:586
|
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:587
|
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:588
|
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:589
|
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:590
|
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:591
|
3360 |
msgid "Next 3 months"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:592
|
3364 |
msgid "Previous 7 days"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:593
|
3368 |
msgid "Previous day"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:594
|
3372 |
msgid "Current day"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: core/admin/wpbc-toolbars.php:1393 core/lib/wpbc_all_translations.php:595
|
3376 |
msgid "Next day"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: core/admin/wpbc-toolbars.php:1394 core/lib/wpbc_all_translations.php:596
|
3380 |
msgid "Next 7 days"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: core/admin/wpbc-toolbars.php:1665 core/lib/wpbc_all_translations.php:597
|
3384 |
msgid "Number of months in one row"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: core/admin/wpbc-toolbars.php:1710 core/lib/wpbc_all_translations.php:598
|
3388 |
msgid "Calendar width"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: core/admin/wpbc-toolbars.php:1758 core/lib/wpbc_all_translations.php:599
|
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:600
|
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:601
|
3402 |
msgid "Add to Google Calendar"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: core/admin/wpbc-toolbars.php:2109 core/lib/wpbc_all_translations.php:602
|
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:603
|
3411 |
msgid "ID or Title"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: core/any/api-emails.php:508 core/lib/wpbc_all_translations.php:604
|
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:605 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:606
|
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:607 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:608 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:609
|
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:610
|
3449 |
msgid "Set as Unread"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:611
|
3453 |
msgid "Set as Read"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: core/lib/wpbc-ajax.php:189 core/lib/wpbc_all_translations.php:612
|
3457 |
msgid "Approved by:"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: core/lib/wpbc-ajax.php:189 core/lib/wpbc_all_translations.php:613
|
3461 |
msgid "Declined by:"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: core/lib/wpbc-ajax.php:215 core/lib/wpbc_all_translations.php:614
|
3465 |
msgid "Set as Approved"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: core/lib/wpbc-ajax.php:217 core/lib/wpbc_all_translations.php:615
|
3469 |
msgid "Set as Pending"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: core/lib/wpbc-ajax.php:238 core/lib/wpbc-ajax.php:392 core/lib/wpbc_all_translations.php:616
|
3473 |
msgid "Reason for cancellation here"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: core/lib/wpbc-ajax.php:239 core/lib/wpbc-ajax.php:393 core/lib/wpbc_all_translations.php:617
|
3477 |
msgid "Reason of cancellation here"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: core/lib/wpbc-ajax.php:291 core/lib/wpbc_all_translations.php:618
|
3481 |
msgid "Moved to trash"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: core/lib/wpbc-ajax.php:299 core/lib/wpbc_all_translations.php:619
|
3485 |
msgid "Restored"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: core/lib/wpbc-ajax.php:372 core/lib/wpbc_all_translations.php:620
|
3489 |
#, php-format
|
3490 |
msgid "Deleted %d bookings from trash"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: core/lib/wpbc-ajax.php:543 core/lib/wpbc_all_translations.php:621 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:622
|
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:623
|
3502 |
msgid "Updating..."
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: core/lib/wpbc-booking-new.php:164 core/lib/wpbc_all_translations.php:624
|
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:869 core/lib/wpbc_all_translations.php:625
|
3511 |
+
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:878
|
3512 |
msgid "Error!"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: core/lib/wpbc-booking-new.php:870 core/lib/wpbc_all_translations.php:626
|
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:627
|
3522 |
msgid "Timeline type"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: core/lib/wpbc_all_translations.php:628
|
3526 |
msgid "Select type of timeline to load"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: core/lib/wpbc_all_translations.php:629
|
3530 |
msgid "Flex Timeline"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
#: core/lib/wpbc_all_translations.php:630
|
3534 |
msgid "Old Timeline"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: core/lib/wpbc_all_translations.php:631
|
3538 |
msgid "Trash"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
+
#: core/lib/wpbc_all_translations.php:632
|
3542 |
msgid "Move to trash"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: core/lib/wpbc_all_translations.php:633 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:634 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:635 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:636 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:637 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:638 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:639 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:640 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:641
|
|
|
3586 |
msgid "Decline"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: core/lib/wpbc_all_translations.php:642 core/timeline/v2/wpbc-class-timeline_v2.php:2699
|
3590 |
msgid "Pay"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: core/lib/wpbc_all_translations.php:643 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:644
|
3601 |
msgid "In Trash"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: core/lib/wpbc_all_translations.php:645
|
3605 |
msgid "Move selected bookings to trash"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: core/lib/wpbc_all_translations.php:646
|
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:647
|
3615 |
msgid "Show 3 months"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: core/lib/wpbc_all_translations.php:648
|
3619 |
msgid "Show year"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: core/lib/wpbc_all_translations.php:649
|
3623 |
msgid "Number of months"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: core/lib/wpbc_all_translations.php:650 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:651
|
3631 |
msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: core/lib/wpbc_all_translations.php:652
|
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:653
|
3642 |
msgid "Copy to admin"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: core/lib/wpbc_all_translations.php:654
|
3646 |
msgid "Enable / disable sending copy of this email notification to admin"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: core/lib/wpbc_all_translations.php:655
|
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:656
|
3654 |
msgid "Email is sending to Visitor after Approval of booking."
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: core/lib/wpbc_all_translations.php:657
|
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:658
|
3662 |
msgid "Email is sending to Visitor after Deleting of booking."
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: core/lib/wpbc_all_translations.php:659
|
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:660
|
3672 |
msgid "Email is sending to Visitor after booking set as Pending."
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: core/lib/wpbc_all_translations.php:661
|
3676 |
msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: core/lib/wpbc_all_translations.php:662
|
3680 |
msgid "Confgure ULR feed(s) at this settings page."
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: core/lib/wpbc_all_translations.php:663
|
3684 |
msgid "Reject"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: core/lib/wpbc_all_translations.php:664
|
3688 |
msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: core/lib/wpbc_all_translations.php:665
|
3692 |
msgid "Google Calendar"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: core/lib/wpbc_all_translations.php:666
|
3696 |
msgid "Events Import"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: core/lib/wpbc_all_translations.php:667
|
3700 |
msgid "Import Settings"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: core/lib/wpbc_all_translations.php:668
|
3704 |
msgid "Customization of synchronization with Google Calendar"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: core/lib/wpbc_all_translations.php:669 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
|
3711 |
#: inc/_bm/admin/page-cost-rate.php:77 inc/_bm/admin/page-cost-valuation.php:103
|
3712 |
+
#: inc/_bm/admin/page-seasons.php:826 inc/_bm/admin/page-seasons.php:828 inc/_bs/lib_s.php:345
|
3713 |
#: inc/_ps/hash/wpbc-hash-functions.php:67 inc/_ps/hash/wpbc-hash-functions.php:106
|
3714 |
#: inc/_ps/hash/wpbc-hash-functions.php:134 inc/_ps/hash/wpbc-hash-functions.php:162
|
3715 |
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:308
|
3719 |
msgid "Error"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: core/lib/wpbc_all_translations.php:670
|
3723 |
msgid "does not exist"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: core/lib/wpbc_all_translations.php:671 core/lib/wpdev-booking-class.php:500
|
3727 |
msgid "Calendar is loading..."
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: core/lib/wpbc_all_translations.php:672 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:673
|
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:674 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:675 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:676 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:677 core/lib/wpdev-booking-class.php:1036
|
3759 |
+
#: core/lib/wpdev-booking-class.php:1235 js/wpbc-gutenberg.js:1176 js/wpbc-gutenberg.js:1262
|
3760 |
msgid "You do not set any parameters for booking editing"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: core/lib/wpbc_all_translations.php:678 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:679 core/lib/wpdev-booking-widget.php:108
|
3770 |
msgid "Booking form with calendar"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: core/lib/wpbc_all_translations.php:680 core/lib/wpdev-booking-widget.php:109
|
3774 |
msgid "Only availability calendar"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: core/lib/wpbc_all_translations.php:681 core/lib/wpdev-booking-widget.php:150
|
3778 |
msgid "Footer"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: core/lib/wpbc_all_translations.php:682 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:683 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:684 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:685 core/sync/wpbc-gcal-class.php:300
|
3800 |
msgid "Importing Feed"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: core/lib/wpbc_all_translations.php:686 core/sync/wpbc-gcal-class.php:316
|
3804 |
msgid "Data Parsing"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: core/lib/wpbc_all_translations.php:687 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:688 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:689 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:690 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:691 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:692 core/sync/wpbc-gcal-class.php:658
|
3835 |
msgid "Selection"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: core/lib/wpbc_all_translations.php:693 core/sync/wpbc-gcal-class.php:672
|
3839 |
msgid "Location:"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: core/lib/wpbc_all_translations.php:694 core/sync/wpbc-gcal-class.php:702
|
3843 |
msgid "Reload page"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: core/lib/wpbc_all_translations.php:695 core/sync/wpbc-gcal-class.php:715
|
3847 |
msgid "Delete selected booking(s)"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: core/lib/wpbc_all_translations.php:696 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:697 core/sync/wpbc-gcal.php:399
|
3855 |
msgid "Retrieve Google Calendar Events "
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: core/lib/wpbc_all_translations.php:698 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:699 core/sync/wpbc-gcal.php:433
|
3863 |
msgid "Configure"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: core/lib/wpbc_all_translations.php:700 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:701 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:702 core/wpbc-activation.php:589
|
3877 |
#, php-format
|
3878 |
msgid "Updated booking: %s"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: core/lib/wpbc_all_translations.php:703 core/wpbc-activation.php:1014
|
3882 |
msgid "Booking form"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: core/lib/wpbc_all_translations.php:704 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:705 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:706 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:707 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:708 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:709 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:710 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:711 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:712 core/wpbc-emails.php:78
|
3933 |
msgid "Booking system"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: core/lib/wpbc_all_translations.php:713 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:714 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:715 core/wpbc-emails.php:191
|
3949 |
+
#: inc/gateways/page-gateways.php:1068
|
3950 |
#, php-format
|
3951 |
msgid ""
|
3952 |
"%s - inserting data info about the booking, which you configured in the content form at Settings "
|
3953 |
"Fields page"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: core/lib/wpbc_all_translations.php:716 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:717 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:718 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:719 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:720 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:721 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:722 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:723 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:724 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:725 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:726 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:727 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:728 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:729 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:730 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:731 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:732 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:733 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:734 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:735 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:736 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:737 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:738 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:739 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:740 core/wpbc-functions.php:1018 inc/_bm/biz_m.php:2066
|
4084 |
msgid "yes"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
+
#: core/lib/wpbc_all_translations.php:741 core/wpbc-functions.php:1022
|
4088 |
msgid "no"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
+
#: core/lib/wpbc_all_translations.php:742 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:743 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:744 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:745 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:746 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:747 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:748 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:749 core/wpbc-functions.php:2326
|
4128 |
msgid "Changes saved."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: core/lib/wpbc_all_translations.php:750 core/wpbc-functions.php:2432
|
4132 |
msgid "Click to toggle"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: core/lib/wpbc_all_translations.php:751 core/wpbc-functions.php:2494
|
4136 |
msgid "Prev"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: core/lib/wpbc_all_translations.php:752 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:753 core/wpbc-functions.php:2857
|
4144 |
msgid "Get Started"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: core/lib/wpbc_all_translations.php:754 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:755 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:756 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:757 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:758 core/wpbc-functions.php:2888
|
4168 |
msgid "Next Steps"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: core/lib/wpbc_all_translations.php:759 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:760 core/wpbc-functions.php:2896
|
4177 |
#, php-format
|
4178 |
msgid "Configure booking %sSettings%s."
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: core/lib/wpbc_all_translations.php:761 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:762 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:763 core/wpbc-functions.php:2910
|
4192 |
msgid "Have a questions?"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
+
#: core/lib/wpbc_all_translations.php:764 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:765 core/wpbc-functions.php:2918
|
4201 |
#, php-format
|
4202 |
msgid "See %sFAQ%s."
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: core/lib/wpbc_all_translations.php:766 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:767 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:768 core/wpbc-js.php:112
|
4216 |
msgid "This field is required"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: core/lib/wpbc_all_translations.php:769 core/wpbc-js.php:113
|
4220 |
msgid "This checkbox must be checked"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: core/lib/wpbc_all_translations.php:770 core/wpbc-js.php:114
|
4224 |
msgid "At least one option must be selected"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
+
#: core/lib/wpbc_all_translations.php:771 core/wpbc-js.php:115
|
4228 |
msgid "Incorrect email field"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
+
#: core/lib/wpbc_all_translations.php:772 core/wpbc-js.php:116
|
4232 |
msgid "Your emails do not match"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
+
#: core/lib/wpbc_all_translations.php:773 core/wpbc-js.php:117
|
4236 |
msgid "Please, select booking date(s) at Calendar."
|
4237 |
msgstr ""
|
4238 |
|
4239 |
+
#: core/lib/wpbc_all_translations.php:774 core/wpbc-js.php:132
|
4240 |
msgid "Deleting"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
+
#: core/lib/wpbc_all_translations.php:775 core/wpbc-js.php:133
|
4244 |
msgid "Updating"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: core/lib/wpbc_all_translations.php:776 core/wpbc-js.php:134
|
4248 |
msgid "Saving"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
+
#: core/lib/wpbc_all_translations.php:777 core/wpbc.php:97
|
4252 |
msgid "Booking"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
+
#: core/lib/wpbc_all_translations.php:778 core/wpbc.php:289 core/wpbc.php:296
|
4256 |
msgid "Action is not allowed!"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
+
#: core/lib/wpbc_all_translations.php:779 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:410 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:780 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:781 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:782 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:783 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:784 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:785 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:786 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:787 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:788 inc/_bl/admin/api-settings-l.php:66
|
4311 |
msgid "Show availability in tooltip"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: core/lib/wpbc_all_translations.php:789 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:790 inc/_bl/admin/api-settings-l.php:76
|
4321 |
msgid "Availability Title"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: core/lib/wpbc_all_translations.php:791 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:792 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:793 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:794 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:795 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:796 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:797 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:798 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:799 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:800 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:801 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:802 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:803 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:804 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:805 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:806 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:807 inc/_bl/admin/api-settings-l.php:350
|
4417 |
msgid "Max visitors"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: core/lib/wpbc_all_translations.php:808 inc/_bl/admin/api-settings-l.php:470
|
4421 |
msgid "Single"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: core/lib/wpbc_all_translations.php:809 inc/_bl/admin/api-settings-l.php:472
|
4425 |
msgid "Child"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: core/lib/wpbc_all_translations.php:810 inc/_bl/admin/page-coupons.php:46
|
4429 |
msgid "Setting coupons for discount"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: core/lib/wpbc_all_translations.php:811 inc/_bl/admin/page-coupons.php:122
|
4433 |
+
#: inc/_bm/m-toolbar.php:596 inc/_bm/m-toolbar.php:598
|
4434 |
msgid "Create dates filter"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
+
#: core/lib/wpbc_all_translations.php:812 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:813 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:814 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:815 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:816 inc/_bl/admin/page-coupons.php:517
|
4459 |
msgid "Minimum Cost"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: core/lib/wpbc_all_translations.php:817 inc/_bl/admin/page-coupons.php:524
|
4463 |
msgid "Expiration"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: core/lib/wpbc_all_translations.php:818 inc/_bl/admin/page-coupons.php:533
|
4467 |
msgid "Number of usage"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: core/lib/wpbc_all_translations.php:819 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:820 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:821 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:822 inc/_bl/admin/page-coupons.php:1171
|
4491 |
msgid "Enter coupon code."
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: core/lib/wpbc_all_translations.php:823 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:824 inc/_bl/admin/page-coupons.php:1235
|
4499 |
msgid "Expiration Date"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: core/lib/wpbc_all_translations.php:825 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:826 inc/_bl/admin/page-coupons.php:1318
|
4507 |
msgid "Minimum Booking Cost"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: core/lib/wpbc_all_translations.php:827 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:828 inc/_bl/admin/page-coupons.php:1336
|
4515 |
msgid "Maximum number of usage"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: core/lib/wpbc_all_translations.php:829 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:830 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:831 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:832 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:833 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:834 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:835 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:836 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:837 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:838 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:839 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:840 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:841 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:842 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:843 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:844 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:845 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:846 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:847 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:848 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:849 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:850 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:851 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:852 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:853 inc/_bl/admin/page-search.php:155
|
4642 |
msgid "hour(s)"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: core/lib/wpbc_all_translations.php:854 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:855 inc/_bl/admin/page-search.php:163
|
4651 |
msgid "Cache expiration"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: core/lib/wpbc_all_translations.php:856 inc/_bl/admin/page-search.php:164
|
4655 |
msgid "Select time of cache expiration"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: core/lib/wpbc_all_translations.php:857 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:858 inc/_bl/admin/page-search.php:416
|
4664 |
msgid "Cache Updated"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: core/lib/wpbc_all_translations.php:859 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:860 inc/_bl/admin/page-search.php:442
|
4673 |
+
#: inc/_bl/admin/page-search.php:505 js/wpbc-gutenberg.js:1063
|
4674 |
msgid "Search Results"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: core/lib/wpbc_all_translations.php:861 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:862 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:863 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:864 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:865
|
4699 |
msgid "Inlinee Search Form Template"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: core/lib/wpbc_all_translations.php:866 inc/_bl/admin/page-search.php:715
|
4703 |
msgid "Horizontal Search Form Template"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: core/lib/wpbc_all_translations.php:867 inc/_bl/admin/page-search.php:725
|
4707 |
msgid "Standard Search Form Template"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: core/lib/wpbc_all_translations.php:868 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:869 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:870 inc/_bl/admin/page-search.php:907
|
4722 |
msgid "Cache will expire:"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: core/lib/wpbc_all_translations.php:871 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:872 inc/_bl/admin/page-search.php:941
|
4731 |
msgid "Page"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: core/lib/wpbc_all_translations.php:873 inc/_bl/admin/page-search.php:964
|
4735 |
msgid "Reset Search Cache"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: core/lib/wpbc_all_translations.php:874 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:875 inc/_bl/biz_l.php:385
|
4745 |
msgid "coupon"
|
4746 |
msgstr ""
|
4747 |
|
4748 |
+
#: core/lib/wpbc_all_translations.php:876 inc/_bl/biz_l.php:387
|
4749 |
msgid "discount"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
+
#: core/lib/wpbc_all_translations.php:877 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:878 inc/_bl/biz_l.php:1727 inc/_bl/biz_l.php:1738
|
4757 |
+
#: inc/_bl/biz_l.php:1755 inc/_bl/biz_l.php:1760
|
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:879 inc/_bl/biz_l.php:2396
|
4766 |
#, php-format
|
4767 |
msgid "The folowing pending booking(s): %s deleted."
|
4768 |
msgstr ""
|
4769 |
|
4770 |
+
#: core/lib/wpbc_all_translations.php:880 inc/_bl/wpbc-search-availability.php:862
|
4771 |
msgid "Book now"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
+
#: core/lib/wpbc_all_translations.php:881 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:882 inc/_bl/wpdev-booking-search-widget.php:15
|
4780 |
msgid "Search results."
|
4781 |
msgstr ""
|
4782 |
|
4783 |
+
#: core/lib/wpbc_all_translations.php:883 inc/_bl/wpdev-booking-search-widget.php:16
|
4784 |
msgid "Nothing found."
|
4785 |
msgstr ""
|
4786 |
|
4787 |
+
#: core/lib/wpbc_all_translations.php:884 inc/_bl/wpdev-booking-search-widget.php:85
|
4788 |
msgid "Title of search widget"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
+
#: core/lib/wpbc_all_translations.php:885 inc/_bl/wpdev-booking-search-widget.php:93
|
4792 |
msgid "Title of search results"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
+
#: core/lib/wpbc_all_translations.php:886 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:887 inc/_bl/wpdev-booking-search-widget.php:102
|
4801 |
msgid "Nothing found message"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: core/lib/wpbc_all_translations.php:888 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:889 inc/_bl/wpdev-booking-search-widget.php:111
|
4810 |
msgid "URL of Search Results"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: core/lib/wpbc_all_translations.php:890 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:891 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:892 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:893 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:894 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:895 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:896 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:897 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:898 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:899 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:900 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:901 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:902 inc/_bm/admin/api-settings-m.php:188
|
4874 |
msgid "Currency symbol"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: core/lib/wpbc_all_translations.php:903 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:904 inc/_bm/admin/api-settings-m.php:237
|
4885 |
msgid "Showing cost in tooltip"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
+
#: core/lib/wpbc_all_translations.php:905 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:906 inc/_bm/admin/api-settings-m.php:246
|
4895 |
msgid "Cost Title"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: core/lib/wpbc_all_translations.php:907 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:908 inc/_bm/admin/api-settings-m.php:569
|
4904 |
+
#: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:420
|
4905 |
msgid "Custom Forms"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: core/lib/wpbc_all_translations.php:909 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:910 inc/_bm/admin/page-availability.php:49
|
4913 |
msgid "Availability Settings"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: core/lib/wpbc_all_translations.php:911 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:912 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:913 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:914 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:915 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:916 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:917 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:918 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:919 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:920 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:921 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:922 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:923 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:924 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:925 inc/_bm/admin/page-cost-advanced.php:45
|
4997 |
msgid "Advanced Cost Settings"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
+
#: core/lib/wpbc_all_translations.php:926 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:927 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:928 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:929 inc/_bm/admin/page-cost-advanced.php:460
|
5017 |
msgid "of total cost"
|
5018 |
msgstr ""
|
5019 |
|
5020 |
+
#: core/lib/wpbc_all_translations.php:930 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:931 inc/_bm/admin/page-cost-advanced.php:463
|
5026 |
msgid "as additional sum"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
+
#: core/lib/wpbc_all_translations.php:932 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:933 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:934 inc/_bm/admin/page-cost-advanced.php:662
|
5041 |
msgid "Enter fixed cost"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: core/lib/wpbc_all_translations.php:935 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:936 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:937 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:938 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:939 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:940 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:941 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:942 inc/_bm/admin/page-cost-deposit.php:73
|
5081 |
msgid "Set Deposit"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: core/lib/wpbc_all_translations.php:943 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:944 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:945 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:946 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:947 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:948 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:949 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:950 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:951 inc/_bm/admin/page-cost-deposit.php:342
|
5129 |
msgid "Deposit payment total"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
+
#: core/lib/wpbc_all_translations.php:952 inc/_bm/admin/page-cost-rate.php:69
|
5133 |
msgid "Set Rates"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
+
#: core/lib/wpbc_all_translations.php:953 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:954 inc/_bm/admin/page-cost-rate.php:167
|
5142 |
msgid "Seasonal price"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
+
#: core/lib/wpbc_all_translations.php:955 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:956 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:957 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:958 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:959 inc/_bm/admin/page-cost-valuation.php:194
|
5168 |
msgid "Costs"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
+
#: core/lib/wpbc_all_translations.php:960 inc/_bm/admin/page-cost-valuation.php:249
|
5172 |
msgid "Add new cost"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: core/lib/wpbc_all_translations.php:961 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:962 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:963 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:964 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:965 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:966 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:967 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:968 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:969 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:970 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:971 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:972 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:973 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:974 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:975 inc/_bm/admin/page-cost.php:50
|
5255 |
msgid "Costs and Rates Settings"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: core/lib/wpbc_all_translations.php:976 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:977 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:978 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:979 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:980 inc/_bm/admin/page-seasons.php:46
|
5279 |
msgid "Customizaton of Season Filters"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: core/lib/wpbc_all_translations.php:981 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:982 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:983 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:984 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:985 inc/_bm/admin/page-seasons.php:990
|
5303 |
msgid "Weekdays"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: core/lib/wpbc_all_translations.php:986 inc/_bm/admin/page-seasons.php:1106
|
5307 |
msgid "Months"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: core/lib/wpbc_all_translations.php:987 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:988 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:989 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:990 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:991 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:992 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:993 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:994 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:995 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:996 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_translations.php:997 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_translations.php:998 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:2 inc/_bm/admin/page-seasons.php:1174
|
5371 |
msgid "Years"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: core/lib/wpbc_all_translations1.php:3 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:4 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:5 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:6 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:7 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:8 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:9 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:10 inc/_bm/admin/page-seasons.php:1489
|
5410 |
msgid "Jan"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: core/lib/wpbc_all_translations1.php:11 inc/_bm/admin/page-seasons.php:1489
|
5414 |
msgid "Feb"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
+
#: core/lib/wpbc_all_translations1.php:12 inc/_bm/admin/page-seasons.php:1490
|
5418 |
msgid "Mar"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
+
#: core/lib/wpbc_all_translations1.php:13 inc/_bm/admin/page-seasons.php:1490
|
5422 |
msgid "Apr"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
+
#: core/lib/wpbc_all_translations1.php:14 inc/_bm/admin/page-seasons.php:1491
|
5426 |
msgid "Jun"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
+
#: core/lib/wpbc_all_translations1.php:15 inc/_bm/admin/page-seasons.php:1491
|
5430 |
msgid "Jul"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: core/lib/wpbc_all_translations1.php:16 inc/_bm/admin/page-seasons.php:1491
|
5434 |
msgid "Aug"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: core/lib/wpbc_all_translations1.php:17 inc/_bm/admin/page-seasons.php:1492
|
5438 |
msgid "Sep"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
+
#: core/lib/wpbc_all_translations1.php:18 inc/_bm/admin/page-seasons.php:1492
|
5442 |
msgid "Oct"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: core/lib/wpbc_all_translations1.php:19 inc/_bm/admin/page-seasons.php:1492
|
5446 |
msgid "Nov"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
+
#: core/lib/wpbc_all_translations1.php:20 inc/_bm/admin/page-seasons.php:1492
|
5450 |
msgid "Dec"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: core/lib/wpbc_all_translations1.php:21 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:22 inc/_bm/admin/page-seasons.php:1564
|
5460 |
msgid "time"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: core/lib/wpbc_all_translations1.php:23 inc/_bm/admin/page-seasons.php:1582
|
5464 |
msgid "Every"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: core/lib/wpbc_all_translations1.php:24 inc/_bm/admin/page-seasons.php:1598
|
5468 |
msgid "Each day "
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: core/lib/wpbc_all_translations1.php:25 inc/_bm/admin/page-seasons.php:1600
|
5472 |
msgid "on each day "
|
5473 |
msgstr ""
|
5474 |
|
5475 |
+
#: core/lib/wpbc_all_translations1.php:26 inc/_bm/admin/page-seasons.php:1605
|
5476 |
msgid "On each "
|
5477 |
msgstr ""
|
5478 |
|
5479 |
+
#: core/lib/wpbc_all_translations1.php:27 inc/_bm/admin/page-seasons.php:1607
|
5480 |
msgid "on each "
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: core/lib/wpbc_all_translations1.php:28 inc/_bm/admin/page-seasons.php:1624
|
5484 |
msgid "of every month "
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: core/lib/wpbc_all_translations1.php:29 inc/_bm/admin/page-seasons.php:1628
|
5488 |
msgid "of"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: core/lib/wpbc_all_translations1.php:30 inc/_bm/biz_m.php:220
|
5492 |
msgid "for all days!"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: core/lib/wpbc_all_translations1.php:31 inc/_bm/biz_m.php:764
|
5496 |
msgid "Standard booking resource cost"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: core/lib/wpbc_all_translations1.php:32 inc/_bm/biz_m.php:765
|
5500 |
msgid "Total booking resource cost"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: core/lib/wpbc_all_translations1.php:33 inc/_bm/m-toolbar.php:294
|
5504 |
msgid "Delete selected booking form"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: core/lib/wpbc_all_translations1.php:34 inc/_bm/m-toolbar.php:298
|
5508 |
msgid "Do you really want to delete selected booking form ?"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: core/lib/wpbc_all_translations1.php:35 inc/_bm/m-toolbar.php:323 inc/_bm/m-toolbar.php:324
|
5512 |
msgid "Add New Custom Form"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: core/lib/wpbc_all_translations1.php:36 inc/_bm/m-toolbar.php:357
|
5516 |
msgid "Type the name of booking form"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: core/lib/wpbc_all_translations1.php:37 inc/_bm/m-toolbar.php:364
|
5520 |
msgid "Create"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: core/lib/wpbc_all_translations1.php:38 inc/_bm/m-toolbar.php:365
|
5524 |
msgid "Create new form"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: core/lib/wpbc_all_translations1.php:39 inc/_bm/m-toolbar.php:560
|
5528 |
msgid "There are no extended booking forms"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: core/lib/wpbc_all_translations1.php:40 inc/_bm/m-toolbar.php:604 inc/_bm/m-toolbar.php:606
|
5532 |
msgid "Create conditional days filter"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: core/lib/wpbc_all_translations1.php:41 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:42 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:43 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:44 inc/_bs/admin/api-settings-s.php:31
|
5551 |
msgid "Range days"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: core/lib/wpbc_all_translations1.php:45 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:46 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:47 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:48 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:49 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:50 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:51 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:52 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:53 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:54 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:55 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:56 inc/_bs/admin/api-settings-s.php:198
|
5610 |
msgid "Specific days selections"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: core/lib/wpbc_all_translations1.php:57 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:58 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:59 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:60 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:61 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:62 inc/_bs/admin/api-settings-s.php:323
|
5642 |
msgid "Check-in time"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: core/lib/wpbc_all_translations1.php:63 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:64 inc/_bs/admin/api-settings-s.php:336
|
5651 |
msgid "Check-Out time"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: core/lib/wpbc_all_translations1.php:65 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:66 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:67 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:68 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:69 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:70 inc/_bs/admin/api-settings-s.php:418
|
5677 |
msgid "Time Format"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: core/lib/wpbc_all_translations1.php:71 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:72 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:73 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:74 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:75 inc/_bs/admin/api-settings-s.php:541
|
5701 |
msgid "Cancel bookings older"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: core/lib/wpbc_all_translations1.php:76 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:77 inc/_bs/admin/api-settings-s.php:550
|
5709 |
msgid "Cancellation email sent"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: core/lib/wpbc_all_translations1.php:78 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:79 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:80 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:81 inc/_bs/admin/page-email-payment.php:560
|
5728 |
msgid "Payment request"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: core/lib/wpbc_all_translations1.php:82 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:83
|
5736 |
msgid "Email with Payment Request which is sending to Visitor."
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: core/lib/wpbc_all_translations1.php:84 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:85 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:86 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:87 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:88 inc/_bs/biz_s.php:408
|
5761 |
msgid "Cost saved successfully"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: core/lib/wpbc_all_translations1.php:89 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:90 inc/_bs/biz_s.php:600
|
5769 |
msgid "Request has been sent"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
+
#: core/lib/wpbc_all_translations1.php:91 inc/_bs/biz_s.php:607
|
5773 |
msgid "Request has failed"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
+
#: core/lib/wpbc_all_translations1.php:92 inc/_bs/biz_s.php:638
|
5777 |
msgid "The payment status is changed successfully"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
+
#: core/lib/wpbc_all_translations1.php:93 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:94 inc/_bs/biz_s.php:1043
|
5785 |
msgid "deposit"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
+
#: core/lib/wpbc_all_translations1.php:95 inc/_bs/biz_s.php:1044
|
5789 |
msgid "Total cost"
|
5790 |
msgstr ""
|
5791 |
|
5792 |
+
#: core/lib/wpbc_all_translations1.php:96 inc/_bs/biz_s.php:1045
|
5793 |
msgid "balance"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: core/lib/wpbc_all_translations1.php:97 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:98 inc/_bs/lib_s.php:45
|
5802 |
msgid "Any Status"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
+
#: core/lib/wpbc_all_translations1.php:99 inc/_bs/lib_s.php:48
|
5806 |
msgid "Unknown Status"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
+
#: core/lib/wpbc_all_translations1.php:100 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:101 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:102 inc/_bs/lib_s.php:140
|
5819 |
msgid "min"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: core/lib/wpbc_all_translations1.php:103 inc/_bs/lib_s.php:140
|
5823 |
msgid "max"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
+
#: core/lib/wpbc_all_translations1.php:104 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:105 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:106 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:107 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:108 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:109 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:110 inc/_bs/lib_s.php:322
|
5852 |
msgid "!Paid OK"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: core/lib/wpbc_all_translations1.php:111 inc/_bs/lib_s.php:323
|
5856 |
msgid "Unknown status"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: core/lib/wpbc_all_translations1.php:112 inc/_bs/lib_s.php:328
|
5860 |
msgid "Processed"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: core/lib/wpbc_all_translations1.php:113 inc/_bs/lib_s.php:330
|
5864 |
msgid "Canceled_Reversal"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: core/lib/wpbc_all_translations1.php:114 inc/_bs/lib_s.php:331
|
5868 |
msgid "Denied"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: core/lib/wpbc_all_translations1.php:115 inc/_bs/lib_s.php:332
|
5872 |
msgid "Expired"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: core/lib/wpbc_all_translations1.php:116 inc/_bs/lib_s.php:334
|
5876 |
msgid "Partially_Refunded"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: core/lib/wpbc_all_translations1.php:117 inc/_bs/lib_s.php:336
|
5880 |
msgid "Reversed"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: core/lib/wpbc_all_translations1.php:118 inc/_bs/lib_s.php:337
|
5884 |
msgid "Voided"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: core/lib/wpbc_all_translations1.php:119 inc/_bs/lib_s.php:340
|
5888 |
msgid "Not authed"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: core/lib/wpbc_all_translations1.php:120 inc/_bs/lib_s.php:341
|
5892 |
msgid "Malformed"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: core/lib/wpbc_all_translations1.php:121 inc/_bs/lib_s.php:342
|
5896 |
msgid "Invalid"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: core/lib/wpbc_all_translations1.php:122 inc/_bs/lib_s.php:343
|
5900 |
msgid "Abort"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: core/lib/wpbc_all_translations1.php:123 inc/_bs/lib_s.php:344
|
5904 |
msgid "Rejected"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: core/lib/wpbc_all_translations1.php:124 inc/_bs/lib_s.php:349
|
5908 |
msgid "Suspended"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: core/lib/wpbc_all_translations1.php:125 inc/_bs/s-toolbar.php:68
|
5912 |
msgid "Send payment request to visitor"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: core/lib/wpbc_all_translations1.php:126 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:127 inc/_bs/s-toolbar.php:136
|
5921 |
msgid "Save cost"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: core/lib/wpbc_all_translations1.php:128 inc/_bs/s-toolbar.php:173
|
5925 |
msgid "Change status"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: core/lib/wpbc_all_translations1.php:129 inc/_bs/s-toolbar.php:196
|
5929 |
msgid "Send payment request to customer"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: core/lib/wpbc_all_translations1.php:130 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:131 inc/_bs/s-toolbar.php:208
|
5938 |
msgid "Send Request"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
+
#: core/lib/wpbc_all_translations1.php:132 inc/_bs/s-toolbar.php:230
|
5942 |
msgid "Auto-fill form"
|
5943 |
msgstr ""
|
5944 |
|
5945 |
+
#: core/lib/wpbc_all_translations1.php:133 inc/_mu/admin/activation-u.php:84
|
5946 |
msgid "Suite"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
+
#: core/lib/wpbc_all_translations1.php:134 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:135 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:136 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:137 inc/_mu/admin/api-settings-u.php:446
|
5967 |
msgid "Inactive User"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: core/lib/wpbc_all_translations1.php:138 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:139 inc/_mu/admin/page-users.php:44
|
5976 |
msgid "Manage Users"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: core/lib/wpbc_all_translations1.php:140 inc/_mu/admin/page-users.php:45
|
5980 |
msgid "Users Settings"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: core/lib/wpbc_all_translations1.php:141 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:142 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:143 inc/_mu/admin/page-users.php:441
|
5994 |
msgid "User Role"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
+
#: core/lib/wpbc_all_translations1.php:144 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:145 inc/_mu/admin/page-users.php:548
|
6003 |
msgid "Unlimited"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
+
#: core/lib/wpbc_all_translations1.php:146 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:147 inc/_mu/admin/page-users.php:561
|
6014 |
msgid "make user active"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
+
#: core/lib/wpbc_all_translations1.php:148 inc/_mu/admin/page-users.php:565
|
6018 |
msgid "Activate"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
+
#: core/lib/wpbc_all_translations1.php:149 inc/_mu/admin/page-users.php:569
|
6022 |
msgid "make user inactive"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
+
#: core/lib/wpbc_all_translations1.php:150 inc/_mu/admin/page-users.php:572
|
6026 |
msgid "Deactivate"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
+
#: core/lib/wpbc_all_translations1.php:151 inc/_mu/admin/page-users.php:575
|
6030 |
msgid "delete configuration"
|
6031 |
msgstr ""
|
6032 |
|
6033 |
+
#: core/lib/wpbc_all_translations1.php:152 inc/_mu/admin/page-users.php:579
|
6034 |
msgid "Delete settings"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
+
#: core/lib/wpbc_all_translations1.php:153 inc/_mu/admin/page-users.php:582
|
6038 |
msgid "delete all booking data"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
+
#: core/lib/wpbc_all_translations1.php:154 inc/_mu/admin/page-users.php:586
|
6042 |
msgid "Delete data"
|
6043 |
msgstr ""
|
6044 |
|
6045 |
+
#: core/lib/wpbc_all_translations1.php:155 inc/_mu/multiuser.php:635
|
6046 |
msgid "Work days"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: core/lib/wpbc_all_translations1.php:156 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:157 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:158 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:159 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:160 inc/_ps/admin/api-settings-p.php:56
|
6071 |
msgid "Default booking resource"
|
6072 |
msgstr ""
|
6073 |
|
6074 |
+
#: core/lib/wpbc_all_translations1.php:161 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:162 inc/_ps/admin/api-settings-p.php:70
|
6079 |
msgid "Resources number per page"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: core/lib/wpbc_all_translations1.php:163 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:164 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:165 inc/_ps/admin/api-settings-p.php:183
|
6092 |
msgid "admin panel"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
+
#: core/lib/wpbc_all_translations1.php:166 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:167
|
6103 |
msgid "front panel"
|
6104 |
msgstr ""
|
6105 |
|
6106 |
+
#: core/lib/wpbc_all_translations1.php:168 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:169 inc/_ps/admin/api-settings-p.php:206
|
6114 |
msgid "Booking details in popover"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: core/lib/wpbc_all_translations1.php:170 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:171 inc/_ps/admin/api-settings-p.php:228
|
6125 |
msgid "semicolon"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
+
#: core/lib/wpbc_all_translations1.php:172 inc/_ps/admin/api-settings-p.php:229
|
6129 |
msgid "comma"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
#: core/lib/wpbc_all_translations1.php:173 inc/_ps/admin/api-settings-p.php:234
|
6133 |
msgid "CSV data separator"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
+
#: core/lib/wpbc_all_translations1.php:174 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:175 inc/_ps/admin/api-settings-p.php:327
|
6141 |
+
#: js/wpbc-gutenberg.js:1158
|
6142 |
msgid "URL to edit bookings"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
+
#: core/lib/wpbc_all_translations1.php:176 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:177 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:178 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:179 inc/_ps/admin/page-email-edit.php:556
|
6161 |
msgid "Modified"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
+
#: core/lib/wpbc_all_translations1.php:180
|
6165 |
msgid "Customization of email template, which is sending after modification of booking"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
+
#: core/lib/wpbc_all_translations1.php:181
|
6169 |
msgid "Email is sending to Visitor after Editing of booking."
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: core/lib/wpbc_all_translations1.php:182 inc/_ps/admin/page-resources.php:39
|
6173 |
msgid "Customizaton of booking resources"
|
6174 |
msgstr ""
|
6175 |
|
6176 |
+
#: core/lib/wpbc_all_translations1.php:183 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:184 inc/_ps/admin/page-settings-form.php:138
|
6182 |
msgid "Content of Booking Fields"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
+
#: core/lib/wpbc_all_translations1.php:185 inc/_ps/admin/page-settings-form.php:164
|
6186 |
msgid "Generate tag"
|
6187 |
msgstr ""
|
6188 |
|
6189 |
+
#: core/lib/wpbc_all_translations1.php:186 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:187 inc/_ps/admin/page-settings-form.php:312
|
6195 |
msgid "Form Template"
|
6196 |
msgstr ""
|
6197 |
|
6198 |
+
#: core/lib/wpbc_all_translations1.php:188 inc/_ps/admin/page-settings-form.php:325
|
6199 |
msgid "Standard Templates"
|
6200 |
msgstr ""
|
6201 |
|
6202 |
+
#: core/lib/wpbc_all_translations1.php:189 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:190 inc/_ps/admin/page-settings-form.php:410
|
6208 |
msgid "Advanced Templates"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
+
#: core/lib/wpbc_all_translations1.php:191 inc/_ps/admin/page-settings-form.php:413
|
6212 |
msgid "Wizard (several steps)"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
+
#: core/lib/wpbc_all_translations1.php:192 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:193 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:194 inc/_ps/admin/page-settings-form.php:469
|
6225 |
msgid "Reset Form"
|
6226 |
msgstr ""
|
6227 |
|
6228 |
+
#: core/lib/wpbc_all_translations1.php:195 inc/_ps/admin/page-settings-form.php:522
|
6229 |
msgid "Both"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
+
#: core/lib/wpbc_all_translations1.php:196 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:197 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:198 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:199 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 ""
|
6251 |
"You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
|
6252 |
"that all \"open\" tags (like %s) are closed (like this %s)."
|
6253 |
msgstr ""
|
6254 |
|
6255 |
+
#: core/lib/wpbc_all_translations1.php:200 inc/_ps/admin/page-settings-up.php:39
|
6256 |
msgid "Upgrade to higher version"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
+
#: core/lib/wpbc_all_translations1.php:201 inc/_ps/class/wpbc-settings-table.php:260
|
6260 |
msgid "No results found."
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: core/lib/wpbc_all_translations1.php:202 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:203 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:204 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:205 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:206 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:207 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:208 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:209 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:210 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:211 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:212 inc/_ps/form/class-wpbc-field-help-text.php:228
|
6316 |
msgid "Placeholder"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
+
#: core/lib/wpbc_all_translations1.php:213 inc/_ps/form/class-wpbc-field-help-text.php:247
|
6320 |
msgid "Class"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
+
#: core/lib/wpbc_all_translations1.php:214 inc/_ps/form/class-wpbc-field-help-text.php:264
|
6324 |
msgid "Size"
|
6325 |
msgstr ""
|
6326 |
|
6327 |
+
#: core/lib/wpbc_all_translations1.php:215 inc/_ps/form/class-wpbc-field-help-text.php:281
|
6328 |
msgid "Maxlength"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
+
#: core/lib/wpbc_all_translations1.php:216 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:217 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:218 inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
6341 |
msgid "Rows"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
+
#: core/lib/wpbc_all_translations1.php:219 inc/_ps/form/class-wpbc-form-help.php:86
|
6345 |
msgid "General Information"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
+
#: core/lib/wpbc_all_translations1.php:220 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:221 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:222 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:223 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:224 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:225 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:226 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:227 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:228 inc/_ps/form/class-wpbc-form-help.php:135
|
6397 |
msgid "Email Field"
|
6398 |
msgstr ""
|
6399 |
|
6400 |
+
#: core/lib/wpbc_all_translations1.php:229 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:230 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:231 inc/_ps/form/class-wpbc-form-help.php:163
|
6410 |
msgid "Drop Down"
|
6411 |
msgstr ""
|
6412 |
|
6413 |
+
#: core/lib/wpbc_all_translations1.php:232 inc/_ps/form/class-wpbc-form-help.php:175
|
6414 |
msgid "Checkbox(es)"
|
6415 |
msgstr ""
|
6416 |
|
6417 |
+
#: core/lib/wpbc_all_translations1.php:233 inc/_ps/form/class-wpbc-form-help.php:182
|
6418 |
msgid "Radio Button(s)"
|
6419 |
msgstr ""
|
6420 |
|
6421 |
+
#: core/lib/wpbc_all_translations1.php:234 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:235 inc/_ps/form/class-wpbc-form-help.php:206
|
6427 |
msgid "Submit Button"
|
6428 |
msgstr ""
|
6429 |
|
6430 |
+
#: core/lib/wpbc_all_translations1.php:236 inc/_ps/form/class-wpbc-form-help.php:214
|
6431 |
msgid "Times Fields"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
+
#: core/lib/wpbc_all_translations1.php:237 inc/_ps/form/class-wpbc-form-help.php:220
|
6435 |
msgid "Time Slot List"
|
6436 |
msgstr ""
|
6437 |
|
6438 |
+
#: core/lib/wpbc_all_translations1.php:238 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:239 inc/_ps/form/class-wpbc-form-help.php:222
|
6446 |
msgid "Time Slot"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: core/lib/wpbc_all_translations1.php:240 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:241 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:242 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:243 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:244 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:245 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:246 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:247 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:248 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:249 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:250 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:251 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:252 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:253 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:254 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:255 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:256 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:257 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:258 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:259 inc/_ps/form/class-wpbc-form-help.php:383
|
6557 |
msgid "field"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
+
#: core/lib/wpbc_all_translations1.php:260 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:261 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:262 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:263 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:264 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:265 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:266 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:267 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:268 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:269 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:270 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:271 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:272 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:273 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:274 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:275 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:276 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:277 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:278 inc/_ps/form/class-wpbc-form-help.php:493
|
6674 |
msgid "Time Field"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
+
#: core/lib/wpbc_all_translations1.php:279 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:280 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:281 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:282 inc/_ps/form/class-wpbc-form-help.php:509
|
6691 |
msgid "Country List"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: core/lib/wpbc_all_translations1.php:283 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:284 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:285 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:286 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:287 inc/_ps/form/class-wpbc-form-help.php:523
|
6713 |
msgid "Language Sections"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: core/lib/wpbc_all_translations1.php:288 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:289 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:290 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:291 inc/_ps/form/class-wpbc-form-help.php:529
|
6730 |
msgid "Usage"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
+
#: core/lib/wpbc_all_translations1.php:292 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:293 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:294 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:295 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:296 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:297 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:298 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:299 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:300 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:301 inc/_ps/form/class-wpbc-form-help.php:635
|
6781 |
msgid "Cost Fields"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: core/lib/wpbc_all_translations1.php:302 inc/_ps/form/class-wpbc-form-help.php:641
|
6785 |
msgid "Cost Correction Field"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: core/lib/wpbc_all_translations1.php:303 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:304 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:305 inc/_ps/form/class-wpbc-form-help.php:655
|
6799 |
msgid "Discount Coupon field"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
+
#: core/lib/wpbc_all_translations1.php:306 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:307 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:308 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:309 inc/_ps/form/class-wpbc-form-help.php:673
|
6816 |
msgid "Cost Hints"
|
6817 |
msgstr ""
|
6818 |
|
6819 |
+
#: core/lib/wpbc_all_translations1.php:310 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:311 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:312 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:313 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
|
6840 |
#: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
|
6841 |
#: inc/_ps/form/class-wpbc-form-help.php:721 inc/_ps/form/class-wpbc-form-help.php:724
|
6842 |
#: inc/_ps/form/class-wpbc-form-help.php:727 inc/_ps/form/class-wpbc-form-help.php:730
|
6843 |
+
#: inc/gateways/page-gateways.php:1095 inc/gateways/page-gateways.php:1098
|
6844 |
+
#: inc/gateways/page-gateways.php:1101 inc/gateways/page-gateways.php:1104
|
6845 |
+
#: inc/gateways/page-gateways.php:1107 inc/gateways/page-gateways.php:1110
|
6846 |
+
#: inc/gateways/page-gateways.php:1113 inc/gateways/page-gateways.php:1116
|
6847 |
+
#: inc/gateways/page-gateways.php:1119 inc/gateways/page-gateways.php:1122
|
6848 |
msgid "Example:"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
+
#: core/lib/wpbc_all_translations1.php:314 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:315 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:316 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:317 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:318 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:319 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:320 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:321 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:322 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:323 inc/_ps/form/class-wpbc-form-help.php:739
|
6897 |
msgid "Other Hints"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
+
#: core/lib/wpbc_all_translations1.php:324 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:325 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:326 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:327 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:328 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:329 inc/_ps/form/class-wpbc-form-help.php:760
|
6922 |
msgid "Tips and Tricks"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
+
#: core/lib/wpbc_all_translations1.php:330 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:331 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:332 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:333 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:334 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:335 inc/_ps/form/class-wpbc-form-help.php:791
|
6953 |
msgid "Generate Tag"
|
6954 |
msgstr ""
|
6955 |
|
6956 |
+
#: core/lib/wpbc_all_translations1.php:336 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:337 inc/_ps/p-toolbar.php:34
|
6961 |
msgid "Keyword"
|
6962 |
msgstr ""
|
6963 |
|
6964 |
+
#: core/lib/wpbc_all_translations1.php:338 inc/_ps/p-toolbar.php:42
|
6965 |
msgid "Enter Keyword here"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: core/lib/wpbc_all_translations1.php:339 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:340 inc/_ps/p-toolbar.php:100
|
6974 |
msgid "Save as Default"
|
6975 |
msgstr ""
|
6976 |
|
6977 |
+
#: core/lib/wpbc_all_translations1.php:341 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:342 inc/_ps/p-toolbar.php:110
|
6982 |
msgid "Delete template"
|
6983 |
msgstr ""
|
6984 |
|
6985 |
+
#: core/lib/wpbc_all_translations1.php:343 inc/_ps/p-toolbar.php:132
|
6986 |
msgid "Print bookings listing"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
+
#: core/lib/wpbc_all_translations1.php:344 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:345 inc/_ps/p-toolbar.php:187
|
6994 |
msgid "Export All"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
+
#: core/lib/wpbc_all_translations1.php:346 inc/_ps/p-toolbar.php:188
|
6998 |
msgid "Export All bookings to CSV format"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: core/lib/wpbc_all_translations1.php:347 inc/_ps/p-toolbar.php:255
|
7002 |
msgid "Edit Note"
|
7003 |
msgstr ""
|
7004 |
|
7005 |
+
#: core/lib/wpbc_all_translations1.php:348 inc/_ps/p-toolbar.php:278
|
7006 |
msgid "Change Language"
|
7007 |
msgstr ""
|
7008 |
|
7009 |
+
#: core/lib/wpbc_all_translations1.php:349 inc/_ps/p-toolbar.php:290
|
7010 |
msgid "Default Locale"
|
7011 |
msgstr ""
|
7012 |
|
7013 |
+
#: core/lib/wpbc_all_translations1.php:350 inc/_ps/p-toolbar.php:326
|
7014 |
msgid "Change Resource"
|
7015 |
msgstr ""
|
7016 |
|
7017 |
+
#: core/lib/wpbc_all_translations1.php:351 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:352 inc/_ps/p-toolbar.php:382
|
7023 |
msgid "Save"
|
7024 |
msgstr ""
|
7025 |
|
7026 |
+
#: core/lib/wpbc_all_translations1.php:353 inc/_ps/p-toolbar.php:431
|
7027 |
msgid "Change"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
+
#: core/lib/wpbc_all_translations1.php:354 inc/_ps/p-toolbar.php:501
|
7031 |
msgid "Print bookings"
|
7032 |
msgstr ""
|
7033 |
|
7034 |
+
#: core/lib/wpbc_all_translations1.php:355 inc/_ps/p-toolbar.php:540
|
7035 |
msgid "Export bookings"
|
7036 |
msgstr ""
|
7037 |
|
7038 |
+
#: core/lib/wpbc_all_translations1.php:356 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:357 inc/_ps/p-toolbar.php:551
|
7043 |
msgid "Download"
|
7044 |
msgstr ""
|
7045 |
|
7046 |
+
#: core/lib/wpbc_all_translations1.php:358 inc/_ps/p-toolbar.php:788
|
7047 |
msgid "Clear booking resources selection"
|
7048 |
msgstr ""
|
7049 |
|
7050 |
+
#: core/lib/wpbc_all_translations1.php:359 inc/_ps/p-toolbar.php:792
|
7051 |
msgid "Apply booking resources selection"
|
7052 |
msgstr ""
|
7053 |
|
7054 |
+
#: core/lib/wpbc_all_translations1.php:360 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:361 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:362 inc/_ps/p-toolbar.php:1150
|
7065 |
msgid "Enter name of booking resource"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
+
#: core/lib/wpbc_all_translations1.php:363 inc/_ps/p-toolbar.php:1174
|
7069 |
msgid "Resources count"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: core/lib/wpbc_all_translations1.php:364 inc/_ps/personal.php:249
|
7073 |
msgid "This booking resources does not exist"
|
7074 |
msgstr ""
|
7075 |
|
7076 |
+
#: core/lib/wpbc_all_translations1.php:365 inc/_ps/personal.php:294
|
7077 |
msgid "Generating columns"
|
7078 |
msgstr ""
|
7079 |
|
7080 |
+
#: core/lib/wpbc_all_translations1.php:366 inc/_ps/personal.php:335
|
7081 |
msgid "Exporting booking data"
|
7082 |
msgstr ""
|
7083 |
|
7084 |
+
#: core/lib/wpbc_all_translations1.php:367 inc/_ps/personal.php:380
|
7085 |
msgid "Generating content of file"
|
7086 |
msgstr ""
|
7087 |
|
7088 |
+
#: core/lib/wpbc_all_translations1.php:368 inc/_ps/personal.php:422
|
7089 |
msgid "Saving to file"
|
7090 |
msgstr ""
|
7091 |
|
7092 |
+
#: core/lib/wpbc_all_translations1.php:369 inc/_ps/personal.php:882
|
7093 |
msgid "The booking was canceled by the visitor."
|
7094 |
msgstr ""
|
7095 |
|
7096 |
+
#: core/lib/wpbc_all_translations1.php:370 inc/_ps/personal.php:943
|
7097 |
msgid "The booking has been canceled successfully"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
+
#: core/lib/wpbc_all_translations1.php:371 inc/_ps/personal.php:964
|
7101 |
msgid "Incorrect date format"
|
7102 |
msgstr ""
|
7103 |
|
7104 |
+
#: core/lib/wpbc_all_translations1.php:372 inc/_ps/personal.php:2112
|
7105 |
msgid "Change your Booking"
|
7106 |
msgstr ""
|
7107 |
|
7108 |
+
#: core/lib/wpbc_all_translations1.php:373 inc/_ps/personal.php:2114
|
7109 |
msgid "Cancel Booking"
|
7110 |
msgstr ""
|
7111 |
|
7112 |
+
#: core/lib/wpbc_all_translations1.php:374 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:375 inc/_ps/personal.php:2529
|
7117 |
msgid "The booking has been duplicated successfully"
|
7118 |
msgstr ""
|
7119 |
|
7120 |
+
#: core/lib/wpbc_all_translations1.php:376 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:377 inc/_ps/personal.php:2625
|
7125 |
msgid "Sending request..."
|
7126 |
msgstr ""
|
7127 |
|
7128 |
+
#: core/lib/wpbc_all_translations1.php:378 inc/_ps/personal.php:2654
|
7129 |
msgid "Order number"
|
7130 |
msgstr ""
|
7131 |
|
7132 |
+
#: core/lib/wpbc_all_translations1.php:379 inc/_ps/personal.php:2656
|
7133 |
msgid "Register"
|
7134 |
msgstr ""
|
7135 |
|
7136 |
+
#: core/lib/wpbc_all_translations1.php:380 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:381 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:382 inc/_ps/wpbc-booking-select-widget.php:226
|
7147 |
msgid "Default form"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
+
#: core/lib/wpbc_all_translations1.php:383 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:384 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:385 inc/_ps/wpbc-check-updates.php:191
|
7163 |
msgid "Upgrade Notice"
|
7164 |
msgstr ""
|
7165 |
|
7166 |
+
#: core/lib/wpbc_all_translations1.php:386 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:387 inc/_ps/wpbc-check-updates.php:235
|
7172 |
msgid "View details"
|
7173 |
msgstr ""
|
7174 |
|
7175 |
+
#: core/lib/wpbc_all_translations1.php:388 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:389 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:390 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:391 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
|
7197 |
#: inc/_ps/wpbc-form-templates.php:174 inc/_ps/wpbc-form-templates.php:189
|
7198 |
+
#: inc/gateways/page-gateways.php:337
|
7199 |
msgid "Phone"
|
7200 |
msgstr ""
|
7201 |
|
7202 |
+
#: core/lib/wpbc_all_translations1.php:392 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:393 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:394 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:395 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:396 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:397 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:398 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:399 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:400 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:401 inc/_ps/wpbc-form-templates.php:89
|
7260 |
msgid "night(s)"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
+
#: core/lib/wpbc_all_translations1.php:402 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:403 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:404 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:405 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:406 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:407 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:408 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:409 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:410 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:411 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:412 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:413 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:414 inc/_ps/wpbc-print.php:84
|
7330 |
msgid "Data"
|
7331 |
msgstr ""
|
7332 |
|
7333 |
+
#: core/lib/wpbc_all_translations1.php:415 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:416 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:308
|
7342 |
msgid "API Login ID"
|
7343 |
msgstr ""
|
7344 |
|
7345 |
+
#: core/lib/wpbc_all_translations1.php:417 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:418
|
7351 |
msgid "Transaction Key"
|
7352 |
msgstr ""
|
7353 |
|
7354 |
+
#: core/lib/wpbc_all_translations1.php:419 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:420 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:421 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:422 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:423 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:375
|
7382 |
msgid "Developer Test"
|
7383 |
msgstr ""
|
7384 |
|
7385 |
+
#: core/lib/wpbc_all_translations1.php:424 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:376
|
7386 |
msgid "Live Test"
|
7387 |
msgstr ""
|
7388 |
|
7389 |
+
#: core/lib/wpbc_all_translations1.php:425 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:426 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:427 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:428 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:389
|
7404 |
msgid "Authorization and Capture"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
+
#: core/lib/wpbc_all_translations1.php:429 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:390
|
7408 |
msgid "Authorization Only"
|
7409 |
msgstr ""
|
7410 |
|
7411 |
+
#: core/lib/wpbc_all_translations1.php:430 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:431 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:432 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:433 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:434 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:435 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:436 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:437 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
|
7456 |
#: inc/gateways/ideal/wpbc-gw-ideal.php:1046 inc/gateways/ipay88/wpbc-gw-ipay88.php:379
|
7457 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:380 inc/gateways/ipay88/wpbc-gw-ipay88.php:986
|
7464 |
msgid "Pay via"
|
7465 |
msgstr ""
|
7466 |
|
7467 |
+
#: core/lib/wpbc_all_translations1.php:438 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:439 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:440 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
|
7485 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:393 inc/gateways/ipay88/wpbc-gw-ipay88.php:394
|
7486 |
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:983 inc/gateways/paypal/wpbc-gw-paypal.php:523
|
7493 |
msgid "Payment for booking %s on these day(s): %s"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
+
#: core/lib/wpbc_all_translations1.php:441 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:442 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:443 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:444 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:445 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:457
|
7525 |
msgid "Activate Relay Response"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
+
#: core/lib/wpbc_all_translations1.php:446 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:447 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:448
|
7541 |
msgid "MD5 Hash value"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
+
#: core/lib/wpbc_all_translations1.php:449
|
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:450
|
7550 |
msgid "To configure MD5 Hash value in Relay Response for your transactions"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
+
#: core/lib/wpbc_all_translations1.php:451
|
7554 |
msgid "Log on to the Merchant Interface"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
+
#: core/lib/wpbc_all_translations1.php:452
|
7558 |
msgid "Click Settings under Account in the main menu on the left"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
+
#: core/lib/wpbc_all_translations1.php:453
|
7562 |
msgid "Click MD5-Hash in the Security Settings section"
|
7563 |
msgstr ""
|
7564 |
|
7565 |
+
#: core/lib/wpbc_all_translations1.php:454
|
7566 |
msgid "Enter this value"
|
7567 |
msgstr ""
|
7568 |
|
7569 |
+
#: core/lib/wpbc_all_translations1.php:455
|
7570 |
msgid "Click Submit"
|
7571 |
msgstr ""
|
7572 |
|
7573 |
+
#: core/lib/wpbc_all_translations1.php:456
|
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:457 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:458 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:459 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:460 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:461 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:462 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:463 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:561
|
7623 |
msgid "Automatically approve booking"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: core/lib/wpbc_all_translations1.php:464 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:465 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:466 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:467 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:468
|
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:469
|
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:470 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:471 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:472 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:473 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:474 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:475 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:476 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:477 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:478 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:717
|
7709 |
msgid "Sort Code"
|
7710 |
msgstr ""
|
7711 |
|
7712 |
+
#: core/lib/wpbc_all_translations1.php:479 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:480 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:481 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:482 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:483 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:737
|
7735 |
msgid "Account Name"
|
7736 |
msgstr ""
|
7737 |
|
7738 |
+
#: core/lib/wpbc_all_translations1.php:484 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:485 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:787
|
7744 |
msgid "BSB"
|
7745 |
msgstr ""
|
7746 |
|
7747 |
+
#: core/lib/wpbc_all_translations1.php:486 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:487 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:789
|
7752 |
msgid "IFSC"
|
7753 |
msgstr ""
|
7754 |
|
7755 |
+
#: core/lib/wpbc_all_translations1.php:488 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:790
|
7756 |
msgid "Branch Sort"
|
7757 |
msgstr ""
|
7758 |
|
7759 |
+
#: core/lib/wpbc_all_translations1.php:489 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:490 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:793
|
7765 |
msgid "Routing Number"
|
7766 |
msgstr ""
|
7767 |
|
7768 |
+
#: core/lib/wpbc_all_translations1.php:491 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:794
|
7769 |
msgid "Branch Code"
|
7770 |
msgstr ""
|
7771 |
|
7772 |
+
#: core/lib/wpbc_all_translations1.php:492 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:493 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:494 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:495 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:496 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:497 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:498 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:499 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:500 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
|
7814 |
msgid "+ Add Account"
|
7815 |
msgstr ""
|
7816 |
|
7817 |
+
#: core/lib/wpbc_all_translations1.php:501 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:502 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:503 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:504 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:505 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:506 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:507 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:508 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:509 inc/gateways/ipay88/wpbc-gw-ipay88.php:328
|
7857 |
msgid "Merchant Code"
|
7858 |
msgstr ""
|
7859 |
|
7860 |
+
#: core/lib/wpbc_all_translations1.php:510 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:511 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:512 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:513 inc/gateways/ipay88/wpbc-gw-ipay88.php:355
|
7874 |
msgid "Malaysian Ringgit"
|
7875 |
msgstr ""
|
7876 |
|
7877 |
+
#: core/lib/wpbc_all_translations1.php:514 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:515 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:516 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:517 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:518 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:519 inc/gateways/page-gateways.php:65
|
7910 |
msgid "for 1 day"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
+
#: core/lib/wpbc_all_translations1.php:520 inc/gateways/page-gateways.php:66
|
7914 |
msgid "for 1 night"
|
7915 |
msgstr ""
|
7916 |
|
7917 |
+
#: core/lib/wpbc_all_translations1.php:521 inc/gateways/page-gateways.php:67
|
7918 |
msgid "fixed sum"
|
7919 |
msgstr ""
|
7920 |
|
7921 |
+
#: core/lib/wpbc_all_translations1.php:522 inc/gateways/page-gateways.php:68
|
7922 |
msgid "for 1 hour"
|
7923 |
msgstr ""
|
7924 |
|
7925 |
+
#: core/lib/wpbc_all_translations1.php:523 inc/gateways/page-gateways.php:73
|
7926 |
msgid "Set the cost"
|
7927 |
msgstr ""
|
7928 |
|
7929 |
+
#: core/lib/wpbc_all_translations1.php:524 inc/gateways/page-gateways.php:74
|
7930 |
msgid " Select your cost configuration."
|
7931 |
msgstr ""
|
7932 |
|
7933 |
+
#: core/lib/wpbc_all_translations1.php:525 inc/gateways/page-gateways.php:82
|
7934 |
msgid "Time impact to cost"
|
7935 |
msgstr ""
|
7936 |
|
7937 |
+
#: core/lib/wpbc_all_translations1.php:526 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:527 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:528 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:529 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:530 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:531 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:532 inc/gateways/page-gateways.php:211
|
7971 |
msgid "Currency Position"
|
7972 |
msgstr ""
|
7973 |
|
7974 |
+
#: core/lib/wpbc_all_translations1.php:533 inc/gateways/page-gateways.php:212
|
7975 |
msgid "Set position of the currency symbol."
|
7976 |
msgstr ""
|
7977 |
|
7978 |
+
#: core/lib/wpbc_all_translations1.php:534 inc/gateways/page-gateways.php:215
|
7979 |
msgid "Left"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
+
#: core/lib/wpbc_all_translations1.php:535 inc/gateways/page-gateways.php:219
|
7983 |
msgid "Right"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
+
#: core/lib/wpbc_all_translations1.php:536 inc/gateways/page-gateways.php:223
|
7987 |
msgid "Left with space"
|
7988 |
msgstr ""
|
7989 |
|
7990 |
+
#: core/lib/wpbc_all_translations1.php:537 inc/gateways/page-gateways.php:227
|
7991 |
msgid "Right with space"
|
7992 |
msgstr ""
|
7993 |
|
7994 |
+
#: core/lib/wpbc_all_translations1.php:538 inc/gateways/page-gateways.php:246
|
7995 |
msgid "Currency format"
|
7996 |
msgstr ""
|
7997 |
|
7998 |
+
#: core/lib/wpbc_all_translations1.php:539 inc/gateways/page-gateways.php:247
|
7999 |
msgid "Number of decimal points"
|
8000 |
msgstr ""
|
8001 |
|
8002 |
+
#: core/lib/wpbc_all_translations1.php:540 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:541 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:542 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:543 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:544 inc/gateways/page-gateways.php:262
|
8023 |
msgid "Separator for the decimal point"
|
8024 |
msgstr ""
|
8025 |
|
8026 |
+
#: core/lib/wpbc_all_translations1.php:545 inc/gateways/page-gateways.php:277
|
8027 |
msgid "Thousands separator"
|
8028 |
msgstr ""
|
8029 |
|
8030 |
+
#: core/lib/wpbc_all_translations1.php:546 inc/gateways/page-gateways.php:290
|
8031 |
msgid "Please select"
|
8032 |
msgstr ""
|
8033 |
|
8034 |
+
#: core/lib/wpbc_all_translations1.php:547 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:548 inc/gateways/page-gateways.php:313
|
8041 |
msgid "Customer Email"
|
8042 |
msgstr ""
|
8043 |
|
8044 |
+
#: core/lib/wpbc_all_translations1.php:549 inc/gateways/page-gateways.php:321
|
8045 |
msgid "First Name(s)"
|
8046 |
msgstr ""
|
8047 |
|
8048 |
+
#: core/lib/wpbc_all_translations1.php:550 inc/gateways/page-gateways.php:329
|
8049 |
msgid "Last name"
|
8050 |
msgstr ""
|
8051 |
|
8052 |
+
#: core/lib/wpbc_all_translations1.php:551 inc/gateways/page-gateways.php:345
|
8053 |
msgid "Billing Address"
|
8054 |
msgstr ""
|
8055 |
|
8056 |
+
#: core/lib/wpbc_all_translations1.php:552 inc/gateways/page-gateways.php:353
|
8057 |
msgid "Billing City"
|
8058 |
msgstr ""
|
8059 |
|
8060 |
+
#: core/lib/wpbc_all_translations1.php:553 inc/gateways/page-gateways.php:370
|
8061 |
msgid "Post Code"
|
8062 |
msgstr ""
|
8063 |
|
8064 |
+
#: core/lib/wpbc_all_translations1.php:554 inc/gateways/page-gateways.php:378
|
8065 |
msgid "State"
|
8066 |
msgstr ""
|
8067 |
|
8068 |
+
#: core/lib/wpbc_all_translations1.php:555 inc/gateways/page-gateways.php:390
|
8069 |
msgid "Show booking details in payment form"
|
8070 |
msgstr ""
|
8071 |
|
8072 |
+
#: core/lib/wpbc_all_translations1.php:556 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:557 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:558 inc/gateways/page-gateways.php:521
|
8083 |
msgid "Payments"
|
8084 |
msgstr ""
|
8085 |
|
8086 |
+
#: core/lib/wpbc_all_translations1.php:559 inc/gateways/page-gateways.php:522
|
8087 |
msgid "Customizaton of Payment"
|
8088 |
msgstr ""
|
8089 |
|
8090 |
+
#: core/lib/wpbc_all_translations1.php:560 inc/gateways/page-gateways.php:523
|
8091 |
msgid "Payment Gateways"
|
8092 |
msgstr ""
|
8093 |
|
8094 |
+
#: core/lib/wpbc_all_translations1.php:561 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:562 inc/gateways/page-gateways.php:540
|
8100 |
msgid "Payment Gateways - General Settings"
|
8101 |
msgstr ""
|
8102 |
|
8103 |
+
#: core/lib/wpbc_all_translations1.php:563 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:564 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:565 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:566 inc/gateways/page-gateways.php:867
|
8119 |
msgid "Gateway"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
+
#: core/lib/wpbc_all_translations1.php:567 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:568 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:569 inc/gateways/page-gateways.php:1070
|
8135 |
msgid "ID of booking"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
+
#: core/lib/wpbc_all_translations1.php:570 inc/gateways/page-gateways.php:1071
|
8139 |
msgid "ID of booking resources"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
+
#: core/lib/wpbc_all_translations1.php:571 inc/gateways/page-gateways.php:1077
|
8143 |
msgid "current date"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
+
#: core/lib/wpbc_all_translations1.php:572 inc/gateways/page-gateways.php:1078
|
8147 |
msgid "current time"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
+
#: core/lib/wpbc_all_translations1.php:573 inc/gateways/page-gateways.php:1084
|
8151 |
msgid "content data of this booking"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
+
#: core/lib/wpbc_all_translations1.php:574 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:575 inc/gateways/page-gateways.php:1087
|
8160 |
msgid "total booking cost"
|
8161 |
msgstr ""
|
8162 |
|
8163 |
+
#: core/lib/wpbc_all_translations1.php:576 inc/gateways/page-gateways.php:1088
|
8164 |
msgid "deposit cost"
|
8165 |
msgstr ""
|
8166 |
|
8167 |
+
#: core/lib/wpbc_all_translations1.php:577 inc/gateways/page-gateways.php:1089
|
8168 |
msgid "balance cost"
|
8169 |
msgstr ""
|
8170 |
|
8171 |
+
#: core/lib/wpbc_all_translations1.php:578 inc/gateways/page-gateways.php:1090
|
8172 |
msgid "original booking cost"
|
8173 |
msgstr ""
|
8174 |
|
8175 |
+
#: core/lib/wpbc_all_translations1.php:579 inc/gateways/page-gateways.php:1091
|
8176 |
msgid "additional booking cost"
|
8177 |
msgstr ""
|
8178 |
|
8179 |
+
#: core/lib/wpbc_all_translations1.php:580 inc/gateways/page-gateways.php:1440
|
8180 |
msgid "Amount to pay"
|
8181 |
msgstr ""
|
8182 |
|
8183 |
+
#: core/lib/wpbc_all_translations1.php:581 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:582 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:583 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:584 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:585 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:586 inc/gateways/paypal/ipn.php:120
|
8208 |
msgid "Error IPN"
|
8209 |
msgstr ""
|
8210 |
|
8211 |
+
#: core/lib/wpbc_all_translations1.php:587 inc/gateways/paypal/ipn.php:250
|
8212 |
msgid "Verified IPN"
|
8213 |
msgstr ""
|
8214 |
|
8215 |
+
#: core/lib/wpbc_all_translations1.php:588 inc/gateways/paypal/ipn.php:273
|
8216 |
msgid "Invalid IPN"
|
8217 |
msgstr ""
|
8218 |
|
8219 |
+
#: core/lib/wpbc_all_translations1.php:589 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:590 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:591 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:592 inc/gateways/paypal/wpbc-gw-paypal.php:363
|
8234 |
msgid "Account Type"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
+
#: core/lib/wpbc_all_translations1.php:593 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:594 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:595 inc/gateways/paypal/wpbc-gw-paypal.php:391
|
8246 |
msgid "Secure Merchant ID"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
+
#: core/lib/wpbc_all_translations1.php:596 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:597 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:598 inc/gateways/paypal/wpbc-gw-paypal.php:412
|
8260 |
msgid "Sale"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
+
#: core/lib/wpbc_all_translations1.php:599 inc/gateways/paypal/wpbc-gw-paypal.php:413
|
8264 |
msgid "Authorization"
|
8265 |
msgstr ""
|
8266 |
|
8267 |
+
#: core/lib/wpbc_all_translations1.php:600 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:601 inc/gateways/paypal/wpbc-gw-paypal.php:430
|
8272 |
msgid "Sandbox"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
+
#: core/lib/wpbc_all_translations1.php:602 inc/gateways/paypal/wpbc-gw-paypal.php:440
|
8276 |
msgid "British Pound"
|
8277 |
msgstr ""
|
8278 |
|
8279 |
+
#: core/lib/wpbc_all_translations1.php:603 inc/gateways/paypal/wpbc-gw-paypal.php:441
|
8280 |
msgid "Japanese Yen"
|
8281 |
msgstr ""
|
8282 |
|
8283 |
+
#: core/lib/wpbc_all_translations1.php:604 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:605 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:606 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:607 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:608 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:609 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:610 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:611 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:612 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:613 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:614 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:615 inc/gateways/paypal/wpbc-gw-paypal.php:454
|
8339 |
msgid "Israeli New Shekel"
|
8340 |
msgstr ""
|
8341 |
|
8342 |
+
#: core/lib/wpbc_all_translations1.php:616 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:617 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:618 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:619 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:620 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:621 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:622 inc/gateways/paypal/wpbc-gw-paypal.php:480
|
8372 |
msgid "Custom button title"
|
8373 |
msgstr ""
|
8374 |
|
8375 |
+
#: core/lib/wpbc_all_translations1.php:623 inc/gateways/paypal/wpbc-gw-paypal.php:487
|
8376 |
msgid "Payment Button type"
|
8377 |
msgstr ""
|
8378 |
|
8379 |
+
#: core/lib/wpbc_all_translations1.php:624 inc/gateways/paypal/wpbc-gw-paypal.php:542
|
8380 |
msgid "Show Reference Text Box"
|
8381 |
msgstr ""
|
8382 |
|
8383 |
+
#: core/lib/wpbc_all_translations1.php:625 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:626 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:627 inc/gateways/paypal/wpbc-gw-paypal.php:553
|
8393 |
msgid "Reference Text Box Title"
|
8394 |
msgstr ""
|
8395 |
|
8396 |
+
#: core/lib/wpbc_all_translations1.php:628 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:629 inc/gateways/paypal/wpbc-gw-paypal.php:575
|
8402 |
msgid "Return URL from PayPal"
|
8403 |
msgstr ""
|
8404 |
|
8405 |
+
#: core/lib/wpbc_all_translations1.php:630 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:631 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:632 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:633 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:634 inc/gateways/paypal/wpbc-gw-paypal.php:661
|
8423 |
msgid "Click the Profile subtab."
|
8424 |
msgstr ""
|
8425 |
|
8426 |
+
#: core/lib/wpbc_all_translations1.php:635 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:636 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:637 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:638 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:639 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:640 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:641 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:642 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:643 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:644 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:645 inc/gateways/paypal/wpbc-gw-paypal.php:750
|
8472 |
msgid "Use SSL connection"
|
8473 |
msgstr ""
|
8474 |
|
8475 |
+
#: core/lib/wpbc_all_translations1.php:646 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:647 inc/gateways/paypal/wpbc-gw-paypal.php:758
|
8480 |
msgid "Use cURL posting"
|
8481 |
msgstr ""
|
8482 |
|
8483 |
+
#: core/lib/wpbc_all_translations1.php:648 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:649 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:650 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:651 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:652 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:653 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:654 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:655 inc/gateways/paypal/wpbc-gw-paypal.php:783
|
8512 |
msgid "Click Save."
|
8513 |
msgstr ""
|
8514 |
|
8515 |
+
#: core/lib/wpbc_all_translations1.php:656 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:657 inc/gateways/paypal/wpbc-gw-paypal.php:946
|
8520 |
msgid "PayPal"
|
8521 |
msgstr ""
|
8522 |
|
8523 |
+
#: core/lib/wpbc_all_translations1.php:658 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:659 inc/gateways/paypal/wpbc-gw-paypal.php:1069
|
8528 |
msgid "PayPal IPN"
|
8529 |
msgstr ""
|
8530 |
|
8531 |
+
#: core/lib/wpbc_all_translations1.php:660 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:661 inc/gateways/sage/wpbc-gw-sage.php:395
|
8537 |
msgid "Vendor Name"
|
8538 |
msgstr ""
|
8539 |
|
8540 |
+
#: core/lib/wpbc_all_translations1.php:662 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:663 inc/gateways/sage/wpbc-gw-sage.php:410
|
8545 |
msgid "XOR Encryption password"
|
8546 |
msgstr ""
|
8547 |
|
8548 |
+
#: core/lib/wpbc_all_translations1.php:664 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:665 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:666 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:667 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:668 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:669 inc/gateways/sage/wpbc-gw-sage.php:443
|
8574 |
msgid "PAYMENT"
|
8575 |
msgstr ""
|
8576 |
|
8577 |
+
#: core/lib/wpbc_all_translations1.php:670 inc/gateways/sage/wpbc-gw-sage.php:444
|
8578 |
msgid "DEFERRED"
|
8579 |
msgstr ""
|
8580 |
|
8581 |
+
#: core/lib/wpbc_all_translations1.php:671 inc/gateways/sage/wpbc-gw-sage.php:445
|
8582 |
msgid "AUTHENTICATE"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
+
#: core/lib/wpbc_all_translations1.php:672 inc/gateways/sage/wpbc-gw-sage.php:454
|
8586 |
msgid "Yen"
|
8587 |
msgstr ""
|
8588 |
|
8589 |
+
#: core/lib/wpbc_all_translations1.php:673 inc/gateways/sage/wpbc-gw-sage.php:467
|
8590 |
msgid "Israeli Shekel"
|
8591 |
msgstr ""
|
8592 |
|
8593 |
+
#: core/lib/wpbc_all_translations1.php:674 inc/gateways/sage/wpbc-gw-sage.php:782
|
8594 |
msgid "Sage"
|
8595 |
msgstr ""
|
8596 |
|
8597 |
+
#: core/lib/wpbc_all_translations1.php:675 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:676 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:677 core/wpbc-functions.php:3510
|
8608 |
msgid "Payment rejected"
|
8609 |
msgstr ""
|
8610 |
|
8611 |
+
#: core/lib/wpbc_all_translations1.php:678 inc/gateways/ideal/wpbc-gw-ideal.php:388
|
8612 |
msgid "Merchant ID"
|
8613 |
msgstr ""
|
8614 |
|
8615 |
+
#: core/lib/wpbc_all_translations1.php:679 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:680 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:681 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:682 inc/gateways/ideal/wpbc-gw-ideal.php:424
|
8629 |
msgid "Test with Simulator"
|
8630 |
msgstr ""
|
8631 |
|
8632 |
+
#: core/lib/wpbc_all_translations1.php:683 inc/gateways/ideal/wpbc-gw-ideal.php:426
|
8633 |
msgid "My Profile – Connection"
|
8634 |
msgstr ""
|
8635 |
|
8636 |
+
#: core/lib/wpbc_all_translations1.php:684 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:685 inc/gateways/ideal/wpbc-gw-ideal.php:483
|
8645 |
msgid "Always use Description"
|
8646 |
msgstr ""
|
8647 |
|
8648 |
+
#: core/lib/wpbc_all_translations1.php:686 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:687 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:688 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:689 inc/_ps/admin/br-table-export-feeds.php:176
|
8665 |
msgid ".ics Feed URL"
|
8666 |
msgstr ""
|
8667 |
|
8668 |
+
#: core/lib/wpbc_all_translations1.php:690 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:691 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:692
|
8680 |
msgid "Stripe. Ouch, something went wrong!"
|
8681 |
msgstr ""
|
8682 |
|
8683 |
+
#: core/lib/wpbc_all_translations1.php:693
|
8684 |
#, php-format
|
8685 |
msgid "Please pay %s"
|
8686 |
msgstr ""
|
8687 |
|
8688 |
+
#: core/lib/wpbc_all_translations1.php:694 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:695 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:696 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:697 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:698 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:699 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:700 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:701 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:702 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:703 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:704 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:705 core/lib/wpdev-booking-class.php:1024
|
8738 |
msgid "My bookings"
|
8739 |
msgstr ""
|
8740 |
|
8741 |
+
#: core/lib/wpbc_all_translations1.php:706 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:707 inc/_bl/admin/page-search.php:705
|
8749 |
msgid "Inline Search Form Template"
|
8750 |
msgstr ""
|
8751 |
|
8752 |
+
#: core/lib/wpbc_all_translations1.php:708 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:709 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:710 inc/_bm/admin/api-settings-m.php:284
|
8764 |
msgid "Booking details"
|
8765 |
msgstr ""
|
8766 |
|
8767 |
+
#: core/lib/wpbc_all_translations1.php:711 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:712 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:713 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:714 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:715 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:716 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:717 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:718 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:719 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:720 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:721 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:722 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:723 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:724 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:725 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:726 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:727 inc/_ps/admin/api-settings-p.php:279
|
8842 |
msgid "Show / hide notes"
|
8843 |
msgstr ""
|
8844 |
|
8845 |
+
#: core/lib/wpbc_all_translations1.php:728 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:729 inc/_ps/admin/api-settings-p.php:340
|
8850 |
+
#: js/wpbc-gutenberg.js:1244
|
8851 |
msgid "URL of page for customer bookings listing"
|
8852 |
msgstr ""
|
8853 |
|
8854 |
+
#: core/lib/wpbc_all_translations1.php:730 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:731 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:732 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:733 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:734 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:735 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:736 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:737 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:738 inc/gateways/page-gateways.php:163
|
8895 |
msgid "Send email on cost changes"
|
8896 |
msgstr ""
|
8897 |
|
8898 |
+
#: core/lib/wpbc_all_translations1.php:739 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:740 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:741 core/wpbc-js.php:141
|
8910 |
msgid "Times:"
|
8911 |
msgstr ""
|
8912 |
|
8913 |
+
#: core/lib/wpbc_all_translations1.php:742 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:743 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:744 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:745 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:746 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:747 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:748 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:749 inc/_bm/admin/page-cost.php:222
|
8953 |
msgid "Early / Late Booking"
|
8954 |
msgstr ""
|
8955 |
|
8956 |
+
#: core/lib/wpbc_all_translations1.php:750 inc/_bm/admin/page-cost.php:231
|
8957 |
msgid "Set Early / Late Booking Amount"
|
8958 |
msgstr ""
|
8959 |
|
8960 |
+
#: core/lib/wpbc_all_translations1.php:751 inc/_bm/admin/page-cost.php:697
|
8961 |
msgid "Set Early / Late booking discount"
|
8962 |
msgstr ""
|
8963 |
|
8964 |
+
#: core/lib/wpbc_all_translations1.php:752 inc/_bm/admin/page-cost.php:698
|
8965 |
msgid "Early / Late"
|
8966 |
msgstr ""
|
8967 |
|
8968 |
+
#: core/lib/wpbc_all_translations1.php:753 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:754 js/wpbc-gutenberg.js:142
|
8973 |
msgid "Configure Booking Calendar Block"
|
8974 |
msgstr ""
|
8975 |
|
8976 |
+
#: core/lib/wpbc_all_translations1.php:755 js/wpbc-gutenberg.js:297
|
8977 |
msgid "Click to Preview Block"
|
8978 |
msgstr ""
|
8979 |
|
8980 |
+
#: core/lib/wpbc_all_translations1.php:756 js/wpbc-gutenberg.js:603 js/wpbc-gutenberg.js:693
|
8981 |
+
#: js/wpbc-gutenberg.js:886
|
8982 |
msgid "Visible months number"
|
8983 |
msgstr ""
|
8984 |
|
8985 |
+
#: core/lib/wpbc_all_translations1.php:757 js/wpbc-gutenberg.js:606 js/wpbc-gutenberg.js:696
|
8986 |
+
#: js/wpbc-gutenberg.js:889
|
8987 |
msgid "Start month"
|
8988 |
msgstr ""
|
8989 |
|
8990 |
+
#: core/lib/wpbc_all_translations1.php:758 js/wpbc-gutenberg.js:609 js/wpbc-gutenberg.js:963
|
8991 |
msgid "Custom booking form"
|
8992 |
msgstr ""
|
8993 |
|
8994 |
+
#: core/lib/wpbc_all_translations1.php:759 js/wpbc-gutenberg.js:612 js/wpbc-gutenberg.js:699
|
8995 |
+
#: js/wpbc-gutenberg.js:895
|
8996 |
msgid "Unavailable dates from other booking resources"
|
8997 |
msgstr ""
|
8998 |
|
8999 |
+
#: core/lib/wpbc_all_translations1.php:760 js/wpbc-gutenberg.js:648
|
9000 |
msgid "Availability Calendar"
|
9001 |
msgstr ""
|
9002 |
|
9003 |
+
#: core/lib/wpbc_all_translations1.php:761 js/wpbc-gutenberg.js:772 js/wpbc-gutenberg.js:874
|
9004 |
msgid "Booking resource(s)"
|
9005 |
msgstr ""
|
9006 |
|
9007 |
+
#: core/lib/wpbc_all_translations1.php:762 js/wpbc-gutenberg.js:809
|
9008 |
msgid "Show from/to"
|
9009 |
msgstr ""
|
9010 |
|
9011 |
+
#: core/lib/wpbc_all_translations1.php:763 js/wpbc-gutenberg.js:826
|
9012 |
msgid "All booking resources"
|
9013 |
msgstr ""
|
9014 |
|
9015 |
+
#: core/lib/wpbc_all_translations1.php:764 js/wpbc-gutenberg.js:843
|
9016 |
msgid "Selection of Resources"
|
9017 |
msgstr ""
|
9018 |
|
9019 |
+
#: core/lib/wpbc_all_translations1.php:765 js/wpbc-gutenberg.js:880
|
9020 |
msgid "Selected booking resource (by default)"
|
9021 |
msgstr ""
|
9022 |
|
9023 |
+
#: core/lib/wpbc_all_translations1.php:766 js/wpbc-gutenberg.js:883
|
9024 |
msgid "Title of first option in list"
|
9025 |
msgstr ""
|
9026 |
|
9027 |
+
#: core/lib/wpbc_all_translations1.php:767 js/wpbc-gutenberg.js:892
|
9028 |
msgid "Custom booking form for all booking resources"
|
9029 |
msgstr ""
|
9030 |
|
9031 |
+
#: core/lib/wpbc_all_translations1.php:768 js/wpbc-gutenberg.js:927
|
9032 |
msgid "Booking Form (without calendar)"
|
9033 |
msgstr ""
|
9034 |
|
9035 |
+
#: core/lib/wpbc_all_translations1.php:769 js/wpbc-gutenberg.js:960
|
9036 |
msgid "Date for submit booking"
|
9037 |
msgstr ""
|
9038 |
|
9039 |
+
#: core/lib/wpbc_all_translations1.php:770 js/wpbc-gutenberg.js:992
|
9040 |
msgid "Search Availability form"
|
9041 |
msgstr ""
|
9042 |
|
9043 |
+
#: core/lib/wpbc_all_translations1.php:771 js/wpbc-gutenberg.js:1023
|
9044 |
msgid "Show search results on other page"
|
9045 |
msgstr ""
|
9046 |
|
9047 |
+
#: core/lib/wpbc_all_translations1.php:772 js/wpbc-gutenberg.js:1026
|
9048 |
msgid "Search results page must have this shortcode"
|
9049 |
msgstr ""
|
9050 |
|
9051 |
+
#: core/lib/wpbc_all_translations1.php:773 js/wpbc-gutenberg.js:1029
|
9052 |
msgid "Show search results in the same page"
|
9053 |
msgstr ""
|
9054 |
|
9055 |
+
#: core/lib/wpbc_all_translations1.php:774 js/wpbc-gutenberg.js:1032
|
9056 |
msgid "Search Results Title"
|
9057 |
msgstr ""
|
9058 |
|
9059 |
+
#: core/lib/wpbc_all_translations1.php:775 js/wpbc-gutenberg.js:1035
|
9060 |
msgid "Title, if no search results"
|
9061 |
msgstr ""
|
9062 |
|
9063 |
+
#: core/lib/wpbc_all_translations1.php:776 js/wpbc-gutenberg.js:1038
|
9064 |
msgid "Search in booking resources of WP users"
|
9065 |
msgstr ""
|
9066 |
|
9067 |
+
#: core/lib/wpbc_all_translations1.php:777 js/wpbc-gutenberg.js:1092
|
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:778 js/wpbc-gutenberg.js:1116
|
9072 |
msgid "System Block"
|
9073 |
msgstr ""
|
9074 |
|
9075 |
+
#: core/lib/wpbc_all_translations1.php:779 js/wpbc-gutenberg.js:1116
|
9076 |
msgid "Booking Calendar Editing"
|
9077 |
msgstr ""
|
9078 |
|
9079 |
+
#: core/lib/wpbc_all_translations1.php:780 js/wpbc-gutenberg.js:1147
|
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:781 js/wpbc-gutenberg.js:1152 js/wpbc-gutenberg.js:1238
|
9086 |
msgid "Link to this page must be defined"
|
9087 |
msgstr ""
|
9088 |
|
9089 |
+
#: core/lib/wpbc_all_translations1.php:782 js/wpbc-gutenberg.js:1156 js/wpbc-gutenberg.js:1242
|
9090 |
msgid "at this option"
|
9091 |
msgstr ""
|
9092 |
|
9093 |
+
#: core/lib/wpbc_all_translations1.php:783 js/wpbc-gutenberg.js:1166 js/wpbc-gutenberg.js:1252
|
9094 |
msgid "You can not open this page directly. Please, use links in "
|
9095 |
msgstr ""
|
9096 |
|
9097 |
+
#: core/lib/wpbc_all_translations1.php:784 js/wpbc-gutenberg.js:1174 js/wpbc-gutenberg.js:1260
|
9098 |
msgid "If you open this page directly, then you will see this error"
|
9099 |
msgstr ""
|
9100 |
|
9101 |
+
#: core/lib/wpbc_all_translations1.php:785 js/wpbc-gutenberg.js:1202
|
9102 |
msgid "Customer Bookings Listing"
|
9103 |
msgstr ""
|
9104 |
|
9105 |
+
#: core/lib/wpbc_all_translations1.php:786 js/wpbc-gutenberg.js:1233
|
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:787 js/wpbc-gutenberg.js:1293
|
9112 |
msgid "Show Info of Booking Resource"
|
9113 |
msgstr ""
|
9114 |
|
9115 |
+
#: core/lib/wpbc_all_translations1.php:788 js/wpbc-gutenberg.js:1359
|
9116 |
msgid "Click to edit"
|
9117 |
msgstr ""
|
9118 |
|
9119 |
+
#: core/lib/wpbc_all_translations1.php:789 js/wpbc-gutenberg.js:1361
|
9120 |
msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
|
9121 |
msgstr ""
|
9122 |
|
9123 |
+
#: core/lib/wpbc_all_translations1.php:790 inc/_bl/admin/page-search.php:175
|
9124 |
msgid "Sort search results by"
|
9125 |
msgstr ""
|
9126 |
|
9127 |
+
#: core/lib/wpbc_all_translations1.php:791 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:792 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:793 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:794 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:795 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:796 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:797 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:798 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:799 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:800 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:801 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:802 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:803 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:342
|
9186 |
msgid "Signature Key"
|
9187 |
msgstr ""
|
9188 |
|
9189 |
+
#: core/lib/wpbc_all_translations1.php:804 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:805 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:806 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:807 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:808 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:349
|
9209 |
msgid "Answer the secret question."
|
9210 |
msgstr ""
|
9211 |
|
9212 |
+
#: core/lib/wpbc_all_translations1.php:809 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:810 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:351
|
9217 |
msgid "Click Copy to Clipboard."
|
9218 |
msgstr ""
|
9219 |
|
9220 |
+
#: core/lib/wpbc_all_translations1.php:811 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:812 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:813 core/timeline/v2/wpbc-class-timeline_v2.php:2567
|
9233 |
msgid "Loading"
|
9234 |
msgstr ""
|
9235 |
|
9236 |
+
#: core/lib/wpbc_all_translations1.php:814 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:815 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:816 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:817 inc/_bl/admin/page-search.php:695
|
9252 |
msgid "Flex Search Form Template"
|
9253 |
msgstr ""
|
9254 |
|
9255 |
+
#: core/lib/wpbc_all_translations1.php:818 inc/_bl/admin/page-search.php:759
|
9256 |
msgid "Flex"
|
9257 |
msgstr ""
|
9258 |
|
9259 |
+
#: core/lib/wpbc_all_translations1.php:819 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:820 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:821 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:822 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:823 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:824 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:825 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:826 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:827 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:828 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:829 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:830 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/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."
|
9338 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: booking calendar, booking system, availability calendar, events calendar,
|
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 5.3
|
8 |
-
Stable tag: 8.7.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -168,7 +168,7 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
|
|
168 |
= Support Languages =
|
169 |
|
170 |
- English
|
171 |
-
- Dutch [
|
172 |
- German [99% Completed]
|
173 |
- French [99% Completed]
|
174 |
- Swedish [99% Completed]
|
@@ -227,6 +227,15 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
|
|
227 |
13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
|
228 |
|
229 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
= 8.7.3 =
|
231 |
- Changes in **all** versions:
|
232 |
* **Translation** Swedish translation [99% completed] by Rivenfield.
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 5.3
|
8 |
+
Stable tag: 8.7.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
168 |
= Support Languages =
|
169 |
|
170 |
- English
|
171 |
+
- Dutch [99% Completed]
|
172 |
- German [99% Completed]
|
173 |
- French [99% Completed]
|
174 |
- Swedish [99% Completed]
|
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 /home/www/new/dst/wp-content/plugins/booking/core/wpbc-translation.php:304 (8.7.5.1)
|
233 |
+
|
234 |
+
= 8.7.4 =
|
235 |
+
- Changes in **all** versions:
|
236 |
+
* **Translation** Swedish translation [99% completed] by Kenneth Andersson.
|
237 |
+
* **New**. By default using standard PHP date format instead of wp_date format, which can generate issue with daylight saving time. But its possible to activate "Use localized time format" at Booking > Settings General page in Booking admin panel - option useful only, if you have issue with translation of time format. If you activated this option, at some servers possible issue with "Daylight Saving Time" - booked times can be later on 1 hour. (8.7.4.1)
|
238 |
+
|
239 |
= 8.7.3 =
|
240 |
- Changes in **all** versions:
|
241 |
* **Translation** Swedish translation [99% completed] by Rivenfield.
|
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.3
|
|
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.5
|
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.5' ); }
|
33 |
|
34 |
////////////////////////////////////////////////////////////////////////////////
|
35 |
// PRIMARY URL CONSTANTS
|