Version Description
- Changes in all versions:
- New. Showing time slots as dots in calendar day cells. Modern and nice view of time slots inside of calendar days.
- New. Showing exact number of booked time slots in calendar day cells. System show as many dots (time slots) as many time slot was booked for specific day. Your customers can see occupancy by time interval from the beginning of the calendar view.
- New. Timeline. Ability to define how many days to show in Timeline at front-end side, while showing Timeline for one booking resource, and selected "Month view mode" in shortcode (parameter "view_days_num=30" or this parameter skipped). You can define it at the Booking > Settings General page in "Calendar Overview | Timeline" section. (8.9.4.3)
- New. Calendar Overview page. Ability to define how many days to show in Calendar Overview page in admin panel, while showing Calendar Overview page for one booking resource, and selected "Day" view mode. You can define it at the Booking > Settings General page in "Calendar Overview | Timeline" section. (8.9.4.3)
- New. Timeline. Scroll exactly number of days (for one booking resource, and selected "Month view mode" in shortcode), that was defined at option "Days number to show in Month mode in Timeline". (8.9.4.3)
- New. Calendar Overview page. Scroll exactly number of days (for one booking resource, and selected "Day" view mode), that was defined at option "Days number to show in Day view mode in Calendar Overview page". (8.9.4.3)
- New. Separate sections for "Calendar Overview" and "Timeline" options at the Booking > Settings General page. (8.9.4.4)
- New. Ability to define where firstly plugin tries to use translations from "../wp-content/languages/plugins/", or from "../wp-content/plugins/{Booking Calendar Folder}/languages/" folder. You can change this behavior at the Booking > Settings General page.
- New. Force plugin translation update. Download and update plugin translations from WordPress translation repository and from wpbookingcalendar.com You can make update at Booking > Settings General page in Translation section.
- New. Check translation status at WordPress translation repository and local translation from wpbookingcalendar.com to understand, what translation to load. You can check it at Booking > Settings General page in Translation section.
- Improvement. Booking Calendar by default does not contain MO and PO translation files. You can force to download them at Booking > Settings General page in Translation section.
- Improvement. Switching language/locale by using "Globe icon" in the Booking Listing page have higher priority than switching languages by translation plugins (8.9.4.7)
- Improvement. Optimization structure of country list file for future translations (8.9.4.9)
- Improvement. CSS styling in all calendar skins. If you previously was made calendar skin customization, please check changes in new calendar skins marked with this number: 8.9.4.13
- Compatibility. Support WPML 4.5.4
- Compatibility. Support Polylang 3.1.4
- Compatibility. Support qTranslate-X 3.4.6.8 (Currently closed "qTranslate-X", was tested with Booking Calendar in php 5.6)
- Fix. Translation issues. Tested in Polylang and qTranslate-X plugins(8.9.4.5)
- Fix. Fix translation folder '/languages/plugin/' to '/languages/plugins/ (8.9.4.6)
- Fix. Do not showing calendar because of JavaScript errors "Uncaught ReferenceError: jQuery is not defined" at some websites, that use some plugins or themes that add async and defer attribute to all JavaScript files. (8.9.4.1)
- Fix. issue of incorrectly import events that starting or ended with 00:00:00 time, during "Import Google Calendar Events". Previously if you import event from 2022-01-28 23:00 to 00:00 system was marked as unavailable 2022-01-28 23:00 to 2022-01-29 (all day). Currenlty system will import from 2022-01-28 23:00 to 2022-01-28 23:59 (8.9.4.2)
- Fix. Warning: is_dir(): open_basedir restriction in effect. File(/css/skins/) is not within the allowed path(s)... (8.9.4.8)
- Under hood Define wpbc_get_booking_locale() function as Deprecated, instead use: wpbc_get_maybe_reloaded_booking_locale().
- Under hood Relocate country list file from ../{Booking Calendar Folder}/languages/ to ../{Booking Calendar Folder}/core/lang/ folder (8.9.4.12)
- Changes in Personal / Business Small / Business Medium / Business Large / MultiUser versions:
- New. Ability to use change over days only at specific pages. Useful for situation when you need to make bookings with change over days at on specific page(s) ( check in/ou dates with diagonal lines ) and make bookings for specific time slots at other page(s) You can define list of pages where to use this feature at the Booking > Settings General page in "Calendar" section.(8.9.4.10) (Business Small/Medium/Large, MultiUser)
- New. Accurate clear display of the diagonal change over days line. Now it correctly shows the diagonal line for any shape of day cells (square or rectangle). This means that for any calendar size you will see the correct sharp diagonal line.
- New. Show diagonal line in dates, where we have check in/out bookings with the same status (pending or approved). Previously was showed just pending or approved full date without diagonal line. (8.9.4.13.1)
- Fix. Issue at some servers during response from PayPal and showing "Error code: 100000" (8.9.4.14)
- Deprecated. Elements ".check-in-div" and ".check-out-div" are deprecated. Currently it's commented and in future updates such elements will be removed from calendar JS file and from all skins.
Download this release
Release Info
Developer | wpdevelop |
Plugin | Booking Calendar |
Version | 9.0 |
Comparing to | |
See all releases |
Code changes from version 8.9.3 to 9.0
- core/admin/api-settings.php +107 -53
- core/admin/page-form-free.php +1 -1
- core/admin/page-ics-general.php +2 -1
- core/admin/page-settings.php +64 -68
- core/admin/wpbc-class-listing.php +6 -6
- core/admin/wpbc-dashboard.php +5 -5
- core/admin/wpbc-settings-functions.php +472 -0
- core/admin/wpbc-toolbars.php +26 -18
- core/class/wpbc-class-upgrader-translation-skin.php +74 -0
- core/class/wpbc-class-welcome.php +163 -10
- core/lang/index.php +2 -0
- core/{lib → lang}/wpbc_all_translations.php +29 -29
- core/{lib → lang}/wpbc_all_translations1.php +38 -0
- core/lang/wpdev-country-list-de_DE.php +254 -0
- core/lang/wpdev-country-list-it_IT.php +254 -0
- core/lang/wpdev-country-list.php +254 -0
- core/lib/index.php +1 -2
- core/lib/wpbc-ajax.php +2 -3
- core/lib/wpdev-booking-class.php +56 -22
- core/sync/wpbc-gcal-class.php +26 -4
- core/sync/wpbc-gcal.php +4 -3
- core/timeline/v2/wpbc-class-timeline_v2.php +63 -21
- core/wpbc-activation.php +15 -2
- core/wpbc-constants.php +1 -1
- core/wpbc-core.php +1 -3
- core/wpbc-css.php +10 -1
- core/wpbc-functions.php +440 -331
- core/wpbc-include.php +19 -40
- core/wpbc-js.php +71 -5
- core/wpbc-translation.php +1332 -161
- core/wpbc.php +27 -67
- css/admin.css +11 -0
- css/calendar.css +133 -1
- css/skins/black-2.css +47 -9
- css/skins/black.css +43 -4
- css/skins/multidays.css +43 -4
- css/skins/premium-black.css +43 -4
- css/skins/premium-light.css +43 -4
- css/skins/premium-marine.css +43 -4
- css/skins/premium-steel.css +43 -4
- css/skins/standard.css +43 -4
- css/skins/traditional-light.css +43 -4
- css/skins/traditional.css +46 -7
- js/client.js +4 -3
- js/datepick/{jquery.datepick.wpbc.5.6.js → jquery.datepick.wpbc.9.0.js} +33 -12
- js/wpbc_times.js +59 -0
- languages/booking-ar_SA.mo +0 -0
- languages/booking-be_BY.mo +0 -0
- languages/booking-bg_BG.mo +0 -0
- languages/booking-ca.mo +0 -0
- languages/booking-cs_CZ.mo +0 -0
- languages/booking-da_DK.mo +0 -0
- languages/booking-de_DE.mo +0 -0
- languages/booking-el.mo +0 -0
- languages/booking-es_ES.mo +0 -0
- languages/booking-es_MX.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.mo +0 -0
- languages/booking-zh_CN.mo +0 -0
- languages/booking-zh_TW.mo +0 -0
- languages/booking.pot +0 -9517
- languages/index.php +1 -2
- languages/po_translations.txt +0 -4
- languages/readme.txt +23 -0
- languages/wpdev-country-list-de_DE.php +0 -433
- languages/wpdev-country-list-it_IT.php +0 -679
- languages/wpdev-country-list.php +0 -678
- readme.txt +70 -37
- wpdev-booking.php +3 -3
core/admin/api-settings.php
CHANGED
@@ -53,11 +53,13 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
|
|
53 |
$calendar_skins_options = array();
|
54 |
|
55 |
// Skins in the Custom User folder (need to create it manually): http://example.com/wp-content/uploads/wpbc_skins/ ( This folder do not owerwrited during update of plugin )
|
56 |
-
$upload_dir = wp_upload_dir();
|
57 |
-
|
|
|
58 |
|
59 |
-
foreach ( $files_in_folder as $skin_file ) { // Example: $skin_file['/css/skins/standard.css'] => 'Standard';
|
60 |
-
|
|
|
61 |
$calendar_skins_options[ $skin_file[1] ] = $skin_file[2];
|
62 |
}
|
63 |
|
@@ -177,10 +179,12 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
|
|
177 |
|
178 |
// Skins in the Custom User folder (need to create it manually): http://example.com/wp-content/uploads/wpbc_skins/ ( This folder do not owerwrited during update of plugin )
|
179 |
$upload_dir = wp_upload_dir();
|
180 |
-
|
|
|
181 |
|
182 |
foreach ( $files_in_folder as $skin_file ) { // Example: $skin_file['/css/skins/standard.css'] => 'Standard';
|
183 |
-
|
|
|
184 |
$timeslot_picker_skins_options[ $skin_file[1] ] = $skin_file[2];
|
185 |
}
|
186 |
|
@@ -656,7 +660,8 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
|
|
656 |
, 'options' => $field_options
|
657 |
, 'group' => 'booking_listing'
|
658 |
);
|
659 |
-
|
|
|
660 |
//Default booking resources
|
661 |
$this->fields = apply_filters( 'wpbc_settings_booking_listing_br_default_count', $this->fields, $default_options_values );
|
662 |
|
@@ -677,22 +682,47 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
|
|
677 |
);
|
678 |
else
|
679 |
$field_options = array(
|
680 |
-
'30' => __('Month' ,'booking')
|
681 |
-
, '90' => __('3 Months' ,'booking')
|
682 |
-
, '365' => __('Year' ,'booking')
|
683 |
);
|
684 |
$this->fields['booking_view_days_num'] = array(
|
685 |
'type' => 'select'
|
686 |
, 'default' => $default_options_values['booking_view_days_num'] //'30'
|
687 |
-
, 'title' => __('Default
|
688 |
, 'description' => __('Select your default calendar view mode at booking calendar overview page' ,'booking')
|
689 |
, 'options' => $field_options
|
690 |
-
, 'group' => '
|
691 |
);
|
692 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
//Default Titles in Calendar cells
|
694 |
-
$this->fields = apply_filters( 'wpbc_settings_booking_listing_timeline_title_in_day', $this->fields, $default_options_values );
|
695 |
-
|
|
|
696 |
// Default Toolbar
|
697 |
$field_options = array(
|
698 |
'filter' => __('Filter tab' ,'booking')
|
@@ -1145,52 +1175,76 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
|
|
1145 |
);
|
1146 |
|
1147 |
if ( ( ! wpbc_is_this_demo() ) && ( current_user_can( 'activate_plugins' ) ) ) {
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1155 |
|
1156 |
if ( $_SERVER['HTTP_HOST'] === 'beta' ) {
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
. wpbc_get_settings_url()
|
1161 |
-
. '&system_info=show&pot=1#wpbc_general_settings_system_info_metabox">'
|
1162 |
-
. 'Generate POT file'
|
1163 |
-
. '</a></center>';
|
1164 |
// Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&reset=custom_forms#wpbc_general_settings_system_info_metabox
|
1165 |
-
$
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
. '</a></center>';
|
1171 |
}
|
1172 |
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
//. '&wh_booking_datenext=1&wh_booking_dateprior=1&wh_booking_date=3&wh_trash=any&wh_modification_dateprior=1&wh_modification_date=3&wh_pay_status=all&view_mode=vm_listing&wh_booking_type">'
|
1179 |
-
. 'Find Lost Bookings'
|
1180 |
-
. '</a></center>'; //FixIn: 8.5.2.19
|
1181 |
-
}
|
1182 |
-
if ( 0 ) { // ! wpbc_is_this_demo() ) {
|
1183 |
-
|
1184 |
-
$this->fields['help_translation_section_after_legend_items']['value'][] =
|
1185 |
-
'<div class="clear"></div><hr/><center><a class="button button" href="'
|
1186 |
-
. wpbc_get_settings_url()
|
1187 |
-
. '&restore_dismissed=On#wpbc_general_settings_restore_dismissed_metabox">'
|
1188 |
-
. __('Restore all dismissed windows' ,'booking')
|
1189 |
-
. '</a></center>';
|
1190 |
}
|
1191 |
|
1192 |
// </editor-fold>
|
1193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1194 |
//debuge($this->fields);die;
|
1195 |
}
|
1196 |
|
53 |
$calendar_skins_options = array();
|
54 |
|
55 |
// Skins in the Custom User folder (need to create it manually): http://example.com/wp-content/uploads/wpbc_skins/ ( This folder do not owerwrited during update of plugin )
|
56 |
+
$upload_dir = wp_upload_dir();
|
57 |
+
//FixIn: 8.9.4.8
|
58 |
+
$files_in_folder = wpbc_dir_list( array( WPBC_PLUGIN_DIR . '/css/skins/', $upload_dir['basedir'].'/wpbc_skins/' ) ); // Folders where to look about calendar skins
|
59 |
|
60 |
+
foreach ( $files_in_folder as $skin_file ) { // Example: $skin_file['/css/skins/standard.css'] => 'Standard';
|
61 |
+
//FixIn: 8.9.4.8
|
62 |
+
$skin_file[1] = str_replace( array( WPBC_PLUGIN_URL, WPBC_PLUGIN_DIR, $upload_dir['basedir'] ), '', $skin_file[1] ); // Get relative path for calendar skin
|
63 |
$calendar_skins_options[ $skin_file[1] ] = $skin_file[2];
|
64 |
}
|
65 |
|
179 |
|
180 |
// Skins in the Custom User folder (need to create it manually): http://example.com/wp-content/uploads/wpbc_skins/ ( This folder do not owerwrited during update of plugin )
|
181 |
$upload_dir = wp_upload_dir();
|
182 |
+
//FixIn: 8.9.4.8
|
183 |
+
$files_in_folder = wpbc_dir_list( array( WPBC_PLUGIN_DIR . '/css/time_picker_skins/', $upload_dir['basedir'].'/wpbc_time_picker_skins/' ) ); // Folders where to look about Time Picker skins
|
184 |
|
185 |
foreach ( $files_in_folder as $skin_file ) { // Example: $skin_file['/css/skins/standard.css'] => 'Standard';
|
186 |
+
//FixIn: 8.9.4.8
|
187 |
+
$skin_file[1] = str_replace( array( WPBC_PLUGIN_URL, WPBC_PLUGIN_DIR, $upload_dir['basedir'] ), '', $skin_file[1] ); // Get relative path for Time Picker skin
|
188 |
$timeslot_picker_skins_options[ $skin_file[1] ] = $skin_file[2];
|
189 |
}
|
190 |
|
660 |
, 'options' => $field_options
|
661 |
, 'group' => 'booking_listing'
|
662 |
);
|
663 |
+
|
664 |
+
|
665 |
//Default booking resources
|
666 |
$this->fields = apply_filters( 'wpbc_settings_booking_listing_br_default_count', $this->fields, $default_options_values );
|
667 |
|
682 |
);
|
683 |
else
|
684 |
$field_options = array(
|
685 |
+
'30' => __('Month' ,'booking') // Day ?
|
686 |
+
, '90' => __('3 Months' ,'booking') // Week ?
|
687 |
+
, '365' => __('Year' ,'booking') // Month ?
|
688 |
);
|
689 |
$this->fields['booking_view_days_num'] = array(
|
690 |
'type' => 'select'
|
691 |
, 'default' => $default_options_values['booking_view_days_num'] //'30'
|
692 |
+
, 'title' => __('Default view mode', 'booking')
|
693 |
, 'description' => __('Select your default calendar view mode at booking calendar overview page' ,'booking')
|
694 |
, 'options' => $field_options
|
695 |
+
, 'group' => 'booking_calendar_overview' //FixIn: 8.5.2.20 //FixIn: 8.9.4.4
|
696 |
);
|
697 |
+
|
698 |
+
//FixIn: 8.9.4.3
|
699 |
+
$field_options = array();
|
700 |
+
foreach ( range( 1, 31, 1) as $value ) {
|
701 |
+
$field_options[ $value ] = $value;
|
702 |
+
}
|
703 |
+
$this->fields['booking_calendar_overview__day_mode__days_number_show'] = array(
|
704 |
+
'type' => 'select'
|
705 |
+
, 'default' => $default_options_values['booking_calendar_overview__day_mode__days_number_show'] // 31
|
706 |
+
, 'title' => __('Days number to show in day view mode', 'booking')
|
707 |
+
, 'description' => sprintf(__('Select number of days to show in %sDay%s view mode' ,'booking'),'<b>','</b>')
|
708 |
+
. ( ( class_exists( 'wpdev_bk_personal' ) ) ? ' ' . __( 'for one booking resource', 'booking' ) : '' )
|
709 |
+
, 'options' => $field_options
|
710 |
+
, 'group' => 'booking_calendar_overview' //FixIn: 8.9.4.4
|
711 |
+
);
|
712 |
+
$this->fields['booking_timeline__month_mode__days_number_show'] = array(
|
713 |
+
'type' => 'select'
|
714 |
+
, 'default' => $default_options_values['booking_timeline__month_mode__days_number_show'] //31
|
715 |
+
, 'title' => __('Days number to show in month view mode', 'booking')
|
716 |
+
, 'description' => __('Select number of days to show in month view mode for one booking resource.' ,'booking')
|
717 |
+
, 'options' => $field_options
|
718 |
+
, 'group' => 'booking_timeline'
|
719 |
+
);
|
720 |
+
|
721 |
+
|
722 |
//Default Titles in Calendar cells
|
723 |
+
$this->fields = apply_filters( 'wpbc_settings_booking_listing_timeline_title_in_day', $this->fields, $default_options_values );
|
724 |
+
|
725 |
+
|
726 |
// Default Toolbar
|
727 |
$field_options = array(
|
728 |
'filter' => __('Filter tab' ,'booking')
|
1175 |
);
|
1176 |
|
1177 |
if ( ( ! wpbc_is_this_demo() ) && ( current_user_can( 'activate_plugins' ) ) ) {
|
1178 |
+
|
1179 |
+
$my_system_buttons = '';
|
1180 |
+
|
1181 |
+
$my_system_buttons .= '<a class="button button" href="'
|
1182 |
+
. wpbc_get_settings_url()
|
1183 |
+
. '&system_info=show&booking_system_info=show#wpbc_general_settings_system_info_metabox">'
|
1184 |
+
. 'Booking System ' . __('Info' ,'booking')
|
1185 |
+
. '</a>';
|
1186 |
+
//FixIn: 8.4.7.19
|
1187 |
+
$my_system_buttons .= ' <a class="button button" href="'
|
1188 |
+
. wpbc_get_bookings_url()
|
1189 |
+
. '&wh_booking_type=lost">'
|
1190 |
+
. 'Find Lost Bookings'
|
1191 |
+
. '</a>'; //FixIn: 8.5.2.19
|
1192 |
|
1193 |
if ( $_SERVER['HTTP_HOST'] === 'beta' ) {
|
1194 |
+
|
1195 |
+
$my_system_buttons .= '<div style="width:100%;height:2em;border-bottom:1px dashed #777;margin-bottom:1em;"></div>';
|
1196 |
+
|
|
|
|
|
|
|
|
|
1197 |
// Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&reset=custom_forms#wpbc_general_settings_system_info_metabox
|
1198 |
+
$my_system_buttons .= ' <a class="button button-secondary" style="background:#fff9e6;" href="'
|
1199 |
+
. wpbc_get_settings_url()
|
1200 |
+
. '&system_info=show&reset=custom_forms#wpbc_general_settings_system_info_metabox">'
|
1201 |
+
. 'Reset custom forms'
|
1202 |
+
. '</a>';
|
|
|
1203 |
}
|
1204 |
|
1205 |
+
$this->fields['help_translation_section_after_legend_items']['value'][] =
|
1206 |
+
'<div class="clear"></div><hr/>'
|
1207 |
+
. '<div class="wpbc_booking_system_info_buttons_align">'
|
1208 |
+
. $my_system_buttons
|
1209 |
+
. '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1210 |
}
|
1211 |
|
1212 |
// </editor-fold>
|
1213 |
+
|
1214 |
+
|
1215 |
+
// <editor-fold defaultstate="collapsed" desc=" Transaltions " >
|
1216 |
+
|
1217 |
+
$this->fields['booking_translation_load_from'] = array(
|
1218 |
+
'type' => 'select'
|
1219 |
+
, 'default' => 'top'
|
1220 |
+
, 'title' => __('Firstly load translation', 'booking')
|
1221 |
+
, 'options' => array(
|
1222 |
+
'wp.org' => 'WordPress.org '
|
1223 |
+
, 'wpbc' => __( 'Local', 'booking' )
|
1224 |
+
)
|
1225 |
+
, 'group' => 'translations'
|
1226 |
+
, 'is_demo_safe' => wpbc_is_this_demo()
|
1227 |
+
);
|
1228 |
+
|
1229 |
+
$this->fields['help_translation_section_after_translation_load_from'] = array(
|
1230 |
+
'type' => 'help'
|
1231 |
+
, 'value' => array(
|
1232 |
+
sprintf(
|
1233 |
+
__('The plugin tries to use translations from %s, if failed (doesn\'t exist), try using translations from %s folder. You can change this behavior with this option.', 'booking')
|
1234 |
+
, '"<strong>../wp-content/languages/plugins/</strong>"'
|
1235 |
+
, '"<strong>../wp-content/plugins/{Booking Calendar Folder}/languages/</strong>"' )
|
1236 |
+
)
|
1237 |
+
, 'class' => ''
|
1238 |
+
, 'css' => 'margin:0;padding:0;border:0;'
|
1239 |
+
, 'description' => ''
|
1240 |
+
, 'cols' => 2
|
1241 |
+
, 'group' => 'translations'
|
1242 |
+
, 'tr_class' => ''
|
1243 |
+
, 'description_tag' => 'p'
|
1244 |
+
);
|
1245 |
+
// </editor-fold>
|
1246 |
+
|
1247 |
+
|
1248 |
//debuge($this->fields);die;
|
1249 |
}
|
1250 |
|
core/admin/page-form-free.php
CHANGED
@@ -613,7 +613,7 @@ class WPBC_Page_SettingsFormFieldsFree extends WPBC_Page_Structure {
|
|
613 |
$my_form.='<div class="form-group">[captcha]</div>' . "\n";
|
614 |
//FixIn: 8.8.1.14
|
615 |
$submit_button_title = str_replace( '"','', html_entity_decode( esc_js( apply_bk_filter( 'wpdev_check_for_active_language', get_bk_option( 'booking_send_button_title' ) ) ),ENT_QUOTES) );
|
616 |
-
$my_form.='<div class="form-group"><button class="btn btn-default" type="button" onclick="mybooking_submit(this.form,'.$my_boook_type.',\''.
|
617 |
. $submit_button_title
|
618 |
. '</button></div>' . "\n";
|
619 |
|
613 |
$my_form.='<div class="form-group">[captcha]</div>' . "\n";
|
614 |
//FixIn: 8.8.1.14
|
615 |
$submit_button_title = str_replace( '"','', html_entity_decode( esc_js( apply_bk_filter( 'wpdev_check_for_active_language', get_bk_option( 'booking_send_button_title' ) ) ),ENT_QUOTES) );
|
616 |
+
$my_form.='<div class="form-group"><button class="btn btn-default" type="button" onclick="mybooking_submit(this.form,'.$my_boook_type.',\''.wpbc_get_maybe_reloaded_booking_locale().'\');" >'
|
617 |
. $submit_button_title
|
618 |
. '</button></div>' . "\n";
|
619 |
|
core/admin/page-ics-general.php
CHANGED
@@ -131,7 +131,8 @@ class WPBC_API_SettingsGeneralSync extends WPBC_Settings_API {
|
|
131 |
$options = array();
|
132 |
$options[''] = __('Default' ,'booking');
|
133 |
|
134 |
-
|
|
|
135 |
|
136 |
foreach ( $wpbc_booking_region_cities_list as $region => $region_cities) {
|
137 |
|
131 |
$options = array();
|
132 |
$options[''] = __('Default' ,'booking');
|
133 |
|
134 |
+
// structure: $wpbc_booking_region_cities_list["Pacific"]["Fiji"] = "Fiji";
|
135 |
+
$wpbc_booking_region_cities_list = wpbc_get_booking_region_cities_list(); //FixIn: 8.9.4.9
|
136 |
|
137 |
foreach ( $wpbc_booking_region_cities_list as $region => $region_cities) {
|
138 |
|
core/admin/page-settings.php
CHANGED
@@ -204,6 +204,8 @@ class WPBC_Page_SettingsGeneral extends WPBC_Page_Structure {
|
|
204 |
wp_nonce_field( 'wpbc_settings_page_' . $submit_form_name );
|
205 |
?><input type="hidden" name="is_form_sbmitted_<?php echo $submit_form_name; ?>" id="is_form_sbmitted_<?php echo $submit_form_name; ?>" value="1" />
|
206 |
|
|
|
|
|
207 |
<div class="wpbc_settings_row wpbc_settings_row_left" >
|
208 |
|
209 |
<?php wpbc_open_meta_box_section( 'wpbc_general_settings_calendar', __('Calendar', 'booking') ); ?>
|
@@ -239,9 +241,18 @@ class WPBC_Page_SettingsGeneral extends WPBC_Page_Structure {
|
|
239 |
<?php wpbc_close_meta_box_section(); ?>
|
240 |
|
241 |
|
242 |
-
<?php wpbc_open_meta_box_section( '
|
243 |
|
244 |
<?php //FixIn: 8.5.2.20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
$this->settings_api()->show( 'booking_timeline' );
|
246 |
?>
|
247 |
|
@@ -295,105 +306,90 @@ class WPBC_Page_SettingsGeneral extends WPBC_Page_Structure {
|
|
295 |
<?php $this->settings_api()->show( 'help' ); ?>
|
296 |
|
297 |
<?php wpbc_close_meta_box_section(); ?>
|
298 |
-
|
299 |
-
</div>
|
300 |
-
<div class="clear"></div>
|
301 |
-
<input type="submit" value="<?php _e('Save Changes','booking'); ?>" class="button button-primary wpbc_submit_button" />
|
302 |
-
<?php
|
303 |
-
if ( ! wpbc_is_this_demo() ) {
|
304 |
|
305 |
-
echo '<a style="margin:0 2em;" class="button button" href="' . wpbc_get_settings_url()
|
306 |
-
. '&restore_dismissed=On#wpbc_general_settings_restore_dismissed_metabox">'
|
307 |
-
. __('Restore all dismissed windows' ,'booking')
|
308 |
-
. '</a>';
|
309 |
-
}
|
310 |
-
?>
|
311 |
-
</form>
|
312 |
-
<?php if ( ( isset( $_GET['system_info'] ) ) && ( $_GET['system_info'] == 'show' ) ) { ?>
|
313 |
-
|
314 |
-
<div class="clear" style="height:30px;"></div>
|
315 |
-
|
316 |
-
<?php wpbc_open_meta_box_section( 'wpbc_general_settings_system_info', 'System Info' ); ?>
|
317 |
|
318 |
-
|
319 |
|
320 |
-
|
321 |
|
322 |
-
|
323 |
|
324 |
-
|
325 |
|
|
|
|
|
|
|
|
|
|
|
326 |
|
327 |
-
|
328 |
|
329 |
-
|
330 |
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
|
340 |
-
|
341 |
|
342 |
-
|
343 |
-
|
344 |
-
|
|
|
|
|
|
|
345 |
|
346 |
-
|
347 |
-
|
348 |
-
}
|
349 |
-
?>
|
350 |
|
351 |
</span>
|
352 |
-
|
|
|
|
|
353 |
|
354 |
-
|
355 |
-
|
356 |
-
do_action( 'wpbc_hook_settings_page_footer', 'general_settings' );
|
357 |
-
|
358 |
//debuge( 'Content <strong>' . basename(__FILE__ ) . '</strong> <span style="font-size:9px;">' . __FILE__ . '</span>');
|
359 |
}
|
360 |
|
361 |
|
362 |
public function update() {
|
363 |
-
|
364 |
$validated_fields = $this->settings_api()->validate_post(); // Get Validated Settings fields in $_POST request.
|
365 |
|
366 |
$validated_fields = apply_filters( 'wpbc_settings_validate_fields_before_saving', $validated_fields ); //Hook for validated fields.
|
367 |
-
|
368 |
-
// Skip saving specific option, for example in Demo mode.
|
369 |
-
|
370 |
-
//debuge('$_POST',$_POST) ;
|
371 |
-
//debuge('$validated_fields',$validated_fields);
|
372 |
$this->settings_api()->save_to_db( $validated_fields ); // Save fields to DB
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
// O L D W A Y: Saving Fields Data
|
378 |
// update_bk_option( 'booking_is_delete_if_deactive'
|
379 |
// , WPBC_Settings_API::validate_checkbox_post('booking_is_delete_if_deactive') );
|
380 |
// ( (isset( $_POST['booking_is_delete_if_deactive'] ))?'On':'Off') );
|
381 |
-
|
382 |
}
|
383 |
}
|
384 |
|
385 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
|
387 |
-
//if ( ! wpbc_is_mu_user_can_be_here( 'only_super_admin' ) ) { // If this User not "super admin", then do not load this page at all
|
388 |
-
//
|
389 |
-
// if ( ( ! isset( $_GET['tab'] ) ) || ( $_GET['tab'] == 'general' ) ) { // If tab was not selected or selected default, then redirect it to the "form" tab.
|
390 |
-
// $_GET['tab'] = 'form';
|
391 |
-
// }
|
392 |
-
//} else {
|
393 |
-
// add_action('wpbc_menu_created', array( new WPBC_Page_SettingsGeneral() , '__construct') ); // Executed after creation of Menu
|
394 |
-
//}
|
395 |
-
//
|
396 |
-
//
|
397 |
-
//
|
398 |
add_action('wpbc_menu_created', array( new WPBC_Page_SettingsGeneral() , '__construct') ); // Executed after creation of Menu
|
399 |
|
204 |
wp_nonce_field( 'wpbc_settings_page_' . $submit_form_name );
|
205 |
?><input type="hidden" name="is_form_sbmitted_<?php echo $submit_form_name; ?>" id="is_form_sbmitted_<?php echo $submit_form_name; ?>" value="1" />
|
206 |
|
207 |
+
<?php if ( wpbc_is_show_general_setting_options() ) { //FixIn: 8.9.4.11 ?>
|
208 |
+
|
209 |
<div class="wpbc_settings_row wpbc_settings_row_left" >
|
210 |
|
211 |
<?php wpbc_open_meta_box_section( 'wpbc_general_settings_calendar', __('Calendar', 'booking') ); ?>
|
241 |
<?php wpbc_close_meta_box_section(); ?>
|
242 |
|
243 |
|
244 |
+
<?php wpbc_open_meta_box_section( 'wpbc_general_settings_booking_calendar_overview', __('Calendar Overview (admin panel)', 'booking') ); ?>
|
245 |
|
246 |
<?php //FixIn: 8.5.2.20
|
247 |
+
$this->settings_api()->show( 'booking_calendar_overview' );
|
248 |
+
?>
|
249 |
+
|
250 |
+
<?php wpbc_close_meta_box_section(); ?>
|
251 |
+
|
252 |
+
|
253 |
+
<?php wpbc_open_meta_box_section( 'wpbc_general_settings_booking_timeline', __('Timeline (front-end)', 'booking') ); //FixIn: 8.9.4.4 ?>
|
254 |
+
|
255 |
+
<?php
|
256 |
$this->settings_api()->show( 'booking_timeline' );
|
257 |
?>
|
258 |
|
306 |
<?php $this->settings_api()->show( 'help' ); ?>
|
307 |
|
308 |
<?php wpbc_close_meta_box_section(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
|
311 |
+
<?php wpbc_open_meta_box_section( 'wpbc_general_settings_translations', __('Translations', 'booking') ); ?>
|
312 |
|
313 |
+
<?php $this->settings_api()->show( 'translations' ); ?>
|
314 |
|
315 |
+
<?php wpbc_translation_buttons_settings_section(); ?>
|
316 |
|
317 |
+
<?php wpbc_close_meta_box_section(); ?>
|
318 |
|
319 |
+
</div>
|
320 |
+
<div class="clear"></div>
|
321 |
+
<input type="submit" value="<?php _e('Save Changes','booking'); ?>" class="button button-primary wpbc_submit_button" />
|
322 |
+
<?php
|
323 |
+
if ( 'translations_updated_from_wpbc_and_wp' !== get_bk_option( 'booking_translation_update_status' ) ) {
|
324 |
|
325 |
+
$current_locale = wpbc_get_maybe_reloaded_booking_locale();
|
326 |
|
327 |
+
if ( ! in_array( $current_locale, array( 'en_US', 'en_CA', 'en_GB', 'en_AU' ) ) ) {
|
328 |
|
329 |
+
echo
|
330 |
+
'<a class="button button" href="'
|
331 |
+
. wpbc_get_settings_url()
|
332 |
+
. '&system_info=show&update_translations=1#wpbc_general_settings_system_info_metabox">'
|
333 |
+
. __( 'Update Translations' )
|
334 |
+
. '</a>';
|
335 |
+
}
|
336 |
+
}
|
337 |
|
338 |
+
if ( ! wpbc_is_this_demo() ) {
|
339 |
|
340 |
+
echo '<a style="margin:0 2em;" class="button button" href="' . wpbc_get_settings_url()
|
341 |
+
. '&system_info=show&restore_dismissed=On#wpbc_general_settings_restore_dismissed_metabox">'
|
342 |
+
. __('Restore all dismissed windows' ,'booking')
|
343 |
+
. '</a>';
|
344 |
+
}
|
345 |
+
?>
|
346 |
|
347 |
+
<?php } ?>
|
348 |
+
</form>
|
|
|
|
|
349 |
|
350 |
</span>
|
351 |
+
<?php
|
352 |
+
do_action( 'wpbc_hook_settings_page_footer', 'general_settings' );
|
353 |
+
|
354 |
|
|
|
|
|
|
|
|
|
355 |
//debuge( 'Content <strong>' . basename(__FILE__ ) . '</strong> <span style="font-size:9px;">' . __FILE__ . '</span>');
|
356 |
}
|
357 |
|
358 |
|
359 |
public function update() {
|
360 |
+
|
361 |
$validated_fields = $this->settings_api()->validate_post(); // Get Validated Settings fields in $_POST request.
|
362 |
|
363 |
$validated_fields = apply_filters( 'wpbc_settings_validate_fields_before_saving', $validated_fields ); //Hook for validated fields.
|
364 |
+
|
365 |
+
// unset($validated_fields['booking_start_day_weeek']); // Skip saving specific option, for example in Demo mode.
|
366 |
+
|
|
|
|
|
367 |
$this->settings_api()->save_to_db( $validated_fields ); // Save fields to DB
|
368 |
+
|
369 |
+
wpbc_show_changes_saved_message();
|
370 |
+
|
371 |
+
/**
|
372 |
// O L D W A Y: Saving Fields Data
|
373 |
// update_bk_option( 'booking_is_delete_if_deactive'
|
374 |
// , WPBC_Settings_API::validate_checkbox_post('booking_is_delete_if_deactive') );
|
375 |
// ( (isset( $_POST['booking_is_delete_if_deactive'] ))?'On':'Off') );
|
376 |
+
*/
|
377 |
}
|
378 |
}
|
379 |
|
380 |
|
381 |
+
/**
|
382 |
+
*
|
383 |
+
|
384 |
+
if ( ! wpbc_is_mu_user_can_be_here( 'only_super_admin' ) ) { // If this User not "super admin", then do not load this page at all
|
385 |
+
|
386 |
+
if ( ( ! isset( $_GET['tab'] ) ) || ( $_GET['tab'] == 'general' ) ) { // If tab was not selected or selected default, then redirect it to the "form" tab.
|
387 |
+
$_GET['tab'] = 'form';
|
388 |
+
}
|
389 |
+
} else {
|
390 |
+
add_action('wpbc_menu_created', array( new WPBC_Page_SettingsGeneral() , '__construct') ); // Executed after creation of Menu
|
391 |
+
}
|
392 |
+
*/
|
393 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
add_action('wpbc_menu_created', array( new WPBC_Page_SettingsGeneral() , '__construct') ); // Executed after creation of Menu
|
395 |
|
core/admin/wpbc-class-listing.php
CHANGED
@@ -297,7 +297,7 @@ class WPBC_Booking_Listing_Table {
|
|
297 |
?><div id="booking_mark_<?php echo $row_data[ 'id' ]; ?>"
|
298 |
class="<?php if ( $row_data[ 'is_new'] != '1') echo ' hidden_items '; ?> wpbc-listing-collumn new-label clearfix-height">
|
299 |
<a href="javascript:void(0)"
|
300 |
-
onclick="javascript:mark_read_booking( '<?php echo $row_data[ 'id' ]; ?>', 0, <?php echo $this->user_id; ?>, '<?php echo
|
301 |
class="tooltip_right approve_bk_link"
|
302 |
title="<?php _e('New booking' ,'booking'); ?>"
|
303 |
><i class="glyphicon glyphicon-flash"></i></a>
|
@@ -393,19 +393,19 @@ class WPBC_Booking_Listing_Table {
|
|
393 |
//FixIn: 6.1.1.10
|
394 |
// Trash
|
395 |
?><a href="javascript:void(0)"
|
396 |
-
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to do this ?' ,'booking')); ?>') ) trash__restore_booking( 1, <?php echo $row_data[ 'id' ]; ?>, <?php echo $this->user_id; ?>, '<?php echo
|
397 |
class="tooltip_top button-secondary button trash_bk_link <?php if ( $row_data['is_trash'] ) echo ' hidden_items '; ?>"
|
398 |
title="<?php _e('Reject - move to trash' ,'booking'); ?>"
|
399 |
><i class="glyphicon glyphicon-trash"></i></a><?php
|
400 |
// Restore
|
401 |
?><a href="javascript:void(0)"
|
402 |
-
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to do this ?' ,'booking')); ?>') ) trash__restore_booking( 0, <?php echo $row_data[ 'id' ]; ?>, <?php echo $this->user_id; ?>, '<?php echo
|
403 |
class="tooltip_top button-secondary button restore_bk_link <?php if ( ! $row_data['is_trash'] ) echo ' hidden_items '; ?>"
|
404 |
title="<?php _e('Restore' ,'booking'); ?>"
|
405 |
><i class="glyphicon glyphicon-repeat"></i></a><?php
|
406 |
// Delete
|
407 |
?><a href="javascript:void(0)"
|
408 |
-
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to delete this booking ?' ,'booking')); ?>') ) delete_booking(<?php echo $row_data[ 'id' ]; ?>, <?php echo $this->user_id; ?>, '<?php echo
|
409 |
class="tooltip_top button-secondary button delete_bk_link <?php if ( ! $row_data['is_trash'] ) echo ' hidden_items '; ?>"
|
410 |
title="<?php _e('Completely Delete' ,'booking'); ?>"
|
411 |
><i class="glyphicon glyphicon-remove"></i></a><?php
|
@@ -414,14 +414,14 @@ class WPBC_Booking_Listing_Table {
|
|
414 |
|
415 |
// Approve
|
416 |
?><a href="javascript:void(0)"
|
417 |
-
onclick="javascript:approve_unapprove_booking(<?php echo $row_data[ 'id' ]; ?>,1,<?php echo $this->user_id; ?>,'<?php echo
|
418 |
class="tooltip_top approve_bk_link button-secondary button <?php if ($row_data['is_approved']) echo ' hidden_items '; ?> "
|
419 |
title="<?php _e('Approve' ,'booking'); ?>"
|
420 |
><i class="glyphicon glyphicon-ok-circle"></i></a><?php
|
421 |
|
422 |
// Reject
|
423 |
?><a href="javascript:void(0)"
|
424 |
-
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to set booking as pending ?' ,'booking')); ?>') ) approve_unapprove_booking(<?php echo $row_data[ 'id' ]; ?>,0, <?php echo $this->user_id; ?>, '<?php echo
|
425 |
class="tooltip_top pending_bk_link button-secondary button <?php if (! $row_data['is_approved']) echo ' hidden_items '; ?> "
|
426 |
title="<?php _e('Pending' ,'booking'); ?>"
|
427 |
><i class="glyphicon glyphicon-ban-circle"></i></a><?php
|
297 |
?><div id="booking_mark_<?php echo $row_data[ 'id' ]; ?>"
|
298 |
class="<?php if ( $row_data[ 'is_new'] != '1') echo ' hidden_items '; ?> wpbc-listing-collumn new-label clearfix-height">
|
299 |
<a href="javascript:void(0)"
|
300 |
+
onclick="javascript:mark_read_booking( '<?php echo $row_data[ 'id' ]; ?>', 0, <?php echo $this->user_id; ?>, '<?php echo wpbc_get_maybe_reloaded_booking_locale(); ?>' );"
|
301 |
class="tooltip_right approve_bk_link"
|
302 |
title="<?php _e('New booking' ,'booking'); ?>"
|
303 |
><i class="glyphicon glyphicon-flash"></i></a>
|
393 |
//FixIn: 6.1.1.10
|
394 |
// Trash
|
395 |
?><a href="javascript:void(0)"
|
396 |
+
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to do this ?' ,'booking')); ?>') ) trash__restore_booking( 1, <?php echo $row_data[ 'id' ]; ?>, <?php echo $this->user_id; ?>, '<?php echo wpbc_get_maybe_reloaded_booking_locale(); ?>' , 1 );"
|
397 |
class="tooltip_top button-secondary button trash_bk_link <?php if ( $row_data['is_trash'] ) echo ' hidden_items '; ?>"
|
398 |
title="<?php _e('Reject - move to trash' ,'booking'); ?>"
|
399 |
><i class="glyphicon glyphicon-trash"></i></a><?php
|
400 |
// Restore
|
401 |
?><a href="javascript:void(0)"
|
402 |
+
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to do this ?' ,'booking')); ?>') ) trash__restore_booking( 0, <?php echo $row_data[ 'id' ]; ?>, <?php echo $this->user_id; ?>, '<?php echo wpbc_get_maybe_reloaded_booking_locale(); ?>' , 1 );"
|
403 |
class="tooltip_top button-secondary button restore_bk_link <?php if ( ! $row_data['is_trash'] ) echo ' hidden_items '; ?>"
|
404 |
title="<?php _e('Restore' ,'booking'); ?>"
|
405 |
><i class="glyphicon glyphicon-repeat"></i></a><?php
|
406 |
// Delete
|
407 |
?><a href="javascript:void(0)"
|
408 |
+
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to delete this booking ?' ,'booking')); ?>') ) delete_booking(<?php echo $row_data[ 'id' ]; ?>, <?php echo $this->user_id; ?>, '<?php echo wpbc_get_maybe_reloaded_booking_locale(); ?>' , 1 );"
|
409 |
class="tooltip_top button-secondary button delete_bk_link <?php if ( ! $row_data['is_trash'] ) echo ' hidden_items '; ?>"
|
410 |
title="<?php _e('Completely Delete' ,'booking'); ?>"
|
411 |
><i class="glyphicon glyphicon-remove"></i></a><?php
|
414 |
|
415 |
// Approve
|
416 |
?><a href="javascript:void(0)"
|
417 |
+
onclick="javascript:approve_unapprove_booking(<?php echo $row_data[ 'id' ]; ?>,1,<?php echo $this->user_id; ?>,'<?php echo wpbc_get_maybe_reloaded_booking_locale(); ?>',1);"
|
418 |
class="tooltip_top approve_bk_link button-secondary button <?php if ($row_data['is_approved']) echo ' hidden_items '; ?> "
|
419 |
title="<?php _e('Approve' ,'booking'); ?>"
|
420 |
><i class="glyphicon glyphicon-ok-circle"></i></a><?php
|
421 |
|
422 |
// Reject
|
423 |
?><a href="javascript:void(0)"
|
424 |
+
onclick="javascript:if ( wpbc_are_you_sure('<?php echo esc_js(__('Do you really want to set booking as pending ?' ,'booking')); ?>') ) approve_unapprove_booking(<?php echo $row_data[ 'id' ]; ?>,0, <?php echo $this->user_id; ?>, '<?php echo wpbc_get_maybe_reloaded_booking_locale(); ?>' , 1 );"
|
425 |
class="tooltip_top pending_bk_link button-secondary button <?php if (! $row_data['is_approved']) echo ' hidden_items '; ?> "
|
426 |
title="<?php _e('Pending' ,'booking'); ?>"
|
427 |
><i class="glyphicon glyphicon-ban-circle"></i></a><?php
|
core/admin/wpbc-dashboard.php
CHANGED
@@ -455,14 +455,14 @@ function wpbc_dashboard_section_version() {
|
|
455 |
<td style="width:35%;text-align: right;;" class=""><?php _e('Version' ,'booking');?>:</td>
|
456 |
<td style="color: #e50;font-size: 13px;font-weight: 600;text-align: left;text-shadow: 0 -1px 0 #eee;;"
|
457 |
class="bk_spec_font"><?php
|
458 |
-
if ( substr( WPDEV_BK_VERSION, 0,
|
459 |
-
$show_version = substr( WPDEV_BK_VERSION ,
|
460 |
if ( substr($show_version, ( -1 * ( strlen( WP_BK_VERSION_NUM ) ) ) ) === WP_BK_VERSION_NUM ) {
|
461 |
$show_version = substr($show_version, 0, ( -1 * ( strlen( WP_BK_VERSION_NUM ) ) - 1 ) );
|
462 |
$show_version = str_replace('.', ' ', $show_version) . " <sup><strong style='font-size:12px;'>" . WP_BK_VERSION_NUM . "</strong></sup>" ;
|
463 |
-
}
|
464 |
-
echo $show_version ;
|
465 |
-
} else
|
466 |
echo WPDEV_BK_VERSION;
|
467 |
?></td>
|
468 |
</tr>
|
455 |
<td style="width:35%;text-align: right;;" class=""><?php _e('Version' ,'booking');?>:</td>
|
456 |
<td style="color: #e50;font-size: 13px;font-weight: 600;text-align: left;text-shadow: 0 -1px 0 #eee;;"
|
457 |
class="bk_spec_font"><?php
|
458 |
+
if ( substr( WPDEV_BK_VERSION, 0, 3 ) == '10.' ) {
|
459 |
+
$show_version = substr( WPDEV_BK_VERSION , 3 ) ;
|
460 |
if ( substr($show_version, ( -1 * ( strlen( WP_BK_VERSION_NUM ) ) ) ) === WP_BK_VERSION_NUM ) {
|
461 |
$show_version = substr($show_version, 0, ( -1 * ( strlen( WP_BK_VERSION_NUM ) ) - 1 ) );
|
462 |
$show_version = str_replace('.', ' ', $show_version) . " <sup><strong style='font-size:12px;'>" . WP_BK_VERSION_NUM . "</strong></sup>" ;
|
463 |
+
}
|
464 |
+
echo $show_version ;
|
465 |
+
} else
|
466 |
echo WPDEV_BK_VERSION;
|
467 |
?></td>
|
468 |
</tr>
|
core/admin/wpbc-settings-functions.php
ADDED
@@ -0,0 +1,472 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php /**
|
2 |
+
* @version 1.0
|
3 |
+
* @package Booking Calendar
|
4 |
+
* @category Support functions for Settings page
|
5 |
+
* @author wpdevelop
|
6 |
+
*
|
7 |
+
* @web-site https://wpbookingcalendar.com/
|
8 |
+
* @email info@wpbookingcalendar.com
|
9 |
+
*
|
10 |
+
* @modified 2022-02-08
|
11 |
+
*/
|
12 |
+
|
13 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
14 |
+
|
15 |
+
|
16 |
+
/**
|
17 |
+
* Check if show "Settings General" page OR "System Info"
|
18 |
+
*
|
19 |
+
* @return bool
|
20 |
+
*/
|
21 |
+
function wpbc_is_show_general_setting_options(){ //FixIn: 8.9.4.11
|
22 |
+
|
23 |
+
if ( ( isset( $_GET['system_info'] ) ) && ( $_GET['system_info'] == 'show' ) ) {
|
24 |
+
return false;
|
25 |
+
}
|
26 |
+
return true;
|
27 |
+
}
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Show system info at Booking > Settings General page
|
33 |
+
*/
|
34 |
+
function wpbc_settings__system_info( $page_name ){
|
35 |
+
|
36 |
+
if ( 'general_settings' != $page_name ) { return false; }
|
37 |
+
|
38 |
+
if ( wpbc_is_this_demo() ) { return false; }
|
39 |
+
|
40 |
+
if ( wpbc_is_show_general_setting_options() ) { return false; }
|
41 |
+
|
42 |
+
//////////////////////////////////////////////////////////////////////////////
|
43 |
+
|
44 |
+
echo '<div class="clear" style="height:30px;"></div>';
|
45 |
+
|
46 |
+
echo '<span class="metabox-holder">';
|
47 |
+
|
48 |
+
wpbc_settings__system_info__reset_booking_forms();
|
49 |
+
|
50 |
+
wpbc_settings__system_info__generate_php_from_pot();
|
51 |
+
|
52 |
+
wpbc_settings__system_info__show_system_info();
|
53 |
+
|
54 |
+
wpbc_settings__system_info__restore_dismissed_windows();
|
55 |
+
|
56 |
+
wpbc_settings__system_info__show_translation_status();
|
57 |
+
|
58 |
+
wpbc_settings__system_info__update_translations();
|
59 |
+
|
60 |
+
wpbc_settings__system_info__debug_and_tests();
|
61 |
+
|
62 |
+
echo '</span>';
|
63 |
+
}
|
64 |
+
add_action( 'wpbc_hook_settings_page_footer', 'wpbc_settings__system_info' ,10, 1);
|
65 |
+
|
66 |
+
|
67 |
+
/**
|
68 |
+
* System info section - Reset Custom Booking forms
|
69 |
+
*
|
70 |
+
* Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&reset=custom_forms#wpbc_general_settings_system_info_metabox
|
71 |
+
*
|
72 |
+
*/
|
73 |
+
function wpbc_settings__system_info__reset_booking_forms() {
|
74 |
+
|
75 |
+
if ( ! current_user_can( 'activate_plugins' ) ) {
|
76 |
+
return;
|
77 |
+
}
|
78 |
+
|
79 |
+
if ( ( isset( $_GET['reset'] ) ) && ( 'custom_forms' == $_GET['reset'] ) ) { //FixIn: 8.1.3.21
|
80 |
+
|
81 |
+
wpbc_open_meta_box_section( 'wpbc_general_settings_system_info', 'System Info' );
|
82 |
+
|
83 |
+
// Reset Custom Booking Forms to NONE
|
84 |
+
update_bk_option( 'booking_forms_extended', serialize( array() ) );
|
85 |
+
|
86 |
+
wpbc_show_message_in_settings( '<strong>Custom forms</strong> has been reseted!', 'info' );
|
87 |
+
|
88 |
+
wpbc_close_meta_box_section();
|
89 |
+
}
|
90 |
+
}
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
/**
|
95 |
+
* System info section - Generate new translation PHP files from POT file
|
96 |
+
*
|
97 |
+
* // Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&pot=1#wpbc_general_settings_system_info_metabox
|
98 |
+
*
|
99 |
+
*/
|
100 |
+
function wpbc_settings__system_info__generate_php_from_pot() {
|
101 |
+
|
102 |
+
if ( ! current_user_can( 'activate_plugins' ) ) {
|
103 |
+
return;
|
104 |
+
}
|
105 |
+
|
106 |
+
if ( ( isset( $_GET['pot'] ) ) && ( '1' == $_GET['pot'] ) ) { //FixIn: 8.1.3.21
|
107 |
+
|
108 |
+
wpbc_open_meta_box_section( 'wpbc_general_settings_system_info', 'System Info' );
|
109 |
+
|
110 |
+
wpbc_pot_to_php();
|
111 |
+
|
112 |
+
wpbc_close_meta_box_section();
|
113 |
+
}
|
114 |
+
}
|
115 |
+
|
116 |
+
|
117 |
+
/**
|
118 |
+
* System info section - Update translations
|
119 |
+
*
|
120 |
+
* // Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&update_translations=1#wpbc_general_settings_system_info_metabox
|
121 |
+
*
|
122 |
+
*/
|
123 |
+
function wpbc_settings__system_info__update_translations() {
|
124 |
+
|
125 |
+
if ( ! current_user_can( 'activate_plugins' ) ) {
|
126 |
+
return;
|
127 |
+
}
|
128 |
+
|
129 |
+
if ( ( isset( $_GET['update_translations'] ) ) && ( '1' == $_GET['update_translations'] ) ) { //FixIn: 8.1.3.21
|
130 |
+
|
131 |
+
wpbc_open_meta_box_section( 'wpbc_general_settings_system_info', 'System Info' );
|
132 |
+
|
133 |
+
wpbc_update_translations__from_wp();
|
134 |
+
|
135 |
+
wpbc_close_meta_box_section();
|
136 |
+
}
|
137 |
+
}
|
138 |
+
|
139 |
+
|
140 |
+
/**
|
141 |
+
* System info section - Show translation status
|
142 |
+
*
|
143 |
+
* // Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&show_translation_status=1#wpbc_general_settings_system_info_metabox
|
144 |
+
*
|
145 |
+
*/
|
146 |
+
function wpbc_settings__system_info__show_translation_status() {
|
147 |
+
|
148 |
+
if ( ! current_user_can( 'activate_plugins' ) ) {
|
149 |
+
return;
|
150 |
+
}
|
151 |
+
|
152 |
+
if ( isset( $_GET['show_translation_status'] ) ) { //FixIn: 8.1.3.21
|
153 |
+
|
154 |
+
wpbc_open_meta_box_section( 'wpbc_general_settings_system_info', 'System Info' );
|
155 |
+
|
156 |
+
if ( '1' == $_GET['show_translation_status'] ){
|
157 |
+
wpbc_show_translation_status_compare_wpbc_wp();
|
158 |
+
}
|
159 |
+
if ( '2' == $_GET['show_translation_status'] ){
|
160 |
+
wpbc_show_translation_status_from_wp();
|
161 |
+
}
|
162 |
+
if ( '3' == $_GET['show_translation_status'] ){
|
163 |
+
wpbc_show_translation_status_from_wpbc();
|
164 |
+
}
|
165 |
+
|
166 |
+
wpbc_close_meta_box_section();
|
167 |
+
}
|
168 |
+
}
|
169 |
+
|
170 |
+
|
171 |
+
/**
|
172 |
+
* System info section - Showing information about system - php, server, active plugins, etc...
|
173 |
+
*
|
174 |
+
* Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show#wpbc_general_settings_system_info_metabox
|
175 |
+
*/
|
176 |
+
function wpbc_settings__system_info__show_system_info(){
|
177 |
+
|
178 |
+
if ( ( isset( $_GET['booking_system_info'] ) ) && ( $_GET['booking_system_info'] == 'show' ) ) { ?>
|
179 |
+
|
180 |
+
<?php wpbc_open_meta_box_section( 'wpbc_general_settings_system_info', 'System Info' ); ?>
|
181 |
+
|
182 |
+
<?php wpbc_system_info(); ?>
|
183 |
+
|
184 |
+
<?php wpbc_close_meta_box_section();
|
185 |
+
}
|
186 |
+
}
|
187 |
+
|
188 |
+
|
189 |
+
/**
|
190 |
+
* System info section - Restore Dismissed Windows
|
191 |
+
*
|
192 |
+
* // Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&restore_dismissed=On#wpbc_general_settings_restore_dismissed_metabox
|
193 |
+
*
|
194 |
+
*/
|
195 |
+
function wpbc_settings__system_info__restore_dismissed_windows(){
|
196 |
+
|
197 |
+
if ( ( isset( $_GET['restore_dismissed'] ) ) && ( $_GET['restore_dismissed'] == 'On' ) ) { //FixIn: 8.1.3.10
|
198 |
+
|
199 |
+
update_bk_option( 'booking_is_show_powered_by_notice', 'On' );
|
200 |
+
|
201 |
+
update_bk_option( 'booking_wpdev_copyright_adminpanel', 'On' );
|
202 |
+
|
203 |
+
global $wpdb;
|
204 |
+
// Delete all users booking windows states
|
205 |
+
if ( false === $wpdb->query( "DELETE FROM {$wpdb->usermeta} WHERE meta_key LIKE '%booking_win_%'" ) ) { // All users data
|
206 |
+
debuge_error( 'Error during deleting user meta at DB', __FILE__, __LINE__ );
|
207 |
+
die();
|
208 |
+
} else {
|
209 |
+
|
210 |
+
wpbc_open_meta_box_section( 'wpbc_general_settings_restore_dismissed', 'Info' );
|
211 |
+
|
212 |
+
?><h2>All dismissed windows has been restored.</h2><?php
|
213 |
+
|
214 |
+
echo '<div class="clear"></div><hr/><center><a class="button button" href="' . wpbc_get_settings_url() . '">'
|
215 |
+
. 'Reload Page'
|
216 |
+
. '</a></center>';
|
217 |
+
|
218 |
+
wpbc_close_meta_box_section();
|
219 |
+
}
|
220 |
+
}
|
221 |
+
}
|
222 |
+
|
223 |
+
|
224 |
+
|
225 |
+
/**
|
226 |
+
* Show System Info (status) at Booking > Settings General page
|
227 |
+
*
|
228 |
+
*/
|
229 |
+
function wpbc_system_info() {
|
230 |
+
|
231 |
+
|
232 |
+
|
233 |
+
if ( current_user_can( 'activate_plugins' ) ) { // Only for Administrator or Super admin. More here: https://codex.wordpress.org/Roles_and_Capabilities
|
234 |
+
|
235 |
+
|
236 |
+
global $wpdb, $wp_version;
|
237 |
+
|
238 |
+
$all_plugins = get_plugins();
|
239 |
+
$active_plugins = get_option( 'active_plugins' );
|
240 |
+
|
241 |
+
$mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
|
242 |
+
if ( is_array( $mysql_info ) ) $sql_mode = $mysql_info[0]->Value;
|
243 |
+
if ( empty( $sql_mode ) ) $sql_mode = 'Not set';
|
244 |
+
|
245 |
+
//FixIn: 8.4.7.24
|
246 |
+
$allow_url_fopen = ( ini_get( 'allow_url_fopen' ) ) ? 'On' : 'Off';
|
247 |
+
$upload_max_filesize = ( ini_get( 'upload_max_filesize' ) ) ? ini_get( 'upload_max_filesize' ) : 'N/A';
|
248 |
+
$post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : 'N/A';
|
249 |
+
$max_execution_time = ( ini_get( 'max_execution_time' ) ) ? ini_get( 'max_execution_time' ) : 'N/A';
|
250 |
+
$memory_limit = ( ini_get( 'memory_limit' ) ) ? ini_get( 'memory_limit' ) : 'N/A';
|
251 |
+
$memory_usage = ( function_exists( 'memory_get_usage' ) ) ? round( memory_get_usage() / 1024 / 1024, 2 ) . ' Mb' : 'N/A';
|
252 |
+
$exif_read_data = ( is_callable( 'exif_read_data' ) ) ? 'Yes' . " ( V" . substr( phpversion( 'exif' ), 0, 4 ) . ")" : 'No';
|
253 |
+
$iptcparse = ( is_callable( 'iptcparse' ) ) ? 'Yes' : 'No';
|
254 |
+
$xml_parser_create = ( is_callable( 'xml_parser_create' ) ) ? 'Yes' : 'No';
|
255 |
+
$theme = ( function_exists( 'wp_get_theme' ) ) ? wp_get_theme() : get_theme( get_current_theme() );
|
256 |
+
|
257 |
+
if ( function_exists( 'is_multisite' ) ) {
|
258 |
+
if ( is_multisite() ) $multisite = 'Yes';
|
259 |
+
else $multisite = 'No';
|
260 |
+
} else { $multisite = 'N/A';
|
261 |
+
}
|
262 |
+
|
263 |
+
$system_info = array(
|
264 |
+
'system_info' => '',
|
265 |
+
'php_info' => '',
|
266 |
+
'active_plugins' => array(), //FixIn: 8.4.4.1
|
267 |
+
'inactive_plugins' => array() //FixIn: 8.4.4.1
|
268 |
+
);
|
269 |
+
|
270 |
+
$ver_small_name = get_bk_version();
|
271 |
+
if ( class_exists( 'wpdev_bk_multiuser' ) ) $ver_small_name = 'multiuser';
|
272 |
+
|
273 |
+
$system_info['system_info'] = array(
|
274 |
+
'Plugin Update' => ( defined( 'WPDEV_BK_VERSION' ) ) ? WPDEV_BK_VERSION : 'N/A',
|
275 |
+
'Plugin Version' => ucwords( $ver_small_name ),
|
276 |
+
'Plugin Update Date' => date( "Y-m-d", filemtime( WPBC_FILE ) ),
|
277 |
+
|
278 |
+
'WP Version' => $wp_version,
|
279 |
+
'WP DEBUG' => ( ( defined('WP_DEBUG') ) && ( WP_DEBUG ) ) ? 'On' : 'Off',
|
280 |
+
'WP DB Version' => get_option( 'db_version' ),
|
281 |
+
'Operating System' => PHP_OS,
|
282 |
+
'Server' => $_SERVER["SERVER_SOFTWARE"],
|
283 |
+
'PHP Version' => PHP_VERSION,
|
284 |
+
'MYSQL Version' => $wpdb->get_var( "SELECT VERSION() AS version" ),
|
285 |
+
'SQL Mode' => $sql_mode,
|
286 |
+
'Memory usage' => $memory_usage,
|
287 |
+
'Site URL' => get_option( 'siteurl' ),
|
288 |
+
'Home URL' => home_url(),
|
289 |
+
'SERVER[HTTP_HOST]' => $_SERVER['HTTP_HOST'],
|
290 |
+
'SERVER[SERVER_NAME]' => $_SERVER['SERVER_NAME'],
|
291 |
+
'Multisite' => $multisite,
|
292 |
+
'Active Theme' => $theme['Name'] . ' ' . $theme['Version']
|
293 |
+
);
|
294 |
+
|
295 |
+
$system_info['php_info'] = array(
|
296 |
+
'PHP Version' => PHP_VERSION,
|
297 |
+
'PHP Memory Limit' => '<strong>' . $memory_limit . '</strong>',
|
298 |
+
'PHP Max Script Execute Time' => '<strong>' . $max_execution_time . '</strong>',
|
299 |
+
|
300 |
+
'PHP Max Post Size' => '<strong>' . $post_max_size . '</strong>',
|
301 |
+
'PHP MAX Input Vars' => '<strong>' . ( ( ini_get( 'max_input_vars' ) ) ? ini_get( 'max_input_vars' ) : 'N/A' ) . '</strong>', //How many input variables may be accepted (limit is applied to $_GET, $_POST and $_COOKIE superglobal separately).
|
302 |
+
|
303 |
+
'PHP Max Upload Size' => $upload_max_filesize,
|
304 |
+
'PHP Allow URL fopen' => $allow_url_fopen,
|
305 |
+
'PHP Exif support' => $exif_read_data,
|
306 |
+
'PHP IPTC support' => $iptcparse,
|
307 |
+
'PHP XML support' => $xml_parser_create
|
308 |
+
);
|
309 |
+
|
310 |
+
$system_info['php_info']['PHP cURL'] = ( function_exists('curl_init') ) ? 'On' : 'Off';
|
311 |
+
$system_info['php_info']['Max Nesting Level'] = ( ( ini_get( 'max_input_nesting_level' ) ) ? ini_get( 'max_input_nesting_level' ) : 'N/A' );
|
312 |
+
$system_info['php_info']['Max Time 4 script'] = ( ( ini_get( 'max_input_time' ) ) ? ini_get( 'max_input_time' ) : 'N/A' ); //Maximum amount of time each script may spend parsing request data
|
313 |
+
$system_info['php_info']['Log'] = ( ( ini_get( 'error_log' ) ) ? ini_get( 'error_log' ) : 'N/A' );
|
314 |
+
|
315 |
+
if ( ini_get( "suhosin.get.max_value_length" ) ) {
|
316 |
+
|
317 |
+
$system_info['suhosin_info'] = array();
|
318 |
+
$system_info['suhosin_info']['POST max_array_index_length'] = ( ( ini_get( 'suhosin.post.max_array_index_length' ) ) ? ini_get( 'suhosin.post.max_array_index_length' ) : 'N/A' );
|
319 |
+
$system_info['suhosin_info']['REQUEST max_array_index_length'] = ( ( ini_get( 'suhosin.request.max_array_index_length' ) ) ? ini_get( 'suhosin.request.max_array_index_length' ) : 'N/A' );
|
320 |
+
|
321 |
+
$system_info['suhosin_info']['POST max_totalname_length'] = ( ( ini_get( 'suhosin.post.max_totalname_length' ) ) ? ini_get( 'suhosin.post.max_totalname_length' ) : 'N/A' );
|
322 |
+
$system_info['suhosin_info']['REQUEST max_totalname_length'] = ( ( ini_get( 'suhosin.request.max_totalname_length' ) ) ? ini_get( 'suhosin.request.max_totalname_length' ) : 'N/A' );
|
323 |
+
|
324 |
+
$system_info['suhosin_info']['POST max_vars'] = ( ( ini_get( 'suhosin.post.max_vars' ) ) ? ini_get( 'suhosin.post.max_vars' ) : 'N/A' );
|
325 |
+
$system_info['suhosin_info']['REQUEST max_vars'] = ( ( ini_get( 'suhosin.request.max_vars' ) ) ? ini_get( 'suhosin.request.max_vars' ) : 'N/A' );
|
326 |
+
|
327 |
+
$system_info['suhosin_info']['POST max_value_length'] = ( ( ini_get( 'suhosin.post.max_value_length' ) ) ? ini_get( 'suhosin.post.max_value_length' ) : 'N/A' );
|
328 |
+
$system_info['suhosin_info']['REQUEST max_value_length'] = ( ( ini_get( 'suhosin.request.max_value_length' ) ) ? ini_get( 'suhosin.request.max_value_length' ) : 'N/A' );
|
329 |
+
|
330 |
+
$system_info['suhosin_info']['POST max_name_length'] = ( ( ini_get( 'suhosin.post.max_name_length' ) ) ? ini_get( 'suhosin.post.max_name_length' ) : 'N/A' );
|
331 |
+
$system_info['suhosin_info']['REQUEST max_varname_length'] = ( ( ini_get( 'suhosin.request.max_varname_length' ) ) ? ini_get( 'suhosin.request.max_varname_length' ) : 'N/A' );
|
332 |
+
|
333 |
+
$system_info['suhosin_info']['POST max_array_depth'] = ( ( ini_get( 'suhosin.post.max_array_depth' ) ) ? ini_get( 'suhosin.post.max_array_depth' ) : 'N/A' );
|
334 |
+
$system_info['suhosin_info']['REQUEST max_array_depth'] = ( ( ini_get( 'suhosin.request.max_array_depth' ) ) ? ini_get( 'suhosin.request.max_array_depth' ) : 'N/A' );
|
335 |
+
}
|
336 |
+
|
337 |
+
|
338 |
+
if ( function_exists('gd_info') ) {
|
339 |
+
$gd_info = gd_info();
|
340 |
+
if ( isset( $gd_info['GD Version'] ) )
|
341 |
+
$gd_info = $gd_info['GD Version'];
|
342 |
+
else
|
343 |
+
$gd_info = json_encode( $gd_info );
|
344 |
+
} else {
|
345 |
+
$gd_info = 'Off';
|
346 |
+
}
|
347 |
+
$system_info['php_info']['PHP GD'] = $gd_info;
|
348 |
+
|
349 |
+
// More here https://docs.woocommerce.com/document/problems-with-large-amounts-of-data-not-saving-variations-rates-etc/
|
350 |
+
|
351 |
+
|
352 |
+
foreach ( $all_plugins as $path => $plugin ) {
|
353 |
+
if ( is_plugin_active( $path ) )
|
354 |
+
$system_info['active_plugins'][$plugin['Name']] = $plugin['Version'];
|
355 |
+
else
|
356 |
+
$system_info['inactive_plugins'][$plugin['Name']] = $plugin['Version'];
|
357 |
+
}
|
358 |
+
|
359 |
+
// Showing
|
360 |
+
foreach ( $system_info as $section_name => $section_values ) {
|
361 |
+
?>
|
362 |
+
<span class="wpdevelop">
|
363 |
+
<table class="table table-striped table-bordered">
|
364 |
+
<thead><tr><th colspan="2" style="border-bottom: 1px solid #eeeeee;padding: 10px;"><?php echo strtoupper( $section_name ); ?></th></tr></thead>
|
365 |
+
<tbody>
|
366 |
+
<?php
|
367 |
+
if ( !empty( $section_values ) ) {
|
368 |
+
foreach ( $section_values as $key => $value ) {
|
369 |
+
?>
|
370 |
+
<tr>
|
371 |
+
<td scope="row" style="width:18em;padding:4px 8px;"><?php echo $key; ?></td>
|
372 |
+
<td scope="row" style="padding:4px 8px;"><?php echo $value; ?></td>
|
373 |
+
</tr>
|
374 |
+
<?php
|
375 |
+
}
|
376 |
+
}
|
377 |
+
?>
|
378 |
+
</tbody>
|
379 |
+
</table>
|
380 |
+
</span>
|
381 |
+
<div class="clear"></div>
|
382 |
+
<?php
|
383 |
+
}
|
384 |
+
?>
|
385 |
+
<hr>
|
386 |
+
<div style="color:#777;">
|
387 |
+
<h4 style="font-size:1.1em;">Commonly required configuration vars in php.ini file:</h4>
|
388 |
+
<h4>General section:</h4>
|
389 |
+
<pre><code>memory_limit = 256M
|
390 |
+
max_execution_time = 120
|
391 |
+
post_max_size = 8M
|
392 |
+
upload_max_filesize = 8M
|
393 |
+
max_input_vars = 20480
|
394 |
+
post_max_size = 64M</code></pre>
|
395 |
+
<h4>Suhosin section (if installed):</h4>
|
396 |
+
<pre><code>suhosin.post.max_array_index_length = 1024
|
397 |
+
suhosin.post.max_totalname_length = 65535
|
398 |
+
suhosin.post.max_vars = 2048
|
399 |
+
suhosin.post.max_value_length = 1000000
|
400 |
+
suhosin.post.max_name_length = 256
|
401 |
+
suhosin.post.max_array_depth = 1000
|
402 |
+
suhosin.request.max_array_index_length = 1024
|
403 |
+
suhosin.request.max_totalname_length = 65535
|
404 |
+
suhosin.request.max_vars = 2048
|
405 |
+
suhosin.request.max_value_length = 1000000
|
406 |
+
suhosin.request.max_varname_length = 256
|
407 |
+
suhosin.request.max_array_depth = 1000</code></pre>
|
408 |
+
</div>
|
409 |
+
<?php
|
410 |
+
// phpinfo();
|
411 |
+
}
|
412 |
+
}
|
413 |
+
|
414 |
+
|
415 |
+
|
416 |
+
/**
|
417 |
+
* It's for my tests and debugs
|
418 |
+
*/
|
419 |
+
function wpbc_settings__system_info__debug_and_tests() {
|
420 |
+
|
421 |
+
if ( 0 ) {
|
422 |
+
|
423 |
+
wpbc_open_meta_box_section( 'wpbc_general_settings_test_debug', __( 'Test & Debug' ) );
|
424 |
+
|
425 |
+
//debuge( get_site_transient( 'update_plugins' ) );
|
426 |
+
|
427 |
+
wpbc_close_meta_box_section();
|
428 |
+
}
|
429 |
+
|
430 |
+
|
431 |
+
if (0){
|
432 |
+
/**
|
433 |
+
* Install Plugin.
|
434 |
+
*/
|
435 |
+
include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
436 |
+
include_once ABSPATH . 'wp-admin/includes/plugin-install.php';
|
437 |
+
$skin = new WP_Ajax_Upgrader_Skin();
|
438 |
+
$upgrader = new Plugin_Upgrader( $skin );
|
439 |
+
$package = 'https://wpbookingcalendar.com/download/some-plugin.zip';
|
440 |
+
$result = $upgrader->install( $package ); //$package - The full local path or URI of the package
|
441 |
+
}
|
442 |
+
|
443 |
+
if (0) {
|
444 |
+
|
445 |
+
$plugin_slug = 'booking';
|
446 |
+
global $wp_filesystem;
|
447 |
+
|
448 |
+
$plugin_translations = wp_get_installed_translations( 'plugins' );
|
449 |
+
|
450 |
+
$language_updates = wp_get_translation_updates();
|
451 |
+
|
452 |
+
debuge( '$language_updates, $plugin_translations[ $plugin_slug ]', $language_updates, $plugin_translations[ $plugin_slug ] );
|
453 |
+
|
454 |
+
if ( 0 ) {
|
455 |
+
// Remove language files, silently.
|
456 |
+
if ( '.' !== $plugin_slug && ! empty( $plugin_translations[ $plugin_slug ] ) ) {
|
457 |
+
$translations = $plugin_translations[ $plugin_slug ];
|
458 |
+
|
459 |
+
foreach ( $translations as $translation => $data ) {
|
460 |
+
$wp_filesystem->delete( WP_LANG_DIR . '/plugins/' . $plugin_slug . '-' . $translation . '.po' );
|
461 |
+
$wp_filesystem->delete( WP_LANG_DIR . '/plugins/' . $plugin_slug . '-' . $translation . '.mo' );
|
462 |
+
|
463 |
+
$json_translation_files = glob( WP_LANG_DIR . '/plugins/' . $plugin_slug . '-' . $translation . '-*.json' );
|
464 |
+
if ( $json_translation_files ) {
|
465 |
+
array_map( array( $wp_filesystem, 'delete' ), $json_translation_files );
|
466 |
+
}
|
467 |
+
}
|
468 |
+
}
|
469 |
+
}
|
470 |
+
}
|
471 |
+
|
472 |
+
}
|
core/admin/wpbc-toolbars.php
CHANGED
@@ -950,7 +950,7 @@ function wpbc_toolbar_btn__approve_reject( $user_bk_id ) {
|
|
950 |
, 'hint' => array( 'title' => __('Approve selected bookings' ,'booking') , 'position' => 'top' ) // Hint
|
951 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
952 |
, 'action' => "approve_unapprove_booking( get_selected_bookings_id_in_booking_listing(), 1, " .
|
953 |
-
$user_bk_id . ", '" .
|
954 |
, 'class' => 'button-primary' // button-secondary | button-primary
|
955 |
, 'icon' => ''
|
956 |
, 'font_icon' => 'glyphicon glyphicon-ok-circle glyphicon-white'
|
@@ -966,7 +966,7 @@ function wpbc_toolbar_btn__approve_reject( $user_bk_id ) {
|
|
966 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
967 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js(__('Do you really want to set booking as pending ?' ,'booking')) . "') )
|
968 |
approve_unapprove_booking( get_selected_bookings_id_in_booking_listing() ,
|
969 |
-
0, " . $user_bk_id . ", '" .
|
970 |
, 'class' => '' // button-secondary | button-primary
|
971 |
, 'icon' => ''
|
972 |
, 'font_icon' => 'glyphicon glyphicon-ban-circle'
|
@@ -997,7 +997,7 @@ function wpbc_toolbar_btn__delete_reason( $user_bk_id ) {
|
|
997 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to do this ?' ,'booking') ) . "') )
|
998 |
trash__restore_booking( 1, get_selected_bookings_id_in_booking_listing() , "
|
999 |
. $user_bk_id . ", '"
|
1000 |
-
.
|
1001 |
, 'class' => '' // button-secondary | button-primary
|
1002 |
, 'icon' => ''
|
1003 |
, 'font_icon' => 'glyphicon glyphicon-trash'
|
@@ -1014,7 +1014,7 @@ function wpbc_toolbar_btn__delete_reason( $user_bk_id ) {
|
|
1014 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to do this ?' ,'booking') ) . "') )
|
1015 |
trash__restore_booking( 0, get_selected_bookings_id_in_booking_listing() , "
|
1016 |
. $user_bk_id . ", '"
|
1017 |
-
.
|
1018 |
, 'class' => '' // button-secondary | button-primary
|
1019 |
, 'icon' => ''
|
1020 |
, 'font_icon' => 'glyphicon glyphicon-repeat'
|
@@ -1031,7 +1031,7 @@ function wpbc_toolbar_btn__delete_reason( $user_bk_id ) {
|
|
1031 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to delete selected booking(s) ?' ,'booking') ) . "') )
|
1032 |
delete_booking( get_selected_bookings_id_in_booking_listing() , "
|
1033 |
. $user_bk_id . ", '"
|
1034 |
-
.
|
1035 |
, 'class' => '' // button-secondary | button-primary
|
1036 |
, 'icon' => ''
|
1037 |
, 'font_icon' => 'glyphicon glyphicon-remove'
|
@@ -1077,7 +1077,7 @@ function wpbc_toolbar_btn__empty_trash( $user_bk_id ) {
|
|
1077 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
1078 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to do this ?' ,'booking') ) . "') )
|
1079 |
wpbc_empty_trash( " . $user_bk_id .
|
1080 |
-
", '" .
|
1081 |
|
1082 |
, 'class' => '' // button-secondary | button-primary
|
1083 |
, 'icon' => ''
|
@@ -1106,7 +1106,7 @@ function wpbc_toolbar_btn__read_all( $user_bk_id ) {
|
|
1106 |
, 'title' => __('Read All', 'booking') . ' ' // Title of the button
|
1107 |
, 'hint' => array( 'title' => __('Mark as read all bookings' ,'booking') , 'position' => 'top' ) // Hint
|
1108 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
1109 |
-
, 'action' => "mark_read_booking( 'all', 0, " . $user_bk_id . ", '" .
|
1110 |
, 'class' => '' // button-secondary | button-primary
|
1111 |
, 'icon' => ''
|
1112 |
, 'font_icon' => 'glyphicon glyphicon-eye-close'
|
@@ -1121,7 +1121,7 @@ function wpbc_toolbar_btn__read_all( $user_bk_id ) {
|
|
1121 |
, 'hint' => array( 'title' => __('Mark as read selected bookings' ,'booking') , 'position' => 'top' ) // Hint
|
1122 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
1123 |
, 'action' => "mark_read_booking( get_selected_bookings_id_in_booking_listing(), 0, "
|
1124 |
-
. $user_bk_id . ", '" .
|
1125 |
, 'class' => '' // button-secondary | button-primary
|
1126 |
, 'icon' => ''
|
1127 |
, 'font_icon' => 'glyphicon glyphicon-eye-close'
|
@@ -1136,7 +1136,7 @@ function wpbc_toolbar_btn__read_all( $user_bk_id ) {
|
|
1136 |
, 'hint' => array( 'title' => __('Mark as Unread selected bookings' ,'booking') , 'position' => 'top' ) // Hint
|
1137 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
1138 |
, 'action' => "mark_read_booking( get_selected_bookings_id_in_booking_listing() , 1, "
|
1139 |
-
. $user_bk_id . ", '" .
|
1140 |
, 'class' => '' // button-secondary | button-primary
|
1141 |
, 'icon' => ''
|
1142 |
, 'font_icon' => 'glyphicon glyphicon-eye-open'
|
@@ -1350,16 +1350,24 @@ function wpbc_toolbar_btn__timeline_navigation() {
|
|
1350 |
case '30':
|
1351 |
if (isset($_REQUEST['scroll_day'])) $scroll_day = intval( $_REQUEST['scroll_day'] );
|
1352 |
else $scroll_day = 0;
|
1353 |
-
|
1354 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
'&scroll_day=0',
|
1356 |
-
'&scroll_day='.intval($scroll_day+
|
1357 |
-
'&scroll_day='.intval($scroll_day+
|
1358 |
-
$scroll_titles = array( __('Previous
|
1359 |
-
|
1360 |
__('Current week' ,'booking'),
|
1361 |
-
__('Next
|
1362 |
-
__('Next
|
1363 |
break;
|
1364 |
default: // 365
|
1365 |
if (! isset($_REQUEST['scroll_month'])) $_REQUEST['scroll_month'] = 0;
|
@@ -1842,7 +1850,7 @@ function wpbc_toolbar_btn__add_new_booking() {
|
|
1842 |
onclick="mybooking_submit(
|
1843 |
document.getElementById('booking_form<?php echo $bk_type; ?>' )
|
1844 |
, <?php echo $bk_type; ?>
|
1845 |
-
, '<?php echo
|
1846 |
);"
|
1847 |
><?php _e('Add booking' , 'booking') ?></a><?php
|
1848 |
}
|
950 |
, 'hint' => array( 'title' => __('Approve selected bookings' ,'booking') , 'position' => 'top' ) // Hint
|
951 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
952 |
, 'action' => "approve_unapprove_booking( get_selected_bookings_id_in_booking_listing(), 1, " .
|
953 |
+
$user_bk_id . ", '" . wpbc_get_maybe_reloaded_booking_locale() . "' , 1);" // Some JavaScript to execure, for example run the function
|
954 |
, 'class' => 'button-primary' // button-secondary | button-primary
|
955 |
, 'icon' => ''
|
956 |
, 'font_icon' => 'glyphicon glyphicon-ok-circle glyphicon-white'
|
966 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
967 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js(__('Do you really want to set booking as pending ?' ,'booking')) . "') )
|
968 |
approve_unapprove_booking( get_selected_bookings_id_in_booking_listing() ,
|
969 |
+
0, " . $user_bk_id . ", '" . wpbc_get_maybe_reloaded_booking_locale() . "' , 1);" // Some JavaScript to execure, for example run the function
|
970 |
, 'class' => '' // button-secondary | button-primary
|
971 |
, 'icon' => ''
|
972 |
, 'font_icon' => 'glyphicon glyphicon-ban-circle'
|
997 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to do this ?' ,'booking') ) . "') )
|
998 |
trash__restore_booking( 1, get_selected_bookings_id_in_booking_listing() , "
|
999 |
. $user_bk_id . ", '"
|
1000 |
+
. wpbc_get_maybe_reloaded_booking_locale() . "' , 1 );" // Some JavaScript to execure, for example run the function
|
1001 |
, 'class' => '' // button-secondary | button-primary
|
1002 |
, 'icon' => ''
|
1003 |
, 'font_icon' => 'glyphicon glyphicon-trash'
|
1014 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to do this ?' ,'booking') ) . "') )
|
1015 |
trash__restore_booking( 0, get_selected_bookings_id_in_booking_listing() , "
|
1016 |
. $user_bk_id . ", '"
|
1017 |
+
. wpbc_get_maybe_reloaded_booking_locale() . "' , 1 );" // Some JavaScript to execure, for example run the function
|
1018 |
, 'class' => '' // button-secondary | button-primary
|
1019 |
, 'icon' => ''
|
1020 |
, 'font_icon' => 'glyphicon glyphicon-repeat'
|
1031 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to delete selected booking(s) ?' ,'booking') ) . "') )
|
1032 |
delete_booking( get_selected_bookings_id_in_booking_listing() , "
|
1033 |
. $user_bk_id . ", '"
|
1034 |
+
. wpbc_get_maybe_reloaded_booking_locale() . "' , 1 );" // Some JavaScript to execure, for example run the function
|
1035 |
, 'class' => '' // button-secondary | button-primary
|
1036 |
, 'icon' => ''
|
1037 |
, 'font_icon' => 'glyphicon glyphicon-remove'
|
1077 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
1078 |
, 'action' => "if ( wpbc_are_you_sure('" . esc_js( __('Do you really want to do this ?' ,'booking') ) . "') )
|
1079 |
wpbc_empty_trash( " . $user_bk_id .
|
1080 |
+
", '" . wpbc_get_maybe_reloaded_booking_locale() . "' );" // Some JavaScript to execure, for example run the function
|
1081 |
|
1082 |
, 'class' => '' // button-secondary | button-primary
|
1083 |
, 'icon' => ''
|
1106 |
, 'title' => __('Read All', 'booking') . ' ' // Title of the button
|
1107 |
, 'hint' => array( 'title' => __('Mark as read all bookings' ,'booking') , 'position' => 'top' ) // Hint
|
1108 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
1109 |
+
, 'action' => "mark_read_booking( 'all', 0, " . $user_bk_id . ", '" . wpbc_get_maybe_reloaded_booking_locale() . "' );" // Some JavaScript to execure, for example run the function
|
1110 |
, 'class' => '' // button-secondary | button-primary
|
1111 |
, 'icon' => ''
|
1112 |
, 'font_icon' => 'glyphicon glyphicon-eye-close'
|
1121 |
, 'hint' => array( 'title' => __('Mark as read selected bookings' ,'booking') , 'position' => 'top' ) // Hint
|
1122 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
1123 |
, 'action' => "mark_read_booking( get_selected_bookings_id_in_booking_listing(), 0, "
|
1124 |
+
. $user_bk_id . ", '" . wpbc_get_maybe_reloaded_booking_locale() . "' );" // Some JavaScript to execure, for example run the function
|
1125 |
, 'class' => '' // button-secondary | button-primary
|
1126 |
, 'icon' => ''
|
1127 |
, 'font_icon' => 'glyphicon glyphicon-eye-close'
|
1136 |
, 'hint' => array( 'title' => __('Mark as Unread selected bookings' ,'booking') , 'position' => 'top' ) // Hint
|
1137 |
, 'link' => 'javascript:void(0)' // Direct link or skip it
|
1138 |
, 'action' => "mark_read_booking( get_selected_bookings_id_in_booking_listing() , 1, "
|
1139 |
+
. $user_bk_id . ", '" . wpbc_get_maybe_reloaded_booking_locale() . "' );" // Some JavaScript to execure, for example run the function
|
1140 |
, 'class' => '' // button-secondary | button-primary
|
1141 |
, 'icon' => ''
|
1142 |
, 'font_icon' => 'glyphicon glyphicon-eye-open'
|
1350 |
case '30':
|
1351 |
if (isset($_REQUEST['scroll_day'])) $scroll_day = intval( $_REQUEST['scroll_day'] );
|
1352 |
else $scroll_day = 0;
|
1353 |
+
|
1354 |
+
//FixIn: 8.9.4.3
|
1355 |
+
// Here we need to define number of days to scroll depends from selected number of days to show.
|
1356 |
+
$days_num_to_scroll = intval( get_bk_option( 'booking_calendar_overview__day_mode__days_number_show' ) );;
|
1357 |
+
if ( empty( $days_num_to_scroll ) ) {
|
1358 |
+
$days_num_to_scroll = 7;
|
1359 |
+
}
|
1360 |
+
|
1361 |
+
$scroll_params = array( '&scroll_day='.intval( $scroll_day - $days_num_to_scroll * 2 ),
|
1362 |
+
'&scroll_day='.intval( $scroll_day - $days_num_to_scroll ),
|
1363 |
'&scroll_day=0',
|
1364 |
+
'&scroll_day='.intval( $scroll_day + $days_num_to_scroll ),
|
1365 |
+
'&scroll_day='.intval( $scroll_day + $days_num_to_scroll *2 ) );
|
1366 |
+
$scroll_titles = array( __( 'Previous', 'booking' ) . ' ' . ( 2 * $days_num_to_scroll ) . ' ' . __( 'days', 'booking' ),
|
1367 |
+
__( 'Previous', 'booking' ) . ' ' . $days_num_to_scroll . ' ' . __( 'days', 'booking' ),
|
1368 |
__('Current week' ,'booking'),
|
1369 |
+
__( 'Next', 'booking' ) . ' ' . $days_num_to_scroll . ' ' . __( 'days', 'booking' ),
|
1370 |
+
__( 'Next', 'booking' ) . ' ' . ( 2 * $days_num_to_scroll ) . ' ' . __( 'days', 'booking' ) );
|
1371 |
break;
|
1372 |
default: // 365
|
1373 |
if (! isset($_REQUEST['scroll_month'])) $_REQUEST['scroll_month'] = 0;
|
1850 |
onclick="mybooking_submit(
|
1851 |
document.getElementById('booking_form<?php echo $bk_type; ?>' )
|
1852 |
, <?php echo $bk_type; ?>
|
1853 |
+
, '<?php echo wpbc_get_maybe_reloaded_booking_locale(); ?>'
|
1854 |
);"
|
1855 |
><?php _e('Add booking' , 'booking') ?></a><?php
|
1856 |
}
|
core/class/wpbc-class-upgrader-translation-skin.php
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @version 1.0
|
4 |
+
* @package Booking Calendar
|
5 |
+
* @subpackage Translations Functions
|
6 |
+
* @category Functions
|
7 |
+
*
|
8 |
+
* @author wpdevelop
|
9 |
+
* @link https://wpbookingcalendar.com/
|
10 |
+
* @email info@wpbookingcalendar.com
|
11 |
+
*
|
12 |
+
* @modified 29.09.2015
|
13 |
+
*/
|
14 |
+
|
15 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
16 |
+
|
17 |
+
|
18 |
+
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
19 |
+
|
20 |
+
class WPBC_Upgrader_Translation_Skin extends WP_Upgrader_Skin{
|
21 |
+
|
22 |
+
function __construct($args = array()){
|
23 |
+
$defaults = array( 'url' => '', 'nonce' => '', 'title' => '', 'context' => false );
|
24 |
+
$this->options = wp_parse_args($args, $defaults);
|
25 |
+
}
|
26 |
+
|
27 |
+
function header(){
|
28 |
+
|
29 |
+
}
|
30 |
+
|
31 |
+
function footer(){
|
32 |
+
|
33 |
+
}
|
34 |
+
|
35 |
+
function error($error){
|
36 |
+
$this->installer_error = $error;
|
37 |
+
}
|
38 |
+
|
39 |
+
function add_strings(){
|
40 |
+
$this->upgrader->strings['starting_upgrade'] = __( 'Some of your translations need updating. Sit tight for a few more seconds while we update them as well.' );
|
41 |
+
$this->upgrader->strings['up_to_date'] = __( 'Your translations are all up to date.' );
|
42 |
+
$this->upgrader->strings['no_package'] = __( 'Update package not available.' );
|
43 |
+
/* translators: %s: Package URL. */
|
44 |
+
$this->upgrader->strings['downloading_package'] = sprintf( __( 'Downloading translation from %s…' ), '<span class="code">%s</span>' );
|
45 |
+
$this->upgrader->strings['unpack_package'] = __( 'Unpacking the update…' );
|
46 |
+
$this->upgrader->strings['process_failed'] = __( 'Translation update failed.' );
|
47 |
+
$this->upgrader->strings['process_success'] = __( 'Translation updated successfully.' );
|
48 |
+
$this->upgrader->strings['remove_old'] = __( 'Removing the old version of the translation…' );
|
49 |
+
$this->upgrader->strings['remove_old_failed'] = __( 'Could not remove the old translation.' );
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
public function set_upgrader( &$upgrader ) {
|
54 |
+
if ( is_object( $upgrader ) ) {
|
55 |
+
$this->upgrader =& $upgrader;
|
56 |
+
}
|
57 |
+
$this->add_strings();
|
58 |
+
}
|
59 |
+
|
60 |
+
function before(){
|
61 |
+
|
62 |
+
}
|
63 |
+
|
64 |
+
function after(){
|
65 |
+
if ( ! empty( $this->installer_error ) ) {
|
66 |
+
if ( is_wp_error( $this->installer_error ) ) {
|
67 |
+
$message = $this->installer_error->get_error_message() . ' (' . $this->installer_error->get_error_data() . ')';
|
68 |
+
|
69 |
+
echo $message;
|
70 |
+
}
|
71 |
+
}
|
72 |
+
}
|
73 |
+
|
74 |
+
}
|
core/class/wpbc-class-welcome.php
CHANGED
@@ -439,10 +439,120 @@ class WPBC_Welcome {
|
|
439 |
|
440 |
|
441 |
$this->maintence_section();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
442 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
443 |
// 8.9
|
444 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
445 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
<h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;
|
447 |
font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;">8.9</span></h2><?php
|
448 |
|
@@ -484,13 +594,27 @@ class WPBC_Welcome {
|
|
484 |
style="margin:30px 5px 0;width: 98%;box-shadow: 0 1px 3px #aaa;border-radius: 2px;"
|
485 |
class="wpbc-section-image" />
|
486 |
<span style="font-size:0.8em;padding:1em;">* This feature is available in the Booking Calendar Business Medium or higher versions.</span>
|
487 |
-
</div>
|
|
|
|
|
488 |
|
|
|
|
|
|
|
489 |
|
|
|
490 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
491 |
// 8.8
|
492 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
493 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
<div class="clear" style="margin-top:20px;"></div>
|
495 |
<h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;
|
496 |
font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;">8.8</span></h2><?php
|
@@ -570,8 +694,10 @@ class WPBC_Welcome {
|
|
570 |
)
|
571 |
)
|
572 |
);
|
|
|
|
|
573 |
|
574 |
-
|
575 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
576 |
// 8.7
|
577 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -656,6 +782,9 @@ class WPBC_Welcome {
|
|
656 |
);
|
657 |
?></div><?php
|
658 |
|
|
|
|
|
|
|
659 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
660 |
// 8.6
|
661 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -785,6 +914,9 @@ class WPBC_Welcome {
|
|
785 |
);
|
786 |
*/
|
787 |
|
|
|
|
|
|
|
788 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
789 |
// 8.5
|
790 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -863,6 +995,9 @@ class WPBC_Welcome {
|
|
863 |
$this->show_separator();
|
864 |
?></div><?php
|
865 |
|
|
|
|
|
|
|
866 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
867 |
// 8.4
|
868 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -888,6 +1023,9 @@ class WPBC_Welcome {
|
|
888 |
</div><?php
|
889 |
?></div><?php
|
890 |
|
|
|
|
|
|
|
891 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
892 |
// 8.3
|
893 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -911,6 +1049,10 @@ class WPBC_Welcome {
|
|
911 |
?>
|
912 |
</div><?php
|
913 |
?></div><?php
|
|
|
|
|
|
|
|
|
914 |
?>
|
915 |
<div class="clear" style="margin-top:20px;"></div>
|
916 |
<a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
|
@@ -933,6 +1075,10 @@ class WPBC_Welcome {
|
|
933 |
</div><?php
|
934 |
|
935 |
?></div><?php
|
|
|
|
|
|
|
|
|
936 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
937 |
// 8.1
|
938 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -1031,7 +1177,9 @@ class WPBC_Welcome {
|
|
1031 |
$this->show_separator();
|
1032 |
?></div><?php
|
1033 |
|
1034 |
-
|
|
|
|
|
1035 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1036 |
// 8.0
|
1037 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -1181,7 +1329,9 @@ class WPBC_Welcome {
|
|
1181 |
$this->show_separator();
|
1182 |
?></div><?php
|
1183 |
|
|
|
1184 |
|
|
|
1185 |
|
1186 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1187 |
// 7.1 - 7.2
|
@@ -1357,7 +1507,7 @@ class WPBC_Welcome {
|
|
1357 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** do not show option for ability to select as parent booking resource itself, at Booking > Resources page. Its prevent from generating lost booking resources. (7.1.2.3) <em>(Business Large, MultiUser)</em>' ) . '</li>'
|
1358 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue of not having access in modal windows (like payment request) to enter some data, when opened page with mobile device (7.1.2.7) <em>(Personal Business Small/Medium/Large, MultiUser)</em>' ) . '</li>'
|
1359 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue in Danish translation, which was show warning at Booking > Settings > Payment > Bank transfer page (7.1.2.9) <em>(Business Small/Medium/Large, MultiUser)</em>' ) . '</li>'
|
1360 |
-
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue of showing &
|
1361 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue of hiding selection of booking resources field after submit of booking (7.1.2.13) <em>(Personal Business Small/Medium/Large, MultiUser)</em>' ) . '</li>'
|
1362 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue of not checking (during booking submit process) elements from conditional fields logic, if these fields does not visible. (7.1.2.14) <em>(Business Medium/Large, MultiUser)</em>' ) . '</li>'
|
1363 |
|
@@ -1391,7 +1541,10 @@ class WPBC_Welcome {
|
|
1391 |
<?php //$this->show_separator(); ?>
|
1392 |
</div>
|
1393 |
<?php
|
1394 |
-
|
|
|
|
|
|
|
1395 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1396 |
// 7.0
|
1397 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -1767,7 +1920,9 @@ class WPBC_Welcome {
|
|
1767 |
|
1768 |
$this->show_separator();
|
1769 |
?></div><?php
|
1770 |
-
|
|
|
|
|
1771 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1772 |
// Footer
|
1773 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -2491,8 +2646,6 @@ at the popup configuration dialog, during inserting booking shortcode into post
|
|
2491 |
<?php
|
2492 |
}
|
2493 |
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
$wpbc_welcome = new WPBC_Welcome();
|
2498 |
|
|
439 |
|
440 |
|
441 |
$this->maintence_section();
|
442 |
+
|
443 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
444 |
+
// 9.0
|
445 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
446 |
+
?>
|
447 |
+
<h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;
|
448 |
+
font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;">9.0</span></h2><?php
|
449 |
+
|
450 |
+
?><div class="feature-section two-col">
|
451 |
+
<div class="col col-1" style="flex: 1 1 50%;width: 100%;">
|
452 |
+
<?php echo
|
453 |
+
'<h4>' .wpbc_recheck_strong_symbols( 'Time slots' ) . '</h4>' .
|
454 |
+
'<ul style="list-style: disc outside;padding: 20px;margin:0;">'
|
455 |
+
. '<li>' . wpbc_recheck_strong_symbols( 'Showing **time slots as dots** in calendar day cells. Modern and beautiful view of time slots within calendar days.' ) . '</li>'
|
456 |
+
. '<li>' . wpbc_recheck_strong_symbols( 'Display the **exact number** of booked **time slots** in calendar day cells. System shows **as many dots** (time slots) as many time slots have been booked for a particular day. Your customers can see occupancy by time interval from the beginning of the calendar view.' ) . '</li>'
|
457 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Improvement** CSS styling in all calendar skins. If you have customized a calendar skin before, check the changes in the new calendar skins marked with a number: 8.9.4.13 ' ) . '</li>'
|
458 |
+
. '</ul>';
|
459 |
+
?>
|
460 |
+
</div>
|
461 |
+
<div class="col col-2 last-feature" style="flex: 1 1 auto;width: 60%;">
|
462 |
+
|
463 |
+
<img src="<?php echo $this->asset_path; ?>9.0/wpbc-9-0-time-slots.png"
|
464 |
+
style="margin:30px 5px 0;width: 98%;box-shadow: 0 1px 3px #aaa;border-radius: 2px;"
|
465 |
+
class="wpbc-section-image" />
|
466 |
+
|
467 |
+
</div>
|
468 |
+
</div><?php
|
469 |
+
|
470 |
+
$this->show_separator();
|
471 |
+
|
472 |
+
?><div class="feature-section two-col">
|
473 |
+
<div class="col col-1" style="flex: 1 1 50%;width: 100%;">
|
474 |
+
<img src="<?php echo $this->asset_path; ?>9.0/wpbc-9-0-co2.png"
|
475 |
+
style="margin:30px 5px 0;width: 98%;box-shadow: 0 1px 3px #aaa;border-radius: 2px;"
|
476 |
+
class="wpbc-section-image" />
|
477 |
+
</div>
|
478 |
+
<div class="col col-2 last-feature" style="flex: 1 1 auto;width: 60%;">
|
479 |
+
<?php echo
|
480 |
+
'<h4>' .wpbc_recheck_strong_symbols( 'Change over days' ) . '</h4>' .
|
481 |
+
'<ul style="list-style: disc outside;padding: 20px;margin:0;">'
|
482 |
+
. '<li>' . wpbc_recheck_strong_symbols( 'Accurate clear display of the diagonal change over days line. Now it correctly shows the **diagonal line for any shape of day cells** (square or rectangle). This means that for any calendar size you will see the correct sharp diagonal line.' ) . '</li>'
|
483 |
+
. '<li>' . wpbc_recheck_strong_symbols( 'Show **diagonal line in dates**, where we have check in/out bookings with the **same status (pending or approved)**. It is useful to see where one booking ends and another begins when both bookings are pending or approved. Previously it was shown just full booked date without diagonal line.' ) . '</li>'
|
484 |
+
. '<li>' . wpbc_recheck_strong_symbols( 'The ability to use **change over days only on certain pages**. Useful in a situation where you need to make a booking with change over days at on a certain page(s) (check in/out dates with diagonal lines) and make bookings for specific time slots on another page(s). You can define list of pages on which to use this feature at the Booking > Settings General page in "Calendar" section.' ) . '</li>'
|
485 |
+
. '</ul>';
|
486 |
+
?>
|
487 |
+
<span style="font-size:0.8em;padding:1em;">* This feature is available in the Booking Calendar Business Small or higher versions.</span>
|
488 |
+
</div>
|
489 |
+
</div><?php
|
490 |
+
|
491 |
+
$this->show_separator();
|
492 |
+
|
493 |
+
|
494 |
+
?><div class="feature-section one-col">
|
495 |
+
<div class="col col-1" style="flex: 1 1 100%;width: 100%;">
|
496 |
+
<?php echo '<h4>' .wpbc_recheck_strong_symbols( 'Timeline' ) . '</h4>' ;?>
|
497 |
+
<img src="<?php echo $this->asset_path; ?>9.0/wpbc-9-0-timeline.png"
|
498 |
+
style="margin:30px 5px 0;width: 100%;box-shadow: 0 1px 3px #aaa;border-radius: 2px;"
|
499 |
+
class="wpbc-section-image" />
|
500 |
+
</div>
|
501 |
+
<div class="col col-2 last-feature" style="flex: 1 1 100%;width: 100%;">
|
502 |
+
<?php echo
|
503 |
+
'<ul style="list-style: disc outside;padding: 20px;margin:0;">'
|
504 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Timeline**. Ability to **define how many days to show in Timeline** at the front-end side, while showing Timeline for one booking resource, and select "**Month view mode**" in shortcode (parameter "view_days_num=30" or this parameter skipped). You can define it at the Booking > Settings General page in "Calendar Overview | Timeline" section.' ) . '</li>'
|
505 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Calendar Overview** page. Ability to **define how many days to show** in the Calendar Overview page in the admin panel, while showing Calendar Overview page for one booking resource, and selected "**Day view mode**". You can define it at the Booking > Settings General page in "Calendar Overview | Timeline" section.' ) . '</li>'
|
506 |
+
. '<li>' . wpbc_recheck_strong_symbols( 'Timeline / Calendar Overview page. Scroll exactly the number of days (for one booking resource, and select "Month view mode" / "Day view mode"), that was defined at option "Days number to show in Month mode in Timeline" / "Days number to show in Day view mode in Calendar Overview page".' ) . '</li>'
|
507 |
+
. '<li>' . wpbc_recheck_strong_symbols( 'Separate settings sections for "Calendar Overview" | "Timeline" options at the Booking > Settings General page.' ) . '</li>'
|
508 |
+
. '</ul>';
|
509 |
+
?>
|
510 |
+
</div>
|
511 |
+
</div><?php
|
512 |
+
|
513 |
+
$this->show_separator();
|
514 |
+
|
515 |
+
?><div class="feature-section two-col">
|
516 |
+
<div class="col col-1" style="flex: 1 1 50%;width: 100%;">
|
517 |
+
<?php echo
|
518 |
+
'<h4>' .wpbc_recheck_strong_symbols( 'Translations' ) . '</h4>' .
|
519 |
+
'<ul style="list-style: disc outside;padding: 20px;margin:0;">'
|
520 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**New**. Ability to define where firstly plugin tries to use translations from "../wp-content/languages/plugins/", or from "../wp-content/plugins/{Booking Calendar Folder}/languages/" folder. You can change this behavior at the Booking > Settings General page.' ) . '</li>'
|
521 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**New**. Force plugin translation update. Download and update plugin translations from WordPress translation repository and from wpbookingcalendar.com You can make updates at Booking > Settings General page in Translation section.' ) . '</li>'
|
522 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**New**. Check translation status at WordPress translation repository and local translation from wpbookingcalendar.com to understand what translation to load. You can check it at the Booking > Settings General page in the Translation section.' ) . '</li>'
|
523 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Booking Calendar by default does not contain MO and PO translation files. You can force download them at the Booking > Settings General page in the Translation section.' ) . '</li>'
|
524 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Switching language/locale by using "Globe icon" in the Booking Listing page has higher priority than switching languages by translation plugins.' ) . '</li>'
|
525 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Optimization structure of country list file for future translations.' ) . '</li>'
|
526 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Compatibility**. Support WPML 4.5.4' ) . '</li>'
|
527 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Compatibility**. Support Polylang 3.1.4' ) . '</li>'
|
528 |
+
. '<li>' . wpbc_recheck_strong_symbols( '**Compatibility**. Support qTranslate-X 3.4.6.8 (Currently closed "qTranslate-X", was tested with Booking Calendar in php 5.6)' ) . '</li>'
|
529 |
+
. '</ul>';
|
530 |
+
?>
|
531 |
+
</div>
|
532 |
+
<div class="col col-2 last-feature" style="flex: 1 1 auto;width: 60%;">
|
533 |
+
|
534 |
+
<img src="<?php echo $this->asset_path; ?>9.0/wpbc-9-0-translations.png"
|
535 |
+
style="margin:30px 5px 0;width: 62%;box-shadow: 0 1px 3px #aaa;border-radius: 2px;"
|
536 |
+
class="wpbc-section-image" />
|
537 |
+
|
538 |
+
</div>
|
539 |
+
</div><?php
|
540 |
+
|
541 |
+
$this->show_separator();
|
542 |
+
|
543 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.9 " >
|
544 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
545 |
// 8.9
|
546 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
547 |
?>
|
548 |
+
<div class="clear" style="margin-top:20px;"></div>
|
549 |
+
<a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
|
550 |
+
onclick="javascript:jQuery( '.version_update_8_9' ).toggle();"
|
551 |
+
>+ Show changes in version update <span style="font-size: 1.35em;font-weight: 600;color: #079;font-family: Consolas,Monaco,monospace;padding-left:12px;">8.9</span></a>
|
552 |
+
|
553 |
+
<div class="version_update_8_9" style="display:none;">
|
554 |
+
|
555 |
+
|
556 |
<h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;
|
557 |
font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;">8.9</span></h2><?php
|
558 |
|
594 |
style="margin:30px 5px 0;width: 98%;box-shadow: 0 1px 3px #aaa;border-radius: 2px;"
|
595 |
class="wpbc-section-image" />
|
596 |
<span style="font-size:0.8em;padding:1em;">* This feature is available in the Booking Calendar Business Medium or higher versions.</span>
|
597 |
+
</div>
|
598 |
+
|
599 |
+
</div><?php
|
600 |
|
601 |
+
?></div><?php
|
602 |
+
|
603 |
+
// </editor-fold>
|
604 |
|
605 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.8 " >
|
606 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
607 |
// 8.8
|
608 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
609 |
?>
|
610 |
+
<div class="clear" style="margin-top:20px;"></div>
|
611 |
+
<a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
|
612 |
+
onclick="javascript:jQuery( '.version_update_8_8' ).toggle();"
|
613 |
+
>+ Show changes in version update <span style="font-size: 1.35em;font-weight: 600;color: #079;font-family: Consolas,Monaco,monospace;padding-left:12px;">8.8</span></a>
|
614 |
+
|
615 |
+
<div class="version_update_8_8" style="display:none;">
|
616 |
+
|
617 |
+
|
618 |
<div class="clear" style="margin-top:20px;"></div>
|
619 |
<h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;
|
620 |
font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;">8.8</span></h2><?php
|
694 |
)
|
695 |
)
|
696 |
);
|
697 |
+
?></div><?php
|
698 |
+
// </editor-fold>
|
699 |
|
700 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.7 " >
|
701 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
702 |
// 8.7
|
703 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
782 |
);
|
783 |
?></div><?php
|
784 |
|
785 |
+
// </editor-fold>
|
786 |
+
|
787 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.6 " >
|
788 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
789 |
// 8.6
|
790 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
914 |
);
|
915 |
*/
|
916 |
|
917 |
+
// </editor-fold>
|
918 |
+
|
919 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.5 " >
|
920 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
921 |
// 8.5
|
922 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
995 |
$this->show_separator();
|
996 |
?></div><?php
|
997 |
|
998 |
+
// </editor-fold>
|
999 |
+
|
1000 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.4 " >
|
1001 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1002 |
// 8.4
|
1003 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1023 |
</div><?php
|
1024 |
?></div><?php
|
1025 |
|
1026 |
+
// </editor-fold>
|
1027 |
+
|
1028 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.3 " >
|
1029 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1030 |
// 8.3
|
1031 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1049 |
?>
|
1050 |
</div><?php
|
1051 |
?></div><?php
|
1052 |
+
|
1053 |
+
// </editor-fold>
|
1054 |
+
|
1055 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.2 " >
|
1056 |
?>
|
1057 |
<div class="clear" style="margin-top:20px;"></div>
|
1058 |
<a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
|
1075 |
</div><?php
|
1076 |
|
1077 |
?></div><?php
|
1078 |
+
|
1079 |
+
// </editor-fold>
|
1080 |
+
|
1081 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.1 " >
|
1082 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1083 |
// 8.1
|
1084 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1177 |
$this->show_separator();
|
1178 |
?></div><?php
|
1179 |
|
1180 |
+
// </editor-fold>
|
1181 |
+
|
1182 |
+
// <editor-fold defaultstate="collapsed" desc=" 8.0 " >
|
1183 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1184 |
// 8.0
|
1185 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1329 |
$this->show_separator();
|
1330 |
?></div><?php
|
1331 |
|
1332 |
+
// </editor-fold>
|
1333 |
|
1334 |
+
// <editor-fold defaultstate="collapsed" desc=" 7.1 - 7.2 " >
|
1335 |
|
1336 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1337 |
// 7.1 - 7.2
|
1507 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** do not show option for ability to select as parent booking resource itself, at Booking > Resources page. Its prevent from generating lost booking resources. (7.1.2.3) <em>(Business Large, MultiUser)</em>' ) . '</li>'
|
1508 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue of not having access in modal windows (like payment request) to enter some data, when opened page with mobile device (7.1.2.7) <em>(Personal Business Small/Medium/Large, MultiUser)</em>' ) . '</li>'
|
1509 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue in Danish translation, which was show warning at Booking > Settings > Payment > Bank transfer page (7.1.2.9) <em>(Business Small/Medium/Large, MultiUser)</em>' ) . '</li>'
|
1510 |
+
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue of showing &#36, instead of $ symbol in the Booking Listing, if was used in "Content of booking fields data" form HINT cost shortcodes (7.1.2.12) <em>(Business Medium/Large, MultiUser)</em>' ) . '</li>'
|
1511 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue of hiding selection of booking resources field after submit of booking (7.1.2.13) <em>(Personal Business Small/Medium/Large, MultiUser)</em>' ) . '</li>'
|
1512 |
. '<li>' . wpbc_recheck_strong_symbols( ' **Fix** issue of not checking (during booking submit process) elements from conditional fields logic, if these fields does not visible. (7.1.2.14) <em>(Business Medium/Large, MultiUser)</em>' ) . '</li>'
|
1513 |
|
1541 |
<?php //$this->show_separator(); ?>
|
1542 |
</div>
|
1543 |
<?php
|
1544 |
+
|
1545 |
+
// </editor-fold>
|
1546 |
+
|
1547 |
+
// <editor-fold defaultstate="collapsed" desc=" 7.0 " >
|
1548 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1549 |
// 7.0
|
1550 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1920 |
|
1921 |
$this->show_separator();
|
1922 |
?></div><?php
|
1923 |
+
|
1924 |
+
// </editor-fold>
|
1925 |
+
|
1926 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1927 |
// Footer
|
1928 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
2646 |
<?php
|
2647 |
}
|
2648 |
|
2649 |
+
}
|
|
|
|
|
|
|
2650 |
|
2651 |
+
$wpbc_welcome = new WPBC_Welcome();
|
core/lang/index.php
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Silence is golden.
|
core/{lib → lang}/wpbc_all_translations.php
RENAMED
@@ -78,8 +78,13 @@
|
|
78 |
$wpbc_all_translations[] = __('2 Months', 'booking');
|
79 |
$wpbc_all_translations[] = __('3 Months', 'booking');
|
80 |
$wpbc_all_translations[] = __('Year', 'booking');
|
81 |
-
$wpbc_all_translations[] = __('Default
|
82 |
$wpbc_all_translations[] = __('Select your default calendar view mode at booking calendar overview page', 'booking');
|
|
|
|
|
|
|
|
|
|
|
83 |
$wpbc_all_translations[] = __('Filter tab', 'booking');
|
84 |
$wpbc_all_translations[] = __('Actions tab', 'booking');
|
85 |
$wpbc_all_translations[] = __('Default toolbar tab', 'booking');
|
@@ -125,6 +130,8 @@
|
|
125 |
$wpbc_all_translations[] = __('Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or availability calendars). Please enter one URL per line. Example: %s', 'booking');
|
126 |
$wpbc_all_translations[] = __('Show system debugging log for beta features', 'booking');
|
127 |
$wpbc_all_translations[] = __('Activate this option only for testing beta features', 'booking');
|
|
|
|
|
128 |
$wpbc_all_translations[] = __('Show settings of powered by notice', 'booking');
|
129 |
$wpbc_all_translations[] = __('Hide settings of powered by notice', 'booking');
|
130 |
$wpbc_all_translations[] = __('Powered by notice', 'booking');
|
@@ -148,7 +155,9 @@
|
|
148 |
$wpbc_all_translations[] = __('Delete booking data, when plugin deactivated', 'booking');
|
149 |
$wpbc_all_translations[] = __('Check this box to delete all booking data when you uninstal this plugin.', 'booking');
|
150 |
$wpbc_all_translations[] = __('Info', 'booking');
|
151 |
-
$wpbc_all_translations[] = __('
|
|
|
|
|
152 |
$wpbc_all_translations[] = __('Warning', 'booking');
|
153 |
$wpbc_all_translations[] = __('You allow unlimited number of bookings per same dates, its can be a reason of double bookings on the same date. Do you really want to do this?', 'booking');
|
154 |
$wpbc_all_translations[] = __('This feature can impact to speed of submitting booking. Do you really want to do this?', 'booking');
|
@@ -413,9 +422,14 @@
|
|
413 |
$wpbc_all_translations[] = __('Auto cancellation / approval', 'booking');
|
414 |
$wpbc_all_translations[] = __('Plugin Menu', 'booking');
|
415 |
$wpbc_all_translations[] = __('Uninstall', 'booking');
|
|
|
|
|
416 |
$wpbc_all_translations[] = __('Auto cancellation / auto approval of bookings', 'booking');
|
417 |
$wpbc_all_translations[] = __('Information', 'booking');
|
418 |
$wpbc_all_translations[] = __('Uninstall / deactivation', 'booking');
|
|
|
|
|
|
|
419 |
$wpbc_all_translations[] = __('Upgrade', 'booking');
|
420 |
$wpbc_all_translations[] = __('Nothing Found', 'booking');
|
421 |
$wpbc_all_translations[] = __('Labels', 'booking');
|
@@ -456,6 +470,7 @@
|
|
456 |
$wpbc_all_translations[] = __('Agenda', 'booking');
|
457 |
$wpbc_all_translations[] = __('New booking(s) made today', 'booking');
|
458 |
$wpbc_all_translations[] = __('Bookings for today', 'booking');
|
|
|
459 |
$wpbc_all_translations[] = __('Insert booking calendar', 'booking');
|
460 |
$wpbc_all_translations[] = __('Booking calendar', 'booking');
|
461 |
$wpbc_all_translations[] = __('Insert Shortcode', 'booking');
|
@@ -596,6 +611,7 @@
|
|
596 |
$wpbc_all_translations[] = __('Current week', 'booking');
|
597 |
$wpbc_all_translations[] = __('Next week', 'booking');
|
598 |
$wpbc_all_translations[] = __('Next 4 weeks', 'booking');
|
|
|
599 |
$wpbc_all_translations[] = __('Previous 3 months', 'booking');
|
600 |
$wpbc_all_translations[] = __('Previous month', 'booking');
|
601 |
$wpbc_all_translations[] = __('Current month', 'booking');
|
@@ -616,8 +632,18 @@
|
|
616 |
$wpbc_all_translations[] = __('Email copy to', 'booking');
|
617 |
$wpbc_all_translations[] = __('Dismiss', 'booking');
|
618 |
$wpbc_all_translations[] = __('Probably you updated your paid version of Booking Calendar by free version or update process failed. You can request the new update of your paid version at %1sthis page%2s.', 'booking');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
$wpbc_all_translations[] = __('Purchase', 'booking');
|
620 |
$wpbc_all_translations[] = __('Upgrade Now', 'booking');
|
|
|
621 |
$wpbc_all_translations[] = __('%sError!%s Request do not pass security check! Please refresh the page and try one more time.', 'booking');
|
622 |
$wpbc_all_translations[] = __('Please check more %shere%s', 'booking');
|
623 |
$wpbc_all_translations[] = __('Set as Unread', 'booking');
|
@@ -637,6 +663,7 @@
|
|
637 |
$wpbc_all_translations[] = __('Updated successfully', 'booking');
|
638 |
$wpbc_all_translations[] = __('Error!', 'booking');
|
639 |
$wpbc_all_translations[] = __('Probably these date(s) just was booking by other visitor. Please reload this page and make booking again.', 'booking');
|
|
|
640 |
$wpbc_all_translations[] = __('Timeline type', 'booking');
|
641 |
$wpbc_all_translations[] = __('Select type of timeline to load', 'booking');
|
642 |
$wpbc_all_translations[] = __('Flex Timeline', 'booking');
|
@@ -969,31 +996,4 @@
|
|
969 |
$wpbc_all_translations[] = __('Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the booking resource (%s) or %sAdd a new seasonal filter%s', 'booking');
|
970 |
$wpbc_all_translations[] = __('Set Valuation Days', 'booking');
|
971 |
$wpbc_all_translations[] = __('Status', 'booking');
|
972 |
-
$wpbc_all_translations[] = __('Costs', 'booking');
|
973 |
-
$wpbc_all_translations[] = __('Add new cost', 'booking');
|
974 |
-
$wpbc_all_translations[] = __('Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of the list.', 'booking');
|
975 |
-
$wpbc_all_translations[] = __('Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after terms %s', 'booking');
|
976 |
-
$wpbc_all_translations[] = __('Together', 'booking');
|
977 |
-
$wpbc_all_translations[] = __('For', 'booking');
|
978 |
-
$wpbc_all_translations[] = __('%s and %s terms have higher priority than a range %s days.', 'booking');
|
979 |
-
$wpbc_all_translations[] = __('%s - definition of check-out date.', 'booking');
|
980 |
-
$wpbc_all_translations[] = __('Example', 'booking');
|
981 |
-
$wpbc_all_translations[] = __('Specific cost will take affect, only if it active (the box at the left side is checked) and if "Check In" (start) date belong to selected season filter or if set "Any days".', 'booking');
|
982 |
-
$wpbc_all_translations[] = __(' for all days!', 'booking');
|
983 |
-
$wpbc_all_translations[] = __('from the cost of 1 day ', 'booking');
|
984 |
-
$wpbc_all_translations[] = __('per 1 day', 'booking');
|
985 |
-
$wpbc_all_translations[] = __('to', 'booking');
|
986 |
-
$wpbc_all_translations[] = __('Additional cost in %s per 1 day', 'booking');
|
987 |
-
$wpbc_all_translations[] = __('Customization of rates, valuation days cost and deposit amount ', 'booking');
|
988 |
-
$wpbc_all_translations[] = __('Costs and Rates Settings', 'booking');
|
989 |
-
$wpbc_all_translations[] = __('Set Rate', 'booking');
|
990 |
-
$wpbc_all_translations[] = __('Set Deposit Amount', 'booking');
|
991 |
-
$wpbc_all_translations[] = __('Valuation days', 'booking');
|
992 |
-
$wpbc_all_translations[] = __('Deposit', 'booking');
|
993 |
-
$wpbc_all_translations[] = __('Customizaton of Season Filters', 'booking');
|
994 |
-
$wpbc_all_translations[] = __('Specific Dates Filter', 'booking');
|
995 |
-
$wpbc_all_translations[] = __('Conditional Dates Filter', 'booking');
|
996 |
-
$wpbc_all_translations[] = __('Filter Name', 'booking');
|
997 |
-
$wpbc_all_translations[] = __('Type filter name', 'booking');
|
998 |
-
$wpbc_all_translations[] = __('Weekdays', 'booking');
|
999 |
}
|
78 |
$wpbc_all_translations[] = __('2 Months', 'booking');
|
79 |
$wpbc_all_translations[] = __('3 Months', 'booking');
|
80 |
$wpbc_all_translations[] = __('Year', 'booking');
|
81 |
+
$wpbc_all_translations[] = __('Default view mode', 'booking');
|
82 |
$wpbc_all_translations[] = __('Select your default calendar view mode at booking calendar overview page', 'booking');
|
83 |
+
$wpbc_all_translations[] = __('Days number to show in day view mode', 'booking');
|
84 |
+
$wpbc_all_translations[] = __('Select number of days to show in %sDay%s view mode', 'booking');
|
85 |
+
$wpbc_all_translations[] = __('for one booking resource', 'booking');
|
86 |
+
$wpbc_all_translations[] = __('Days number to show in month view mode', 'booking');
|
87 |
+
$wpbc_all_translations[] = __('Select number of days to show in month view mode for one booking resource.', 'booking');
|
88 |
$wpbc_all_translations[] = __('Filter tab', 'booking');
|
89 |
$wpbc_all_translations[] = __('Actions tab', 'booking');
|
90 |
$wpbc_all_translations[] = __('Default toolbar tab', 'booking');
|
130 |
$wpbc_all_translations[] = __('Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or availability calendars). Please enter one URL per line. Example: %s', 'booking');
|
131 |
$wpbc_all_translations[] = __('Show system debugging log for beta features', 'booking');
|
132 |
$wpbc_all_translations[] = __('Activate this option only for testing beta features', 'booking');
|
133 |
+
$wpbc_all_translations[] = __('Disable booked time slots in multiple days selection mode', 'booking');
|
134 |
+
$wpbc_all_translations[] = __('System disables booked time slots if multiple days selection mode is enabled. The system only disabled time slots booked for the first selected day only.', 'booking');
|
135 |
$wpbc_all_translations[] = __('Show settings of powered by notice', 'booking');
|
136 |
$wpbc_all_translations[] = __('Hide settings of powered by notice', 'booking');
|
137 |
$wpbc_all_translations[] = __('Powered by notice', 'booking');
|
155 |
$wpbc_all_translations[] = __('Delete booking data, when plugin deactivated', 'booking');
|
156 |
$wpbc_all_translations[] = __('Check this box to delete all booking data when you uninstal this plugin.', 'booking');
|
157 |
$wpbc_all_translations[] = __('Info', 'booking');
|
158 |
+
$wpbc_all_translations[] = __('Firstly load translation', 'booking');
|
159 |
+
$wpbc_all_translations[] = __('Local', 'booking');
|
160 |
+
$wpbc_all_translations[] = __('The plugin tries to use translations from %s, if failed (doesn\'t exist), try using translations from %s folder. You can change this behavior with this option.', 'booking');
|
161 |
$wpbc_all_translations[] = __('Warning', 'booking');
|
162 |
$wpbc_all_translations[] = __('You allow unlimited number of bookings per same dates, its can be a reason of double bookings on the same date. Do you really want to do this?', 'booking');
|
163 |
$wpbc_all_translations[] = __('This feature can impact to speed of submitting booking. Do you really want to do this?', 'booking');
|
422 |
$wpbc_all_translations[] = __('Auto cancellation / approval', 'booking');
|
423 |
$wpbc_all_translations[] = __('Plugin Menu', 'booking');
|
424 |
$wpbc_all_translations[] = __('Uninstall', 'booking');
|
425 |
+
$wpbc_all_translations[] = __('Calendar Overview (admin panel)', 'booking');
|
426 |
+
$wpbc_all_translations[] = __('Timeline (front-end)', 'booking');
|
427 |
$wpbc_all_translations[] = __('Auto cancellation / auto approval of bookings', 'booking');
|
428 |
$wpbc_all_translations[] = __('Information', 'booking');
|
429 |
$wpbc_all_translations[] = __('Uninstall / deactivation', 'booking');
|
430 |
+
$wpbc_all_translations[] = __('Translations', 'booking');
|
431 |
+
$wpbc_all_translations[] = __('Update Translations', 'booking');
|
432 |
+
$wpbc_all_translations[] = __('Restore all dismissed windows', 'booking');
|
433 |
$wpbc_all_translations[] = __('Upgrade', 'booking');
|
434 |
$wpbc_all_translations[] = __('Nothing Found', 'booking');
|
435 |
$wpbc_all_translations[] = __('Labels', 'booking');
|
470 |
$wpbc_all_translations[] = __('Agenda', 'booking');
|
471 |
$wpbc_all_translations[] = __('New booking(s) made today', 'booking');
|
472 |
$wpbc_all_translations[] = __('Bookings for today', 'booking');
|
473 |
+
$wpbc_all_translations[] = __('Test & Debug', 'booking');
|
474 |
$wpbc_all_translations[] = __('Insert booking calendar', 'booking');
|
475 |
$wpbc_all_translations[] = __('Booking calendar', 'booking');
|
476 |
$wpbc_all_translations[] = __('Insert Shortcode', 'booking');
|
611 |
$wpbc_all_translations[] = __('Current week', 'booking');
|
612 |
$wpbc_all_translations[] = __('Next week', 'booking');
|
613 |
$wpbc_all_translations[] = __('Next 4 weeks', 'booking');
|
614 |
+
$wpbc_all_translations[] = __('Previous', 'booking');
|
615 |
$wpbc_all_translations[] = __('Previous 3 months', 'booking');
|
616 |
$wpbc_all_translations[] = __('Previous month', 'booking');
|
617 |
$wpbc_all_translations[] = __('Current month', 'booking');
|
632 |
$wpbc_all_translations[] = __('Email copy to', 'booking');
|
633 |
$wpbc_all_translations[] = __('Dismiss', 'booking');
|
634 |
$wpbc_all_translations[] = __('Probably you updated your paid version of Booking Calendar by free version or update process failed. You can request the new update of your paid version at %1sthis page%2s.', 'booking');
|
635 |
+
$wpbc_all_translations[] = __('Some of your translations need updating. Sit tight for a few more seconds while we update them as well.', 'booking');
|
636 |
+
$wpbc_all_translations[] = __('Your translations are all up to date.', 'booking');
|
637 |
+
$wpbc_all_translations[] = __('Update package not available.', 'booking');
|
638 |
+
$wpbc_all_translations[] = __('Downloading translation from %s…', 'booking');
|
639 |
+
$wpbc_all_translations[] = __('Unpacking the update…', 'booking');
|
640 |
+
$wpbc_all_translations[] = __('Translation update failed.', 'booking');
|
641 |
+
$wpbc_all_translations[] = __('Translation updated successfully.', 'booking');
|
642 |
+
$wpbc_all_translations[] = __('Removing the old version of the translation…', 'booking');
|
643 |
+
$wpbc_all_translations[] = __('Could not remove the old translation.', 'booking');
|
644 |
$wpbc_all_translations[] = __('Purchase', 'booking');
|
645 |
$wpbc_all_translations[] = __('Upgrade Now', 'booking');
|
646 |
+
$wpbc_all_translations[] = __('Test', 'booking');
|
647 |
$wpbc_all_translations[] = __('%sError!%s Request do not pass security check! Please refresh the page and try one more time.', 'booking');
|
648 |
$wpbc_all_translations[] = __('Please check more %shere%s', 'booking');
|
649 |
$wpbc_all_translations[] = __('Set as Unread', 'booking');
|
663 |
$wpbc_all_translations[] = __('Updated successfully', 'booking');
|
664 |
$wpbc_all_translations[] = __('Error!', 'booking');
|
665 |
$wpbc_all_translations[] = __('Probably these date(s) just was booking by other visitor. Please reload this page and make booking again.', 'booking');
|
666 |
+
$wpbc_all_translations[] = __('Default calendar view mode', 'booking');
|
667 |
$wpbc_all_translations[] = __('Timeline type', 'booking');
|
668 |
$wpbc_all_translations[] = __('Select type of timeline to load', 'booking');
|
669 |
$wpbc_all_translations[] = __('Flex Timeline', 'booking');
|
996 |
$wpbc_all_translations[] = __('Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the booking resource (%s) or %sAdd a new seasonal filter%s', 'booking');
|
997 |
$wpbc_all_translations[] = __('Set Valuation Days', 'booking');
|
998 |
$wpbc_all_translations[] = __('Status', 'booking');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
999 |
}
|
core/{lib → lang}/wpbc_all_translations1.php
RENAMED
@@ -1,4 +1,31 @@
|
|
1 |
<?php function wpbc_all_translations2() { $wpbc_all_translations = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
$wpbc_all_translations[] = __('Months', 'booking');
|
3 |
$wpbc_all_translations[] = __('January', 'booking');
|
4 |
$wpbc_all_translations[] = __('February', 'booking');
|
@@ -874,4 +901,15 @@
|
|
874 |
$wpbc_all_translations[] = __('Currency Settings', 'booking');
|
875 |
$wpbc_all_translations[] = __('Export page to CSV', 'booking');
|
876 |
$wpbc_all_translations[] = __('Export all pages to CSV', 'booking');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
877 |
}
|
1 |
<?php function wpbc_all_translations2() { $wpbc_all_translations = array();
|
2 |
+
$wpbc_all_translations[] = __('Costs', 'booking');
|
3 |
+
$wpbc_all_translations[] = __('Add new cost', 'booking');
|
4 |
+
$wpbc_all_translations[] = __('Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of the list.', 'booking');
|
5 |
+
$wpbc_all_translations[] = __('Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after terms %s', 'booking');
|
6 |
+
$wpbc_all_translations[] = __('Together', 'booking');
|
7 |
+
$wpbc_all_translations[] = __('For', 'booking');
|
8 |
+
$wpbc_all_translations[] = __('%s and %s terms have higher priority than a range %s days.', 'booking');
|
9 |
+
$wpbc_all_translations[] = __('%s - definition of check-out date.', 'booking');
|
10 |
+
$wpbc_all_translations[] = __('Example', 'booking');
|
11 |
+
$wpbc_all_translations[] = __('Specific cost will take affect, only if it active (the box at the left side is checked) and if "Check In" (start) date belong to selected season filter or if set "Any days".', 'booking');
|
12 |
+
$wpbc_all_translations[] = __(' for all days!', 'booking');
|
13 |
+
$wpbc_all_translations[] = __('from the cost of 1 day ', 'booking');
|
14 |
+
$wpbc_all_translations[] = __('per 1 day', 'booking');
|
15 |
+
$wpbc_all_translations[] = __('to', 'booking');
|
16 |
+
$wpbc_all_translations[] = __('Additional cost in %s per 1 day', 'booking');
|
17 |
+
$wpbc_all_translations[] = __('Customization of rates, valuation days cost and deposit amount ', 'booking');
|
18 |
+
$wpbc_all_translations[] = __('Costs and Rates Settings', 'booking');
|
19 |
+
$wpbc_all_translations[] = __('Set Rate', 'booking');
|
20 |
+
$wpbc_all_translations[] = __('Set Deposit Amount', 'booking');
|
21 |
+
$wpbc_all_translations[] = __('Valuation days', 'booking');
|
22 |
+
$wpbc_all_translations[] = __('Deposit', 'booking');
|
23 |
+
$wpbc_all_translations[] = __('Customizaton of Season Filters', 'booking');
|
24 |
+
$wpbc_all_translations[] = __('Specific Dates Filter', 'booking');
|
25 |
+
$wpbc_all_translations[] = __('Conditional Dates Filter', 'booking');
|
26 |
+
$wpbc_all_translations[] = __('Filter Name', 'booking');
|
27 |
+
$wpbc_all_translations[] = __('Type filter name', 'booking');
|
28 |
+
$wpbc_all_translations[] = __('Weekdays', 'booking');
|
29 |
$wpbc_all_translations[] = __('Months', 'booking');
|
30 |
$wpbc_all_translations[] = __('January', 'booking');
|
31 |
$wpbc_all_translations[] = __('February', 'booking');
|
901 |
$wpbc_all_translations[] = __('Currency Settings', 'booking');
|
902 |
$wpbc_all_translations[] = __('Export page to CSV', 'booking');
|
903 |
$wpbc_all_translations[] = __('Export all pages to CSV', 'booking');
|
904 |
+
$wpbc_all_translations[] = __('Start - end time', 'booking');
|
905 |
+
$wpbc_all_translations[] = __('Start time', 'booking');
|
906 |
+
$wpbc_all_translations[] = __('End time', 'booking');
|
907 |
+
$wpbc_all_translations[] = __('Start updating translation files', 'booking');
|
908 |
+
$wpbc_all_translations[] = __('End updating translation files', 'booking');
|
909 |
+
$wpbc_all_translations[] = __('Go to Settings', 'booking');
|
910 |
+
$wpbc_all_translations[] = __('Do not use change over days on certain pages', 'booking');
|
911 |
+
$wpbc_all_translations[] = __('Activate the list of pages that do not use the change over days functionality.', 'booking');
|
912 |
+
$wpbc_all_translations[] = __('Relative URLs of pages where you shouldn\'t use the change over days functionality', 'booking');
|
913 |
+
$wpbc_all_translations[] = __('Enter the relative URLs of the pages for which you do not want to use the change over days functionality. Enter one URL per line. Example: %s', 'booking');
|
914 |
+
$wpbc_all_translations[] = __('Show translations status', 'booking');
|
915 |
}
|
core/lang/wpdev-country-list-de_DE.php
ADDED
@@ -0,0 +1,254 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Here you can translate countries into your languages, which is non-English //FixIn: 8.9.4.9
|
3 |
+
|
4 |
+
// ISO 3166-1 country names and codes from https://www.iso.org/obp/ui/
|
5 |
+
global $wpbc_booking_country_list;
|
6 |
+
$wpbc_booking_country_list = array(
|
7 |
+
"DE" => "Germany",
|
8 |
+
"AF" => "Afghanistan",
|
9 |
+
"AX" => "Aland Islands",
|
10 |
+
"AL" => "Albania",
|
11 |
+
"DZ" => "Algeria",
|
12 |
+
"AS" => "American Samoa",
|
13 |
+
"AD" => "Andorra",
|
14 |
+
"AO" => "Angola",
|
15 |
+
"AI" => "Anguilla",
|
16 |
+
"AQ" => "Antarctica",
|
17 |
+
"AG" => "Antigua and Barbuda",
|
18 |
+
"AR" => "Argentina",
|
19 |
+
"AM" => "Armenia",
|
20 |
+
"AW" => "Aruba",
|
21 |
+
"AU" => "Australia",
|
22 |
+
"AT" => "Austria",
|
23 |
+
"AZ" => "Azerbaijan",
|
24 |
+
"BS" => "Bahamas",
|
25 |
+
"BH" => "Bahrain",
|
26 |
+
"BD" => "Bangladesh",
|
27 |
+
"BB" => "Barbados",
|
28 |
+
"BY" => "Belarus",
|
29 |
+
"BE" => "Belgium",
|
30 |
+
"BZ" => "Belize",
|
31 |
+
"BJ" => "Benin",
|
32 |
+
"BM" => "Bermuda",
|
33 |
+
"BT" => "Bhutan",
|
34 |
+
"BO" => "Bolivia",
|
35 |
+
"BA" => "Bosnia and Herzegovina",
|
36 |
+
"BW" => "Botswana",
|
37 |
+
"BV" => "Bouvet Island",
|
38 |
+
"BR" => "Brazil",
|
39 |
+
"IO" => "British Indian Ocean Territory",
|
40 |
+
"BN" => "Brunei Darussalam",
|
41 |
+
"BG" => "Bulgaria",
|
42 |
+
"BF" => "Burkina Faso",
|
43 |
+
"BI" => "Burundi",
|
44 |
+
"KH" => "Cambodia",
|
45 |
+
"CM" => "Cameroon",
|
46 |
+
"CA" => "Canada",
|
47 |
+
"CV" => "Cape Verde",
|
48 |
+
"KY" => "Cayman Islands",
|
49 |
+
"CF" => "Central African Republic",
|
50 |
+
"TD" => "Chad",
|
51 |
+
"CL" => "Chile",
|
52 |
+
"CN" => "China",
|
53 |
+
"CX" => "Christmas Island",
|
54 |
+
"CC" => "Cocos (Keeling) Islands",
|
55 |
+
"CO" => "Colombia",
|
56 |
+
"KM" => "Comoros",
|
57 |
+
"CG" => "Congo",
|
58 |
+
"CD" => "Congo, The Democratic Republic of the",
|
59 |
+
"CK" => "Cook Islands",
|
60 |
+
"CR" => "Costa Rica",
|
61 |
+
"CI" => "Côte d'Ivoire",
|
62 |
+
"HR" => "Croatia",
|
63 |
+
"CU" => "Cuba",
|
64 |
+
"CY" => "Cyprus",
|
65 |
+
"CZ" => "Czech Republic",
|
66 |
+
"DK" => "Denmark",
|
67 |
+
"DJ" => "Djibouti",
|
68 |
+
"DM" => "Dominica",
|
69 |
+
"DO" => "Dominican Republic",
|
70 |
+
"EC" => "Ecuador",
|
71 |
+
"EG" => "Egypt",
|
72 |
+
"SV" => "El Salvador",
|
73 |
+
"GQ" => "Equatorial Guinea",
|
74 |
+
"ER" => "Eritrea",
|
75 |
+
"EE" => "Estonia",
|
76 |
+
"ET" => "Ethiopia",
|
77 |
+
"FK" => "Falkland Islands (Malvinas)",
|
78 |
+
"FO" => "Faroe Islands",
|
79 |
+
"FJ" => "Fiji",
|
80 |
+
"FI" => "Finland",
|
81 |
+
"FR" => "France",
|
82 |
+
"GF" => "French Guiana",
|
83 |
+
"PF" => "French Polynesia",
|
84 |
+
"TF" => "French Southern Territories",
|
85 |
+
"GA" => "Gabon",
|
86 |
+
"GB" => "United Kingdom",
|
87 |
+
"GM" => "Gambia",
|
88 |
+
"GE" => "Georgia",
|
89 |
+
"GH" => "Ghana",
|
90 |
+
"GI" => "Gibraltar",
|
91 |
+
"GR" => "Greece",
|
92 |
+
"GL" => "Greenland",
|
93 |
+
"GD" => "Grenada",
|
94 |
+
"GP" => "Guadeloupe",
|
95 |
+
"GU" => "Guam",
|
96 |
+
"GT" => "Guatemala",
|
97 |
+
"GG" => "Guernsey",
|
98 |
+
"GN" => "Guinea",
|
99 |
+
"GW" => "Guinea-Bissau",
|
100 |
+
"GY" => "Guyana",
|
101 |
+
"HT" => "Haiti",
|
102 |
+
"HM" => "Heard Island and McDonald Islands",
|
103 |
+
"VA" => "Holy See (Vatican City State)",
|
104 |
+
"HN" => "Honduras",
|
105 |
+
"HK" => "Hong Kong",
|
106 |
+
"HU" => "Hungary",
|
107 |
+
"IS" => "Iceland",
|
108 |
+
"IN" => "India",
|
109 |
+
"ID" => "Indonesia",
|
110 |
+
"IR" => "Iran, Islamic Republic of",
|
111 |
+
"IQ" => "Iraq",
|
112 |
+
"IE" => "Ireland",
|
113 |
+
"IM" => "Isle of Man",
|
114 |
+
"IL" => "Israel",
|
115 |
+
"IT" => "Italy",
|
116 |
+
"JM" => "Jamaica",
|
117 |
+
"JP" => "Japan",
|
118 |
+
"JE" => "Jersey",
|
119 |
+
"JO" => "Jordan",
|
120 |
+
"KZ" => "Kazakhstan",
|
121 |
+
"KE" => "Kenya",
|
122 |
+
"KI" => "Kiribati",
|
123 |
+
"KP" => "Korea, Democratic People's Republic of",
|
124 |
+
"KR" => "Korea, Republic of",
|
125 |
+
"KW" => "Kuwait",
|
126 |
+
"KG" => "Kyrgyzstan",
|
127 |
+
"LA" => "Lao People's Democratic Republic",
|
128 |
+
"LV" => "Latvia",
|
129 |
+
"LB" => "Lebanon",
|
130 |
+
"LS" => "Lesotho",
|
131 |
+
"LR" => "Liberia",
|
132 |
+
"LY" => "Libyan Arab Jamahiriya",
|
133 |
+
"LI" => "Liechtenstein",
|
134 |
+
"LT" => "Lithuania",
|
135 |
+
"LU" => "Luxembourg",
|
136 |
+
"MO" => "Macao",
|
137 |
+
"MK" => "Macedonia, The Former Yugoslav Republic of",
|
138 |
+
"MG" => "Madagascar",
|
139 |
+
"MW" => "Malawi",
|
140 |
+
"MY" => "Malaysia",
|
141 |
+
"MV" => "Maldives",
|
142 |
+
"ML" => "Mali",
|
143 |
+
"MT" => "Malta",
|
144 |
+
"MH" => "Marshall Islands",
|
145 |
+
"MQ" => "Martinique",
|
146 |
+
"MR" => "Mauritania",
|
147 |
+
"MU" => "Mauritius",
|
148 |
+
"YT" => "Mayotte",
|
149 |
+
"MX" => "Mexico",
|
150 |
+
"FM" => "Micronesia, Federated States of",
|
151 |
+
"MD" => "Moldova",
|
152 |
+
"MC" => "Monaco",
|
153 |
+
"MN" => "Mongolia",
|
154 |
+
"ME" => "Montenegro",
|
155 |
+
"MS" => "Montserrat",
|
156 |
+
"MA" => "Morocco",
|
157 |
+
"MZ" => "Mozambique",
|
158 |
+
"MM" => "Myanmar",
|
159 |
+
"NA" => "Namibia",
|
160 |
+
"NR" => "Nauru",
|
161 |
+
"NP" => "Nepal",
|
162 |
+
"NL" => "Netherlands",
|
163 |
+
"AN" => "Netherlands Antilles",
|
164 |
+
"NC" => "New Caledonia",
|
165 |
+
"NZ" => "New Zealand",
|
166 |
+
"NI" => "Nicaragua",
|
167 |
+
"NE" => "Niger",
|
168 |
+
"NG" => "Nigeria",
|
169 |
+
"NU" => "Niue",
|
170 |
+
"NF" => "Norfolk Island",
|
171 |
+
"MP" => "Northern Mariana Islands",
|
172 |
+
"NO" => "Norway",
|
173 |
+
"OM" => "Oman",
|
174 |
+
"PK" => "Pakistan",
|
175 |
+
"PW" => "Palau",
|
176 |
+
"PS" => "Palestinian Territory, Occupied",
|
177 |
+
"PA" => "Panama",
|
178 |
+
"PG" => "Papua New Guinea",
|
179 |
+
"PY" => "Paraguay",
|
180 |
+
"PE" => "Peru",
|
181 |
+
"PH" => "Philippines",
|
182 |
+
"PN" => "Pitcairn",
|
183 |
+
"PL" => "Poland",
|
184 |
+
"PT" => "Portugal",
|
185 |
+
"PR" => "Puerto Rico",
|
186 |
+
"QA" => "Qatar",
|
187 |
+
"RE" => "Réunion",
|
188 |
+
"RO" => "Romania",
|
189 |
+
"RU" => "Russian Federation",
|
190 |
+
"RW" => "Rwanda",
|
191 |
+
"BL" => "Saint Barthélemy",
|
192 |
+
"SH" => "Saint Helena",
|
193 |
+
"KN" => "Saint Kitts and Nevis",
|
194 |
+
"LC" => "Saint Lucia",
|
195 |
+
"MF" => "Saint Martin",
|
196 |
+
"PM" => "Saint Pierre and Miquelon",
|
197 |
+
"VC" => "Saint Vincent and the Grenadines",
|
198 |
+
"WS" => "Samoa",
|
199 |
+
"SM" => "San Marino",
|
200 |
+
"ST" => "Sao Tome and Principe",
|
201 |
+
"SA" => "Saudi Arabia",
|
202 |
+
"SN" => "Senegal",
|
203 |
+
"RS" => "Serbia",
|
204 |
+
"SC" => "Seychelles",
|
205 |
+
"SL" => "Sierra Leone",
|
206 |
+
"SG" => "Singapore",
|
207 |
+
"SK" => "Slovakia",
|
208 |
+
"SI" => "Slovenia",
|
209 |
+
"SB" => "Solomon Islands",
|
210 |
+
"SO" => "Somalia",
|
211 |
+
"ZA" => "South Africa",
|
212 |
+
"GS" => "South Georgia and the South Sandwich Islands",
|
213 |
+
"ES" => "Spain",
|
214 |
+
"LK" => "Sri Lanka",
|
215 |
+
"SD" => "Sudan",
|
216 |
+
"SR" => "Suriname",
|
217 |
+
"SJ" => "Svalbard and Jan Mayen",
|
218 |
+
"SZ" => "Swaziland",
|
219 |
+
"SE" => "Sweden",
|
220 |
+
"CH" => "Switzerland",
|
221 |
+
"SY" => "Syrian Arab Republic",
|
222 |
+
"TW" => "Taiwan, Province of China",
|
223 |
+
"TJ" => "Tajikistan",
|
224 |
+
"TZ" => "Tanzania, United Republic of",
|
225 |
+
"TH" => "Thailand",
|
226 |
+
"TL" => "Timor-Leste",
|
227 |
+
"TG" => "Togo",
|
228 |
+
"TK" => "Tokelau",
|
229 |
+
"TO" => "Tonga",
|
230 |
+
"TT" => "Trinidad and Tobago",
|
231 |
+
"TN" => "Tunisia",
|
232 |
+
"TR" => "Turkey",
|
233 |
+
"TM" => "Turkmenistan",
|
234 |
+
"TC" => "Turks and Caicos Islands",
|
235 |
+
"TV" => "Tuvalu",
|
236 |
+
"UG" => "Uganda",
|
237 |
+
"UA" => "Ukraine",
|
238 |
+
"AE" => "United Arab Emirates",
|
239 |
+
"GB" => "United Kingdom",
|
240 |
+
"US" => "United States",
|
241 |
+
"UM" => "United States Minor Outlying Islands",
|
242 |
+
"UY" => "Uruguay",
|
243 |
+
"UZ" => "Uzbekistan",
|
244 |
+
"VU" => "Vanuatu",
|
245 |
+
"VE" => "Venezuela",
|
246 |
+
"VN" => "Viet Nam",
|
247 |
+
"VG" => "Virgin Islands, British",
|
248 |
+
"VI" => "Virgin Islands, U.S.",
|
249 |
+
"WF" => "Wallis and Futuna",
|
250 |
+
"EH" => "Western Sahara",
|
251 |
+
"YE" => "Yemen",
|
252 |
+
"ZM" => "Zambia",
|
253 |
+
"ZW" => "Zimbabwe"
|
254 |
+
);
|
core/lang/wpdev-country-list-it_IT.php
ADDED
@@ -0,0 +1,254 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Here you can translate countries into your languages, which is non-English //FixIn: 8.9.4.9
|
3 |
+
|
4 |
+
// ISO 3166-1 country names and codes from https://www.iso.org/obp/ui/
|
5 |
+
global $wpbc_booking_country_list;
|
6 |
+
$wpbc_booking_country_list = array(
|
7 |
+
"IT" => "Italia",
|
8 |
+
"AF" => "Afghanistan",
|
9 |
+
"AX" => "Aland Islands",
|
10 |
+
"AL" => "Albania",
|
11 |
+
"DZ" => "Algeria",
|
12 |
+
"AS" => "American Samoa",
|
13 |
+
"AD" => "Andorra",
|
14 |
+
"AO" => "Angola",
|
15 |
+
"AI" => "Anguilla",
|
16 |
+
"AQ" => "Antarctica",
|
17 |
+
"AG" => "Antigua and Barbuda",
|
18 |
+
"AN" => "Antille olandesi",
|
19 |
+
"AR" => "Argentina",
|
20 |
+
"AM" => "Armenia",
|
21 |
+
"AW" => "Aruba",
|
22 |
+
"AU" => "Australia",
|
23 |
+
"AT" => "Austria",
|
24 |
+
"AZ" => "Azerbaijan",
|
25 |
+
"BS" => "Bahamas",
|
26 |
+
"BH" => "Bahrain",
|
27 |
+
"BD" => "Bangladesh",
|
28 |
+
"BB" => "Barbados",
|
29 |
+
"BY" => "Belarus",
|
30 |
+
"BE" => "Belgio",
|
31 |
+
"BZ" => "Belize",
|
32 |
+
"BJ" => "Benin",
|
33 |
+
"BM" => "Bermuda",
|
34 |
+
"BT" => "Bhutan",
|
35 |
+
"BO" => "Bolivia",
|
36 |
+
"BA" => "Bosnia Herzegovina",
|
37 |
+
"BW" => "Botswana",
|
38 |
+
"BV" => "Bouvet Island",
|
39 |
+
"BR" => "Brasile",
|
40 |
+
"IO" => "British Indian Ocean Territory",
|
41 |
+
"BN" => "Brunei Darussalam",
|
42 |
+
"BG" => "Bulgaria",
|
43 |
+
"BF" => "Burkina Faso",
|
44 |
+
"BI" => "Burundi",
|
45 |
+
"KH" => "Cambogia",
|
46 |
+
"CM" => "Cameroon",
|
47 |
+
"CA" => "Canada",
|
48 |
+
"CV" => "Capo Verde",
|
49 |
+
"KY" => "Cayman Islands",
|
50 |
+
"CF" => "Central African Republic",
|
51 |
+
"TD" => "Chad",
|
52 |
+
"CL" => "Cile",
|
53 |
+
"CN" => "Cina",
|
54 |
+
"CX" => "Christmas Island",
|
55 |
+
"CC" => "Cocos (Keeling) Islands",
|
56 |
+
"CO" => "Colombia",
|
57 |
+
"KM" => "Comoros",
|
58 |
+
"CG" => "Congo",
|
59 |
+
"CD" => "Congo, La Republica Democratica del",
|
60 |
+
"CK" => "Cook Islands",
|
61 |
+
"KP" => "Corea, Democratic People's Republic of",
|
62 |
+
"KR" => "Corea, Republica di",
|
63 |
+
"CR" => "Costa Rica",
|
64 |
+
"CI" => "Costa d'Avorio",
|
65 |
+
"HR" => "Croazia",
|
66 |
+
"CU" => "Cuba",
|
67 |
+
"CY" => "Cipro",
|
68 |
+
"DK" => "Danimarca",
|
69 |
+
"DJ" => "Djibouti",
|
70 |
+
"DM" => "Dominica",
|
71 |
+
"DO" => "Dominican Republic",
|
72 |
+
"EC" => "Ecuador",
|
73 |
+
"EG" => "Egitto",
|
74 |
+
"SV" => "El Salvador",
|
75 |
+
"AE" => "Emirati Arabi Uniti",
|
76 |
+
"GQ" => "Equatorial Guinea",
|
77 |
+
"ER" => "Eritrea",
|
78 |
+
"EE" => "Estonia",
|
79 |
+
"ET" => "Etiopia",
|
80 |
+
"FK" => "Falkland Islands (Malvinas)",
|
81 |
+
"FO" => "Faroe Islands",
|
82 |
+
"FJ" => "Fiji",
|
83 |
+
"PH" => "Filippine",
|
84 |
+
"FI" => "Finlandia",
|
85 |
+
"FR" => "Francia",
|
86 |
+
"GF" => "French Guiana",
|
87 |
+
"PF" => "French Polynesia",
|
88 |
+
"TF" => "French Southern Territories",
|
89 |
+
"GA" => "Gabon",
|
90 |
+
"GM" => "Gambia",
|
91 |
+
"GE" => "Georgia",
|
92 |
+
"DE" => "Germania",
|
93 |
+
"GH" => "Ghana",
|
94 |
+
"GI" => "Gibilterra",
|
95 |
+
"GR" => "Grecia",
|
96 |
+
"GL" => "Groenlandia",
|
97 |
+
"GD" => "Granada",
|
98 |
+
"GP" => "Guadalupe",
|
99 |
+
"GU" => "Guam",
|
100 |
+
"GT" => "Guatemala",
|
101 |
+
"GG" => "Guernsey",
|
102 |
+
"GN" => "Guinea",
|
103 |
+
"GW" => "Guinea-Bissau",
|
104 |
+
"GY" => "Guyana",
|
105 |
+
"HT" => "Haiti",
|
106 |
+
"HM" => "Heard Island and McDonald Islands",
|
107 |
+
"VA" => "Holy See (Vatican City State)",
|
108 |
+
"HN" => "Honduras",
|
109 |
+
"HK" => "Hong Kong",
|
110 |
+
"IS" => "Islanda",
|
111 |
+
"IN" => "India",
|
112 |
+
"ID" => "Indonesia",
|
113 |
+
"IR" => "Iran, Islamic Republic of",
|
114 |
+
"IQ" => "Iraq",
|
115 |
+
"IE" => "Irlanda",
|
116 |
+
"IM" => "Isle of Man",
|
117 |
+
"IL" => "Israele",
|
118 |
+
"IT" => "Italia",
|
119 |
+
"JM" => "Jamaica",
|
120 |
+
"JP" => "Japan",
|
121 |
+
"JE" => "Jersey",
|
122 |
+
"JO" => "Jordan",
|
123 |
+
"KZ" => "Kazakistan",
|
124 |
+
"KE" => "Kenya",
|
125 |
+
"KI" => "Kiribati",
|
126 |
+
"KW" => "Kuwait",
|
127 |
+
"KG" => "Kyrgyzstan",
|
128 |
+
"LA" => "Lao People's Democratic Republic",
|
129 |
+
"LV" => "Latvia",
|
130 |
+
"LB" => "Lebanon",
|
131 |
+
"LS" => "Lesotho",
|
132 |
+
"LR" => "Liberia",
|
133 |
+
"LY" => "Libyan Arab Jamahiriya",
|
134 |
+
"LI" => "Liechtenstein",
|
135 |
+
"LT" => "Lituania",
|
136 |
+
"LU" => "Lussemburgo",
|
137 |
+
"MO" => "Macao",
|
138 |
+
"MK" => "Macedonia, The Former Yugoslav Republic of",
|
139 |
+
"MG" => "Madagascar",
|
140 |
+
"MW" => "Malawi",
|
141 |
+
"MY" => "Malaysia",
|
142 |
+
"MV" => "Maldive",
|
143 |
+
"ML" => "Mali",
|
144 |
+
"MT" => "Malta",
|
145 |
+
"MH" => "Marshall Islands",
|
146 |
+
"MQ" => "Martinique",
|
147 |
+
"MR" => "Mauritania",
|
148 |
+
"MU" => "Mauritius",
|
149 |
+
"YT" => "Mayotte",
|
150 |
+
"MX" => "Messico",
|
151 |
+
"FM" => "Micronesia, Federated States of",
|
152 |
+
"MD" => "Moldova",
|
153 |
+
"MC" => "Monaco",
|
154 |
+
"MN" => "Mongolia",
|
155 |
+
"ME" => "Montenegro",
|
156 |
+
"MS" => "Montserrat",
|
157 |
+
"MA" => "Morocco",
|
158 |
+
"MZ" => "Mozambico",
|
159 |
+
"MM" => "Myanmar",
|
160 |
+
"NA" => "Namibia",
|
161 |
+
"NR" => "Nauru",
|
162 |
+
"NP" => "Nepal",
|
163 |
+
"NC" => "Nuova Caledonia",
|
164 |
+
"NZ" => "Nuova Zelanda",
|
165 |
+
"NI" => "Nicaragua",
|
166 |
+
"NE" => "Niger",
|
167 |
+
"NG" => "Nigeria",
|
168 |
+
"NU" => "Niue",
|
169 |
+
"NF" => "Norfolk Isole",
|
170 |
+
"MP" => "Northern Mariana Isole",
|
171 |
+
"NO" => "Norvegia",
|
172 |
+
"NL" => "Olanda",
|
173 |
+
"OM" => "Oman",
|
174 |
+
"PK" => "Pakistan",
|
175 |
+
"PW" => "Palau",
|
176 |
+
"PS" => "Palestinian Territory, Occupied",
|
177 |
+
"PA" => "Panama",
|
178 |
+
"PG" => "Papua Nuova Guinea",
|
179 |
+
"PY" => "Paraguay",
|
180 |
+
"PE" => "Peru",
|
181 |
+
"PN" => "Pitcairn",
|
182 |
+
"PL" => "Polonia",
|
183 |
+
"PT" => "Portogallo",
|
184 |
+
"PR" => "Porto Rico",
|
185 |
+
"QA" => "Qatar",
|
186 |
+
"GB" => "Regno Unito",
|
187 |
+
"CZ" => "Repubblica Ceca",
|
188 |
+
"RE" => "Réunion",
|
189 |
+
"RO" => "Romania",
|
190 |
+
"RU" => "Russia Federazione",
|
191 |
+
"RW" => "Rwanda",
|
192 |
+
"BL" => "Sant Barthélemy",
|
193 |
+
"SH" => "Sant Helena",
|
194 |
+
"KN" => "Sant Kitts and Nevis",
|
195 |
+
"LC" => "Santa Lucia",
|
196 |
+
"MF" => "San Martino",
|
197 |
+
"PM" => "San Pierre and Miquelon",
|
198 |
+
"VC" => "Saint Vincent and the Grenadines",
|
199 |
+
"WS" => "Samoa",
|
200 |
+
"SM" => "San Marino",
|
201 |
+
"ST" => "Sao Tome and Principe",
|
202 |
+
"SA" => "Saudita Arabia",
|
203 |
+
"SN" => "Senegal",
|
204 |
+
"RS" => "Serbia",
|
205 |
+
"SC" => "Seychelles",
|
206 |
+
"SL" => "Sierra Leone",
|
207 |
+
"SG" => "Singapore",
|
208 |
+
"SK" => "Slovacchia",
|
209 |
+
"SI" => "Slovenia",
|
210 |
+
"SB" => "Solomone Isole",
|
211 |
+
"SO" => "Somalia",
|
212 |
+
"ZA" => "Sud Africa",
|
213 |
+
"GS" => "Sud Georgia ed il Sud Sandwich Isole",
|
214 |
+
"ES" => "Spagna",
|
215 |
+
"LK" => "Sri Lanka",
|
216 |
+
"US" => "States Uniti",
|
217 |
+
"UM" => "Stati Uniti Minor Outlying Islands",
|
218 |
+
"SD" => "Sudan",
|
219 |
+
"SR" => "Suriname",
|
220 |
+
"SJ" => "Svalbard e Jan Mayen",
|
221 |
+
"SZ" => "Swaziland",
|
222 |
+
"SE" => "Svezia",
|
223 |
+
"CH" => "Svizzera",
|
224 |
+
"SY" => "Siria Republica Araba",
|
225 |
+
"TW" => "Taiwan, Provincia di Cina",
|
226 |
+
"TJ" => "Tajikistan",
|
227 |
+
"TZ" => "Tanzania, Repubblica Unita di",
|
228 |
+
"TH" => "Tailandia",
|
229 |
+
"TL" => "Timor-Leste",
|
230 |
+
"TG" => "Togo",
|
231 |
+
"TK" => "Tokelau",
|
232 |
+
"TO" => "Tonga",
|
233 |
+
"TT" => "Trinidad e Tobago",
|
234 |
+
"TN" => "Tunisia",
|
235 |
+
"TR" => "Turchia",
|
236 |
+
"TM" => "Turkmenistan",
|
237 |
+
"TC" => "Turks e Caicos Isole",
|
238 |
+
"TV" => "Tuvalu",
|
239 |
+
"UG" => "Uganda",
|
240 |
+
"UA" => "Ucraina",
|
241 |
+
"HU" => "Ungheria",
|
242 |
+
"UY" => "Uruguay",
|
243 |
+
"UZ" => "Uzbekistan",
|
244 |
+
"VU" => "Vanuatu",
|
245 |
+
"VE" => "Venezuela",
|
246 |
+
"VN" => "Viet Nam",
|
247 |
+
"VG" => "Virgin Islands, British",
|
248 |
+
"VI" => "Virgin Islands, U.S.",
|
249 |
+
"WF" => "Wallis and Futuna",
|
250 |
+
"EH" => "Western Sahara",
|
251 |
+
"YE" => "Yemen",
|
252 |
+
"ZM" => "Zambia",
|
253 |
+
"ZW" => "Zimbabwe"
|
254 |
+
);
|
core/lang/wpdev-country-list.php
ADDED
@@ -0,0 +1,254 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Here you can translate countries into your languages, which is non-English //FixIn: 8.9.4.9
|
3 |
+
|
4 |
+
// ISO 3166-1 country names and codes from https://www.iso.org/obp/ui/
|
5 |
+
global $wpbc_booking_country_list;
|
6 |
+
$wpbc_booking_country_list = array(
|
7 |
+
"GB" => "United Kingdom",
|
8 |
+
"AF" => "Afghanistan",
|
9 |
+
"AX" => "Aland Islands",
|
10 |
+
"AL" => "Albania",
|
11 |
+
"DZ" => "Algeria",
|
12 |
+
"AS" => "American Samoa",
|
13 |
+
"AD" => "Andorra",
|
14 |
+
"AO" => "Angola",
|
15 |
+
"AI" => "Anguilla",
|
16 |
+
"AQ" => "Antarctica",
|
17 |
+
"AG" => "Antigua and Barbuda",
|
18 |
+
"AR" => "Argentina",
|
19 |
+
"AM" => "Armenia",
|
20 |
+
"AW" => "Aruba",
|
21 |
+
"AU" => "Australia",
|
22 |
+
"AT" => "Austria",
|
23 |
+
"AZ" => "Azerbaijan",
|
24 |
+
"BS" => "Bahamas",
|
25 |
+
"BH" => "Bahrain",
|
26 |
+
"BD" => "Bangladesh",
|
27 |
+
"BB" => "Barbados",
|
28 |
+
"BY" => "Belarus",
|
29 |
+
"BE" => "Belgium",
|
30 |
+
"BZ" => "Belize",
|
31 |
+
"BJ" => "Benin",
|
32 |
+
"BM" => "Bermuda",
|
33 |
+
"BT" => "Bhutan",
|
34 |
+
"BO" => "Bolivia",
|
35 |
+
"BA" => "Bosnia and Herzegovina",
|
36 |
+
"BW" => "Botswana",
|
37 |
+
"BV" => "Bouvet Island",
|
38 |
+
"BR" => "Brazil",
|
39 |
+
"IO" => "British Indian Ocean Territory",
|
40 |
+
"BN" => "Brunei Darussalam",
|
41 |
+
"BG" => "Bulgaria",
|
42 |
+
"BF" => "Burkina Faso",
|
43 |
+
"BI" => "Burundi",
|
44 |
+
"KH" => "Cambodia",
|
45 |
+
"CM" => "Cameroon",
|
46 |
+
"CA" => "Canada",
|
47 |
+
"CV" => "Cape Verde",
|
48 |
+
"KY" => "Cayman Islands",
|
49 |
+
"CF" => "Central African Republic",
|
50 |
+
"TD" => "Chad",
|
51 |
+
"CL" => "Chile",
|
52 |
+
"CN" => "China",
|
53 |
+
"CX" => "Christmas Island",
|
54 |
+
"CC" => "Cocos (Keeling) Islands",
|
55 |
+
"CO" => "Colombia",
|
56 |
+
"KM" => "Comoros",
|
57 |
+
"CG" => "Congo",
|
58 |
+
"CD" => "Congo, The Democratic Republic of the",
|
59 |
+
"CK" => "Cook Islands",
|
60 |
+
"CR" => "Costa Rica",
|
61 |
+
"CI" => "Côte d'Ivoire",
|
62 |
+
"HR" => "Croatia",
|
63 |
+
"CU" => "Cuba",
|
64 |
+
"CY" => "Cyprus",
|
65 |
+
"CZ" => "Czech Republic",
|
66 |
+
"DK" => "Denmark",
|
67 |
+
"DJ" => "Djibouti",
|
68 |
+
"DM" => "Dominica",
|
69 |
+
"DO" => "Dominican Republic",
|
70 |
+
"EC" => "Ecuador",
|
71 |
+
"EG" => "Egypt",
|
72 |
+
"SV" => "El Salvador",
|
73 |
+
"GQ" => "Equatorial Guinea",
|
74 |
+
"ER" => "Eritrea",
|
75 |
+
"EE" => "Estonia",
|
76 |
+
"ET" => "Ethiopia",
|
77 |
+
"FK" => "Falkland Islands (Malvinas)",
|
78 |
+
"FO" => "Faroe Islands",
|
79 |
+
"FJ" => "Fiji",
|
80 |
+
"FI" => "Finland",
|
81 |
+
"FR" => "France",
|
82 |
+
"GF" => "French Guiana",
|
83 |
+
"PF" => "French Polynesia",
|
84 |
+
"TF" => "French Southern Territories",
|
85 |
+
"GA" => "Gabon",
|
86 |
+
"GM" => "Gambia",
|
87 |
+
"GE" => "Georgia",
|
88 |
+
"DE" => "Germany",
|
89 |
+
"GH" => "Ghana",
|
90 |
+
"GI" => "Gibraltar",
|
91 |
+
"GR" => "Greece",
|
92 |
+
"GL" => "Greenland",
|
93 |
+
"GD" => "Grenada",
|
94 |
+
"GP" => "Guadeloupe",
|
95 |
+
"GU" => "Guam",
|
96 |
+
"GT" => "Guatemala",
|
97 |
+
"GG" => "Guernsey",
|
98 |
+
"GN" => "Guinea",
|
99 |
+
"GW" => "Guinea-Bissau",
|
100 |
+
"GY" => "Guyana",
|
101 |
+
"HT" => "Haiti",
|
102 |
+
"HM" => "Heard Island and McDonald Islands",
|
103 |
+
"VA" => "Holy See (Vatican City State)",
|
104 |
+
"HN" => "Honduras",
|
105 |
+
"HK" => "Hong Kong",
|
106 |
+
"HU" => "Hungary",
|
107 |
+
"IS" => "Iceland",
|
108 |
+
"IN" => "India",
|
109 |
+
"ID" => "Indonesia",
|
110 |
+
"IR" => "Iran, Islamic Republic of",
|
111 |
+
"IQ" => "Iraq",
|
112 |
+
"IE" => "Ireland",
|
113 |
+
"IM" => "Isle of Man",
|
114 |
+
"IL" => "Israel",
|
115 |
+
"IT" => "Italy",
|
116 |
+
"JM" => "Jamaica",
|
117 |
+
"JP" => "Japan",
|
118 |
+
"JE" => "Jersey",
|
119 |
+
"JO" => "Jordan",
|
120 |
+
"KZ" => "Kazakhstan",
|
121 |
+
"KE" => "Kenya",
|
122 |
+
"KI" => "Kiribati",
|
123 |
+
"KP" => "Korea, Democratic People's Republic of",
|
124 |
+
"KR" => "Korea, Republic of",
|
125 |
+
"KW" => "Kuwait",
|
126 |
+
"KG" => "Kyrgyzstan",
|
127 |
+
"LA" => "Lao People's Democratic Republic",
|
128 |
+
"LV" => "Latvia",
|
129 |
+
"LB" => "Lebanon",
|
130 |
+
"LS" => "Lesotho",
|
131 |
+
"LR" => "Liberia",
|
132 |
+
"LY" => "Libyan Arab Jamahiriya",
|
133 |
+
"LI" => "Liechtenstein",
|
134 |
+
"LT" => "Lithuania",
|
135 |
+
"LU" => "Luxembourg",
|
136 |
+
"MO" => "Macao",
|
137 |
+
"MK" => "Macedonia, The Former Yugoslav Republic of",
|
138 |
+
"MG" => "Madagascar",
|
139 |
+
"MW" => "Malawi",
|
140 |
+
"MY" => "Malaysia",
|
141 |
+
"MV" => "Maldives",
|
142 |
+
"ML" => "Mali",
|
143 |
+
"MT" => "Malta",
|
144 |
+
"MH" => "Marshall Islands",
|
145 |
+
"MQ" => "Martinique",
|
146 |
+
"MR" => "Mauritania",
|
147 |
+
"MU" => "Mauritius",
|
148 |
+
"YT" => "Mayotte",
|
149 |
+
"MX" => "Mexico",
|
150 |
+
"FM" => "Micronesia, Federated States of",
|
151 |
+
"MD" => "Moldova",
|
152 |
+
"MC" => "Monaco",
|
153 |
+
"MN" => "Mongolia",
|
154 |
+
"ME" => "Montenegro",
|
155 |
+
"MS" => "Montserrat",
|
156 |
+
"MA" => "Morocco",
|
157 |
+
"MZ" => "Mozambique",
|
158 |
+
"MM" => "Myanmar",
|
159 |
+
"NA" => "Namibia",
|
160 |
+
"NR" => "Nauru",
|
161 |
+
"NP" => "Nepal",
|
162 |
+
"NL" => "Netherlands",
|
163 |
+
"AN" => "Netherlands Antilles",
|
164 |
+
"NC" => "New Caledonia",
|
165 |
+
"NZ" => "New Zealand",
|
166 |
+
"NI" => "Nicaragua",
|
167 |
+
"NE" => "Niger",
|
168 |
+
"NG" => "Nigeria",
|
169 |
+
"NU" => "Niue",
|
170 |
+
"NF" => "Norfolk Island",
|
171 |
+
"MP" => "Northern Mariana Islands",
|
172 |
+
"NO" => "Norway",
|
173 |
+
"OM" => "Oman",
|
174 |
+
"PK" => "Pakistan",
|
175 |
+
"PW" => "Palau",
|
176 |
+
"PS" => "Palestinian Territory, Occupied",
|
177 |
+
"PA" => "Panama",
|
178 |
+
"PG" => "Papua New Guinea",
|
179 |
+
"PY" => "Paraguay",
|
180 |
+
"PE" => "Peru",
|
181 |
+
"PH" => "Philippines",
|
182 |
+
"PN" => "Pitcairn",
|
183 |
+
"PL" => "Poland",
|
184 |
+
"PT" => "Portugal",
|
185 |
+
"PR" => "Puerto Rico",
|
186 |
+
"QA" => "Qatar",
|
187 |
+
"RE" => "Réunion",
|
188 |
+
"RO" => "Romania",
|
189 |
+
"RU" => "Russian Federation",
|
190 |
+
"RW" => "Rwanda",
|
191 |
+
"BL" => "Saint Barthélemy",
|
192 |
+
"SH" => "Saint Helena",
|
193 |
+
"KN" => "Saint Kitts and Nevis",
|
194 |
+
"LC" => "Saint Lucia",
|
195 |
+
"MF" => "Saint Martin",
|
196 |
+
"PM" => "Saint Pierre and Miquelon",
|
197 |
+
"VC" => "Saint Vincent and the Grenadines",
|
198 |
+
"WS" => "Samoa",
|
199 |
+
"SM" => "San Marino",
|
200 |
+
"ST" => "Sao Tome and Principe",
|
201 |
+
"SA" => "Saudi Arabia",
|
202 |
+
"SN" => "Senegal",
|
203 |
+
"RS" => "Serbia",
|
204 |
+
"SC" => "Seychelles",
|
205 |
+
"SL" => "Sierra Leone",
|
206 |
+
"SG" => "Singapore",
|
207 |
+
"SK" => "Slovakia",
|
208 |
+
"SI" => "Slovenia",
|
209 |
+
"SB" => "Solomon Islands",
|
210 |
+
"SO" => "Somalia",
|
211 |
+
"ZA" => "South Africa",
|
212 |
+
"GS" => "South Georgia and the South Sandwich Islands",
|
213 |
+
"ES" => "Spain",
|
214 |
+
"LK" => "Sri Lanka",
|
215 |
+
"SD" => "Sudan",
|
216 |
+
"SR" => "Suriname",
|
217 |
+
"SJ" => "Svalbard and Jan Mayen",
|
218 |
+
"SZ" => "Swaziland",
|
219 |
+
"SE" => "Sweden",
|
220 |
+
"CH" => "Switzerland",
|
221 |
+
"SY" => "Syrian Arab Republic",
|
222 |
+
"TW" => "Taiwan, Province of China",
|
223 |
+
"TJ" => "Tajikistan",
|
224 |
+
"TZ" => "Tanzania, United Republic of",
|
225 |
+
"TH" => "Thailand",
|
226 |
+
"TL" => "Timor-Leste",
|
227 |
+
"TG" => "Togo",
|
228 |
+
"TK" => "Tokelau",
|
229 |
+
"TO" => "Tonga",
|
230 |
+
"TT" => "Trinidad and Tobago",
|
231 |
+
"TN" => "Tunisia",
|
232 |
+
"TR" => "Turkey",
|
233 |
+
"TM" => "Turkmenistan",
|
234 |
+
"TC" => "Turks and Caicos Islands",
|
235 |
+
"TV" => "Tuvalu",
|
236 |
+
"UG" => "Uganda",
|
237 |
+
"UA" => "Ukraine",
|
238 |
+
"AE" => "United Arab Emirates",
|
239 |
+
"GB" => "United Kingdom",
|
240 |
+
"US" => "United States",
|
241 |
+
"UM" => "United States Minor Outlying Islands",
|
242 |
+
"UY" => "Uruguay",
|
243 |
+
"UZ" => "Uzbekistan",
|
244 |
+
"VU" => "Vanuatu",
|
245 |
+
"VE" => "Venezuela",
|
246 |
+
"VN" => "Viet Nam",
|
247 |
+
"VG" => "Virgin Islands, British",
|
248 |
+
"VI" => "Virgin Islands, U.S.",
|
249 |
+
"WF" => "Wallis and Futuna",
|
250 |
+
"EH" => "Western Sahara",
|
251 |
+
"YE" => "Yemen",
|
252 |
+
"ZM" => "Zambia",
|
253 |
+
"ZW" => "Zimbabwe"
|
254 |
+
);
|
core/lib/index.php
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
<?php
|
2 |
-
// Silence is golden.
|
3 |
-
?>
|
1 |
<?php
|
2 |
+
// Silence is golden.
|
|
core/lib/wpbc-ajax.php
CHANGED
@@ -53,7 +53,7 @@ function wpbc_check_nonce_in_admin_panel( $action_check = 'wpbc_ajax_admin_nonce
|
|
53 |
return wpdev_check_nonce_in_admin_panel( $action_check );
|
54 |
}
|
55 |
|
56 |
-
//FixIn: 8.4.5.1 function
|
57 |
|
58 |
////////////////////////////////////////////////////////////////////////////////
|
59 |
// A j a x H o o k s f o r s p e c i f i c A c t i o n s /////
|
@@ -650,8 +650,7 @@ function wpbc_ajax_WPBC_IMPORT_GCAL_EVENTS() {
|
|
650 |
////////////////////////////////////////////////////////////////////////////////
|
651 |
if ( is_admin() && ( defined( 'DOING_AJAX' ) ) && ( DOING_AJAX ) ) {
|
652 |
|
653 |
-
|
654 |
-
add_action( 'admin_init', 'wpbc_check_locale_for_ajax' );
|
655 |
|
656 |
// Hooks list
|
657 |
$actions_list = array( 'WPBC_TIMELINE_NAV' => 'both'
|
53 |
return wpdev_check_nonce_in_admin_panel( $action_check );
|
54 |
}
|
55 |
|
56 |
+
//FixIn: 8.4.5.1 function wpbc_check_ajax_locale__reload_it($locale) moved to ../wp-content/plugins/booking/core/wpbc-translation.php
|
57 |
|
58 |
////////////////////////////////////////////////////////////////////////////////
|
59 |
// A j a x H o o k s f o r s p e c i f i c A c t i o n s /////
|
650 |
////////////////////////////////////////////////////////////////////////////////
|
651 |
if ( is_admin() && ( defined( 'DOING_AJAX' ) ) && ( DOING_AJAX ) ) {
|
652 |
|
653 |
+
//FixIn: 8.9.4.5
|
|
|
654 |
|
655 |
// Hooks list
|
656 |
$actions_list = array( 'WPBC_TIMELINE_NAV' => 'both'
|
core/lib/wpdev-booking-class.php
CHANGED
@@ -12,6 +12,8 @@ class wpdev_booking {
|
|
12 |
|
13 |
function __construct() {
|
14 |
|
|
|
|
|
15 |
$this->popover_front_end_js_is_writed = false;
|
16 |
|
17 |
$this->captcha_instance = new wpdevReallySimpleCaptcha();
|
@@ -23,11 +25,6 @@ class wpdev_booking {
|
|
23 |
$this->wpdev_bk_personal = false;
|
24 |
}
|
25 |
|
26 |
-
// Set loading translation
|
27 |
-
add_action( 'plugins_loaded', 'wpbc_load_translation', 1000 );
|
28 |
-
|
29 |
-
// Check content according language shortcodes
|
30 |
-
add_bk_filter( 'wpdev_check_for_active_language', 'wpdev_check_for_active_language' );
|
31 |
|
32 |
// User defined - hooks
|
33 |
add_action( 'wpdev_bk_add_calendar', array( &$this, 'add_calendar_action' ), 10, 2 );
|
@@ -450,22 +447,59 @@ class wpdev_booking {
|
|
450 |
$booking_legend_is_show_item_partially = get_bk_option( 'booking_legend_is_show_item_partially');
|
451 |
$booking_legend_text_for_item_partially = get_bk_option( 'booking_legend_text_for_item_partially');
|
452 |
$booking_legend_text_for_item_partially = apply_bk_filter('wpdev_check_for_active_language', $booking_legend_text_for_item_partially );
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
|
|
458 |
<div class="check-in-div"><div></div></div>
|
459 |
<div class="check-out-div"><div></div></div>
|
460 |
-
<em>'
|
461 |
-
</div>'.
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
}
|
470 |
$my_result .= '</div><div class="wpdev_clear_hint"></div>';
|
471 |
}
|
@@ -541,7 +575,7 @@ class wpdev_booking {
|
|
541 |
|
542 |
//FixIn: 7.0.1.24
|
543 |
$is_booking_change_over_days_triangles = get_bk_option( 'booking_change_over_days_triangles' );
|
544 |
-
if ( $is_booking_change_over_days_triangles
|
545 |
$calendar = '<div class="wpbc_change_over_triangle">' . $calendar . '</div>';
|
546 |
}
|
547 |
|
@@ -665,7 +699,7 @@ class wpdev_booking {
|
|
665 |
|
666 |
$my_form.=' <div class="form-group">[captcha]</div>';
|
667 |
|
668 |
-
$my_form.=' <button class="btn btn-default" type="button" onclick="mybooking_submit(this.form,'.$my_boook_type.',\''.
|
669 |
|
670 |
//.'<p>'.__('Last Name (required)' ,'booking').':<br /> <span class="wpdev-form-control-wrap secondname'.$my_boook_type.'"><input type="text" name="secondname'.$my_boook_type.'" value="" class="wpdev-validates-as-required" size="40" /></span> </p>'.
|
671 |
//'<p>'.__('Email (required)' ,'booking').':<br /> <span class="wpdev-form-control-wrap email'.$my_boook_type.'"><input type="text" name="email'.$my_boook_type.'" value="" class="wpdev-validates-as-email wpdev-validates-as-required" size="40" /></span> </p>'.
|
@@ -673,7 +707,7 @@ class wpdev_booking {
|
|
673 |
//'<p>'.__('Details' ,'booking').':<br /> <span class="wpdev-form-control-wrap details'.$my_boook_type.'"><textarea name="details'.$my_boook_type.'" cols="40" rows="10"></textarea></span> </p>';
|
674 |
|
675 |
//$my_form .= '<p>[captcha]</p>';
|
676 |
-
//$my_form .= '<p><input type="button" value="'.__('Send' ,'booking').'" onclick="mybooking_submit(this.form,'.$my_boook_type.',\''.
|
677 |
// </div>';
|
678 |
|
679 |
return $my_form;
|
12 |
|
13 |
function __construct() {
|
14 |
|
15 |
+
// In AJAX request it DO NOT RUNNING. Important note
|
16 |
+
|
17 |
$this->popover_front_end_js_is_writed = false;
|
18 |
|
19 |
$this->captcha_instance = new wpdevReallySimpleCaptcha();
|
25 |
$this->wpdev_bk_personal = false;
|
26 |
}
|
27 |
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
// User defined - hooks
|
30 |
add_action( 'wpdev_bk_add_calendar', array( &$this, 'add_calendar_action' ), 10, 2 );
|
447 |
$booking_legend_is_show_item_partially = get_bk_option( 'booking_legend_is_show_item_partially');
|
448 |
$booking_legend_text_for_item_partially = get_bk_option( 'booking_legend_text_for_item_partially');
|
449 |
$booking_legend_text_for_item_partially = apply_bk_filter('wpdev_check_for_active_language', $booking_legend_text_for_item_partially );
|
450 |
+
|
451 |
+
if (0) {
|
452 |
+
if ( $booking_legend_is_show_item_partially == 'On' ) { // __('Partially booked' ,'booking')
|
453 |
+
if ( wpbc_is_booking_used_check_in_out_time() ) { //FixIn: 8.9.4.10
|
454 |
+
$my_result .= '<div class="wpdev_hint_with_text">' .
|
455 |
+
'<div class="block_check_in_out date_available date_approved check_in_time" >
|
456 |
<div class="check-in-div"><div></div></div>
|
457 |
<div class="check-out-div"><div></div></div>
|
458 |
+
<em>' . $text_for_day_cell . '</em>
|
459 |
+
</div>' .
|
460 |
+
'<div class="block_text">- ' . $booking_legend_text_for_item_partially . '</div>' .
|
461 |
+
'</div>';
|
462 |
+
} else {
|
463 |
+
$my_result .= '<div class="wpdev_hint_with_text"><div class="block_time timespartly">' . $text_for_day_cell . '<div class="date-content-bottom"></div></div><div class="block_text">- ' . $booking_legend_text_for_item_partially . '</div></div>';
|
464 |
+
}
|
465 |
+
}
|
466 |
+
}
|
467 |
+
|
468 |
+
//FixIn: 8.9.4.13
|
469 |
+
if ( $booking_legend_is_show_item_partially == 'On' ) {
|
470 |
+
|
471 |
+
$booking_timeslot_day_bg_as_available = get_bk_option( 'booking_timeslot_day_bg_as_available' );
|
472 |
+
$booking_timeslot_day_bg_as_available = ( $booking_timeslot_day_bg_as_available === 'On' ) ? ' wpbc_timeslot_day_bg_as_available' : '';
|
473 |
+
|
474 |
+
|
475 |
+
$my_partially = '<div class="wpdev_hint_with_text '.$booking_timeslot_day_bg_as_available.'">';
|
476 |
+
|
477 |
+
$my_partially .= '<div class="datepick-inline" style="width:30px !important;border: 0;box-shadow: none;float: left;">';
|
478 |
+
$my_partially .= '<table class="datepick" style=""><tbody><tr>';
|
479 |
+
if ( wpbc_is_booking_used_check_in_out_time() ) { //FixIn: 8.9.4.10
|
480 |
+
$my_partially .= '<td class="datepick-days-cell date_available date2approve timespartly check_in_time check_in_time_date2approve" style="height: 30px !important;">';
|
481 |
+
} else {
|
482 |
+
$my_partially .= '<td class="datepick-days-cell date_available date2approve timespartly times_clock" style="height: 30px !important;">';
|
483 |
+
}
|
484 |
+
$my_partially .= '<div class="wpbc-cell-box">';
|
485 |
+
$my_partially .= ' <div class="wpbc-diagonal-el">';
|
486 |
+
$my_partially .= ' <div class="wpbc-co-out"><svg height="100%" width="100%" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 0,99 99,0"></polygon><polygon points="0,0 0,100 49,100 49,0"></polygon></svg></div>';
|
487 |
+
$my_partially .= ' <div class="wpbc-co-in"><svg height="100%" width="100%" viewBox="0 0 98 98" preserveAspectRatio="none"><polygon points="0,99 99,99 99,0"></polygon><polygon points="50,98 98,98 98,0 50,0"></polygon></svg></div>';
|
488 |
+
$my_partially .= ' </div>';
|
489 |
+
$my_partially .= ' <div class="date-cell-content">';
|
490 |
+
$my_partially .= ' <div class="date-content-top"><div class="wpbc_time_dots">·</div></div>';
|
491 |
+
$my_partially .= ' <a>'.$text_for_day_cell.'</a>';
|
492 |
+
$my_partially .= ' <div class="date-content-bottom"></div>';
|
493 |
+
$my_partially .= ' </div>';
|
494 |
+
$my_partially .= '</div>';
|
495 |
+
$my_partially .= '</td></tr></tbody></table>';
|
496 |
+
$my_partially .= '</div>';
|
497 |
+
|
498 |
+
$my_partially .= '<div class="block_text">- '. $booking_legend_text_for_item_partially .'</div>';
|
499 |
+
$my_partially .= '</div>';
|
500 |
+
|
501 |
+
$my_result .= $my_partially;
|
502 |
+
}
|
503 |
}
|
504 |
$my_result .= '</div><div class="wpdev_clear_hint"></div>';
|
505 |
}
|
575 |
|
576 |
//FixIn: 7.0.1.24
|
577 |
$is_booking_change_over_days_triangles = get_bk_option( 'booking_change_over_days_triangles' );
|
578 |
+
if ( $is_booking_change_over_days_triangles !== 'Off' ) {
|
579 |
$calendar = '<div class="wpbc_change_over_triangle">' . $calendar . '</div>';
|
580 |
}
|
581 |
|
699 |
|
700 |
$my_form.=' <div class="form-group">[captcha]</div>';
|
701 |
|
702 |
+
$my_form.=' <button class="btn btn-default" type="button" onclick="mybooking_submit(this.form,'.$my_boook_type.',\''.wpbc_get_maybe_reloaded_booking_locale().'\');" >'.__('Send' ,'booking').'</button> ';
|
703 |
|
704 |
//.'<p>'.__('Last Name (required)' ,'booking').':<br /> <span class="wpdev-form-control-wrap secondname'.$my_boook_type.'"><input type="text" name="secondname'.$my_boook_type.'" value="" class="wpdev-validates-as-required" size="40" /></span> </p>'.
|
705 |
//'<p>'.__('Email (required)' ,'booking').':<br /> <span class="wpdev-form-control-wrap email'.$my_boook_type.'"><input type="text" name="email'.$my_boook_type.'" value="" class="wpdev-validates-as-email wpdev-validates-as-required" size="40" /></span> </p>'.
|
707 |
//'<p>'.__('Details' ,'booking').':<br /> <span class="wpdev-form-control-wrap details'.$my_boook_type.'"><textarea name="details'.$my_boook_type.'" cols="40" rows="10"></textarea></span> </p>';
|
708 |
|
709 |
//$my_form .= '<p>[captcha]</p>';
|
710 |
+
//$my_form .= '<p><input type="button" value="'.__('Send' ,'booking').'" onclick="mybooking_submit(this.form,'.$my_boook_type.',\''.wpbc_get_maybe_reloaded_booking_locale().'\');" /></p>
|
711 |
// </div>';
|
712 |
|
713 |
return $my_form;
|
core/sync/wpbc-gcal-class.php
CHANGED
@@ -522,9 +522,31 @@ class WPBC_Google_Calendar {
|
|
522 |
}
|
523 |
|
524 |
if ( isset($event_dates_start['dateTime']) && isset($event_dates_end['dateTime']) ) {
|
525 |
-
|
|
|
|
|
526 |
$end_date = $this->iso_to_ts( $event_dates_end['dateTime'] );
|
527 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
528 |
$range_time = date_i18n('H:i', $start_date ) . ' - ' . date_i18n('H:i', $end_date );
|
529 |
|
530 |
//$start_date = date_i18n('Y-m-d', $start_date );
|
@@ -567,7 +589,7 @@ class WPBC_Google_Calendar {
|
|
567 |
if ( ! in_array( $event['sync_gid'], $exist_bookings_guid ) ) {
|
568 |
|
569 |
$submit_array = $event['booking_submit_data'];
|
570 |
-
//debuge($submit_array);
|
571 |
$booking_id = apply_bk_filter('wpbc_add_new_booking_filter' , $submit_array );
|
572 |
|
573 |
$this->events[$key]['id'] = $booking_id;
|
@@ -708,7 +730,7 @@ class WPBC_Google_Calendar {
|
|
708 |
trash__restore_booking( 1, <?php //FixIn: 7.0.1 ?>
|
709 |
get_selected_bookings_id_in_this_list('#gcal_imported_events<?php echo $this->getResource(); ?> .events_items', 13)
|
710 |
, <?php echo $this->getUserID(); ?>
|
711 |
-
, '<?php echo
|
712 |
, 1
|
713 |
);
|
714 |
} "
|
522 |
}
|
523 |
|
524 |
if ( isset($event_dates_start['dateTime']) && isset($event_dates_end['dateTime']) ) {
|
525 |
+
|
526 |
+
|
527 |
+
$start_date = $this->iso_to_ts( $event_dates_start['dateTime'] );
|
528 |
$end_date = $this->iso_to_ts( $event_dates_end['dateTime'] );
|
529 |
+
|
530 |
+
//FixIn: 8.9.4.2
|
531 |
+
/**
|
532 |
+
* Check for situation, when we are having times starting or ending at the midnight: 00:00:00
|
533 |
+
* Because in this "IF section" we are checking events dates with times (in the previous "IF section" was FULL day events,
|
534 |
+
* we need to be sure that the event do not start or end at 00:00 Otherwise Booking Calendar will
|
535 |
+
* show such date as fully booked!
|
536 |
+
*/
|
537 |
+
$start_date_unix = $start_date;
|
538 |
+
$check_start_date = date_i18n( 'Y-m-d H:i:s', $start_date_unix );
|
539 |
+
if ( substr( $check_start_date, 11 ) === '00:00:00' ) {
|
540 |
+
$start_date_unix = $start_date_unix + 61;
|
541 |
+
$start_date = $start_date_unix;
|
542 |
+
}
|
543 |
+
$end_date_unix = $end_date;
|
544 |
+
$check_end_date = date_i18n( 'Y-m-d H:i:s', $end_date_unix );
|
545 |
+
if ( substr( $check_end_date, 11 ) === '00:00:00' ) {
|
546 |
+
$end_date_unix = $end_date_unix - 2;
|
547 |
+
$end_date = $end_date_unix;
|
548 |
+
}
|
549 |
+
|
550 |
$range_time = date_i18n('H:i', $start_date ) . ' - ' . date_i18n('H:i', $end_date );
|
551 |
|
552 |
//$start_date = date_i18n('Y-m-d', $start_date );
|
589 |
if ( ! in_array( $event['sync_gid'], $exist_bookings_guid ) ) {
|
590 |
|
591 |
$submit_array = $event['booking_submit_data'];
|
592 |
+
//debuge($submit_array);die;
|
593 |
$booking_id = apply_bk_filter('wpbc_add_new_booking_filter' , $submit_array );
|
594 |
|
595 |
$this->events[$key]['id'] = $booking_id;
|
730 |
trash__restore_booking( 1, <?php //FixIn: 7.0.1 ?>
|
731 |
get_selected_bookings_id_in_this_list('#gcal_imported_events<?php echo $this->getResource(); ?> .events_items', 13)
|
732 |
, <?php echo $this->getUserID(); ?>
|
733 |
+
, '<?php echo wpbc_get_maybe_reloaded_booking_locale(); ?>'
|
734 |
, 1
|
735 |
);
|
736 |
} "
|
core/sync/wpbc-gcal.php
CHANGED
@@ -316,9 +316,10 @@ add_bk_action('wpbc_silent_import_all_events' , 'wpbc_silent_import_all_events'
|
|
316 |
foreach ($wpbc_options as $key => $value) {
|
317 |
?><option <?php if( $booking_gcal_timezone == $key ) echo "selected"; ?> value="<?php echo $key; ?>"><?php echo $value; ?></option><?php
|
318 |
}
|
319 |
-
|
320 |
-
|
321 |
-
|
|
|
322 |
|
323 |
foreach ($wpbc_booking_region_cities_list as $region => $region_cities) {
|
324 |
|
316 |
foreach ($wpbc_options as $key => $value) {
|
317 |
?><option <?php if( $booking_gcal_timezone == $key ) echo "selected"; ?> value="<?php echo $key; ?>"><?php echo $value; ?></option><?php
|
318 |
}
|
319 |
+
|
320 |
+
|
321 |
+
// structure: $wpbc_booking_region_cities_list["Pacific"]["Fiji"] = "Fiji";
|
322 |
+
$wpbc_booking_region_cities_list = wpbc_get_booking_region_cities_list(); //FixIn: 8.9.4.9
|
323 |
|
324 |
foreach ($wpbc_booking_region_cities_list as $region => $region_cities) {
|
325 |
|
core/timeline/v2/wpbc-class-timeline_v2.php
CHANGED
@@ -276,20 +276,40 @@ class WPBC_TimelineFlex {
|
|
276 |
if ( isset( $this->request_args['scroll_day'] ) ) $scroll_day = intval( $this->request_args['scroll_day'] );
|
277 |
else $scroll_day = 0;
|
278 |
|
279 |
-
|
280 |
-
|
|
|
|
|
|
|
|
|
281 |
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
break;
|
294 |
default: // 365
|
295 |
if ( !isset( $this->request_args['scroll_month'] ) ) $this->request_args['scroll_month'] = 0;
|
@@ -2287,7 +2307,16 @@ if(1)
|
|
2287 |
else
|
2288 |
$scroll_day = 0;
|
2289 |
|
2290 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2291 |
if ( empty( $this->request_args['scroll_start_date'] ) )
|
2292 |
$start_day = date_i18n( "d" ); //FixIn: 7.0.1.13
|
2293 |
break;
|
@@ -2659,31 +2688,31 @@ if(1)
|
|
2659 |
$header_title .= '<span class=\'wpbc-buttons-separator\'></span>';
|
2660 |
}
|
2661 |
// Trash
|
2662 |
-
//$header_title .= '<a class=\'button button-secondary\' href=\'javascript:;\' onclick=\'javascript:delete_booking(' . $bk_id . ', ' . $this->current_user_id . ', "' .
|
2663 |
//FixIn: 6.1.1.10
|
2664 |
$is_trash = $bookings[$bk_id]->trash;
|
2665 |
|
2666 |
// Trash
|
2667 |
$header_title .= '<a class=\'button button-secondary trash_bk_link'.(( $is_trash)?' hidden_items ':'').'\'
|
2668 |
title=\'' . esc_js( str_replace( "'", '', __( 'Trash / Reject', 'booking' ) ) ) . '\'
|
2669 |
-
href=\'javascript:;\' onclick=\'javascript:if ( wpbc_are_you_sure_popup() ) trash__restore_booking(1,' . $bk_id . ', ' . $this->current_user_id . ', "' .
|
2670 |
// Restore
|
2671 |
$header_title .= '<a class=\'button button-secondary restore_bk_link'.((!$is_trash)?' hidden_items ':'').'\'
|
2672 |
title=\'' . esc_js( str_replace( "'", '', __( 'Restore', 'booking' ) ) ) . '\'
|
2673 |
-
href=\'javascript:;\' onclick=\'javascript:trash__restore_booking(0,' . $bk_id . ', ' . $this->current_user_id . ', "' .
|
2674 |
// Delete
|
2675 |
$header_title .= '<a class=\'button button-secondary delete_bk_link'.((!$is_trash)?' hidden_items ':'').'\'
|
2676 |
title=\'' . esc_js( str_replace( "'", '', __( 'Delete', 'booking' ) ) ) . '\'
|
2677 |
-
href=\'javascript:;\' onclick=\'javascript:if ( wpbc_are_you_sure_popup() ) delete_booking(' . $bk_id . ', ' . $this->current_user_id . ', "' .
|
2678 |
//End FixIn: 6.1.1.10
|
2679 |
|
2680 |
// Approve | Decline
|
2681 |
$header_title .= '<a class=\'button button-secondary approve_bk_link ' . ($is_approved ? 'hidden_items' : '') . '\'
|
2682 |
title=\'' . esc_js( str_replace( "'", '', __( 'Approve', 'booking' ) ) ) . '\'
|
2683 |
-
href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',1, ' . $this->current_user_id . ', "' .
|
2684 |
$header_title .= '<a class=\'button button-secondary pending_bk_link ' . ($is_approved ? '' : 'hidden_items') . '\'
|
2685 |
title=\'' . esc_js( str_replace( "'", '', __( 'Pending', 'booking' ) ) ) . '\'
|
2686 |
-
href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',0, ' . $this->current_user_id . ', "' .
|
2687 |
|
2688 |
|
2689 |
}
|
@@ -2841,8 +2870,21 @@ if(1)
|
|
2841 |
|
2842 |
$content_text .= '<div class=\'flex-label-dates \'>';
|
2843 |
$content_text .= $short_dates_content;
|
2844 |
-
$content_text .= '</div>';
|
2845 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2846 |
|
2847 |
|
2848 |
$content_text .= '</div>'; // Main Container: 'flex-popover-content-data'
|
276 |
if ( isset( $this->request_args['scroll_day'] ) ) $scroll_day = intval( $this->request_args['scroll_day'] );
|
277 |
else $scroll_day = 0;
|
278 |
|
279 |
+
//FixIn: 8.9.4.3
|
280 |
+
// Here we need to define number of days to scroll depends from selected number of days to show.
|
281 |
+
$days_num_to_scroll = intval( get_bk_option( 'booking_timeline__month_mode__days_number_show' ) );
|
282 |
+
if ( empty( $days_num_to_scroll ) ) {
|
283 |
+
$days_num_to_scroll = 7;
|
284 |
+
}
|
285 |
|
286 |
+
if ( $attr['nav_step'] == '-1' ) {
|
287 |
+
$this->request_args['scroll_day'] = intval( $scroll_day - $days_num_to_scroll );
|
288 |
+
}
|
289 |
+
if ( $attr['nav_step'] == '1' ) {
|
290 |
+
$this->request_args['scroll_day'] = intval( $scroll_day + $days_num_to_scroll );
|
291 |
+
}
|
292 |
+
|
293 |
+
/*
|
294 |
+
* From Admin panel:
|
295 |
+
*
|
296 |
+
// Here we need to define number of days to scroll depends from selected number of days to show.
|
297 |
+
$days_num_to_scroll = intval( get_bk_option( 'booking_calendar_overview__day_mode__days_number_show' ) );
|
298 |
+
if ( empty( $days_num_to_scroll ) ) {
|
299 |
+
$days_num_to_scroll = 7;
|
300 |
+
}
|
301 |
+
|
302 |
+
$scroll_params = array( '&scroll_day='.intval( $scroll_day - $days_num_to_scroll * 2 ),
|
303 |
+
'&scroll_day='.intval( $scroll_day - $days_num_to_scroll ),
|
304 |
+
'&scroll_day=0',
|
305 |
+
'&scroll_day='.intval( $scroll_day + $days_num_to_scroll ),
|
306 |
+
'&scroll_day='.intval( $scroll_day + $days_num_to_scroll *2 ) );
|
307 |
+
$scroll_titles = array( __( 'Previous', 'booking' ) . ' ' . ( 2 * $days_num_to_scroll ) . ' ' . __( 'days', 'booking' ),
|
308 |
+
__( 'Previous', 'booking' ) . ' ' . $days_num_to_scroll . ' ' . __( 'days', 'booking' ),
|
309 |
+
__('Current week' ,'booking'),
|
310 |
+
__( 'Next', 'booking' ) . ' ' . $days_num_to_scroll . ' ' . __( 'days', 'booking' ),
|
311 |
+
__( 'Next', 'booking' ) . ' ' . ( 2 * $days_num_to_scroll ) . ' ' . __( 'days', 'booking' ) );
|
312 |
+
*/
|
313 |
break;
|
314 |
default: // 365
|
315 |
if ( !isset( $this->request_args['scroll_month'] ) ) $this->request_args['scroll_month'] = 0;
|
2307 |
else
|
2308 |
$scroll_day = 0;
|
2309 |
|
2310 |
+
//FixIn: 8.9.4.3
|
2311 |
+
if ( $this->is_frontend ) {
|
2312 |
+
$max_rows_number = intval( get_bk_option( 'booking_timeline__month_mode__days_number_show' ) );
|
2313 |
+
} else {
|
2314 |
+
$max_rows_number = intval( get_bk_option( 'booking_calendar_overview__day_mode__days_number_show' ) );;
|
2315 |
+
}
|
2316 |
+
if (empty($max_rows_number)) {
|
2317 |
+
$max_rows_number = 31;
|
2318 |
+
}
|
2319 |
+
|
2320 |
if ( empty( $this->request_args['scroll_start_date'] ) )
|
2321 |
$start_day = date_i18n( "d" ); //FixIn: 7.0.1.13
|
2322 |
break;
|
2688 |
$header_title .= '<span class=\'wpbc-buttons-separator\'></span>';
|
2689 |
}
|
2690 |
// Trash
|
2691 |
+
//$header_title .= '<a class=\'button button-secondary\' href=\'javascript:;\' onclick=\'javascript:delete_booking(' . $bk_id . ', ' . $this->current_user_id . ', "' . wpbc_get_maybe_reloaded_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-trash\'></i></a>';
|
2692 |
//FixIn: 6.1.1.10
|
2693 |
$is_trash = $bookings[$bk_id]->trash;
|
2694 |
|
2695 |
// Trash
|
2696 |
$header_title .= '<a class=\'button button-secondary trash_bk_link'.(( $is_trash)?' hidden_items ':'').'\'
|
2697 |
title=\'' . esc_js( str_replace( "'", '', __( 'Trash / Reject', 'booking' ) ) ) . '\'
|
2698 |
+
href=\'javascript:;\' onclick=\'javascript:if ( wpbc_are_you_sure_popup() ) trash__restore_booking(1,' . $bk_id . ', ' . $this->current_user_id . ', "' . wpbc_get_maybe_reloaded_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-trash\'></i></a>'; //FixIn: 8.4.7.14
|
2699 |
// Restore
|
2700 |
$header_title .= '<a class=\'button button-secondary restore_bk_link'.((!$is_trash)?' hidden_items ':'').'\'
|
2701 |
title=\'' . esc_js( str_replace( "'", '', __( 'Restore', 'booking' ) ) ) . '\'
|
2702 |
+
href=\'javascript:;\' onclick=\'javascript:trash__restore_booking(0,' . $bk_id . ', ' . $this->current_user_id . ', "' . wpbc_get_maybe_reloaded_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-repeat\'></i></a>';
|
2703 |
// Delete
|
2704 |
$header_title .= '<a class=\'button button-secondary delete_bk_link'.((!$is_trash)?' hidden_items ':'').'\'
|
2705 |
title=\'' . esc_js( str_replace( "'", '', __( 'Delete', 'booking' ) ) ) . '\'
|
2706 |
+
href=\'javascript:;\' onclick=\'javascript:if ( wpbc_are_you_sure_popup() ) delete_booking(' . $bk_id . ', ' . $this->current_user_id . ', "' . wpbc_get_maybe_reloaded_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-remove\'></i></a>'; //FixIn: 8.4.7.14
|
2707 |
//End FixIn: 6.1.1.10
|
2708 |
|
2709 |
// Approve | Decline
|
2710 |
$header_title .= '<a class=\'button button-secondary approve_bk_link ' . ($is_approved ? 'hidden_items' : '') . '\'
|
2711 |
title=\'' . esc_js( str_replace( "'", '', __( 'Approve', 'booking' ) ) ) . '\'
|
2712 |
+
href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',1, ' . $this->current_user_id . ', "' . wpbc_get_maybe_reloaded_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-ok-circle\'></i></a>';
|
2713 |
$header_title .= '<a class=\'button button-secondary pending_bk_link ' . ($is_approved ? '' : 'hidden_items') . '\'
|
2714 |
title=\'' . esc_js( str_replace( "'", '', __( 'Pending', 'booking' ) ) ) . '\'
|
2715 |
+
href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',0, ' . $this->current_user_id . ', "' . wpbc_get_maybe_reloaded_booking_locale() . '" , 1 );\' ><i class=\'glyphicon glyphicon-ban-circle\'></i></a>';
|
2716 |
|
2717 |
|
2718 |
}
|
2870 |
|
2871 |
$content_text .= '<div class=\'flex-label-dates \'>';
|
2872 |
$content_text .= $short_dates_content;
|
2873 |
+
$content_text .= '</div>';
|
2874 |
|
2875 |
+
//FixIn: 8.9.4.14
|
2876 |
+
$date_format = get_bk_option( 'booking_date_format' );
|
2877 |
+
if ( empty( $date_format ) ) {
|
2878 |
+
$date_format = 'm / d / Y, D';
|
2879 |
+
}
|
2880 |
+
$time_format = get_bk_option( 'booking_time_format' );
|
2881 |
+
if ( empty( $time_format ) ) {
|
2882 |
+
$time_format = 'h:i a';
|
2883 |
+
}
|
2884 |
+
$cr_date = date_i18n( $date_format . ' ' . $time_format, mysql2date( 'U', $bookings[ $bk_id ]->modification_date ) );
|
2885 |
+
$content_text .= '<div class=\'wpbc-listing-collumn field-system-info \'>';
|
2886 |
+
$content_text .= __( 'Created', 'booking' ) . ': ' . $cr_date;
|
2887 |
+
$content_text .= '</div>';
|
2888 |
|
2889 |
|
2890 |
$content_text .= '</div>'; // Main Container: 'flex-popover-content-data'
|
core/wpbc-activation.php
CHANGED
@@ -860,7 +860,12 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
|
|
860 |
$default_options['booking_listing_default_view_mode'] = 'vm_calendar';
|
861 |
$mu_option4delete[]='booking_listing_default_view_mode';
|
862 |
$default_options['booking_view_days_num'] = ( ( ! class_exists( 'wpdev_bk_personal' ) ) ? '90' : '30' );
|
863 |
-
$mu_option4delete[]='booking_view_days_num';
|
|
|
|
|
|
|
|
|
|
|
864 |
//FixIn: 8.6.1.13
|
865 |
$default_options['booking_max_monthes_in_calendar'] = '1y';
|
866 |
$mu_option4delete[]='booking_max_monthes_in_calendar';
|
@@ -975,6 +980,8 @@ $mu_option4delete[]= 'booking_timeslot_picker_skin';
|
|
975 |
$mu_option4delete[]='booking_unavailable_day6';
|
976 |
$default_options['booking_menu_position'] = ( $is_demo ) ? 'top' : 'top';
|
977 |
$mu_option4delete[]='booking_menu_position';
|
|
|
|
|
978 |
$default_options['booking_user_role_booking'] = ( $is_demo ) ? 'subscriber' : 'editor';
|
979 |
$mu_option4delete[]='booking_user_role_booking';
|
980 |
$default_options['booking_user_role_addbooking'] = ( $is_demo ) ? 'subscriber' : 'editor';
|
@@ -1227,7 +1234,7 @@ $mu_option4delete[]= 'booking_timeslot_picker_skin';
|
|
1227 |
$mu_option4delete[]='booking_range_selection_start_time';
|
1228 |
$default_options['booking_range_selection_end_time'] = '10:00';
|
1229 |
$mu_option4delete[]='booking_range_selection_end_time';
|
1230 |
-
$default_options['booking_change_over_days_triangles'] =
|
1231 |
|
1232 |
$mu_option4delete[]='booking_last_checkout_day_available';
|
1233 |
$default_options['booking_last_checkout_day_available'] = 'Off'; //FixIn: 8.1.3.28
|
@@ -1236,6 +1243,12 @@ $mu_option4delete[]= 'booking_timeslot_picker_skin';
|
|
1236 |
$default_options['booking_time_format'] = 'H:i';
|
1237 |
$mu_option4delete[]='booking_time_format';
|
1238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1239 |
$default_options['booking_email_payment_request_adress'] = htmlspecialchars( '"Booking system" <' . get_option( 'admin_email' ) . '>' );
|
1240 |
$default_options['booking_email_payment_request_subject'] = __( 'You need to make payment for this reservation', 'booking' );
|
1241 |
$default_options['booking_email_payment_request_content'] = htmlspecialchars( sprintf( __( 'You need to make payment %s for reservation %s at %s. %s Please make payment on this page: %s Thank you, %s', 'booking' ), '[cost]', '[bookingtype]', '[dates]', '<br/><br/>[paymentreason]<br/><br/>[content]<br/><br/>', '[visitorbookingpayurl]<br/><br/>', $blg_title . '<br/>[siteurl]' ) );
|
860 |
$default_options['booking_listing_default_view_mode'] = 'vm_calendar';
|
861 |
$mu_option4delete[]='booking_listing_default_view_mode';
|
862 |
$default_options['booking_view_days_num'] = ( ( ! class_exists( 'wpdev_bk_personal' ) ) ? '90' : '30' );
|
863 |
+
$mu_option4delete[]='booking_view_days_num';
|
864 |
+
//FixIn: 8.9.4.3
|
865 |
+
$default_options['booking_calendar_overview__day_mode__days_number_show'] = ( ( ! class_exists( 'wpdev_bk_personal' ) ) ? '7' : '7' );
|
866 |
+
$mu_option4delete[]='booking_calendar_overview__day_mode__days_number_show';
|
867 |
+
$default_options['booking_timeline__month_mode__days_number_show'] = ( ( ! class_exists( 'wpdev_bk_personal' ) ) ? '7' : '7' );
|
868 |
+
$mu_option4delete[]='booking_timeline__month_mode__days_number_show';
|
869 |
//FixIn: 8.6.1.13
|
870 |
$default_options['booking_max_monthes_in_calendar'] = '1y';
|
871 |
$mu_option4delete[]='booking_max_monthes_in_calendar';
|
980 |
$mu_option4delete[]='booking_unavailable_day6';
|
981 |
$default_options['booking_menu_position'] = ( $is_demo ) ? 'top' : 'top';
|
982 |
$mu_option4delete[]='booking_menu_position';
|
983 |
+
$default_options['booking_translation_load_from'] = 'wp.org';
|
984 |
+
$mu_option4delete[]='booking_translation_load_from';
|
985 |
$default_options['booking_user_role_booking'] = ( $is_demo ) ? 'subscriber' : 'editor';
|
986 |
$mu_option4delete[]='booking_user_role_booking';
|
987 |
$default_options['booking_user_role_addbooking'] = ( $is_demo ) ? 'subscriber' : 'editor';
|
1234 |
$mu_option4delete[]='booking_range_selection_start_time';
|
1235 |
$default_options['booking_range_selection_end_time'] = '10:00';
|
1236 |
$mu_option4delete[]='booking_range_selection_end_time';
|
1237 |
+
$default_options['booking_change_over_days_triangles'] = 'On'; //FixIn: 7.0.1.24
|
1238 |
|
1239 |
$mu_option4delete[]='booking_last_checkout_day_available';
|
1240 |
$default_options['booking_last_checkout_day_available'] = 'Off'; //FixIn: 8.1.3.28
|
1243 |
$default_options['booking_time_format'] = 'H:i';
|
1244 |
$mu_option4delete[]='booking_time_format';
|
1245 |
|
1246 |
+
$mu_option4delete[]='booking_change_over__is_excerpt_on_pages';
|
1247 |
+
$default_options['booking_change_over__is_excerpt_on_pages'] = 'Off'; //FixIn: 8.9.4.10
|
1248 |
+
$mu_option4delete[]='booking_change_over__excerpt_on_pages';
|
1249 |
+
$default_options['booking_change_over__excerpt_on_pages'] = ''; //FixIn: 8.9.4.10
|
1250 |
+
|
1251 |
+
|
1252 |
$default_options['booking_email_payment_request_adress'] = htmlspecialchars( '"Booking system" <' . get_option( 'admin_email' ) . '>' );
|
1253 |
$default_options['booking_email_payment_request_subject'] = __( 'You need to make payment for this reservation', 'booking' );
|
1254 |
$default_options['booking_email_payment_request_content'] = htmlspecialchars( sprintf( __( 'You need to make payment %s for reservation %s at %s. %s Please make payment on this page: %s Thank you, %s', 'booking' ), '[cost]', '[bookingtype]', '[dates]', '<br/><br/>[paymentreason]<br/><br/>[content]<br/><br/>', '[visitorbookingpayurl]<br/><br/>', $blg_title . '<br/>[siteurl]' ) );
|
core/wpbc-constants.php
CHANGED
@@ -26,7 +26,7 @@ if ( ! defined( 'WP_BK_CHECK_OUT_MINUS_DAY_SEARCH' ) ) { define( 'WP_BK_C
|
|
26 |
////////////////////////////////////////////////////////////
|
27 |
// SYSTEM CONSTANTS //////////////
|
28 |
////////////////////////////////////////////////////////////
|
29 |
-
if ( ! defined( 'WP_BK_MINOR_UPDATE' ) ) { define( 'WP_BK_MINOR_UPDATE', true ); }
|
30 |
if ( ! defined( 'WP_BK_RESPONSE' ) ) { define( 'WP_BK_RESPONSE', false ); }
|
31 |
if ( ! defined( 'WP_BK_BETA_DATA_FILL' ) ) { define( 'WP_BK_BETA_DATA_FILL', 0 ); } // Set 0 for no filling or 2 for 241 bookings or more for more
|
32 |
|
26 |
////////////////////////////////////////////////////////////
|
27 |
// SYSTEM CONSTANTS //////////////
|
28 |
////////////////////////////////////////////////////////////
|
29 |
+
if ( ! defined( 'WP_BK_MINOR_UPDATE' ) ) { define( 'WP_BK_MINOR_UPDATE', ! true ); }
|
30 |
if ( ! defined( 'WP_BK_RESPONSE' ) ) { define( 'WP_BK_RESPONSE', false ); }
|
31 |
if ( ! defined( 'WP_BK_BETA_DATA_FILL' ) ) { define( 'WP_BK_BETA_DATA_FILL', 0 ); } // Set 0 for no filling or 2 for 241 bookings or more for more
|
32 |
|
core/wpbc-core.php
CHANGED
@@ -166,6 +166,4 @@ function add_bk_option( $option, $value = '', $deprecated = '', $autoload = 'yes
|
|
166 |
if ( $u_value !== 'no-values' ) return $u_value;
|
167 |
|
168 |
return add_option( $option, $value , $deprecated , $autoload );
|
169 |
-
}
|
170 |
-
|
171 |
-
|
166 |
if ( $u_value !== 'no-values' ) return $u_value;
|
167 |
|
168 |
return add_option( $option, $value , $deprecated , $autoload );
|
169 |
+
}
|
|
|
|
core/wpbc-css.php
CHANGED
@@ -165,6 +165,11 @@ function wpbc_get_calendar_skin_url() {
|
|
165 |
$check_skin_path = str_replace( 'inc/skins/', 'css/skins/', $check_skin_path );
|
166 |
update_bk_option( 'booking_skin', $check_skin_path );
|
167 |
}
|
|
|
|
|
|
|
|
|
|
|
168 |
|
169 |
// Check if this skin exist in the plugin folder //////////////////////
|
170 |
if ( file_exists( WPBC_PLUGIN_DIR . str_replace( WPBC_PLUGIN_URL, '', get_bk_option( 'booking_skin') ) ) ) {
|
@@ -180,7 +185,11 @@ function wpbc_get_calendar_skin_url() {
|
|
180 |
if ( file_exists( $custom_user_skin_folder . str_replace( array( WPBC_PLUGIN_URL , $custom_user_skin_url ), '', get_bk_option( 'booking_skin') ) ) ) {
|
181 |
$calendar_skin_path = $custom_user_skin_url . str_replace( array(WPBC_PLUGIN_URL, $custom_user_skin_url ), '', get_bk_option( 'booking_skin') );
|
182 |
}
|
183 |
-
|
|
|
|
|
|
|
|
|
184 |
return $calendar_skin_path;
|
185 |
}
|
186 |
|
165 |
$check_skin_path = str_replace( 'inc/skins/', 'css/skins/', $check_skin_path );
|
166 |
update_bk_option( 'booking_skin', $check_skin_path );
|
167 |
}
|
168 |
+
//FixIn: 8.9.4.8
|
169 |
+
if ( false !== strpos( $check_skin_path, WPBC_PLUGIN_DIR ) ) {
|
170 |
+
$check_skin_path = str_replace( WPBC_PLUGIN_DIR, '', $check_skin_path );
|
171 |
+
update_bk_option( 'booking_skin', $check_skin_path );
|
172 |
+
}
|
173 |
|
174 |
// Check if this skin exist in the plugin folder //////////////////////
|
175 |
if ( file_exists( WPBC_PLUGIN_DIR . str_replace( WPBC_PLUGIN_URL, '', get_bk_option( 'booking_skin') ) ) ) {
|
185 |
if ( file_exists( $custom_user_skin_folder . str_replace( array( WPBC_PLUGIN_URL , $custom_user_skin_url ), '', get_bk_option( 'booking_skin') ) ) ) {
|
186 |
$calendar_skin_path = $custom_user_skin_url . str_replace( array(WPBC_PLUGIN_URL, $custom_user_skin_url ), '', get_bk_option( 'booking_skin') );
|
187 |
}
|
188 |
+
// debuge(
|
189 |
+
// get_bk_option( 'booking_skin')
|
190 |
+
// , WPBC_PLUGIN_URL . str_replace( WPBC_PLUGIN_URL, '', get_bk_option( 'booking_skin') )
|
191 |
+
// , $custom_user_skin_url . str_replace( array(WPBC_PLUGIN_URL, $custom_user_skin_url ), '', get_bk_option( 'booking_skin') )
|
192 |
+
// );
|
193 |
return $calendar_skin_path;
|
194 |
}
|
195 |
|
core/wpbc-functions.php
CHANGED
@@ -512,10 +512,11 @@ function wpbc_replace_booking_shortcodes( $subject, $replace_array , $replace_un
|
|
512 |
|
513 |
if (is_string($directories)) $directories = array($directories);
|
514 |
foreach ($directories as $dir) {
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
|
|
519 |
|
520 |
if ( file_exists( $directory ) ) { //FixIn: 5.4.5
|
521 |
// create a handler for the directory
|
@@ -2973,332 +2974,6 @@ function wpbc_get_warning_text_in_demo_mode() {
|
|
2973 |
}
|
2974 |
|
2975 |
|
2976 |
-
/**
|
2977 |
-
* Load transaltion POT file, and generate PHP file with all translations relative to plugin.
|
2978 |
-
* Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&pot=1#wpbc_general_settings_system_info_metabox
|
2979 |
-
*/
|
2980 |
-
function wpbc_pot_to_php() {
|
2981 |
-
|
2982 |
-
/*
|
2983 |
-
* $shortcode = 'wpml';
|
2984 |
-
|
2985 |
-
// Find anything between [wpml] and [/wpml] shortcodes. Magic here: [\s\S]*? - fit to any text
|
2986 |
-
preg_match_all( '/\[' . $shortcode . '\]([\s\S]*?)\[\/' . $shortcode . '\]/i', $text, $wpml_translations, PREG_SET_ORDER );
|
2987 |
-
//debuge( $wpml_translations );
|
2988 |
-
|
2989 |
-
foreach ( $wpml_translations as $translation ) {
|
2990 |
-
|
2991 |
-
*/
|
2992 |
-
|
2993 |
-
$pot_file = WP_PLUGIN_DIR . '/' . trim( WPBC_PLUGIN_DIRNAME . '/languages/booking.pot' , '/' );
|
2994 |
-
|
2995 |
-
if ( !is_readable( $pot_file ) ) {
|
2996 |
-
wpbc_show_message_in_settings( 'POT file not found: ' . $pot_file , 'error' );
|
2997 |
-
return false;
|
2998 |
-
} else
|
2999 |
-
wpbc_show_message_in_settings( 'POT file found: ' . $pot_file , 'info' );
|
3000 |
-
|
3001 |
-
|
3002 |
-
if ( ! class_exists( 'PO' ) )
|
3003 |
-
require_once ABSPATH . WPINC . '/pomo/po.php';
|
3004 |
-
|
3005 |
-
if ( class_exists( 'PO' ) ) {
|
3006 |
-
|
3007 |
-
$po = new PO();
|
3008 |
-
$po->import_from_file( $pot_file );
|
3009 |
-
|
3010 |
-
wpbc_show_message_in_settings( 'Found <strong>' . count($po->entries) . '</strong> translations' , 'info' );
|
3011 |
-
|
3012 |
-
//FixIn: 8.7.3.6
|
3013 |
-
$translation_files = array();
|
3014 |
-
|
3015 |
-
|
3016 |
-
// Generate content of the file
|
3017 |
-
//$all_translations = '<?php function wpbc_all_translations() { $wpbc_all_translations = array(); ';
|
3018 |
-
|
3019 |
-
$lines_number = 1;
|
3020 |
-
$all_translations = '';
|
3021 |
-
foreach ( $po->entries as $transaltion => $transaltion_obj ) {
|
3022 |
-
|
3023 |
-
$all_translations .= ' $wpbc_all_translations[] = __(\''. $transaltion .'\', \'booking\'); ' . "\n";
|
3024 |
-
$lines_number++;
|
3025 |
-
|
3026 |
-
// Maximum number of lines in such files
|
3027 |
-
if ( $lines_number >= 998 ) {
|
3028 |
-
$file_number = count( $translation_files ) + 1;
|
3029 |
-
$translation_files[] = '<?php function wpbc_all_translations' . $file_number . '() { $wpbc_all_translations = array(); ' . "\n" . $all_translations . " } ";
|
3030 |
-
$all_translations = '';
|
3031 |
-
$lines_number = 1;
|
3032 |
-
}
|
3033 |
-
|
3034 |
-
}
|
3035 |
-
|
3036 |
-
if ( ! empty( $all_translations ) ) {
|
3037 |
-
$file_number = count( $translation_files ) + 1;
|
3038 |
-
$translation_files[] = '<?php function wpbc_all_translations' . $file_number . '() { $wpbc_all_translations = array(); ' . "\n" . $all_translations . " } ";
|
3039 |
-
}
|
3040 |
-
|
3041 |
-
|
3042 |
-
//$all_translations .= ' } ';
|
3043 |
-
|
3044 |
-
foreach ( $translation_files as $file_number => $file_content ) {
|
3045 |
-
|
3046 |
-
// Path to new PHP file with all
|
3047 |
-
$new_php_file = WP_PLUGIN_DIR . '/' . trim( WPBC_PLUGIN_DIRNAME . '/core/lib/wpbc_all_translations' . ( ( ! empty( $file_number ) ) ? $file_number : '' ) . '.php', '/' );
|
3048 |
-
|
3049 |
-
$fh = fopen( $new_php_file, 'w' );
|
3050 |
-
if ( false === $fh ) {
|
3051 |
-
wpbc_show_message_in_settings( 'Can not create or edit PHP file: ' . $new_php_file, 'error' );
|
3052 |
-
|
3053 |
-
return false;
|
3054 |
-
}
|
3055 |
-
$res = fwrite( $fh, $file_content );
|
3056 |
-
if ( false === $res ) {
|
3057 |
-
wpbc_show_message_in_settings( 'Some error during saving data into file ' . $new_php_file, 'error' );
|
3058 |
-
|
3059 |
-
return false;
|
3060 |
-
}
|
3061 |
-
$res = fclose( $fh );
|
3062 |
-
|
3063 |
-
wpbc_show_message_in_settings( 'Completed! [ ' . htmlentities( $new_php_file ) . ' ]', 'info' );
|
3064 |
-
}
|
3065 |
-
|
3066 |
-
return $res;
|
3067 |
-
|
3068 |
-
} else {
|
3069 |
-
wpbc_show_message_in_settings( 'PO class does not exist or do not loaded' , 'error' );
|
3070 |
-
}
|
3071 |
-
|
3072 |
-
|
3073 |
-
|
3074 |
-
// $filename = $pot_file;
|
3075 |
-
// $reader = new POMO_FileReader( $filename );
|
3076 |
-
////debuge($reader);
|
3077 |
-
// if ( ! $reader->is_resource() ) {
|
3078 |
-
// return false;
|
3079 |
-
// }
|
3080 |
-
//
|
3081 |
-
// $file_data = $reader->read_all();
|
3082 |
-
//
|
3083 |
-
// $mo = new PO();
|
3084 |
-
// $pomo_reader = new POMO_StringReader($file_data);
|
3085 |
-
// $mo->import_from_reader( $pomo_reader );
|
3086 |
-
//debuge($mo) ;
|
3087 |
-
// if ( isset( $l10n[$domain] ) )
|
3088 |
-
// $mo->merge_with( $l10n[$domain] );
|
3089 |
-
|
3090 |
-
|
3091 |
-
}
|
3092 |
-
|
3093 |
-
|
3094 |
-
|
3095 |
-
/**
|
3096 |
-
* Show System Info (status) at Booking > Settings General page
|
3097 |
-
* Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show#wpbc_general_settings_system_info_metabox
|
3098 |
-
*/
|
3099 |
-
function wpbc_system_info() {
|
3100 |
-
|
3101 |
-
if ( wpbc_is_this_demo() ) return;
|
3102 |
-
|
3103 |
-
if ( current_user_can( 'activate_plugins' ) ) { // Only for Administrator or Super admin. More here: https://codex.wordpress.org/Roles_and_Capabilities
|
3104 |
-
|
3105 |
-
// Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&pot=1#wpbc_general_settings_system_info_metabox
|
3106 |
-
if ( ( isset( $_GET['pot'] ) ) && ( $_GET['pot'] == '1' ) ) {
|
3107 |
-
|
3108 |
-
wpbc_pot_to_php();
|
3109 |
-
|
3110 |
-
return;
|
3111 |
-
}
|
3112 |
-
|
3113 |
-
// Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&reset=custom_forms#wpbc_general_settings_system_info_metabox
|
3114 |
-
if ( ( isset( $_GET['reset'] ) ) && ( $_GET['reset'] == 'custom_forms' ) ) { //FixIn: 8.1.3.21
|
3115 |
-
|
3116 |
-
// Reset Custom Booking Forms to NONE
|
3117 |
-
update_bk_option( 'booking_forms_extended' , serialize( array() ) );
|
3118 |
-
|
3119 |
-
wpbc_show_message_in_settings( '<strong>Custom forms</strong> have been reseted!' , 'info' );
|
3120 |
-
return;
|
3121 |
-
}
|
3122 |
-
|
3123 |
-
|
3124 |
-
global $wpdb, $wp_version;
|
3125 |
-
|
3126 |
-
$all_plugins = get_plugins();
|
3127 |
-
$active_plugins = get_option( 'active_plugins' );
|
3128 |
-
|
3129 |
-
$mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
|
3130 |
-
if ( is_array( $mysql_info ) ) $sql_mode = $mysql_info[0]->Value;
|
3131 |
-
if ( empty( $sql_mode ) ) $sql_mode = 'Not set';
|
3132 |
-
|
3133 |
-
//FixIn: 8.4.7.24
|
3134 |
-
$allow_url_fopen = ( ini_get( 'allow_url_fopen' ) ) ? 'On' : 'Off';
|
3135 |
-
$upload_max_filesize = ( ini_get( 'upload_max_filesize' ) ) ? ini_get( 'upload_max_filesize' ) : 'N/A';
|
3136 |
-
$post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : 'N/A';
|
3137 |
-
$max_execution_time = ( ini_get( 'max_execution_time' ) ) ? ini_get( 'max_execution_time' ) : 'N/A';
|
3138 |
-
$memory_limit = ( ini_get( 'memory_limit' ) ) ? ini_get( 'memory_limit' ) : 'N/A';
|
3139 |
-
$memory_usage = ( function_exists( 'memory_get_usage' ) ) ? round( memory_get_usage() / 1024 / 1024, 2 ) . ' Mb' : 'N/A';
|
3140 |
-
$exif_read_data = ( is_callable( 'exif_read_data' ) ) ? 'Yes' . " ( V" . substr( phpversion( 'exif' ), 0, 4 ) . ")" : 'No';
|
3141 |
-
$iptcparse = ( is_callable( 'iptcparse' ) ) ? 'Yes' : 'No';
|
3142 |
-
$xml_parser_create = ( is_callable( 'xml_parser_create' ) ) ? 'Yes' : 'No';
|
3143 |
-
$theme = ( function_exists( 'wp_get_theme' ) ) ? wp_get_theme() : get_theme( get_current_theme() );
|
3144 |
-
|
3145 |
-
if ( function_exists( 'is_multisite' ) ) {
|
3146 |
-
if ( is_multisite() ) $multisite = 'Yes';
|
3147 |
-
else $multisite = 'No';
|
3148 |
-
} else { $multisite = 'N/A';
|
3149 |
-
}
|
3150 |
-
|
3151 |
-
$system_info = array(
|
3152 |
-
'system_info' => '',
|
3153 |
-
'php_info' => '',
|
3154 |
-
'active_plugins' => array(), //FixIn: 8.4.4.1
|
3155 |
-
'inactive_plugins' => array() //FixIn: 8.4.4.1
|
3156 |
-
);
|
3157 |
-
|
3158 |
-
$ver_small_name = get_bk_version();
|
3159 |
-
if ( class_exists( 'wpdev_bk_multiuser' ) ) $ver_small_name = 'multiuser';
|
3160 |
-
|
3161 |
-
$system_info['system_info'] = array(
|
3162 |
-
'Plugin Update' => ( defined( 'WPDEV_BK_VERSION' ) ) ? WPDEV_BK_VERSION : 'N/A',
|
3163 |
-
'Plugin Version' => ucwords( $ver_small_name ),
|
3164 |
-
'Plugin Update Date' => date( "Y-m-d", filemtime( WPBC_FILE ) ),
|
3165 |
-
|
3166 |
-
'WP Version' => $wp_version,
|
3167 |
-
'WP DEBUG' => ( ( defined('WP_DEBUG') ) && ( WP_DEBUG ) ) ? 'On' : 'Off',
|
3168 |
-
'WP DB Version' => get_option( 'db_version' ),
|
3169 |
-
'Operating System' => PHP_OS,
|
3170 |
-
'Server' => $_SERVER["SERVER_SOFTWARE"],
|
3171 |
-
'PHP Version' => PHP_VERSION,
|
3172 |
-
'MYSQL Version' => $wpdb->get_var( "SELECT VERSION() AS version" ),
|
3173 |
-
'SQL Mode' => $sql_mode,
|
3174 |
-
'Memory usage' => $memory_usage,
|
3175 |
-
'Site URL' => get_option( 'siteurl' ),
|
3176 |
-
'Home URL' => home_url(),
|
3177 |
-
'SERVER[HTTP_HOST]' => $_SERVER['HTTP_HOST'],
|
3178 |
-
'SERVER[SERVER_NAME]' => $_SERVER['SERVER_NAME'],
|
3179 |
-
'Multisite' => $multisite,
|
3180 |
-
'Active Theme' => $theme['Name'] . ' ' . $theme['Version']
|
3181 |
-
);
|
3182 |
-
|
3183 |
-
$system_info['php_info'] = array(
|
3184 |
-
'PHP Version' => PHP_VERSION,
|
3185 |
-
'PHP Memory Limit' => '<strong>' . $memory_limit . '</strong>',
|
3186 |
-
'PHP Max Script Execute Time' => '<strong>' . $max_execution_time . '</strong>',
|
3187 |
-
|
3188 |
-
'PHP Max Post Size' => '<strong>' . $post_max_size . '</strong>',
|
3189 |
-
'PHP MAX Input Vars' => '<strong>' . ( ( ini_get( 'max_input_vars' ) ) ? ini_get( 'max_input_vars' ) : 'N/A' ) . '</strong>', //How many input variables may be accepted (limit is applied to $_GET, $_POST and $_COOKIE superglobal separately).
|
3190 |
-
|
3191 |
-
'PHP Max Upload Size' => $upload_max_filesize,
|
3192 |
-
'PHP Allow URL fopen' => $allow_url_fopen,
|
3193 |
-
'PHP Exif support' => $exif_read_data,
|
3194 |
-
'PHP IPTC support' => $iptcparse,
|
3195 |
-
'PHP XML support' => $xml_parser_create
|
3196 |
-
);
|
3197 |
-
|
3198 |
-
$system_info['php_info']['PHP cURL'] = ( function_exists('curl_init') ) ? 'On' : 'Off';
|
3199 |
-
$system_info['php_info']['Max Nesting Level'] = ( ( ini_get( 'max_input_nesting_level' ) ) ? ini_get( 'max_input_nesting_level' ) : 'N/A' );
|
3200 |
-
$system_info['php_info']['Max Time 4 script'] = ( ( ini_get( 'max_input_time' ) ) ? ini_get( 'max_input_time' ) : 'N/A' ); //Maximum amount of time each script may spend parsing request data
|
3201 |
-
$system_info['php_info']['Log'] = ( ( ini_get( 'error_log' ) ) ? ini_get( 'error_log' ) : 'N/A' );
|
3202 |
-
|
3203 |
-
if ( ini_get( "suhosin.get.max_value_length" ) ) {
|
3204 |
-
|
3205 |
-
$system_info['suhosin_info'] = array();
|
3206 |
-
$system_info['suhosin_info']['POST max_array_index_length'] = ( ( ini_get( 'suhosin.post.max_array_index_length' ) ) ? ini_get( 'suhosin.post.max_array_index_length' ) : 'N/A' );
|
3207 |
-
$system_info['suhosin_info']['REQUEST max_array_index_length'] = ( ( ini_get( 'suhosin.request.max_array_index_length' ) ) ? ini_get( 'suhosin.request.max_array_index_length' ) : 'N/A' );
|
3208 |
-
|
3209 |
-
$system_info['suhosin_info']['POST max_totalname_length'] = ( ( ini_get( 'suhosin.post.max_totalname_length' ) ) ? ini_get( 'suhosin.post.max_totalname_length' ) : 'N/A' );
|
3210 |
-
$system_info['suhosin_info']['REQUEST max_totalname_length'] = ( ( ini_get( 'suhosin.request.max_totalname_length' ) ) ? ini_get( 'suhosin.request.max_totalname_length' ) : 'N/A' );
|
3211 |
-
|
3212 |
-
$system_info['suhosin_info']['POST max_vars'] = ( ( ini_get( 'suhosin.post.max_vars' ) ) ? ini_get( 'suhosin.post.max_vars' ) : 'N/A' );
|
3213 |
-
$system_info['suhosin_info']['REQUEST max_vars'] = ( ( ini_get( 'suhosin.request.max_vars' ) ) ? ini_get( 'suhosin.request.max_vars' ) : 'N/A' );
|
3214 |
-
|
3215 |
-
$system_info['suhosin_info']['POST max_value_length'] = ( ( ini_get( 'suhosin.post.max_value_length' ) ) ? ini_get( 'suhosin.post.max_value_length' ) : 'N/A' );
|
3216 |
-
$system_info['suhosin_info']['REQUEST max_value_length'] = ( ( ini_get( 'suhosin.request.max_value_length' ) ) ? ini_get( 'suhosin.request.max_value_length' ) : 'N/A' );
|
3217 |
-
|
3218 |
-
$system_info['suhosin_info']['POST max_name_length'] = ( ( ini_get( 'suhosin.post.max_name_length' ) ) ? ini_get( 'suhosin.post.max_name_length' ) : 'N/A' );
|
3219 |
-
$system_info['suhosin_info']['REQUEST max_varname_length'] = ( ( ini_get( 'suhosin.request.max_varname_length' ) ) ? ini_get( 'suhosin.request.max_varname_length' ) : 'N/A' );
|
3220 |
-
|
3221 |
-
$system_info['suhosin_info']['POST max_array_depth'] = ( ( ini_get( 'suhosin.post.max_array_depth' ) ) ? ini_get( 'suhosin.post.max_array_depth' ) : 'N/A' );
|
3222 |
-
$system_info['suhosin_info']['REQUEST max_array_depth'] = ( ( ini_get( 'suhosin.request.max_array_depth' ) ) ? ini_get( 'suhosin.request.max_array_depth' ) : 'N/A' );
|
3223 |
-
}
|
3224 |
-
|
3225 |
-
|
3226 |
-
if ( function_exists('gd_info') ) {
|
3227 |
-
$gd_info = gd_info();
|
3228 |
-
if ( isset( $gd_info['GD Version'] ) )
|
3229 |
-
$gd_info = $gd_info['GD Version'];
|
3230 |
-
else
|
3231 |
-
$gd_info = json_encode( $gd_info );
|
3232 |
-
} else {
|
3233 |
-
$gd_info = 'Off';
|
3234 |
-
}
|
3235 |
-
$system_info['php_info']['PHP GD'] = $gd_info;
|
3236 |
-
|
3237 |
-
// More here https://docs.woocommerce.com/document/problems-with-large-amounts-of-data-not-saving-variations-rates-etc/
|
3238 |
-
|
3239 |
-
|
3240 |
-
foreach ( $all_plugins as $path => $plugin ) {
|
3241 |
-
if ( is_plugin_active( $path ) )
|
3242 |
-
$system_info['active_plugins'][$plugin['Name']] = $plugin['Version'];
|
3243 |
-
else
|
3244 |
-
$system_info['inactive_plugins'][$plugin['Name']] = $plugin['Version'];
|
3245 |
-
}
|
3246 |
-
|
3247 |
-
// Showing
|
3248 |
-
foreach ( $system_info as $section_name => $section_values ) {
|
3249 |
-
?>
|
3250 |
-
<span class="wpdevelop">
|
3251 |
-
<table class="table table-striped table-bordered">
|
3252 |
-
<thead><tr><th colspan="2" style="border-bottom: 1px solid #eeeeee;padding: 10px;"><?php echo strtoupper( $section_name ); ?></th></tr></thead>
|
3253 |
-
<tbody>
|
3254 |
-
<?php
|
3255 |
-
if ( !empty( $section_values ) ) {
|
3256 |
-
foreach ( $section_values as $key => $value ) {
|
3257 |
-
?>
|
3258 |
-
<tr>
|
3259 |
-
<td scope="row" style="width:18em;padding:4px 8px;"><?php echo $key; ?></td>
|
3260 |
-
<td scope="row" style="padding:4px 8px;"><?php echo $value; ?></td>
|
3261 |
-
</tr>
|
3262 |
-
<?php
|
3263 |
-
}
|
3264 |
-
}
|
3265 |
-
?>
|
3266 |
-
</tbody>
|
3267 |
-
</table>
|
3268 |
-
</span>
|
3269 |
-
<div class="clear"></div>
|
3270 |
-
<?php
|
3271 |
-
}
|
3272 |
-
?>
|
3273 |
-
<hr>
|
3274 |
-
<div style="color:#777;">
|
3275 |
-
<h4 style="font-size:1.1em;">Commonly required configuration vars in php.ini file:</h4>
|
3276 |
-
<h4>General section:</h4>
|
3277 |
-
<pre><code>memory_limit = 256M
|
3278 |
-
max_execution_time = 120
|
3279 |
-
post_max_size = 8M
|
3280 |
-
upload_max_filesize = 8M
|
3281 |
-
max_input_vars = 20480
|
3282 |
-
post_max_size = 64M</code></pre>
|
3283 |
-
<h4>Suhosin section (if installed):</h4>
|
3284 |
-
<pre><code>suhosin.post.max_array_index_length = 1024
|
3285 |
-
suhosin.post.max_totalname_length = 65535
|
3286 |
-
suhosin.post.max_vars = 2048
|
3287 |
-
suhosin.post.max_value_length = 1000000
|
3288 |
-
suhosin.post.max_name_length = 256
|
3289 |
-
suhosin.post.max_array_depth = 1000
|
3290 |
-
suhosin.request.max_array_index_length = 1024
|
3291 |
-
suhosin.request.max_totalname_length = 65535
|
3292 |
-
suhosin.request.max_vars = 2048
|
3293 |
-
suhosin.request.max_value_length = 1000000
|
3294 |
-
suhosin.request.max_varname_length = 256
|
3295 |
-
suhosin.request.max_array_depth = 1000</code></pre>
|
3296 |
-
</div>
|
3297 |
-
<?php
|
3298 |
-
// phpinfo();
|
3299 |
-
}
|
3300 |
-
}
|
3301 |
-
|
3302 |
|
3303 |
////////////////////////////////////////////////////////////////////////////////
|
3304 |
// Support functions for MU version
|
@@ -3574,4 +3249,438 @@ function wpbc_add_log_info( $booking_id_arr, $message ) {
|
|
3574 |
$date_time = date_i18n( ' [Y-m-d H:i]' );
|
3575 |
make_bk_action('wpdev_make_update_of_remark' , $booking_id , $message . $date_time , $is_append );
|
3576 |
}
|
3577 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
512 |
|
513 |
if (is_string($directories)) $directories = array($directories);
|
514 |
foreach ($directories as $dir) {
|
515 |
+
if ( is_dir( $dir ) ) {
|
516 |
+
$directory = $dir;
|
517 |
+
} else {
|
518 |
+
$directory = WPBC_PLUGIN_DIR . $dir;
|
519 |
+
}
|
520 |
|
521 |
if ( file_exists( $directory ) ) { //FixIn: 5.4.5
|
522 |
// create a handler for the directory
|
2974 |
}
|
2975 |
|
2976 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2977 |
|
2978 |
////////////////////////////////////////////////////////////////////////////////
|
2979 |
// Support functions for MU version
|
3249 |
$date_time = date_i18n( ' [Y-m-d H:i]' );
|
3250 |
make_bk_action('wpdev_make_update_of_remark' , $booking_id , $message . $date_time , $is_append );
|
3251 |
}
|
3252 |
+
}
|
3253 |
+
|
3254 |
+
|
3255 |
+
/**
|
3256 |
+
* Get list of cities for timezone usage in format like: $city["Europe"]["Kiev"] = "Kiev";
|
3257 |
+
*
|
3258 |
+
* @return array|array[]
|
3259 |
+
*/
|
3260 |
+
function wpbc_get_booking_region_cities_list(){ //FixIn: 8.9.4.9
|
3261 |
+
|
3262 |
+
$city = array(
|
3263 |
+
'Africa' => array()
|
3264 |
+
, 'America' => array()
|
3265 |
+
, 'Antarctica' => array()
|
3266 |
+
, 'Arctic' => array()
|
3267 |
+
, 'Asia' => array()
|
3268 |
+
, 'Atlantic' => array()
|
3269 |
+
, 'Australia' => array()
|
3270 |
+
, 'Europe' => array()
|
3271 |
+
, 'Indian' => array()
|
3272 |
+
, 'Pacific' => array()
|
3273 |
+
);
|
3274 |
+
$city["Africa"]["Abidjan"] = "Abidjan";
|
3275 |
+
$city["Africa"]["Accra"] = "Accra";
|
3276 |
+
$city["Africa"]["Addis_Ababa"] = "Addis Ababa";
|
3277 |
+
$city["Africa"]["Algiers"] = "Algiers";
|
3278 |
+
$city["Africa"]["Asmara"] = "Asmara";
|
3279 |
+
$city["Africa"]["Bamako"] = "Bamako";
|
3280 |
+
$city["Africa"]["Bangui"] = "Bangui";
|
3281 |
+
$city["Africa"]["Banjul"] = "Banjul";
|
3282 |
+
$city["Africa"]["Bissau"] = "Bissau";
|
3283 |
+
$city["Africa"]["Blantyre"] = "Blantyre";
|
3284 |
+
$city["Africa"]["Brazzaville"] = "Brazzaville";
|
3285 |
+
$city["Africa"]["Bujumbura"] = "Bujumbura";
|
3286 |
+
$city["Africa"]["Cairo"] = "Cairo";
|
3287 |
+
$city["Africa"]["Casablanca"] = "Casablanca";
|
3288 |
+
$city["Africa"]["Ceuta"] = "Ceuta";
|
3289 |
+
$city["Africa"]["Conakry"] = "Conakry";
|
3290 |
+
$city["Africa"]["Dakar"] = "Dakar";
|
3291 |
+
$city["Africa"]["Dar_es_Salaam"] = "Dar es Salaam";
|
3292 |
+
$city["Africa"]["Djibouti"] = "Djibouti";
|
3293 |
+
$city["Africa"]["Douala"] = "Douala";
|
3294 |
+
$city["Africa"]["El_Aaiun"] = "El Aaiun";
|
3295 |
+
$city["Africa"]["Freetown"] = "Freetown";
|
3296 |
+
$city["Africa"]["Gaborone"] = "Gaborone";
|
3297 |
+
$city["Africa"]["Harare"] = "Harare";
|
3298 |
+
$city["Africa"]["Johannesburg"] = "Johannesburg";
|
3299 |
+
$city["Africa"]["Kampala"] = "Kampala";
|
3300 |
+
$city["Africa"]["Khartoum"] = "Khartoum";
|
3301 |
+
$city["Africa"]["Kigali"] = "Kigali";
|
3302 |
+
$city["Africa"]["Kinshasa"] = "Kinshasa";
|
3303 |
+
$city["Africa"]["Lagos"] = "Lagos";
|
3304 |
+
$city["Africa"]["Libreville"] = "Libreville";
|
3305 |
+
$city["Africa"]["Lome"] = "Lome";
|
3306 |
+
$city["Africa"]["Luanda"] = "Luanda";
|
3307 |
+
$city["Africa"]["Lubumbashi"] = "Lubumbashi";
|
3308 |
+
$city["Africa"]["Lusaka"] = "Lusaka";
|
3309 |
+
$city["Africa"]["Malabo"] = "Malabo";
|
3310 |
+
$city["Africa"]["Maputo"] = "Maputo";
|
3311 |
+
$city["Africa"]["Maseru"] = "Maseru";
|
3312 |
+
$city["Africa"]["Mbabane"] = "Mbabane";
|
3313 |
+
$city["Africa"]["Mogadishu"] = "Mogadishu";
|
3314 |
+
$city["Africa"]["Monrovia"] = "Monrovia";
|
3315 |
+
$city["Africa"]["Nairobi"] = "Nairobi";
|
3316 |
+
$city["Africa"]["Ndjamena"] = "Ndjamena";
|
3317 |
+
$city["Africa"]["Niamey"] = "Niamey";
|
3318 |
+
$city["Africa"]["Nouakchott"] = "Nouakchott";
|
3319 |
+
$city["Africa"]["Ouagadougou"] = "Ouagadougou";
|
3320 |
+
$city["Africa"]["Porto-Novo"] = "Porto-Novo";
|
3321 |
+
$city["Africa"]["Sao_Tome"] = "Sao Tome";
|
3322 |
+
$city["Africa"]["Tripoli"] = "Tripoli";
|
3323 |
+
$city["Africa"]["Tunis"] = "Tunis";
|
3324 |
+
$city["Africa"]["Windhoek"] = "Windhoek";
|
3325 |
+
|
3326 |
+
$city["America"]["Adak"] = "Adak";
|
3327 |
+
$city["America"]["Anchorage"] = "Anchorage";
|
3328 |
+
$city["America"]["Anguilla"] = "Anguilla";
|
3329 |
+
$city["America"]["Antigua"] = "Antigua";
|
3330 |
+
$city["America"]["Araguaina"] = "Araguaina";
|
3331 |
+
$city["America"]["Argentina/Buenos_Aires"] = "Argentina - Buenos Aires";
|
3332 |
+
$city["America"]["Argentina/Catamarca"] = "Argentina - Catamarca";
|
3333 |
+
$city["America"]["Argentina/Cordoba"] = "Argentina - Cordoba";
|
3334 |
+
$city["America"]["Argentina/Jujuy"] = "Argentina - Jujuy";
|
3335 |
+
$city["America"]["Argentina/La_Rioja"] = "Argentina - La Rioja";
|
3336 |
+
$city["America"]["Argentina/Mendoza"] = "Argentina - Mendoza";
|
3337 |
+
$city["America"]["Argentina/Rio_Gallegos"] = "Argentina - Rio Gallegos";
|
3338 |
+
$city["America"]["Argentina/Salta"] = "Argentina - Salta";
|
3339 |
+
$city["America"]["Argentina/San_Juan"] = "Argentina - San Juan";
|
3340 |
+
$city["America"]["Argentina/San_Luis"] = "Argentina - San Luis";
|
3341 |
+
$city["America"]["Argentina/Tucuman"] = "Argentina - Tucuman";
|
3342 |
+
$city["America"]["Argentina/Ushuaia"] = "Argentina - Ushuaia";
|
3343 |
+
$city["America"]["Aruba"] = "Aruba";
|
3344 |
+
$city["America"]["Asuncion"] = "Asuncion";
|
3345 |
+
$city["America"]["Atikokan"] = "Atikokan";
|
3346 |
+
$city["America"]["Bahia"] = "Bahia";
|
3347 |
+
$city["America"]["Barbados"] = "Barbados";
|
3348 |
+
$city["America"]["Belem"] = "Belem";
|
3349 |
+
$city["America"]["Belize"] = "Belize";
|
3350 |
+
$city["America"]["Blanc-Sablon"] = "Blanc-Sablon";
|
3351 |
+
$city["America"]["Boa_Vista"] = "Boa Vista";
|
3352 |
+
$city["America"]["Bogota"] = "Bogota";
|
3353 |
+
$city["America"]["Boise"] = "Boise";
|
3354 |
+
$city["America"]["Cambridge_Bay"] = "Cambridge Bay";
|
3355 |
+
$city["America"]["Campo_Grande"] = "Campo Grande";
|
3356 |
+
$city["America"]["Cancun"] = "Cancun";
|
3357 |
+
$city["America"]["Caracas"] = "Caracas";
|
3358 |
+
$city["America"]["Cayenne"] = "Cayenne";
|
3359 |
+
$city["America"]["Cayman"] = "Cayman";
|
3360 |
+
$city["America"]["Chicago"] = "Chicago";
|
3361 |
+
$city["America"]["Chihuahua"] = "Chihuahua";
|
3362 |
+
$city["America"]["Costa_Rica"] = "Costa Rica";
|
3363 |
+
$city["America"]["Cuiaba"] = "Cuiaba";
|
3364 |
+
$city["America"]["Curacao"] = "Curacao";
|
3365 |
+
$city["America"]["Danmarkshavn"] = "Danmarkshavn";
|
3366 |
+
$city["America"]["Dawson"] = "Dawson";
|
3367 |
+
$city["America"]["Dawson_Creek"] = "Dawson Creek";
|
3368 |
+
$city["America"]["Denver"] = "Denver";
|
3369 |
+
$city["America"]["Detroit"] = "Detroit";
|
3370 |
+
$city["America"]["Dominica"] = "Dominica";
|
3371 |
+
$city["America"]["Edmonton"] = "Edmonton";
|
3372 |
+
$city["America"]["Eirunepe"] = "Eirunepe";
|
3373 |
+
$city["America"]["El_Salvador"] = "El Salvador";
|
3374 |
+
$city["America"]["Fortaleza"] = "Fortaleza";
|
3375 |
+
$city["America"]["Glace_Bay"] = "Glace Bay";
|
3376 |
+
$city["America"]["Godthab"] = "Godthab";
|
3377 |
+
$city["America"]["Goose_Bay"] = "Goose Bay";
|
3378 |
+
$city["America"]["Grand_Turk"] = "Grand Turk";
|
3379 |
+
$city["America"]["Grenada"] = "Grenada";
|
3380 |
+
$city["America"]["Guadeloupe"] = "Guadeloupe";
|
3381 |
+
$city["America"]["Guatemala"] = "Guatemala";
|
3382 |
+
$city["America"]["Guayaquil"] = "Guayaquil";
|
3383 |
+
$city["America"]["Guyana"] = "Guyana";
|
3384 |
+
$city["America"]["Halifax"] = "Halifax";
|
3385 |
+
$city["America"]["Havana"] = "Havana";
|
3386 |
+
$city["America"]["Hermosillo"] = "Hermosillo";
|
3387 |
+
$city["America"]["Indiana/Indianapolis"] = "Indiana - Indianapolis";
|
3388 |
+
$city["America"]["Indiana/Knox"] = "Indiana - Knox";
|
3389 |
+
$city["America"]["Indiana/Marengo"] = "Indiana - Marengo";
|
3390 |
+
$city["America"]["Indiana/Petersburg"] = "Indiana - Petersburg";
|
3391 |
+
$city["America"]["Indiana/Tell_City"] = "Indiana - Tell City";
|
3392 |
+
$city["America"]["Indiana/Vevay"] = "Indiana - Vevay";
|
3393 |
+
$city["America"]["Indiana/Vincennes"] = "Indiana - Vincennes";
|
3394 |
+
$city["America"]["Indiana/Winamac"] = "Indiana - Winamac";
|
3395 |
+
$city["America"]["Inuvik"] = "Inuvik";
|
3396 |
+
$city["America"]["Iqaluit"] = "Iqaluit";
|
3397 |
+
$city["America"]["Jamaica"] = "Jamaica";
|
3398 |
+
$city["America"]["Juneau"] = "Juneau";
|
3399 |
+
$city["America"]["Kentucky/Louisville"] = "Kentucky - Louisville";
|
3400 |
+
$city["America"]["Kentucky/Monticello"] = "Kentucky - Monticello";
|
3401 |
+
$city["America"]["La_Paz"] = "La Paz";
|
3402 |
+
$city["America"]["Lima"] = "Lima";
|
3403 |
+
$city["America"]["Los_Angeles"] = "Los Angeles";
|
3404 |
+
$city["America"]["Maceio"] = "Maceio";
|
3405 |
+
$city["America"]["Managua"] = "Managua";
|
3406 |
+
$city["America"]["Manaus"] = "Manaus";
|
3407 |
+
$city["America"]["Marigot"] = "Marigot";
|
3408 |
+
$city["America"]["Martinique"] = "Martinique";
|
3409 |
+
$city["America"]["Mazatlan"] = "Mazatlan";
|
3410 |
+
$city["America"]["Menominee"] = "Menominee";
|
3411 |
+
$city["America"]["Merida"] = "Merida";
|
3412 |
+
$city["America"]["Mexico_City"] = "Mexico City";
|
3413 |
+
$city["America"]["Miquelon"] = "Miquelon";
|
3414 |
+
$city["America"]["Moncton"] = "Moncton";
|
3415 |
+
$city["America"]["Monterrey"] = "Monterrey";
|
3416 |
+
$city["America"]["Montevideo"] = "Montevideo";
|
3417 |
+
$city["America"]["Montreal"] = "Montreal";
|
3418 |
+
$city["America"]["Montserrat"] = "Montserrat";
|
3419 |
+
$city["America"]["Nassau"] = "Nassau";
|
3420 |
+
$city["America"]["New_York"] = "New York";
|
3421 |
+
$city["America"]["Nipigon"] = "Nipigon";
|
3422 |
+
$city["America"]["Nome"] = "Nome";
|
3423 |
+
$city["America"]["Noronha"] = "Noronha";
|
3424 |
+
$city["America"]["North_Dakota/Center"] = "North Dakota - Center";
|
3425 |
+
$city["America"]["North_Dakota/New_Salem"] = "North Dakota - New Salem";
|
3426 |
+
$city["America"]["Panama"] = "Panama";
|
3427 |
+
$city["America"]["Pangnirtung"] = "Pangnirtung";
|
3428 |
+
$city["America"]["Paramaribo"] = "Paramaribo";
|
3429 |
+
$city["America"]["Phoenix"] = "Phoenix";
|
3430 |
+
$city["America"]["Port-au-Prince"] = "Port-au-Prince";
|
3431 |
+
$city["America"]["Port_of_Spain"] = "Port of Spain";
|
3432 |
+
$city["America"]["Porto_Velho"] = "Porto Velho";
|
3433 |
+
$city["America"]["Puerto_Rico"] = "Puerto Rico";
|
3434 |
+
$city["America"]["Rainy_River"] = "Rainy River";
|
3435 |
+
$city["America"]["Rankin_Inlet"] = "Rankin Inlet";
|
3436 |
+
$city["America"]["Recife"] = "Recife";
|
3437 |
+
$city["America"]["Regina"] = "Regina";
|
3438 |
+
$city["America"]["Resolute"] = "Resolute";
|
3439 |
+
$city["America"]["Rio_Branco"] = "Rio Branco";
|
3440 |
+
$city["America"]["Santarem"] = "Santarem";
|
3441 |
+
$city["America"]["Santiago"] = "Santiago";
|
3442 |
+
$city["America"]["Santo_Domingo"] = "Santo Domingo";
|
3443 |
+
$city["America"]["Sao_Paulo"] = "Sao Paulo";
|
3444 |
+
$city["America"]["Scoresbysund"] = "Scoresbysund";
|
3445 |
+
$city["America"]["Shiprock"] = "Shiprock";
|
3446 |
+
$city["America"]["St_Barthelemy"] = "St Barthelemy";
|
3447 |
+
$city["America"]["St_Johns"] = "St Johns";
|
3448 |
+
$city["America"]["St_Kitts"] = "St Kitts";
|
3449 |
+
$city["America"]["St_Lucia"] = "St Lucia";
|
3450 |
+
$city["America"]["St_Thomas"] = "St Thomas";
|
3451 |
+
$city["America"]["St_Vincent"] = "St Vincent";
|
3452 |
+
$city["America"]["Swift_Current"] = "Swift Current";
|
3453 |
+
$city["America"]["Tegucigalpa"] = "Tegucigalpa";
|
3454 |
+
$city["America"]["Thule"] = "Thule";
|
3455 |
+
$city["America"]["Thunder_Bay"] = "Thunder Bay";
|
3456 |
+
$city["America"]["Tijuana"] = "Tijuana";
|
3457 |
+
$city["America"]["Toronto"] = "Toronto";
|
3458 |
+
$city["America"]["Tortola"] = "Tortola";
|
3459 |
+
$city["America"]["Vancouver"] = "Vancouver";
|
3460 |
+
$city["America"]["Whitehorse"] = "Whitehorse";
|
3461 |
+
$city["America"]["Winnipeg"] = "Winnipeg";
|
3462 |
+
$city["America"]["Yakutat"] = "Yakutat";
|
3463 |
+
$city["America"]["Yellowknife"] = "Yellowknife";
|
3464 |
+
|
3465 |
+
$city["Antarctica"]["Casey"] = "Casey";
|
3466 |
+
$city["Antarctica"]["Davis"] = "Davis";
|
3467 |
+
$city["Antarctica"]["DumontDUrville"] = "DumontDUrville";
|
3468 |
+
$city["Antarctica"]["Mawson"] = "Mawson";
|
3469 |
+
$city["Antarctica"]["McMurdo"] = "McMurdo";
|
3470 |
+
$city["Antarctica"]["Palmer"] = "Palmer";
|
3471 |
+
$city["Antarctica"]["Rothera"] = "Rothera";
|
3472 |
+
$city["Antarctica"]["South_Pole"] = "South Pole";
|
3473 |
+
$city["Antarctica"]["Syowa"] = "Syowa";
|
3474 |
+
$city["Antarctica"]["Vostok"] = "Vostok";
|
3475 |
+
|
3476 |
+
$city["Arctic"]["Longyearbyen"] = "Longyearbyen";
|
3477 |
+
|
3478 |
+
$city["Asia"]["Aden"] = "Aden";
|
3479 |
+
$city["Asia"]["Almaty"] = "Almaty";
|
3480 |
+
$city["Asia"]["Amman"] = "Amman";
|
3481 |
+
$city["Asia"]["Anadyr"] = "Anadyr";
|
3482 |
+
$city["Asia"]["Aqtau"] = "Aqtau";
|
3483 |
+
$city["Asia"]["Aqtobe"] = "Aqtobe";
|
3484 |
+
$city["Asia"]["Ashgabat"] = "Ashgabat";
|
3485 |
+
$city["Asia"]["Baghdad"] = "Baghdad";
|
3486 |
+
$city["Asia"]["Bahrain"] = "Bahrain";
|
3487 |
+
$city["Asia"]["Baku"] = "Baku";
|
3488 |
+
$city["Asia"]["Bangkok"] = "Bangkok";
|
3489 |
+
$city["Asia"]["Beirut"] = "Beirut";
|
3490 |
+
$city["Asia"]["Bishkek"] = "Bishkek";
|
3491 |
+
$city["Asia"]["Brunei"] = "Brunei";
|
3492 |
+
$city["Asia"]["Choibalsan"] = "Choibalsan";
|
3493 |
+
$city["Asia"]["Chongqing"] = "Chongqing";
|
3494 |
+
$city["Asia"]["Colombo"] = "Colombo";
|
3495 |
+
$city["Asia"]["Damascus"] = "Damascus";
|
3496 |
+
$city["Asia"]["Dhaka"] = "Dhaka";
|
3497 |
+
$city["Asia"]["Dili"] = "Dili";
|
3498 |
+
$city["Asia"]["Dubai"] = "Dubai";
|
3499 |
+
$city["Asia"]["Dushanbe"] = "Dushanbe";
|
3500 |
+
$city["Asia"]["Gaza"] = "Gaza";
|
3501 |
+
$city["Asia"]["Harbin"] = "Harbin";
|
3502 |
+
$city["Asia"]["Ho_Chi_Minh"] = "Ho Chi Minh";
|
3503 |
+
$city["Asia"]["Hong_Kong"] = "Hong Kong";
|
3504 |
+
$city["Asia"]["Hovd"] = "Hovd";
|
3505 |
+
$city["Asia"]["Irkutsk"] = "Irkutsk";
|
3506 |
+
$city["Asia"]["Jakarta"] = "Jakarta";
|
3507 |
+
$city["Asia"]["Jayapura"] = "Jayapura";
|
3508 |
+
$city["Asia"]["Jerusalem"] = "Jerusalem";
|
3509 |
+
$city["Asia"]["Kabul"] = "Kabul";
|
3510 |
+
$city["Asia"]["Kamchatka"] = "Kamchatka";
|
3511 |
+
$city["Asia"]["Karachi"] = "Karachi";
|
3512 |
+
$city["Asia"]["Kashgar"] = "Kashgar";
|
3513 |
+
$city["Asia"]["Kathmandu"] = "Kathmandu";
|
3514 |
+
$city["Asia"]["Kolkata"] = "Kolkata";
|
3515 |
+
$city["Asia"]["Krasnoyarsk"] = "Krasnoyarsk";
|
3516 |
+
$city["Asia"]["Kuala_Lumpur"] = "Kuala Lumpur";
|
3517 |
+
$city["Asia"]["Kuching"] = "Kuching";
|
3518 |
+
$city["Asia"]["Kuwait"] = "Kuwait";
|
3519 |
+
$city["Asia"]["Macau"] = "Macau";
|
3520 |
+
$city["Asia"]["Magadan"] = "Magadan";
|
3521 |
+
$city["Asia"]["Makassar"] = "Makassar";
|
3522 |
+
$city["Asia"]["Manila"] = "Manila";
|
3523 |
+
$city["Asia"]["Muscat"] = "Muscat";
|
3524 |
+
$city["Asia"]["Nicosia"] = "Nicosia";
|
3525 |
+
$city["Asia"]["Novosibirsk"] = "Novosibirsk";
|
3526 |
+
$city["Asia"]["Omsk"] = "Omsk";
|
3527 |
+
$city["Asia"]["Oral"] = "Oral";
|
3528 |
+
$city["Asia"]["Phnom_Penh"] = "Phnom Penh";
|
3529 |
+
$city["Asia"]["Pontianak"] = "Pontianak";
|
3530 |
+
$city["Asia"]["Pyongyang"] = "Pyongyang";
|
3531 |
+
$city["Asia"]["Qatar"] = "Qatar";
|
3532 |
+
$city["Asia"]["Qyzylorda"] = "Qyzylorda";
|
3533 |
+
$city["Asia"]["Rangoon"] = "Rangoon";
|
3534 |
+
$city["Asia"]["Riyadh"] = "Riyadh";
|
3535 |
+
$city["Asia"]["Sakhalin"] = "Sakhalin";
|
3536 |
+
$city["Asia"]["Samarkand"] = "Samarkand";
|
3537 |
+
$city["Asia"]["Seoul"] = "Seoul";
|
3538 |
+
$city["Asia"]["Shanghai"] = "Shanghai";
|
3539 |
+
$city["Asia"]["Singapore"] = "Singapore";
|
3540 |
+
$city["Asia"]["Taipei"] = "Taipei";
|
3541 |
+
$city["Asia"]["Tashkent"] = "Tashkent";
|
3542 |
+
$city["Asia"]["Tbilisi"] = "Tbilisi";
|
3543 |
+
$city["Asia"]["Tehran"] = "Tehran";
|
3544 |
+
$city["Asia"]["Thimphu"] = "Thimphu";
|
3545 |
+
$city["Asia"]["Tokyo"] = "Tokyo";
|
3546 |
+
$city["Asia"]["Ulaanbaatar"] = "Ulaanbaatar";
|
3547 |
+
$city["Asia"]["Urumqi"] = "Urumqi";
|
3548 |
+
$city["Asia"]["Vientiane"] = "Vientiane";
|
3549 |
+
$city["Asia"]["Vladivostok"] = "Vladivostok";
|
3550 |
+
$city["Asia"]["Yakutsk"] = "Yakutsk";
|
3551 |
+
$city["Asia"]["Yekaterinburg"] = "Yekaterinburg";
|
3552 |
+
$city["Asia"]["Yerevan"] = "Yerevan";
|
3553 |
+
|
3554 |
+
$city["Atlantic"]["Azores"] = "Azores";
|
3555 |
+
$city["Atlantic"]["Bermuda"] = "Bermuda";
|
3556 |
+
$city["Atlantic"]["Canary"] = "Canary";
|
3557 |
+
$city["Atlantic"]["Cape_Verde"] = "Cape Verde";
|
3558 |
+
$city["Atlantic"]["Faroe"] = "Faroe";
|
3559 |
+
$city["Atlantic"]["Madeira"] = "Madeira";
|
3560 |
+
$city["Atlantic"]["Reykjavik"] = "Reykjavik";
|
3561 |
+
$city["Atlantic"]["South_Georgia"] = "South Georgia";
|
3562 |
+
$city["Atlantic"]["Stanley"] = "Stanley";
|
3563 |
+
$city["Atlantic"]["St_Helena"] = "St Helena";
|
3564 |
+
|
3565 |
+
$city["Australia"]["Adelaide"] = "Adelaide";
|
3566 |
+
$city["Australia"]["Brisbane"] = "Brisbane";
|
3567 |
+
$city["Australia"]["Broken_Hill"] = "Broken Hill";
|
3568 |
+
$city["Australia"]["Currie"] = "Currie";
|
3569 |
+
$city["Australia"]["Darwin"] = "Darwin";
|
3570 |
+
$city["Australia"]["Eucla"] = "Eucla";
|
3571 |
+
$city["Australia"]["Hobart"] = "Hobart";
|
3572 |
+
$city["Australia"]["Lindeman"] = "Lindeman";
|
3573 |
+
$city["Australia"]["Lord_Howe"] = "Lord Howe";
|
3574 |
+
$city["Australia"]["Melbourne"] = "Melbourne";
|
3575 |
+
$city["Australia"]["Perth"] = "Perth";
|
3576 |
+
$city["Australia"]["Sydney"] = "Sydney";
|
3577 |
+
|
3578 |
+
$city["Europe"]["Amsterdam"] = "Amsterdam";
|
3579 |
+
$city["Europe"]["Andorra"] = "Andorra";
|
3580 |
+
$city["Europe"]["Athens"] = "Athens";
|
3581 |
+
$city["Europe"]["Belgrade"] = "Belgrade";
|
3582 |
+
$city["Europe"]["Berlin"] = "Berlin";
|
3583 |
+
$city["Europe"]["Bratislava"] = "Bratislava";
|
3584 |
+
$city["Europe"]["Brussels"] = "Brussels";
|
3585 |
+
$city["Europe"]["Bucharest"] = "Bucharest";
|
3586 |
+
$city["Europe"]["Budapest"] = "Budapest";
|
3587 |
+
$city["Europe"]["Chisinau"] = "Chisinau";
|
3588 |
+
$city["Europe"]["Copenhagen"] = "Copenhagen";
|
3589 |
+
$city["Europe"]["Dublin"] = "Dublin";
|
3590 |
+
$city["Europe"]["Gibraltar"] = "Gibraltar";
|
3591 |
+
$city["Europe"]["Guernsey"] = "Guernsey";
|
3592 |
+
$city["Europe"]["Helsinki"] = "Helsinki";
|
3593 |
+
$city["Europe"]["Isle_of_Man"] = "Isle of Man";
|
3594 |
+
$city["Europe"]["Istanbul"] = "Istanbul";
|
3595 |
+
$city["Europe"]["Jersey"] = "Jersey";
|
3596 |
+
$city["Europe"]["Kaliningrad"] = "Kaliningrad";
|
3597 |
+
$city["Europe"]["Kiev"] = "Kiev";
|
3598 |
+
$city["Europe"]["Lisbon"] = "Lisbon";
|
3599 |
+
$city["Europe"]["Ljubljana"] = "Ljubljana";
|
3600 |
+
$city["Europe"]["London"] = "London";
|
3601 |
+
$city["Europe"]["Luxembourg"] = "Luxembourg";
|
3602 |
+
$city["Europe"]["Madrid"] = "Madrid";
|
3603 |
+
$city["Europe"]["Malta"] = "Malta";
|
3604 |
+
$city["Europe"]["Mariehamn"] = "Mariehamn";
|
3605 |
+
$city["Europe"]["Minsk"] = "Minsk";
|
3606 |
+
$city["Europe"]["Monaco"] = "Monaco";
|
3607 |
+
$city["Europe"]["Moscow"] = "Moscow";
|
3608 |
+
$city["Europe"]["Oslo"] = "Oslo";
|
3609 |
+
$city["Europe"]["Paris"] = "Paris";
|
3610 |
+
$city["Europe"]["Podgorica"] = "Podgorica";
|
3611 |
+
$city["Europe"]["Prague"] = "Prague";
|
3612 |
+
$city["Europe"]["Riga"] = "Riga";
|
3613 |
+
$city["Europe"]["Rome"] = "Rome";
|
3614 |
+
$city["Europe"]["Samara"] = "Samara";
|
3615 |
+
$city["Europe"]["San_Marino"] = "San Marino";
|
3616 |
+
$city["Europe"]["Sarajevo"] = "Sarajevo";
|
3617 |
+
$city["Europe"]["Simferopol"] = "Simferopol";
|
3618 |
+
$city["Europe"]["Skopje"] = "Skopje";
|
3619 |
+
$city["Europe"]["Sofia"] = "Sofia";
|
3620 |
+
$city["Europe"]["Stockholm"] = "Stockholm";
|
3621 |
+
$city["Europe"]["Tallinn"] = "Tallinn";
|
3622 |
+
$city["Europe"]["Tirane"] = "Tirane";
|
3623 |
+
$city["Europe"]["Uzhgorod"] = "Uzhgorod";
|
3624 |
+
$city["Europe"]["Vaduz"] = "Vaduz";
|
3625 |
+
$city["Europe"]["Vatican"] = "Vatican";
|
3626 |
+
$city["Europe"]["Vienna"] = "Vienna";
|
3627 |
+
$city["Europe"]["Vilnius"] = "Vilnius";
|
3628 |
+
$city["Europe"]["Volgograd"] = "Volgograd";
|
3629 |
+
$city["Europe"]["Warsaw"] = "Warsaw";
|
3630 |
+
$city["Europe"]["Zagreb"] = "Zagreb";
|
3631 |
+
$city["Europe"]["Zaporozhye"] = "Zaporozhye";
|
3632 |
+
$city["Europe"]["Zurich"] = "Zurich";
|
3633 |
+
|
3634 |
+
$city["Indian"]["Antananarivo"] = "Antananarivo";
|
3635 |
+
$city["Indian"]["Chagos"] = "Chagos";
|
3636 |
+
$city["Indian"]["Christmas"] = "Christmas";
|
3637 |
+
$city["Indian"]["Cocos"] = "Cocos";
|
3638 |
+
$city["Indian"]["Comoro"] = "Comoro";
|
3639 |
+
$city["Indian"]["Kerguelen"] = "Kerguelen";
|
3640 |
+
$city["Indian"]["Mahe"] = "Mahe";
|
3641 |
+
$city["Indian"]["Maldives"] = "Maldives";
|
3642 |
+
$city["Indian"]["Mauritius"] = "Mauritius";
|
3643 |
+
$city["Indian"]["Mayotte"] = "Mayotte";
|
3644 |
+
$city["Indian"]["Reunion"] = "Reunion";
|
3645 |
+
|
3646 |
+
$city["Pacific"]["Apia"] = "Apia";
|
3647 |
+
$city["Pacific"]["Auckland"] = "Auckland";
|
3648 |
+
$city["Pacific"]["Chatham"] = "Chatham";
|
3649 |
+
$city["Pacific"]["Easter"] = "Easter";
|
3650 |
+
$city["Pacific"]["Efate"] = "Efate";
|
3651 |
+
$city["Pacific"]["Enderbury"] = "Enderbury";
|
3652 |
+
$city["Pacific"]["Fakaofo"] = "Fakaofo";
|
3653 |
+
$city["Pacific"]["Fiji"] = "Fiji";
|
3654 |
+
$city["Pacific"]["Funafuti"] = "Funafuti";
|
3655 |
+
$city["Pacific"]["Galapagos"] = "Galapagos";
|
3656 |
+
$city["Pacific"]["Gambier"] = "Gambier";
|
3657 |
+
$city["Pacific"]["Guadalcanal"] = "Guadalcanal";
|
3658 |
+
$city["Pacific"]["Guam"] = "Guam";
|
3659 |
+
$city["Pacific"]["Honolulu"] = "Honolulu";
|
3660 |
+
$city["Pacific"]["Johnston"] = "Johnston";
|
3661 |
+
$city["Pacific"]["Kiritimati"] = "Kiritimati";
|
3662 |
+
$city["Pacific"]["Kosrae"] = "Kosrae";
|
3663 |
+
$city["Pacific"]["Kwajalein"] = "Kwajalein";
|
3664 |
+
$city["Pacific"]["Majuro"] = "Majuro";
|
3665 |
+
$city["Pacific"]["Marquesas"] = "Marquesas";
|
3666 |
+
$city["Pacific"]["Midway"] = "Midway";
|
3667 |
+
$city["Pacific"]["Nauru"] = "Nauru";
|
3668 |
+
$city["Pacific"]["Niue"] = "Niue";
|
3669 |
+
$city["Pacific"]["Norfolk"] = "Norfolk";
|
3670 |
+
$city["Pacific"]["Noumea"] = "Noumea";
|
3671 |
+
$city["Pacific"]["Pago_Pago"] = "Pago Pago";
|
3672 |
+
$city["Pacific"]["Palau"] = "Palau";
|
3673 |
+
$city["Pacific"]["Pitcairn"] = "Pitcairn";
|
3674 |
+
$city["Pacific"]["Ponape"] = "Ponape";
|
3675 |
+
$city["Pacific"]["Port_Moresby"] = "Port Moresby";
|
3676 |
+
$city["Pacific"]["Rarotonga"] = "Rarotonga";
|
3677 |
+
$city["Pacific"]["Saipan"] = "Saipan";
|
3678 |
+
$city["Pacific"]["Tahiti"] = "Tahiti";
|
3679 |
+
$city["Pacific"]["Tarawa"] = "Tarawa";
|
3680 |
+
$city["Pacific"]["Tongatapu"] = "Tongatapu";
|
3681 |
+
$city["Pacific"]["Truk"] = "Truk";
|
3682 |
+
$city["Pacific"]["Wake"] = "Wake";
|
3683 |
+
$city["Pacific"]["Wallis"] = "Wallis";
|
3684 |
+
|
3685 |
+
return $city;
|
3686 |
+
}
|
core/wpbc-include.php
CHANGED
@@ -17,6 +17,9 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
17 |
////////////////////////////////////////////////////////////////////////////////
|
18 |
// L O A D F I L E S
|
19 |
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
20 |
|
21 |
require_once( WPBC_PLUGIN_DIR . '/core/any/class-css-js.php' ); // Abstract. Loading CSS & JS files = Package: Any =
|
22 |
require_once( WPBC_PLUGIN_DIR . '/core/any/class-admin-settings-api.php' ); // Abstract. Settings API.
|
@@ -29,29 +32,28 @@ if( is_admin() ) {
|
|
29 |
require_once WPBC_PLUGIN_DIR . '/core/class/wpbc-class-welcome.php'; // Class - Welcome Page - info about new version.
|
30 |
}
|
31 |
// Functions
|
32 |
-
require_once( WPBC_PLUGIN_DIR . '/core/wpbc-
|
33 |
-
require_once( WPBC_PLUGIN_DIR . '/core/wpbc-
|
34 |
-
|
35 |
-
|
36 |
-
if ( file_exists( WPBC_PLUGIN_DIR . '/core/lib/wpbc_all_translations.php' ) ){
|
37 |
|
38 |
-
require_once( WPBC_PLUGIN_DIR . '/core/
|
39 |
|
40 |
//FixIn: 8.7.3.6
|
41 |
-
if ( file_exists( WPBC_PLUGIN_DIR . '/core/
|
42 |
-
require_once( WPBC_PLUGIN_DIR . '/core/
|
43 |
}
|
44 |
-
if ( file_exists( WPBC_PLUGIN_DIR . '/core/
|
45 |
-
require_once( WPBC_PLUGIN_DIR . '/core/
|
46 |
}
|
47 |
-
if ( file_exists( WPBC_PLUGIN_DIR . '/core/
|
48 |
-
require_once( WPBC_PLUGIN_DIR . '/core/
|
49 |
}
|
50 |
-
if ( file_exists( WPBC_PLUGIN_DIR . '/core/
|
51 |
-
require_once( WPBC_PLUGIN_DIR . '/core/
|
52 |
}
|
53 |
-
if ( file_exists( WPBC_PLUGIN_DIR . '/core/
|
54 |
-
require_once( WPBC_PLUGIN_DIR . '/core/
|
55 |
}
|
56 |
}
|
57 |
require_once( WPBC_PLUGIN_DIR . '/core/wpbc-functions.php' ); // Functions
|
@@ -73,6 +75,7 @@ require_once( WPBC_PLUGIN_DIR . '/core/admin/page-bookings.php' );
|
|
73 |
require_once( WPBC_PLUGIN_DIR . '/core/admin/page-timeline.php' ); // Timeline
|
74 |
require_once( WPBC_PLUGIN_DIR . '/core/admin/page-new.php' ); // Add New Booking page
|
75 |
|
|
|
76 |
require_once( WPBC_PLUGIN_DIR . '/core/admin/page-settings.php' ); // Settings page
|
77 |
require_once( WPBC_PLUGIN_DIR . '/core/admin/api-settings.php' ); // Settings API
|
78 |
|
@@ -105,30 +108,6 @@ require_once WPBC_PLUGIN_DIR . '/core/lib/wpdev-booking-widget.php';
|
|
105 |
require_once WPBC_PLUGIN_DIR . '/js/captcha/captcha.php'; // C A P T C H A
|
106 |
|
107 |
|
108 |
-
//FixIn: 8.8.3.8
|
109 |
-
add_action( 'plugins_loaded', 'wpbc_late_load_country_list', 100, 1 );
|
110 |
-
/**
|
111 |
-
* Load country list after locale defined by some other translation plugin.
|
112 |
-
*/
|
113 |
-
function wpbc_late_load_country_list() {
|
114 |
-
|
115 |
-
//FixIn: 8.8.2.5
|
116 |
-
$locale = wpbc_get_booking_locale();
|
117 |
-
if ( ! empty( $locale ) ) {
|
118 |
-
$locale_lang = strtolower( substr( $locale, 0, 2 ) );
|
119 |
-
$locale_country = strtolower( substr( $locale, 3 ) );
|
120 |
-
|
121 |
-
if ( ( $locale_lang !== 'en' ) && ( wpbc_is_file_exist( '/languages/wpdev-country-list-' . $locale . '.php' ) ) ) {
|
122 |
-
require_once WPBC_PLUGIN_DIR . '/languages/wpdev-country-list-' . $locale . '.php';
|
123 |
-
} else {
|
124 |
-
require_once WPBC_PLUGIN_DIR . '/languages/wpdev-country-list.php';
|
125 |
-
}
|
126 |
-
} else {
|
127 |
-
require_once WPBC_PLUGIN_DIR . '/languages/wpdev-country-list.php';
|
128 |
-
}
|
129 |
-
}
|
130 |
-
|
131 |
-
|
132 |
require_once WPBC_PLUGIN_DIR . '/core/lib/wpdev-booking-class.php'; // C L A S S B o o k i n g
|
133 |
require_once WPBC_PLUGIN_DIR . '/core/lib/wpbc-booking-new.php'; // N e w
|
134 |
require_once WPBC_PLUGIN_DIR . '/core/lib/wpbc-cron.php'; // CRON @since: 5.2.0
|
17 |
////////////////////////////////////////////////////////////////////////////////
|
18 |
// L O A D F I L E S
|
19 |
////////////////////////////////////////////////////////////////////////////////
|
20 |
+
require_once( WPBC_PLUGIN_DIR . '/core/wpbc-debug.php' ); // Debug = Package: WPBC =
|
21 |
+
require_once( WPBC_PLUGIN_DIR . '/core/wpbc-core.php' ); // Core
|
22 |
+
|
23 |
|
24 |
require_once( WPBC_PLUGIN_DIR . '/core/any/class-css-js.php' ); // Abstract. Loading CSS & JS files = Package: Any =
|
25 |
require_once( WPBC_PLUGIN_DIR . '/core/any/class-admin-settings-api.php' ); // Abstract. Settings API.
|
32 |
require_once WPBC_PLUGIN_DIR . '/core/class/wpbc-class-welcome.php'; // Class - Welcome Page - info about new version.
|
33 |
}
|
34 |
// Functions
|
35 |
+
require_once( WPBC_PLUGIN_DIR . '/core/wpbc-dates.php' ); // Dates
|
36 |
+
require_once( WPBC_PLUGIN_DIR . '/core/wpbc-translation.php' ); // Translation, must be loaded after '/core/wpbc-core.php', because there defined add_bk_filter(), etc...
|
37 |
+
//FixIn: 8.9.4.12
|
38 |
+
if ( file_exists( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations.php' ) ){
|
|
|
39 |
|
40 |
+
require_once( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations.php' ); // All Translation Terms
|
41 |
|
42 |
//FixIn: 8.7.3.6
|
43 |
+
if ( file_exists( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations1.php' ) ){
|
44 |
+
require_once( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations1.php' );
|
45 |
}
|
46 |
+
if ( file_exists( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations2.php' ) ){
|
47 |
+
require_once( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations2.php' );
|
48 |
}
|
49 |
+
if ( file_exists( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations3.php' ) ){
|
50 |
+
require_once( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations3.php' );
|
51 |
}
|
52 |
+
if ( file_exists( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations4.php' ) ){
|
53 |
+
require_once( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations4.php' );
|
54 |
}
|
55 |
+
if ( file_exists( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations5.php' ) ){
|
56 |
+
require_once( WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations5.php' );
|
57 |
}
|
58 |
}
|
59 |
require_once( WPBC_PLUGIN_DIR . '/core/wpbc-functions.php' ); // Functions
|
75 |
require_once( WPBC_PLUGIN_DIR . '/core/admin/page-timeline.php' ); // Timeline
|
76 |
require_once( WPBC_PLUGIN_DIR . '/core/admin/page-new.php' ); // Add New Booking page
|
77 |
|
78 |
+
require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-settings-functions.php' ); // Support functions for Booking > Settings General page
|
79 |
require_once( WPBC_PLUGIN_DIR . '/core/admin/page-settings.php' ); // Settings page
|
80 |
require_once( WPBC_PLUGIN_DIR . '/core/admin/api-settings.php' ); // Settings API
|
81 |
|
108 |
require_once WPBC_PLUGIN_DIR . '/js/captcha/captcha.php'; // C A P T C H A
|
109 |
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
require_once WPBC_PLUGIN_DIR . '/core/lib/wpdev-booking-class.php'; // C L A S S B o o k i n g
|
112 |
require_once WPBC_PLUGIN_DIR . '/core/lib/wpbc-booking-new.php'; // N e w
|
113 |
require_once WPBC_PLUGIN_DIR . '/core/lib/wpbc-cron.php'; // CRON @since: 5.2.0
|
core/wpbc-js.php
CHANGED
@@ -48,9 +48,75 @@ class WPBC_JS extends WPBC_JS_CSS {
|
|
48 |
$where_to_load = 'both';
|
49 |
|
50 |
// Load JavaScript files in all other versions
|
51 |
-
do_action( 'wpbc_enqueue_js_files', $where_to_load );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
/**
|
55 |
* Deregister some conflict scripts from other plugins.
|
56 |
*
|
@@ -146,7 +212,7 @@ function wpbc_js_load_vars( $where_to_load ) {
|
|
146 |
)
|
147 |
) ? 'true': 'false' ) //FixIn: TimeFree 2 - in Booking Calendar Free version show by default times hints in AM/PM format
|
148 |
, 'is_booking_used_check_in_out_time' => 'false'
|
149 |
-
, 'wpbc_active_locale' =>
|
150 |
, 'wpbc_message_processing' => esc_js( __('Processing' ,'booking') )
|
151 |
, 'wpbc_message_deleting' => esc_js( __('Deleting' ,'booking') )
|
152 |
, 'wpbc_message_updating' => esc_js( __('Updating' ,'booking') )
|
@@ -201,7 +267,7 @@ function wpbc_js_load_files( $where_to_load ) {
|
|
201 |
//FixIn: 8.7.9.12
|
202 |
|
203 |
// Datepicker
|
204 |
-
wp_enqueue_script( 'wpbc-datepick', wpbc_plugin_url( '/js/datepick/jquery.datepick.wpbc.
|
205 |
|
206 |
//wp_enqueue_script( 'wpbc-datepick-plugin', wpbc_plugin_url( '/js/datepick.5.1/jquery.plugin.js'), array( 'wpbc-global-vars' ), '5.1');
|
207 |
//wp_enqueue_script( 'wpbc-datepick', wpbc_plugin_url( '/js/datepick.5.1/jquery.datepick.js'), array( 'wpbc-global-vars' ), '5.1');
|
@@ -254,7 +320,7 @@ function wpbc_js_load_files( $where_to_load ) {
|
|
254 |
function wpbc_load_calendar_localization_file() {
|
255 |
|
256 |
// Datepicker Localization - translation for calendar. Example: $locale = 'fr_FR';
|
257 |
-
$locale =
|
258 |
if ( ! empty( $locale ) ) {
|
259 |
|
260 |
$locale_lang = substr( $locale, 0, 2 );
|
@@ -281,7 +347,7 @@ function wpbc_load_calendar_localization_file() {
|
|
281 |
*/
|
282 |
function wpbc_get_calendar_localization_url() {
|
283 |
// Datepicker Localization - translation for calendar. Example: $locale = 'fr_FR';
|
284 |
-
$locale =
|
285 |
|
286 |
$calendar_localization_url = false;
|
287 |
|
48 |
$where_to_load = 'both';
|
49 |
|
50 |
// Load JavaScript files in all other versions
|
51 |
+
do_action( 'wpbc_enqueue_js_files', $where_to_load );
|
52 |
+
|
53 |
+
/*
|
54 |
+
* Remove `async` and `defer` ( check more here https://javascript.info/script-async-defer )
|
55 |
+
* for scripts registered or enqueued, that required for correct working of plugin, like
|
56 |
+
* jquery and all Booking Calendar scripts
|
57 |
+
* because inside content of the page can be something like jQuery(document).ready( function(){ ...} which will
|
58 |
+
* generate Uncaught ReferenceError: jQuery is not defined
|
59 |
+
*/
|
60 |
+
add_filter( 'script_loader_tag', array( $this, 'filter_script_loader_tag' ), 9000000000 , 3 );
|
61 |
}
|
62 |
|
63 |
+
|
64 |
+
/**
|
65 |
+
* Remove `async` and `defer` ( check more here https://javascript.info/script-async-defer )
|
66 |
+
* for scripts registered or enqueued, that required for correct working of plugin, like
|
67 |
+
* jquery and all Booking Calendar scripts
|
68 |
+
*
|
69 |
+
* @param string $tag The script tag.
|
70 |
+
* @param string $handle The script handle.
|
71 |
+
*
|
72 |
+
* @return string Script HTML string.
|
73 |
+
*
|
74 |
+
*/
|
75 |
+
public function filter_script_loader_tag( $tag, $handle, $src ) {
|
76 |
+
|
77 |
+
$script_handles_prevent_defer = array(
|
78 |
+
'jquery-core' // exact value
|
79 |
+
, 'jquery-migrate'
|
80 |
+
//, 'wpbc-' //starting from 'wpbc-' it's not the exact value
|
81 |
+
//, 'wpdevelop-'
|
82 |
+
);
|
83 |
+
|
84 |
+
|
85 |
+
// Remove defer and async attribute from the src.
|
86 |
+
if (
|
87 |
+
( 'jquery-core' === $handle )
|
88 |
+
|| ( 'jquery-migrate' === $handle )
|
89 |
+
|| ( false !== strpos( $handle, 'wpbc-' ) ) // Booking Calendar scripts
|
90 |
+
|| ( false !== strpos( $handle, 'wpdevelop-' ) )
|
91 |
+
|| ( false !== strpos( $handle, 'wpbm-' ) )
|
92 |
+
) {
|
93 |
+
|
94 |
+
foreach ( array( 'async', 'defer' ) as $attr ) {
|
95 |
+
|
96 |
+
if ( preg_match( ":\s$attr(=|>|\s):", $tag ) ) {
|
97 |
+
$tag = str_replace($attr, '', $tag);
|
98 |
+
$tag = str_replace('=""', '', $tag);
|
99 |
+
$tag = str_replace("=''", '', $tag);
|
100 |
+
|
101 |
+
/*
|
102 |
+
* Test here https://regex101.com/
|
103 |
+
*
|
104 |
+
* Expression: \s+defer(\s*=\s*["']defer["'])?\s?
|
105 |
+
* Test string: <script type='text/javascript' defer = 'defer' defer="defer" src='http://beta/wp-content/plugins/booking-manager/js/wpbm_vars.js?ver=1.1' id='wpbm-global-vars-js'></script>
|
106 |
+
*
|
107 |
+
*/
|
108 |
+
$pattern = ":\s+{$attr}(\s*=\s*[\"']{$attr}[\"'])?\s?:mi";
|
109 |
+
$replacement = ' ';
|
110 |
+
$tag = preg_replace($pattern, $replacement, $tag);
|
111 |
+
}
|
112 |
+
|
113 |
+
}
|
114 |
+
}
|
115 |
+
|
116 |
+
return $tag;
|
117 |
+
}
|
118 |
+
|
119 |
+
|
120 |
/**
|
121 |
* Deregister some conflict scripts from other plugins.
|
122 |
*
|
212 |
)
|
213 |
) ? 'true': 'false' ) //FixIn: TimeFree 2 - in Booking Calendar Free version show by default times hints in AM/PM format
|
214 |
, 'is_booking_used_check_in_out_time' => 'false'
|
215 |
+
, 'wpbc_active_locale' => wpbc_get_maybe_reloaded_booking_locale()
|
216 |
, 'wpbc_message_processing' => esc_js( __('Processing' ,'booking') )
|
217 |
, 'wpbc_message_deleting' => esc_js( __('Deleting' ,'booking') )
|
218 |
, 'wpbc_message_updating' => esc_js( __('Updating' ,'booking') )
|
267 |
//FixIn: 8.7.9.12
|
268 |
|
269 |
// Datepicker
|
270 |
+
wp_enqueue_script( 'wpbc-datepick', wpbc_plugin_url( '/js/datepick/jquery.datepick.wpbc.9.0.js'), array( 'wpbc-global-vars' ), '9.0');
|
271 |
|
272 |
//wp_enqueue_script( 'wpbc-datepick-plugin', wpbc_plugin_url( '/js/datepick.5.1/jquery.plugin.js'), array( 'wpbc-global-vars' ), '5.1');
|
273 |
//wp_enqueue_script( 'wpbc-datepick', wpbc_plugin_url( '/js/datepick.5.1/jquery.datepick.js'), array( 'wpbc-global-vars' ), '5.1');
|
320 |
function wpbc_load_calendar_localization_file() {
|
321 |
|
322 |
// Datepicker Localization - translation for calendar. Example: $locale = 'fr_FR';
|
323 |
+
$locale = wpbc_get_maybe_reloaded_booking_locale();
|
324 |
if ( ! empty( $locale ) ) {
|
325 |
|
326 |
$locale_lang = substr( $locale, 0, 2 );
|
347 |
*/
|
348 |
function wpbc_get_calendar_localization_url() {
|
349 |
// Datepicker Localization - translation for calendar. Example: $locale = 'fr_FR';
|
350 |
+
$locale = wpbc_get_maybe_reloaded_booking_locale();
|
351 |
|
352 |
$calendar_localization_url = false;
|
353 |
|
core/wpbc-translation.php
CHANGED
@@ -14,22 +14,368 @@
|
|
14 |
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
16 |
|
17 |
-
////////////////////////////////////////////////////////////////////////////////
|
18 |
-
// Transaltions ////////////////////////////////////////////////////////////
|
19 |
-
////////////////////////////////////////////////////////////////////////////////
|
20 |
|
21 |
-
//
|
22 |
-
|
23 |
-
|
24 |
|
25 |
/**
|
26 |
-
|
27 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
* @param string $content_orig
|
29 |
* @return string
|
30 |
* Usage:
|
31 |
* $text = apply_bk_filter('wpdev_check_for_active_language', $text );
|
32 |
-
*/
|
33 |
function wpdev_check_for_active_language($content_orig){
|
34 |
|
35 |
$content = $content_orig;
|
@@ -47,35 +393,58 @@ function wpdev_check_for_active_language($content_orig){
|
|
47 |
$value_l = trim( substr($value, $pos_f+1 ) );
|
48 |
$languages[$key] = $value_l;
|
49 |
|
50 |
-
} else
|
51 |
$languages['default'] = $value;
|
52 |
}
|
53 |
|
54 |
-
$locale =
|
55 |
// $locale = 'fr_FR';
|
56 |
|
57 |
if ( isset( $languages[$locale] ) ) $return_text = $languages[ $locale ];
|
58 |
else $return_text = $languages[ 'default' ];
|
59 |
|
60 |
-
$return_text =
|
61 |
-
|
62 |
$return_text = wpbc_check_wpml_tags( $return_text, $locale ); //FixIn: 5.4.5.8
|
63 |
-
|
64 |
return $return_text;
|
65 |
}
|
66 |
|
67 |
|
68 |
/**
|
69 |
-
*
|
70 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
* @param string $text
|
72 |
* @param string $locale
|
|
|
73 |
* @return string
|
74 |
*/
|
75 |
function wpbc_check_wpml_tags( $text, $locale='' ) { //FixIn: 5.4.5.8
|
76 |
|
77 |
if ( $locale == '' ) {
|
78 |
-
$locale =
|
79 |
}
|
80 |
if ( strlen( $locale ) > 2 ) {
|
81 |
$locale = substr($locale, 0, 2 );
|
@@ -89,10 +458,10 @@ function wpbc_check_wpml_tags( $text, $locale='' ) {
|
|
89 |
$shortcode = 'wpml';
|
90 |
|
91 |
// Find anything between [wpml] and [/wpml] shortcodes. Magic here: [\s\S]*? - fit to any text
|
92 |
-
preg_match_all( '/\[' . $shortcode . '\]([\s\S]*?)\[\/' . $shortcode . '\]/i', $text, $wpml_translations, PREG_SET_ORDER );
|
93 |
//debuge( $wpml_translations );
|
94 |
|
95 |
-
foreach ( $wpml_translations as $translation ) {
|
96 |
$text_to_replace = $translation[0];
|
97 |
$translation_to_check = $translation[1];
|
98 |
|
@@ -100,11 +469,11 @@ function wpbc_check_wpml_tags( $text, $locale='' ) {
|
|
100 |
|
101 |
if ( false ) { // Depricated functions
|
102 |
|
103 |
-
// Help: https://wpml.org/documentation/support/translation-for-texts-by-other-plugins-and-themes/
|
104 |
icl_register_string('Booking Calendar', 'wpbc-' . tag_escape( $translation_to_check ) , $translation_to_check );
|
105 |
|
106 |
//TODO: Need to execurte this after deactivation of plugin or after updating of some option...
|
107 |
-
//icl_unregister_string ( 'Booking Calendar', 'wpbc-' . tag_escape( $translation_to_check ) );
|
108 |
|
109 |
if ( function_exists ( 'icl_translate' ) ){
|
110 |
$translation_to_check = icl_translate ( 'Booking Calendar', 'wpbc-' . tag_escape( $translation_to_check ) , $translation_to_check );
|
@@ -124,19 +493,27 @@ function wpbc_check_wpml_tags( $text, $locale='' ) {
|
|
124 |
$translation_to_check = apply_filters( 'wpml_translate_single_string', $translation_to_check, 'Booking Calendar', 'wpbc-' . tag_escape( $translation_to_check ), $language_code );
|
125 |
|
126 |
}
|
127 |
-
}
|
128 |
$text = str_replace( $text_to_replace, $translation_to_check, $text );
|
129 |
-
}
|
130 |
-
}
|
131 |
|
132 |
return $text;
|
133 |
}
|
134 |
|
135 |
-
|
136 |
-
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
if ($locale == '') {
|
139 |
-
$locale =
|
140 |
}
|
141 |
if (strlen($locale)>2) {
|
142 |
$locale = substr($locale, 0 ,2);
|
@@ -154,184 +531,978 @@ function wpdev_bk_check_qtranslate( $text, $locale='' ){
|
|
154 |
}
|
155 |
|
156 |
|
157 |
-
function wpbc_load_translation(){
|
158 |
-
|
159 |
-
//$locale = 'fr_FR'; wpbc_load_locale( $locale );
|
160 |
-
|
161 |
-
if ( ! wpbc_load_locale() ) {
|
162 |
-
wpbc_load_locale('en_US');
|
163 |
-
}
|
164 |
|
165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
}
|
167 |
|
168 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
/**
|
170 |
-
|
171 |
-
*
|
172 |
-
* W:\home\beta\www/wp-content/languages/plugins/booking-it_IT.mo -> W:\home\beta\www\wp-content\plugins\booking/languages/booking-it_IT.mo
|
173 |
-
*
|
174 |
-
* @param string $mofile
|
175 |
-
* @param type $domain
|
176 |
-
* @return string
|
177 |
*/
|
178 |
-
function
|
179 |
|
180 |
-
|
181 |
-
|
182 |
-
// debuge( $mofile, basename( $mofile ) , WPBC_PLUGIN_DIR );
|
183 |
-
|
184 |
-
$mofile = WPBC_PLUGIN_DIR . '/languages/' . basename( $mofile );
|
185 |
-
}
|
186 |
|
187 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
}
|
189 |
-
add_filter( 'load_textdomain_mofile', 'wpbc_load_custom_plugin_translation_file' , 10, 2 );
|
190 |
|
191 |
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
//debuge($dfgdfg);
|
196 |
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
|
202 |
-
|
203 |
-
$mofile = WPBC_PLUGIN_DIR . '/languages/' . $domain . '-' . $locale . '.mo';
|
204 |
-
|
205 |
-
if ( strpos( $locale, '_') !== false ) { //FixIn: 7.1.2.11
|
206 |
-
// we have long locale like en_US, get only 2 firstletters, for general locale, like 'en'
|
207 |
-
$mofile_local_short = WPBC_PLUGIN_DIR . '/languages/' . $domain . '-' . substr( $locale, 0 , 2 ) . '.mo';
|
208 |
}
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
}
|
215 |
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
}
|
230 |
-
}
|
231 |
-
//debuge( 3 ) ;
|
232 |
-
return false;
|
233 |
-
}
|
234 |
|
235 |
|
236 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
}
|
251 |
}
|
252 |
|
253 |
-
//debuge( WPBC_LOCALE_RELOAD ); //FixIn: 7.2.1.21
|
254 |
-
if ( defined( 'WPBC_LOCALE_RELOAD' ) )
|
255 |
-
return WPBC_LOCALE_RELOAD;
|
256 |
-
|
257 |
-
if( function_exists( 'get_user_locale' ) )
|
258 |
-
$locale = is_admin() ? get_user_locale() : get_locale();
|
259 |
-
else
|
260 |
-
$locale = get_locale();
|
261 |
|
262 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
|
264 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
}
|
266 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
|
268 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
|
270 |
-
|
271 |
-
if ( defined('WPBC_LOCALE_RELOAD') )
|
272 |
-
return WPBC_LOCALE_RELOAD;
|
273 |
|
274 |
-
|
|
|
|
|
|
|
275 |
}
|
276 |
-
|
277 |
|
278 |
/**
|
279 |
-
|
280 |
-
*
|
281 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
*/
|
283 |
-
function
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
}
|
293 |
|
294 |
|
295 |
-
|
296 |
-
|
297 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
|
299 |
-
|
|
|
300 |
|
301 |
-
if (isset($_REQUEST['wpdev_active_locale'])) { // Reload locale according request parameter
|
302 |
-
global $l10n;
|
303 |
-
if (isset($l10n['booking'])) unset($l10n['booking']);
|
304 |
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
|
307 |
-
|
308 |
-
|
309 |
-
add_filter('locale', 'wpbc_get_booking_locale',999); // Set filter to load the locale of the Booking Calendar
|
310 |
-
load_default_textdomain(); // Load default locale
|
311 |
-
global $wp_locale;
|
312 |
-
$wp_locale = new WP_Locale(); // Reload class
|
313 |
|
314 |
-
|
|
|
|
|
|
|
|
|
315 |
|
316 |
-
|
317 |
-
|
318 |
-
if ( function_exists( 'determine_locale' ) ) {
|
319 |
-
$current_locale = determine_locale();
|
320 |
-
} else {
|
321 |
-
if ( function_exists( 'get_user_locale' ) ) {
|
322 |
-
$current_locale = is_admin() ? get_user_locale() : get_locale();
|
323 |
-
} else {
|
324 |
-
$current_locale = get_locale();
|
325 |
-
}
|
326 |
-
}
|
327 |
|
328 |
-
if ( $current_locale != WPBC_LOCALE_RELOAD ) {
|
329 |
-
if ( function_exists( 'switch_to_locale' ) ) {
|
330 |
-
$switched_locale = switch_to_locale( WPBC_LOCALE_RELOAD );
|
331 |
-
} else {
|
332 |
-
load_default_textdomain( WPBC_LOCALE_RELOAD );
|
333 |
-
}
|
334 |
-
}
|
335 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
337 |
}
|
14 |
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
16 |
|
|
|
|
|
|
|
17 |
|
18 |
+
// Check content according [lang=xx_XX] shortcode
|
19 |
+
add_bk_filter( 'wpdev_check_for_active_language', 'wpdev_check_for_active_language' );
|
20 |
+
|
21 |
|
22 |
/**
|
23 |
+
* Rechecking about the locale on this hook:
|
24 |
+
* add_action( 'plugins_loaded', 'wpbc_load_translation', 1000 );
|
25 |
+
* which is executed early then
|
26 |
+
* add_action( 'admin_init', 'wpbc_check_...' );
|
27 |
+
*/
|
28 |
+
add_action( 'plugins_loaded', 'wpbc_load_translation', 1000 ); // Load translation
|
29 |
+
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Load translation - Load country list after locale defined by some other translation plugin.
|
33 |
+
*/
|
34 |
+
function wpbc_load_translation(){
|
35 |
+
|
36 |
+
//define( 'WPBC_LOCALE_RELOAD', 'fr_FR' ); wpbc_load_plugin_translation_file__mo( WPBC_LOCALE_RELOAD );
|
37 |
+
|
38 |
+
|
39 |
+
// Get reloaded 'booking' or current WordPress locale
|
40 |
+
$locale = wpbc_get_maybe_reloaded_booking_locale(); // if NOT defined WPBC_LOCALE_RELOAD define by current WordPress locale
|
41 |
+
|
42 |
+
//FixIn: 8.9.4.5
|
43 |
+
if ( is_admin() && ( defined( 'DOING_AJAX' ) ) && ( DOING_AJAX ) ) {
|
44 |
+
//Reload locale for Ajax request
|
45 |
+
wpbc_check_ajax_locale__reload_it( $locale ); // Contain --> if ( ! defined( 'WPBC_LOCALE_RELOAD' ) ) define( 'WPBC_LOCALE_RELOAD', esc_js( $_REQUEST['wpdev_active_locale'] ) );
|
46 |
+
}
|
47 |
+
|
48 |
+
wpbc_load_country_list_file_php( $locale );
|
49 |
+
|
50 |
+
if ( ! wpbc_load_plugin_translation_file__mo( $locale ) ) {
|
51 |
+
wpbc_load_plugin_translation_file__mo( 'en_US' ); // Load default English translation, if other not available
|
52 |
+
}
|
53 |
+
}
|
54 |
+
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Check ( $_REQUEST['wpdev_active_locale'] ) and Reload specific Locale for the Ajax request
|
58 |
+
*/
|
59 |
+
function wpbc_check_ajax_locale__reload_it( $reloaded_locale ) { //FixIn: 8.4.5.1
|
60 |
+
|
61 |
+
if ( isset( $_REQUEST['wpdev_active_locale'] ) ) { // Reload locale according request parameter
|
62 |
+
|
63 |
+
unload_textdomain( 'booking' );
|
64 |
+
|
65 |
+
/*
|
66 |
+
* Removed because, it's configured in $locale = wpbc_get_maybe_reloaded_booking_locale(); which is executed before this action
|
67 |
+
*
|
68 |
+
if ( ! defined( 'WPBC_LOCALE_RELOAD' ) ) {
|
69 |
+
define( 'WPBC_LOCALE_RELOAD', esc_js( $_REQUEST['wpdev_active_locale'] ) );
|
70 |
+
}
|
71 |
+
*/
|
72 |
+
add_filter( 'locale', 'wpbc_get_maybe_reloaded_booking_locale', 999 ); // Set filter to load the locale of the Booking Calendar
|
73 |
+
|
74 |
+
/**
|
75 |
+
* It's commented because inside of the function load_default_textdomain(); exist: unload_textdomain( 'default' ); which is unset( $l10n[ 'default' ] );
|
76 |
+
*
|
77 |
+
// Reload locale settings, it's required for the correct dates format
|
78 |
+
//if ( isset( $l10n['default'] ) ) { unset( $l10n['default'] ); } // Unload locale
|
79 |
+
*/
|
80 |
+
load_default_textdomain(); // Load default locale
|
81 |
+
|
82 |
+
global $wp_locale;
|
83 |
+
$wp_locale = new WP_Locale(); // Reload class
|
84 |
+
|
85 |
+
wpbc_load_plugin_translation_file__mo( $reloaded_locale );
|
86 |
+
|
87 |
+
|
88 |
+
$current_locale = wpbc_get_current_wordpress_locale(); // 'en_US' or 'it_IT', etc...
|
89 |
+
|
90 |
+
if ( $current_locale != $reloaded_locale ) {
|
91 |
+
|
92 |
+
// The switch_to_locale() function is loaded before it can actually be used.
|
93 |
+
if ( function_exists( 'switch_to_locale' ) && isset( $GLOBALS['wp_locale_switcher'] ) ) {
|
94 |
+
$switched_locale = switch_to_locale( $reloaded_locale );
|
95 |
+
} else {
|
96 |
+
load_default_textdomain( $reloaded_locale );
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
+
}
|
101 |
+
}
|
102 |
+
|
103 |
+
|
104 |
+
/**
|
105 |
+
* Load MO translation file of plugin, like ../wp-content/plugins/booking/languages/booking-fr_FR.mo
|
106 |
+
*
|
107 |
+
* System firstly try to load MO from dir: ../wp-content/plugins/booking/languages
|
108 |
+
* then from: ../wp-content/languages/plugins/'
|
109 |
+
* otherwise: unload 'booking' textdomain
|
110 |
+
*
|
111 |
+
* @param string $locale default ''
|
112 |
+
*
|
113 |
+
* can be passed like: 'en_US' or 'it_IT'
|
114 |
+
*
|
115 |
+
* if '' then get WPBC_LOCALE_RELOAD locale,
|
116 |
+
* or if not reloaded then get current WordPress locale
|
117 |
+
* and define WPBC_LOCALE_RELOAD
|
118 |
+
*
|
119 |
+
* @return bool
|
120 |
+
*/
|
121 |
+
function wpbc_load_plugin_translation_file__mo( $locale = '' ) {
|
122 |
+
|
123 |
+
$is_mo_loaded = false;
|
124 |
+
$domain = 'booking';
|
125 |
+
|
126 |
+
if ( empty( $locale ) ) {
|
127 |
+
$locale = wpbc_get_maybe_reloaded_booking_locale();
|
128 |
+
}
|
129 |
+
|
130 |
+
|
131 |
+
if ( ! empty( $locale ) ) {
|
132 |
+
|
133 |
+
$mofile_in_plugin_folder = WPBC_PLUGIN_DIR . '/languages/' . $domain . '-' . $locale . '.mo';
|
134 |
+
|
135 |
+
// we have long locale like en_US, get only 2 first letters, for general locale, like 'en'
|
136 |
+
$mofile_local_short = WPBC_PLUGIN_DIR . '/languages/' . $domain . '-' . substr( $locale, 0 , 2 ) . '.mo';
|
137 |
+
|
138 |
+
// Load from General folder /wp-content/languages/plugins/plugin-name-xx_XX.mo
|
139 |
+
$mofile_in_wp_folder = WP_LANG_DIR . '/plugins/' . $domain . '-' . $locale . '.mo'; //FixIn: 8.9.4.6 Fix '/languages/plugin/' to '/languages/plugins/ //FixIn: 8.7.7.1
|
140 |
+
|
141 |
+
|
142 |
+
/**
|
143 |
+
* Try to load from the languages' directory first -> WP_LANG_DIR . '/plugins/' . $mofile
|
144 |
+
* If not possible, then from -> WP_PLUGIN_DIR . '/' . trim( $plugin_rel_path, '/' )
|
145 |
+
*
|
146 |
+
*/
|
147 |
+
$is_load_from_wp_repository = get_bk_option( 'booking_translation_load_from' );
|
148 |
+
if ( ( empty( $is_load_from_wp_repository ) ) || ( 'wp.org' == $is_load_from_wp_repository ) ) {
|
149 |
+
|
150 |
+
/**
|
151 |
+
* This function 'load_plugin_textdomain' load firstly from the '/wp-content/languages/plugins/' directory
|
152 |
+
*
|
153 |
+
* load_plugin_textdomain( $domain, false, WPBC_PLUGIN_DIRNAME . '/languages' )
|
154 |
+
*
|
155 |
+
* --> ../wp-content/languages/plugins/booking-fr_FR.mo !!!!
|
156 |
+
*
|
157 |
+
* In case if need to load directly, then use:
|
158 |
+
*
|
159 |
+
* load_textdomain( $domain, WPBC_PLUGIN_DIR . '/languages/' . $domain . '-' . $locale . '.mo' );
|
160 |
+
*/
|
161 |
+
|
162 |
+
$plugin_rel_path = WPBC_PLUGIN_DIRNAME . '/languages';
|
163 |
+
$is_mo_loaded = load_plugin_textdomain( $domain, false, $plugin_rel_path );
|
164 |
+
}
|
165 |
+
|
166 |
+
|
167 |
+
if ( ! $is_mo_loaded ) {
|
168 |
+
|
169 |
+
if ( file_exists( $mofile_in_plugin_folder ) ) {
|
170 |
+
|
171 |
+
/**
|
172 |
+
* Direct load from ../wp-content/plugins/booking/languages/booking-fr_FR.mo
|
173 |
+
*/
|
174 |
+
|
175 |
+
$is_mo_loaded = load_textdomain( $domain, $mofile_in_plugin_folder ); //FixIn: 8.9.4.5
|
176 |
+
|
177 |
+
} elseif ( ( ! empty( $mofile_local_short ) ) && ( file_exists( $mofile_local_short ) ) ) { //FixIn: 8.1.3.13
|
178 |
+
|
179 |
+
/**
|
180 |
+
* Direct load of short " booking-en.mo " MO file
|
181 |
+
*/
|
182 |
+
|
183 |
+
$is_mo_loaded = load_textdomain( $domain, $mofile_local_short );
|
184 |
+
|
185 |
+
} elseif ( file_exists( $mofile_in_wp_folder ) ) { //FixIn: 8.9.4.6
|
186 |
+
|
187 |
+
/**
|
188 |
+
* Here possible to use
|
189 |
+
* return load_plugin_textdomain( $domain, false, $plugin_rel_path );
|
190 |
+
*
|
191 |
+
* which firstly try to load from the language directory: ../wp-content/languages/plugins/booking-fr_FR.mo !!!!
|
192 |
+
*
|
193 |
+
* like this: load_textdomain( $domain, WP_LANG_DIR . '/plugins/' . $mofile )
|
194 |
+
* and only after this try uses this: load_textdomain( $domain, WP_PLUGIN_DIR . '/' . trim( $plugin_rel_path, '/' ) . '/' . $mofile );
|
195 |
+
*
|
196 |
+
* so that's why we are using direct loadinf: load_textdomain( $domain, $mofile_in_wp_folder ) ../wp-content/languages/plugin/booking-fr_FR.mo
|
197 |
+
*/
|
198 |
+
|
199 |
+
$is_mo_loaded = load_textdomain( $domain, $mofile_in_wp_folder );
|
200 |
+
} else { //FixIn: 7.2.1.21
|
201 |
+
|
202 |
+
$is_unloaded = unload_textdomain( $domain );
|
203 |
+
}
|
204 |
+
}
|
205 |
+
}
|
206 |
+
|
207 |
+
return $is_mo_loaded;
|
208 |
+
}
|
209 |
+
|
210 |
+
|
211 |
+
/**
|
212 |
+
* Load Country List file depends on plugin 'booking' locale
|
213 |
+
*
|
214 |
+
* @string $locale '' || 'en_US' || 'it_IT'
|
215 |
+
*/
|
216 |
+
function wpbc_load_country_list_file_php( $locale ){ //FixIn: 8.8.2.5
|
217 |
+
|
218 |
+
if ( ! empty( $locale ) ) {
|
219 |
+
$locale_lang = strtolower( substr( $locale, 0, 2 ) );
|
220 |
+
$locale_country = strtolower( substr( $locale, 3 ) );
|
221 |
+
|
222 |
+
//FixIn: 8.9.4.12
|
223 |
+
if ( ( $locale_lang !== 'en' ) && ( wpbc_is_file_exist( '/core/lang/wpdev-country-list-' . $locale . '.php' ) ) ) {
|
224 |
+
require_once WPBC_PLUGIN_DIR . '/core/lang/wpdev-country-list-' . $locale . '.php';
|
225 |
+
} else {
|
226 |
+
require_once WPBC_PLUGIN_DIR . '/core/lang/wpdev-country-list.php';
|
227 |
+
}
|
228 |
+
} else {
|
229 |
+
require_once WPBC_PLUGIN_DIR . '/core/lang/wpdev-country-list.php';
|
230 |
+
}
|
231 |
+
|
232 |
+
do_action( 'wpbc_country_list_loaded' ); //FixIn: 8.9.4.9
|
233 |
+
}
|
234 |
+
|
235 |
+
|
236 |
+
/**
|
237 |
+
* Get maybe reloaded 'booking' locale ( WPBC_LOCALE_RELOAD ) and if not defined WPBC_LOCALE_RELOAD define it.
|
238 |
+
*
|
239 |
+
* @return string
|
240 |
+
*/
|
241 |
+
function wpbc_get_maybe_reloaded_booking_locale() {
|
242 |
+
|
243 |
+
if ( ( is_admin() && ( defined( 'DOING_AJAX' ) ) && ( DOING_AJAX ) ) ) {
|
244 |
+
$is_ajax = true;
|
245 |
+
} else {
|
246 |
+
$is_ajax = false;
|
247 |
+
}
|
248 |
+
|
249 |
+
|
250 |
+
/**
|
251 |
+
* Check active locale in some other translation plugins, like Polylang (NOT in Ajax), etc...
|
252 |
+
*/
|
253 |
+
if ( ! $is_ajax ) { //FixIn: 8.9.4.7
|
254 |
+
|
255 |
+
// Exception for Polylang plugin. It will force loading locale of Polylang plugin.
|
256 |
+
if ( function_exists( 'pll_current_language' ) ) { //FixIn: 8.1.2.5
|
257 |
+
if ( defined( 'POLYLANG_VERSION' ) ) { //FixIn: 8.8.3.16
|
258 |
+
if (
|
259 |
+
( version_compare( POLYLANG_VERSION, '2.6.5', '<' ) ) //FixIn: 8.7.1.3
|
260 |
+
|| ( version_compare( POLYLANG_VERSION, '2.7.1', '>' ) ) //FixIn: 8.7.7.11
|
261 |
+
) {
|
262 |
+
$locale = pll_current_language( 'locale' );
|
263 |
+
if ( ! empty( $locale ) ) { //FixIn: 8.7.7.11
|
264 |
+
return $locale;
|
265 |
+
}
|
266 |
+
}
|
267 |
+
}
|
268 |
+
}
|
269 |
+
}
|
270 |
+
|
271 |
+
|
272 |
+
// Reload locale ONLY in AJAX, and if `isset $_REQUEST['wpdev_active_locale']
|
273 |
+
if (
|
274 |
+
( ! defined( 'WPBC_LOCALE_RELOAD' ) )
|
275 |
+
&& ( $is_ajax )
|
276 |
+
&& ( isset( $_REQUEST['wpdev_active_locale'] ) )
|
277 |
+
){ // Reload locale according request parameter
|
278 |
+
|
279 |
+
define( 'WPBC_LOCALE_RELOAD', esc_js( $_REQUEST['wpdev_active_locale'] ) );
|
280 |
+
}
|
281 |
+
|
282 |
+
|
283 |
+
// If not defined than get current WordPress locale and define
|
284 |
+
if ( ! defined( 'WPBC_LOCALE_RELOAD' ) ) { //FixIn: 7.2.1.21
|
285 |
+
|
286 |
+
$locale = wpbc_get_current_wordpress_locale(); // 'en_US' or 'it_IT', etc...
|
287 |
+
|
288 |
+
define( 'WPBC_LOCALE_RELOAD', $locale );
|
289 |
+
}
|
290 |
+
|
291 |
+
return WPBC_LOCALE_RELOAD;
|
292 |
+
}
|
293 |
+
|
294 |
+
|
295 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
296 |
+
/// Support
|
297 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
298 |
+
|
299 |
+
/**
|
300 |
+
* Get current WordPress locale, it is not relative to the Booking Calendar
|
301 |
+
*
|
302 |
+
* @return string 'en_US'
|
303 |
+
*/
|
304 |
+
function wpbc_get_current_wordpress_locale(){
|
305 |
+
|
306 |
+
if ( function_exists( 'determine_locale' ) ) { //FixIn: 8.7.5.1 //FixIn: 8.7.3.15
|
307 |
+
$current_locale = determine_locale();
|
308 |
+
} else {
|
309 |
+
if ( function_exists( 'get_user_locale' ) ) {
|
310 |
+
$current_locale = is_admin() ? get_user_locale() : get_locale();
|
311 |
+
} else {
|
312 |
+
$current_locale = get_locale();
|
313 |
+
}
|
314 |
+
}
|
315 |
+
|
316 |
+
return $current_locale; // 'en_US'
|
317 |
+
}
|
318 |
+
|
319 |
+
|
320 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
321 |
+
/// Filters for Locale of Booking Calendar
|
322 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
323 |
+
|
324 |
+
/**
|
325 |
+
* Check locale of plugin, and if previously were defined WPBC_LOCALE_RELOAD, then return our WPBC_LOCALE_RELOAD locale
|
326 |
+
*
|
327 |
+
* @param $locale 'en_US'
|
328 |
+
* @param string $plugin_domain 'booking' - it's Booking Calendar plugin locale
|
329 |
+
*
|
330 |
+
* @return mixed|string 'it_IT'
|
331 |
+
*/
|
332 |
+
function wpbc_filter_recheck_plugin_locale( $locale, $plugin_domain = '' ) { //FixIn: 8.4.4.2
|
333 |
+
|
334 |
+
if (
|
335 |
+
( 'booking' == $plugin_domain )
|
336 |
+
&& ( defined( 'WPBC_LOCALE_RELOAD' ) )
|
337 |
+
) {
|
338 |
+
return WPBC_LOCALE_RELOAD;
|
339 |
+
}
|
340 |
+
|
341 |
+
return $locale;
|
342 |
+
}
|
343 |
+
add_filter( 'plugin_locale', 'wpbc_filter_recheck_plugin_locale', 100, 2 ); // When load_plugin_textdomain() is run, its get default locale and not that, we reupdate - WPBC_LOCALE_RELOAD
|
344 |
+
|
345 |
+
|
346 |
+
|
347 |
+
/**
|
348 |
+
* Overload loading of plugin translation files from "wp-content/languages/plugins" -> "wp-content/plugins/plugin_name/languages"
|
349 |
+
*
|
350 |
+
* W:\home\beta\www/wp-content/languages/plugins/booking-it_IT.mo -> W:\home\beta\www\wp-content\plugins\booking/languages/booking-it_IT.mo
|
351 |
+
*
|
352 |
+
* @param string $mofile
|
353 |
+
* @param type $domain
|
354 |
+
* @return string
|
355 |
+
*/
|
356 |
+
function wpbc_filter_load_custom_plugin_translation_file( $mofile, $domain ) {
|
357 |
+
|
358 |
+
if ( $domain == 'booking' ) {
|
359 |
+
$mofile = WPBC_PLUGIN_DIR . '/languages/' . basename( $mofile );
|
360 |
+
}
|
361 |
+
return $mofile;
|
362 |
+
}
|
363 |
+
//add_filter( 'load_textdomain_mofile', 'wpbc_filter_load_custom_plugin_translation_file' , 10, 2 );
|
364 |
+
|
365 |
+
|
366 |
+
|
367 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
368 |
+
/// Support functions for [lang=xx_XX] shortcode
|
369 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
370 |
+
|
371 |
+
/**
|
372 |
+
* Check plugin text for active language section -- [lang=xx_XX] shortcode
|
373 |
+
*
|
374 |
* @param string $content_orig
|
375 |
* @return string
|
376 |
* Usage:
|
377 |
* $text = apply_bk_filter('wpdev_check_for_active_language', $text );
|
378 |
+
*/
|
379 |
function wpdev_check_for_active_language($content_orig){
|
380 |
|
381 |
$content = $content_orig;
|
393 |
$value_l = trim( substr($value, $pos_f+1 ) );
|
394 |
$languages[$key] = $value_l;
|
395 |
|
396 |
+
} else
|
397 |
$languages['default'] = $value;
|
398 |
}
|
399 |
|
400 |
+
$locale = wpbc_get_maybe_reloaded_booking_locale();
|
401 |
// $locale = 'fr_FR';
|
402 |
|
403 |
if ( isset( $languages[$locale] ) ) $return_text = $languages[ $locale ];
|
404 |
else $return_text = $languages[ 'default' ];
|
405 |
|
406 |
+
$return_text = wpbc_bk_check_qtranslate( $return_text, $locale );
|
407 |
+
|
408 |
$return_text = wpbc_check_wpml_tags( $return_text, $locale ); //FixIn: 5.4.5.8
|
409 |
+
|
410 |
return $return_text;
|
411 |
}
|
412 |
|
413 |
|
414 |
/**
|
415 |
+
* Get help rows about configuration in_several languages with [lang=xx_XX] shortcode
|
416 |
+
*
|
417 |
+
* @return array - each item of array is text row for showing.
|
418 |
+
*/
|
419 |
+
function wpbc_get_help_rows_about_config_in_several_languges() {
|
420 |
+
|
421 |
+
$field_options = array();
|
422 |
+
$field_options[] = '<strong>' . __('Configuration in several languages' ,'booking') . '</strong>';
|
423 |
+
$field_options[] = sprintf(__('%s - start new translation section, where %s - locale of translation' ,'booking'),'<code>[lang=LOCALE]</code>','<code>LOCALE</code>');
|
424 |
+
$field_options[] = sprintf(__('Example #1: %s - start French translation section' ,'booking'),'<code>[lang=fr_FR]</code>');
|
425 |
+
$field_options[] = sprintf(__('Example #2: "%s" - English and French translation of some message' ,'booking'),'<code>Thank you for your booking.[lang=fr_FR]Je vous remercie de votre reservation.</code>');
|
426 |
+
|
427 |
+
return $field_options;
|
428 |
+
}
|
429 |
+
|
430 |
+
|
431 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
432 |
+
/// Support functions for Other Translation Plugins like WPML, qTranslate, etc...
|
433 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
434 |
+
|
435 |
+
/**
|
436 |
+
* Support function for WPML plugin
|
437 |
+
* Register and Translate everything in [wpml]Some Text to translate[/wpml] tags.
|
438 |
+
*
|
439 |
* @param string $text
|
440 |
* @param string $locale
|
441 |
+
*
|
442 |
* @return string
|
443 |
*/
|
444 |
function wpbc_check_wpml_tags( $text, $locale='' ) { //FixIn: 5.4.5.8
|
445 |
|
446 |
if ( $locale == '' ) {
|
447 |
+
$locale = wpbc_get_maybe_reloaded_booking_locale();
|
448 |
}
|
449 |
if ( strlen( $locale ) > 2 ) {
|
450 |
$locale = substr($locale, 0, 2 );
|
458 |
$shortcode = 'wpml';
|
459 |
|
460 |
// Find anything between [wpml] and [/wpml] shortcodes. Magic here: [\s\S]*? - fit to any text
|
461 |
+
preg_match_all( '/\[' . $shortcode . '\]([\s\S]*?)\[\/' . $shortcode . '\]/i', $text, $wpml_translations, PREG_SET_ORDER );
|
462 |
//debuge( $wpml_translations );
|
463 |
|
464 |
+
foreach ( $wpml_translations as $translation ) {
|
465 |
$text_to_replace = $translation[0];
|
466 |
$translation_to_check = $translation[1];
|
467 |
|
469 |
|
470 |
if ( false ) { // Depricated functions
|
471 |
|
472 |
+
// Help: https://wpml.org/documentation/support/translation-for-texts-by-other-plugins-and-themes/
|
473 |
icl_register_string('Booking Calendar', 'wpbc-' . tag_escape( $translation_to_check ) , $translation_to_check );
|
474 |
|
475 |
//TODO: Need to execurte this after deactivation of plugin or after updating of some option...
|
476 |
+
//icl_unregister_string ( 'Booking Calendar', 'wpbc-' . tag_escape( $translation_to_check ) );
|
477 |
|
478 |
if ( function_exists ( 'icl_translate' ) ){
|
479 |
$translation_to_check = icl_translate ( 'Booking Calendar', 'wpbc-' . tag_escape( $translation_to_check ) , $translation_to_check );
|
493 |
$translation_to_check = apply_filters( 'wpml_translate_single_string', $translation_to_check, 'Booking Calendar', 'wpbc-' . tag_escape( $translation_to_check ), $language_code );
|
494 |
|
495 |
}
|
496 |
+
}
|
497 |
$text = str_replace( $text_to_replace, $translation_to_check, $text );
|
498 |
+
}
|
499 |
+
}
|
500 |
|
501 |
return $text;
|
502 |
}
|
503 |
|
504 |
+
|
505 |
+
/**
|
506 |
+
* Support function for qTranslate plugin
|
507 |
+
*
|
508 |
+
* @param $text
|
509 |
+
* @param string $locale
|
510 |
+
*
|
511 |
+
* @return false|mixed|string
|
512 |
+
*/
|
513 |
+
function wpbc_bk_check_qtranslate( $text, $locale='' ){
|
514 |
+
|
515 |
if ($locale == '') {
|
516 |
+
$locale = wpbc_get_maybe_reloaded_booking_locale();
|
517 |
}
|
518 |
if (strlen($locale)>2) {
|
519 |
$locale = substr($locale, 0 ,2);
|
531 |
}
|
532 |
|
533 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
534 |
|
535 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
536 |
+
// Translation Settings
|
537 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
538 |
+
|
539 |
+
/**
|
540 |
+
* Show translation buttons at Booking > Settings General page
|
541 |
+
*/
|
542 |
+
function wpbc_translation_buttons_settings_section(){
|
543 |
+
|
544 |
+
if ( ( ! wpbc_is_this_demo() ) && ( current_user_can( 'activate_plugins' ) ) ){
|
545 |
+
|
546 |
+
?><div class="wpbc_booking_system_info_buttons_align"><?php
|
547 |
+
|
548 |
+
echo
|
549 |
+
'<a class="button button" href="'
|
550 |
+
. wpbc_get_settings_url()
|
551 |
+
. '&system_info=show&update_translations=1#wpbc_general_settings_system_info_metabox">'
|
552 |
+
. __( 'Update Translations' )
|
553 |
+
. '</a>';
|
554 |
+
|
555 |
+
echo
|
556 |
+
'<a class="button button" href="'
|
557 |
+
. wpbc_get_settings_url()
|
558 |
+
. '&system_info=show&show_translation_status=1#wpbc_general_settings_system_info_metabox">'
|
559 |
+
. __( 'Show translations status', 'booking' )
|
560 |
+
. '</a>';
|
561 |
+
|
562 |
+
|
563 |
+
if ( $_SERVER['HTTP_HOST'] === 'beta' ) {
|
564 |
+
|
565 |
+
?><div style="width:100%;height:2em;border-bottom:1px dashed #777;margin-bottom:1em;"></div><?php
|
566 |
+
|
567 |
+
// Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&pot=1#wpbc_general_settings_system_info_metabox
|
568 |
+
echo
|
569 |
+
'<a class="button button-secondary" style="background:#fff9e6;" href="'
|
570 |
+
. wpbc_get_settings_url()
|
571 |
+
. '&system_info=show&pot=1#wpbc_general_settings_system_info_metabox">'
|
572 |
+
. 'Generate POT file'
|
573 |
+
. '</a>';
|
574 |
+
|
575 |
+
echo
|
576 |
+
'<a class="button button-secondary" style="background:#fff9e6;" href="'
|
577 |
+
. wpbc_get_settings_url()
|
578 |
+
. '&system_info=show&show_translation_status=2#wpbc_general_settings_system_info_metabox">'
|
579 |
+
. 'Translation status WP.ORG'
|
580 |
+
. '</a>';
|
581 |
+
|
582 |
+
|
583 |
+
echo
|
584 |
+
'<a class="button button-secondary" style="background:#fff9e6;" href="'
|
585 |
+
. wpbc_get_settings_url()
|
586 |
+
. '&system_info=show&show_translation_status=3#wpbc_general_settings_system_info_metabox">'
|
587 |
+
. 'Translation status WPBC'
|
588 |
+
. '</a>';
|
589 |
+
}
|
590 |
+
|
591 |
+
?></div><?php
|
592 |
+
|
593 |
+
}
|
594 |
}
|
595 |
|
596 |
|
597 |
+
|
598 |
+
|
599 |
+
//======================================================================================================================
|
600 |
+
// Update Translations -- DOWNLOAD from WP.ORG and WPBC
|
601 |
+
//======================================================================================================================
|
602 |
+
|
603 |
+
|
604 |
+
|
605 |
+
|
606 |
/**
|
607 |
+
* Update transaltions of plugin from WP repository
|
|
|
|
|
|
|
|
|
|
|
|
|
608 |
*/
|
609 |
+
function wpbc_update_translations__from_wp(){
|
610 |
|
611 |
+
echo '<h2>' . __('Start updating translation files', 'booking') . '</h2>';
|
|
|
|
|
|
|
|
|
|
|
612 |
|
613 |
+
if ( function_exists( 'set_time_limit' ) ) { set_time_limit( 900 ); }
|
614 |
+
@ini_set('memory_limit','256M');
|
615 |
+
@ini_set('max_execution_time', 300);
|
616 |
+
|
617 |
+
$wpbc_download_result = false;
|
618 |
+
if ( 'translations_updated_from_wpbc' !== get_bk_option( 'booking_translation_update_status' ) ) {
|
619 |
+
|
620 |
+
$wpbc_download_result = wpbc_translation_download_from_wpbc();
|
621 |
+
|
622 |
+
}
|
623 |
+
if ( ( ! is_wp_error( $wpbc_download_result ) ) && ( false !== $wpbc_download_result ) ) {
|
624 |
+
update_bk_option( 'booking_translation_update_status', 'translations_updated_from_wpbc' );
|
625 |
+
}
|
626 |
+
|
627 |
+
|
628 |
+
$wp_org_translation_packages_arr = wpbc_get_translation_packages_arr_from_wp(); /**
|
629 |
+
* ..., array ( [language] => sk_SK
|
630 |
+
[version] => 8.9.3
|
631 |
+
[updated] => 2020-03-11 17:10:35
|
632 |
+
[english_name] => Slovak
|
633 |
+
[native_name] => Slovenčina
|
634 |
+
[package] => https://downloads.wordpress.org/translation/plugin/booking/8.9.3/sk_SK.zip
|
635 |
+
[iso] => Array ( [1] => sk, [2] => slk )
|
636 |
+
),
|
637 |
+
* ...
|
638 |
+
*/
|
639 |
+
|
640 |
+
$download_result_arr = wpbc_transaltion_download_from_wp_org( $wp_org_translation_packages_arr );
|
641 |
+
|
642 |
+
echo '<h2>' . __('End updating translation files', 'booking') . '</h2>';
|
643 |
+
echo '<a class="button button-secondary" style="margin:10px 0;" href="' . wpbc_get_settings_url() . '" >' . __( 'Go to Settings', 'booking' ) . '</a>';
|
644 |
+
|
645 |
+
update_bk_option( 'booking_translation_update_status' , 'translations_updated_from_wpbc_and_wp');
|
646 |
}
|
|
|
647 |
|
648 |
|
649 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
650 |
+
/// Support functions for Update Translations
|
651 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
652 |
|
653 |
+
/**
|
654 |
+
* Update translation option, just after activation of plugin.
|
655 |
+
* It must be 0
|
656 |
+
*/
|
657 |
+
function wpbc_update_translation_status_after_plugin_activation(){
|
658 |
+
update_bk_option( 'booking_translation_update_status', '0' );
|
659 |
+
}
|
660 |
+
add_bk_action( 'wpbc_other_versions_activation', 'wpbc_update_translation_status_after_plugin_activation' );
|
661 |
+
|
662 |
+
|
663 |
+
/**
|
664 |
+
* Download translations from wordpress.org, unpack it to the ../WP_LANG_DIR/plugins folder
|
665 |
+
*
|
666 |
+
* @param $wp_org_translation_packages_arr array of translations data from wp.org
|
667 |
+
* - required one option - $translation_package['package']
|
668 |
+
* - it's URL to zip archive of specific translation
|
669 |
+
*
|
670 |
+
* @return array or results
|
671 |
+
*/
|
672 |
+
function wpbc_transaltion_download_from_wp_org( $wp_org_translation_packages_arr ){
|
673 |
+
|
674 |
+
$my_upgrader = wpbc_get_translation_upgrader_obj();
|
675 |
+
|
676 |
+
$result = array();
|
677 |
+
|
678 |
+
foreach ( $wp_org_translation_packages_arr as $translation_package ) {
|
679 |
+
|
680 |
+
$result[] = $my_upgrader->run( array(
|
681 |
+
'package' => $translation_package['package'], // Please always pass this.
|
682 |
+
'destination' => WP_LANG_DIR . '/plugins/', // WPBC_PLUGIN_DIR . '/lang/wp_org/', // ...and this.
|
683 |
+
'clear_destination' => false,
|
684 |
+
'abort_if_destination_exists' => false, // Abort if the destination directory exists. Pass clear_destination as false please.
|
685 |
+
'clear_working' => true,
|
686 |
+
'is_multi' => true,
|
687 |
+
'hook_extra' => array(), // Pass any extra $hook_extra args here, this will be passed to any hooked filters.
|
688 |
+
) );
|
689 |
+
}
|
690 |
|
691 |
+
return $result;
|
|
|
|
|
|
|
|
|
|
|
692 |
}
|
693 |
+
|
694 |
+
|
695 |
+
/**
|
696 |
+
* Download translations from wpbookingcalendar.com, unpack it to the ../WPBC_PLUGIN_DIR/languages/' folder
|
697 |
+
*
|
698 |
+
* @return array|bool|string|WP_Error - result
|
699 |
+
*/
|
700 |
+
function wpbc_translation_download_from_wpbc(){
|
701 |
+
|
702 |
+
$my_upgrader = wpbc_get_translation_upgrader_obj();
|
703 |
+
|
704 |
+
$result = $my_upgrader->run( array(
|
705 |
+
'package' => 'https://wpbookingcalendar.com/download/languages/languages.zip', // Please always pass this.
|
706 |
+
'destination' => WPBC_PLUGIN_DIR . '/languages/', // WPBC_PLUGIN_DIR . '/lang/', // ...and this.
|
707 |
+
'clear_destination' => false,
|
708 |
+
'abort_if_destination_exists' => false, // Abort if the destination directory exists. Pass clear_destination as false please.
|
709 |
+
'clear_working' => true,
|
710 |
+
'is_multi' => false,
|
711 |
+
'hook_extra' => array(), // Pass any extra $hook_extra args here, this will be passed to any hooked filters.
|
712 |
+
) );
|
713 |
+
|
714 |
+
return $result;
|
715 |
}
|
716 |
|
717 |
+
|
718 |
+
/**
|
719 |
+
* Get translation Upgrader object
|
720 |
+
*
|
721 |
+
* @return WP_Upgrader obj
|
722 |
+
*/
|
723 |
+
function wpbc_get_translation_upgrader_obj(){
|
724 |
+
|
725 |
+
require_once ABSPATH . 'wp-admin/includes/file.php';
|
726 |
+
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
727 |
+
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
728 |
+
require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
|
729 |
+
|
730 |
+
require_once WPBC_PLUGIN_DIR . '/core/class/wpbc-class-upgrader-translation-skin.php';
|
731 |
+
$skin = new WPBC_Upgrader_Translation_Skin(
|
732 |
+
array( 'skip_header_footer' => true )
|
733 |
+
);
|
734 |
+
|
735 |
+
$my_upgrader = new WP_Upgrader( $skin );
|
736 |
+
|
737 |
+
$my_upgrader->init(); // it's required for defining skin messages
|
738 |
+
|
739 |
+
return $my_upgrader;
|
740 |
}
|
|
|
|
|
|
|
|
|
741 |
|
742 |
|
743 |
+
/**
|
744 |
+
* Get array of translation packages from WordPress.org
|
745 |
+
*
|
746 |
+
* @return array Array ( [0] => Array (
|
747 |
+
[language] => bg_BG
|
748 |
+
[version] => 8.9.3
|
749 |
+
[updated] => 2018-03-13 19:55:57
|
750 |
+
[english_name] => Bulgarian
|
751 |
+
[native_name] => Български
|
752 |
+
[package] => https://downloads.wordpress.org/translation/plugin/booking/8.9.3/bg_BG.zip
|
753 |
+
[iso] => Array ( [1] => bg, [2] => bul )
|
754 |
+
)
|
755 |
+
[1] ....
|
756 |
+
*/
|
757 |
+
function wpbc_get_translation_packages_arr_from_wp(){
|
758 |
+
|
759 |
+
$translations_arr = array();
|
760 |
+
|
761 |
+
if ( ! is_admin() ) {
|
762 |
+
return $translations_arr;
|
763 |
+
}
|
764 |
|
765 |
+
require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
|
766 |
+
|
767 |
+
$api = translations_api( 'plugins', array(
|
768 |
+
'slug' => 'booking',
|
769 |
+
'version' => WP_BK_VERSION_NUM, //'8.9.3',
|
770 |
+
) );
|
771 |
+
|
772 |
+
if ( ( is_wp_error( $api ) ) || ( empty( $api['translations'] ) ) ) {
|
773 |
+
return $translations_arr;
|
774 |
+
} else {
|
775 |
+
$translations_arr = $api['translations'];
|
776 |
}
|
777 |
+
|
778 |
+
return $translations_arr;
|
779 |
+
}
|
780 |
+
|
781 |
+
|
782 |
+
|
783 |
+
//======================================================================================================================
|
784 |
+
// Get STATUS of translations in this website
|
785 |
+
//======================================================================================================================
|
786 |
+
|
787 |
+
|
788 |
+
function wpbc_show_translation_status_compare_wpbc_wp( ) {
|
789 |
+
|
790 |
+
if ( function_exists( 'set_time_limit' ) ) { set_time_limit( 900 ); }
|
791 |
+
@ini_set('memory_limit','256M');
|
792 |
+
@ini_set('max_execution_time', 300);
|
793 |
+
|
794 |
+
$params = array(
|
795 |
+
'sort_field_name' => 'locale'
|
796 |
+
, 'sort_order' => SORT_ASC
|
797 |
+
, 'sort_type' => SORT_STRING
|
798 |
+
);
|
799 |
+
$params['wp_available_languages'] = wpbc_get_available_language_locales_from_wp_org_api();
|
800 |
+
|
801 |
+
$current_locale = wpbc_get_maybe_reloaded_booking_locale(); // if NOT defined WPBC_LOCALE_RELOAD define by current WordPress locale
|
802 |
+
|
803 |
+
$is_echo = false;
|
804 |
+
|
805 |
+
$from_wp = wpbc_show_translation_status_from_wp( $is_echo, $params );
|
806 |
+
$from_wpbc = wpbc_show_translation_status_from_wpbc( $is_echo, $params );
|
807 |
+
|
808 |
+
$total_translations = 0;
|
809 |
+
|
810 |
+
$compared_translations = array();
|
811 |
+
// WPBC
|
812 |
+
foreach ( $from_wpbc as $po_translation ) {
|
813 |
+
$compared_translations[ $po_translation['locale'] ] = array(
|
814 |
+
'filename' => $po_translation['filename']
|
815 |
+
, 'locale' => $po_translation['locale']
|
816 |
+
, 'english_name' => $po_translation['english_name']
|
817 |
+
, 'total_wpbc' => $po_translation['total']
|
818 |
+
, 'error_wpbc' => $po_translation['error']
|
819 |
+
, 'percent_wpbc' => $po_translation['percent']
|
820 |
+
, 'done_wpbc' => $po_translation['done']
|
821 |
+
, 'untranslated_wpbc' => $po_translation['untranslated']
|
822 |
+
, 'fuzzy_wpbc' => $po_translation['fuzzy']
|
823 |
+
|
824 |
+
, 'total_wp' => 0
|
825 |
+
, 'error_wp' => 0
|
826 |
+
, 'percent_wp' => 0
|
827 |
+
, 'done_wp' => 0
|
828 |
+
, 'untranslated_wp' => 0
|
829 |
+
, 'fuzzy_wp' => 0
|
830 |
+
);
|
831 |
+
if ( $po_translation['total'] > $total_translations ) {
|
832 |
+
$total_translations = $po_translation['total'];
|
833 |
}
|
834 |
}
|
835 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
|
837 |
+
// WP_LANG_DIR
|
838 |
+
foreach ( $from_wp as $po_translation ) {
|
839 |
+
|
840 |
+
if ( isset( $compared_translations[ $po_translation['locale'] ] ) ) {
|
841 |
+
$default = $compared_translations[ $po_translation['locale'] ];
|
842 |
+
} else {
|
843 |
+
$default = array(
|
844 |
+
'total_wpbc' => 0
|
845 |
+
, 'error_wpbc' => 0
|
846 |
+
, 'percent_wpbc' => 0
|
847 |
+
, 'done_wpbc' => 0
|
848 |
+
, 'untranslated_wpbc' => 0
|
849 |
+
, 'fuzzy_wpbc' => 0
|
850 |
+
);
|
851 |
+
}
|
852 |
+
|
853 |
+
$compared_translations[ $po_translation['locale'] ] = wp_parse_args(
|
854 |
+
array(
|
855 |
+
'filename' => $po_translation['filename']
|
856 |
+
, 'locale' => $po_translation['locale']
|
857 |
+
, 'english_name' => $po_translation['english_name']
|
858 |
+
, 'total_wp' => $po_translation['total']
|
859 |
+
, 'error_wp' => $po_translation['error']
|
860 |
+
, 'percent_wp' => $po_translation['percent']
|
861 |
+
, 'done_wp' => $po_translation['done']
|
862 |
+
, 'untranslated_wp' => $po_translation['untranslated']
|
863 |
+
, 'fuzzy_wp' => $po_translation['fuzzy']
|
864 |
+
),
|
865 |
+
$default
|
866 |
+
);
|
867 |
+
if ( $po_translation['total'] > $total_translations ) {
|
868 |
+
$total_translations = $po_translation['total'];
|
869 |
+
}
|
870 |
+
}
|
871 |
+
|
872 |
+
$new_compared_translations = array();
|
873 |
+
$current_active_translation = false;
|
874 |
+
foreach ( $compared_translations as $locale => $compared_translation ) {
|
875 |
+
|
876 |
+
$compared_translation['total'] = $total_translations;//( ( $compared_translation['total_wp'] > $compared_translation['total_wpbc'] ) ? $compared_translation['total_wp'] : $compared_translation['total_wpbc'] );
|
877 |
+
|
878 |
+
$compared_translation['done'] = ( ( $compared_translation['done_wp'] > $compared_translation['done_wpbc'] ) ? $compared_translation['done_wp'] : $compared_translation['done_wpbc'] );
|
879 |
+
|
880 |
+
$compared_translation['percent'] = round( ( $compared_translation['done'] * 100 ) / $compared_translation['total'], 2 );
|
881 |
+
|
882 |
+
|
883 |
+
$new_compared_translations[] = $compared_translation;
|
884 |
+
if ( $current_locale == $compared_translation['locale'] ) {
|
885 |
+
$current_active_translation = array();
|
886 |
+
$current_active_translation[] = $compared_translation;
|
887 |
+
}
|
888 |
+
}
|
889 |
+
|
890 |
|
891 |
+
//////////////////////////////////////////////////////////////////////////////////
|
892 |
+
// Sort translation array
|
893 |
+
//////////////////////////////////////////////////////////////////////////////////
|
894 |
+
$volume = array_column( $new_compared_translations, 'done' ); // default $params['sort_field_name'] = 'percent'
|
895 |
+
array_multisort( $volume, SORT_DESC, SORT_NUMERIC, $new_compared_translations );
|
896 |
+
|
897 |
+
|
898 |
+
//debuge( $new_compared_translations );
|
899 |
+
|
900 |
+
if ( ! empty( $current_active_translation ) ) {
|
901 |
+
$new_compared_translations = array_merge( $current_active_translation, $new_compared_translations );
|
902 |
+
}
|
903 |
+
$translation_message = '';
|
904 |
+
$is_already_shown_current_lang = false;
|
905 |
+
foreach ( $new_compared_translations as $translation_status ) {
|
906 |
+
|
907 |
+
if ( ( ! empty( $current_active_translation ) ) && ( $current_locale == $translation_status['locale'] ) && ($is_already_shown_current_lang)) {
|
908 |
+
continue;
|
909 |
+
}
|
910 |
+
|
911 |
+
$translation_message .= ( empty( $translation_status['english_name'] ) ? $translation_status['locale'] : $translation_status['english_name'] )
|
912 |
+
. " [{$translation_status['locale']}] "
|
913 |
+
. " better to use ". ( ( $translation_status['done_wpbc'] > $translation_status['done_wp'] ) ? "local" : "wordpress.org" ) . " translation"
|
914 |
+
. '<br/>'
|
915 |
+
. " Total translations: <strong>{$translation_status['percent']}%</strong> [ <strong>{$translation_status['done']}</strong> / {$translation_status['total']} ]"
|
916 |
+
. '<br/>'
|
917 |
+
. "Local translation. " //. esc_html( WPBC_PLUGIN_DIR . '/languages/' ) . " folder"
|
918 |
+
. " Translated <strong>{$translation_status['done_wpbc']}</strong>"
|
919 |
+
. ", fuzzy <strong>{$translation_status['fuzzy_wpbc']}</strong>"
|
920 |
+
. ", not translated <strong>{$translation_status['untranslated_wpbc']}</strong>"
|
921 |
+
. '<br/>'
|
922 |
+
. "wordpress.org translation. " //. esc_html( WP_LANG_DIR . '/plugins/' ) . " folder"
|
923 |
+
. " Translated <strong>{$translation_status['done_wp']}</strong>"
|
924 |
+
. ", fuzzy <strong>{$translation_status['fuzzy_wp']}</strong>"
|
925 |
+
. ", not translated <strong>{$translation_status['untranslated_wp']}</strong>"
|
926 |
+
. '<hr/>';
|
927 |
+
|
928 |
+
if ( ( ! empty( $current_active_translation ) ) && ( $current_locale == $translation_status['locale'] ) ) {
|
929 |
+
$is_already_shown_current_lang = true;
|
930 |
+
}
|
931 |
+
}
|
932 |
+
|
933 |
+
//////////////////////////////////////////////////////////////////////////////////
|
934 |
+
|
935 |
+
wpbc_show_message_in_settings( $translation_message, 'info' );
|
936 |
+
|
937 |
+
echo '<a class="button button-secondary" style="margin:10px 0;" href="' . wpbc_get_settings_url() . '" >' . __( 'Go to Settings', 'booking' ) . '</a>';
|
938 |
}
|
939 |
|
940 |
+
/**
|
941 |
+
* Get or Show translation statuses from "WP_LANG_DIR" folder at Booking > Settings General page
|
942 |
+
*
|
943 |
+
* Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&show_translation_status=1#wpbc_general_settings_system_info_metabox
|
944 |
+
*
|
945 |
+
* @param bool $is_echo
|
946 |
+
* @param array $params array(
|
947 |
+
'wp_available_languages' => array() - result of wpbc_get_available_language_locales_from_wp_org_api()
|
948 |
+
, 'sort_field_name' => 'percent'
|
949 |
+
, 'sort_order' => SORT_DESC
|
950 |
+
, 'sort_type' => SORT_NUMERIC
|
951 |
+
);
|
952 |
+
*
|
953 |
+
* @return array array ( array ( filename = "booking-ro_RO.po", total = {int} 1906
|
954 |
+
error = false
|
955 |
+
percent = {float} 98.11
|
956 |
+
done = {int} 1870
|
957 |
+
untranslated = {int} 16
|
958 |
+
fuzzy = {int} 20
|
959 |
+
english_name = "ro_RO"
|
960 |
+
locale = "ro_RO"
|
961 |
+
)
|
962 |
+
, ...
|
963 |
+
)
|
964 |
+
*/
|
965 |
+
function wpbc_show_translation_status_from_wp( $is_echo = true, $params = array() ){
|
966 |
+
|
967 |
+
$defaults = array(
|
968 |
+
'wp_available_languages' => array()
|
969 |
+
, 'sort_field_name' => 'done'
|
970 |
+
, 'sort_order' => SORT_DESC
|
971 |
+
, 'sort_type' => SORT_NUMERIC
|
972 |
+
);
|
973 |
+
$params = wp_parse_args( $params, $defaults );
|
974 |
+
|
975 |
+
|
976 |
+
if ( empty( $params['wp_available_languages'] ) ) {
|
977 |
+
// Get available language locales from the WordPress.org API.
|
978 |
+
$params['wp_available_languages'] = wpbc_get_available_language_locales_from_wp_org_api();
|
979 |
+
}
|
980 |
+
|
981 |
+
|
982 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
983 |
+
// Scan WP_LANG_DIR dir for PO files.
|
984 |
+
if (1) {
|
985 |
+
$plugin_translations_in_lang_dir = wp_get_installed_translations( 'plugins' );
|
986 |
+
|
987 |
+
$plugin_slug = 'booking';
|
988 |
+
|
989 |
+
if ( ! empty( $plugin_translations_in_lang_dir[ $plugin_slug ] ) ) {
|
990 |
+
$plugin_translations_in_lang_dir = $plugin_translations_in_lang_dir[ $plugin_slug ];
|
991 |
+
} else {
|
992 |
+
$plugin_translations_in_lang_dir = array();
|
993 |
+
}
|
994 |
+
|
995 |
+
$po_files_full_path_arr = array();
|
996 |
+
foreach ( (array) $plugin_translations_in_lang_dir as $locale => $po_arr ) {
|
997 |
|
998 |
+
$po_files_full_path_arr[] = WP_LANG_DIR . '/plugins/' . $plugin_slug . '-' . $locale . '.po';
|
999 |
+
/**
|
1000 |
+
* array ( [0] => W:\w3\beta\www/wp-content/languages/plugins/booking-bg_BG.po
|
1001 |
+
* [1] => W:\w3\beta\www/wp-content/languages/plugins/booking-ca.po
|
1002 |
+
* ...
|
1003 |
+
* )
|
1004 |
+
*/
|
1005 |
+
}
|
1006 |
+
}
|
1007 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1008 |
+
|
1009 |
+
|
1010 |
+
// Get array of translation statuses, like total, fuzzy, not translated...
|
1011 |
+
$translation_status_arr = wpbc_get_po_transaltion_statuses_of_files_arr( wp_parse_args(
|
1012 |
+
array(
|
1013 |
+
'po_files_full_path_arr' => $po_files_full_path_arr
|
1014 |
+
)
|
1015 |
+
, $params
|
1016 |
+
)
|
1017 |
+
);
|
1018 |
+
/**
|
1019 |
+
array ( array ( filename = "booking-ro_RO.po", total = {int} 1906
|
1020 |
+
error = false
|
1021 |
+
percent = {float} 98.11
|
1022 |
+
done = {int} 1870
|
1023 |
+
untranslated = {int} 16
|
1024 |
+
fuzzy = {int} 20
|
1025 |
+
english_name = "ro_RO"
|
1026 |
+
locale = "ro_RO"
|
1027 |
+
)
|
1028 |
+
, ...
|
1029 |
+
)
|
1030 |
+
*/
|
1031 |
+
|
1032 |
+
if ( $is_echo ) {
|
1033 |
+
|
1034 |
+
$translation_message = '';
|
1035 |
+
foreach ( $translation_status_arr as $translation_status ) {
|
1036 |
+
|
1037 |
+
$translation_message .= ( empty( $translation_status['english_name'] ) ? $translation_status['locale'] : $translation_status['english_name'] )
|
1038 |
+
. " <strong>{$translation_status['percent']}%</strong> [ {$translation_status['done']} / {$translation_status['total']} ]"
|
1039 |
+
. ", fuzzy <strong>{$translation_status['fuzzy']}</strong>"
|
1040 |
+
. ", not translated <strong>{$translation_status['untranslated']}</strong>" . '<br/>';
|
1041 |
+
|
1042 |
+
}
|
1043 |
|
1044 |
+
wpbc_show_message_in_settings( $translation_message, 'info' );
|
|
|
|
|
1045 |
|
1046 |
+
echo '<a class="button button-secondary" style="margin:10px 0;" href="' . wpbc_get_settings_url() . '" >' . __( 'Go to Settings', 'booking' ) . '</a>';
|
1047 |
+
}
|
1048 |
+
|
1049 |
+
return $translation_status_arr;
|
1050 |
}
|
1051 |
+
|
1052 |
|
1053 |
/**
|
1054 |
+
* Get or Show translation statuses from "{Booking Calendar Folder}" at Booking > Settings General page
|
1055 |
+
* Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&show_translation_status=1#wpbc_general_settings_system_info_metabox
|
1056 |
+
*
|
1057 |
+
* @param bool $is_echo
|
1058 |
+
* @param array $params array(
|
1059 |
+
'wp_available_languages' => array() - result of wpbc_get_available_language_locales_from_wp_org_api()
|
1060 |
+
, 'sort_field_name' => 'percent'
|
1061 |
+
, 'sort_order' => SORT_DESC
|
1062 |
+
, 'sort_type' => SORT_NUMERIC
|
1063 |
+
);
|
1064 |
+
*
|
1065 |
+
* @return array array ( array ( filename = "booking-ro_RO.po", total = {int} 1906
|
1066 |
+
error = false
|
1067 |
+
percent = {float} 98.11
|
1068 |
+
done = {int} 1870
|
1069 |
+
untranslated = {int} 16
|
1070 |
+
fuzzy = {int} 20
|
1071 |
+
english_name = "ro_RO"
|
1072 |
+
locale = "ro_RO"
|
1073 |
+
)
|
1074 |
+
, ...
|
1075 |
+
)
|
1076 |
*/
|
1077 |
+
function wpbc_show_translation_status_from_wpbc( $is_echo = true, $params = array() ){
|
1078 |
+
|
1079 |
+
$defaults = array(
|
1080 |
+
'wp_available_languages' => array()
|
1081 |
+
, 'sort_field_name' => 'percent'
|
1082 |
+
, 'sort_order' => SORT_DESC
|
1083 |
+
, 'sort_type' => SORT_NUMERIC
|
1084 |
+
);
|
1085 |
+
$params = wp_parse_args( $params, $defaults );
|
1086 |
+
|
1087 |
+
|
1088 |
+
if ( empty( $params['wp_available_languages'] ) ) {
|
1089 |
+
// Get available language locales from the WordPress.org API.
|
1090 |
+
$params['wp_available_languages'] = wpbc_get_available_language_locales_from_wp_org_api();
|
1091 |
+
}
|
1092 |
+
|
1093 |
+
|
1094 |
+
// Scan dir for PO files.
|
1095 |
+
if (1) {
|
1096 |
+
$po_files_array = wpbc_scan_dir_for_po_files( WPBC_PLUGIN_DIR . '/languages' ); // $po_files_array = array( "booking-ar.po", "booking-bel.po", "booking-bg_BG.po", ... )
|
1097 |
+
$po_files_full_path_arr = array();
|
1098 |
+
foreach ( $po_files_array as $po_file_name ) {
|
1099 |
+
$po_files_full_path_arr[] = WPBC_PLUGIN_DIR . '/languages/' . $po_file_name; // W:\w3\beta\www/wp-content/plugins/booking/languages/booking-ar.po
|
1100 |
+
}
|
1101 |
+
}
|
1102 |
+
|
1103 |
+
// Get array of translation statuses, like total, fuzzy, not translated...
|
1104 |
+
$translation_status_arr = wpbc_get_po_transaltion_statuses_of_files_arr( wp_parse_args(
|
1105 |
+
array(
|
1106 |
+
'po_files_full_path_arr' => $po_files_full_path_arr
|
1107 |
+
)
|
1108 |
+
, $params
|
1109 |
+
)
|
1110 |
+
);
|
1111 |
+
/**
|
1112 |
+
array ( array ( filename = "booking-ro_RO.po", total = {int} 1906
|
1113 |
+
error = false
|
1114 |
+
percent = {float} 98.11
|
1115 |
+
done = {int} 1870
|
1116 |
+
untranslated = {int} 16
|
1117 |
+
fuzzy = {int} 20
|
1118 |
+
english_name = "ro_RO"
|
1119 |
+
locale = "ro_RO"
|
1120 |
+
)
|
1121 |
+
, ...
|
1122 |
+
)
|
1123 |
+
*/
|
1124 |
+
|
1125 |
+
if ( $is_echo ) {
|
1126 |
+
//////////////////////////////////////////////////////////////////////////////////
|
1127 |
+
$translation_message = '';
|
1128 |
+
foreach ( $translation_status_arr as $translation_status ) {
|
1129 |
+
|
1130 |
+
$translation_message .= ( empty( $translation_status['english_name'] ) ? $translation_status['locale'] : $translation_status['english_name'] )
|
1131 |
+
. " <strong>{$translation_status['percent']}%</strong> [ {$translation_status['done']} / {$translation_status['total']} ]"
|
1132 |
+
. ", fuzzy <strong>{$translation_status['fuzzy']}</strong>"
|
1133 |
+
. ", not translated <strong>{$translation_status['untranslated']}</strong>" . '<br/>';
|
1134 |
+
|
1135 |
+
}
|
1136 |
+
|
1137 |
+
//////////////////////////////////////////////////////////////////////////////////
|
1138 |
+
|
1139 |
+
wpbc_show_message_in_settings( $translation_message, 'info' );
|
1140 |
+
|
1141 |
+
echo '<a class="button button-secondary" style="margin:10px 0;" href="' . wpbc_get_settings_url() . '" >' . __( 'Go to Settings', 'booking' ) . '</a>';
|
1142 |
+
}
|
1143 |
+
|
1144 |
+
return $translation_status_arr;
|
1145 |
}
|
1146 |
|
1147 |
|
1148 |
+
/**
|
1149 |
+
* Get Language names for all Locales from WordPress.org API
|
1150 |
+
*
|
1151 |
+
* @return array|array[]
|
1152 |
+
Array( ["nl_NL"] => array ( language = "nl_NL"
|
1153 |
+
version = "5.9"
|
1154 |
+
updated = "2022-02-10 16:24:09"
|
1155 |
+
english_name = "Dutch"
|
1156 |
+
native_name = "Nederlands"
|
1157 |
+
package = "https://downloads.wordpress.org/translation/core/5.9/nl_NL.zip"
|
1158 |
+
iso = array( "nl", "nld" )
|
1159 |
+
strings = array( continue = "Doorgaan" )
|
1160 |
+
), ...
|
1161 |
+
|
1162 |
+
*/
|
1163 |
+
function wpbc_get_available_language_locales_from_wp_org_api(){
|
1164 |
+
|
1165 |
+
// Get Language names for all Locales
|
1166 |
+
require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
|
1167 |
+
/**
|
1168 |
+
* Array( ["nl_NL"] => array ( language = "nl_NL"
|
1169 |
+
version = "5.9"
|
1170 |
+
updated = "2022-02-10 16:24:09"
|
1171 |
+
english_name = "Dutch"
|
1172 |
+
native_name = "Nederlands"
|
1173 |
+
package = "https://downloads.wordpress.org/translation/core/5.9/nl_NL.zip"
|
1174 |
+
iso = array( "nl", "nld" )
|
1175 |
+
strings = array( continue = "Doorgaan" )
|
1176 |
+
* ), ...
|
1177 |
+
*/
|
1178 |
+
if (function_exists('wp_get_available_translations')){
|
1179 |
+
$wp_api_available_languages = wp_get_available_translations(); // Get available translations from the WordPress.org API.
|
1180 |
+
} else {
|
1181 |
+
$wp_api_available_languages = array();
|
1182 |
+
}
|
1183 |
|
1184 |
+
return $wp_api_available_languages;
|
1185 |
+
}
|
1186 |
|
|
|
|
|
|
|
1187 |
|
1188 |
+
/**
|
1189 |
+
* Get array of translation statuses (like total, fuzzy, not translated) of each PO files
|
1190 |
+
*
|
1191 |
+
* @param $params (array) array(
|
1192 |
+
'po_files_full_path_arr' => array()
|
1193 |
+
, 'wp_available_languages' => array() - result of this function: wp_get_available_translations()
|
1194 |
+
, 'sort_field_name' => 'percent' - it can be any field from the returned array, like 'total'
|
1195 |
+
, 'sort_order' => SORT_DESC
|
1196 |
+
, 'sort_type' => SORT_NUMERIC
|
1197 |
+
)
|
1198 |
+
* 'po_files_full_path_arr' => array (
|
1199 |
+
0 = "W:\w3\beta\www\wp-content\plugins\booking/languages/booking-ar.po"
|
1200 |
+
1 = "W:\w3\beta\www\wp-content\plugins\booking/languages/booking-bel.po"
|
1201 |
+
* ...
|
1202 |
+
* )
|
1203 |
+
*
|
1204 |
+
* @return array array (
|
1205 |
+
0 = array (
|
1206 |
+
filename = "booking-ro_RO.po"
|
1207 |
+
locale = "ro_RO"
|
1208 |
+
total = {int} 1906
|
1209 |
+
error = false
|
1210 |
+
percent = {float} 98.11
|
1211 |
+
done = {int} 1870
|
1212 |
+
untranslated = {int} 16
|
1213 |
+
fuzzy = {int} 20
|
1214 |
+
english_name = "ro_RO"
|
1215 |
+
)
|
1216 |
+
, ...
|
1217 |
+
)
|
1218 |
+
*/
|
1219 |
+
function wpbc_get_po_transaltion_statuses_of_files_arr( $params ){
|
1220 |
+
|
1221 |
+
$defaults = array(
|
1222 |
+
'po_files_full_path_arr' => array()
|
1223 |
+
, 'wp_available_languages' => array()
|
1224 |
+
, 'sort_field_name' => 'percent'
|
1225 |
+
, 'sort_order' => SORT_DESC
|
1226 |
+
, 'sort_type' => SORT_NUMERIC
|
1227 |
+
);
|
1228 |
+
$params = wp_parse_args( $params, $defaults );
|
1229 |
+
|
1230 |
+
|
1231 |
+
$translation_status_arr = array();
|
1232 |
+
|
1233 |
+
foreach ( $params['po_files_full_path_arr'] as $po_file_index => $pot_file_path ) {
|
1234 |
+
|
1235 |
+
|
1236 |
+
$translation_status = wpbc_get_po_translation_statuses($pot_file_path);
|
1237 |
+
/**
|
1238 |
+
* array( filename = "booking-ar.po", locale = "ar", total = {int} 1906, percent = {float} 97.74
|
1239 |
+
done = {int} 1863
|
1240 |
+
untranslated = {int} 17
|
1241 |
+
fuzzy = {int} 26
|
1242 |
+
error = false
|
1243 |
+
* )
|
1244 |
+
*/
|
1245 |
+
|
1246 |
+
if ( ! empty( $params['wp_available_languages'][ $translation_status['locale'] ] ) ) {
|
1247 |
+
$translation_status['english_name'] = $params['wp_available_languages'][ $translation_status['locale'] ]['english_name'];
|
1248 |
+
} else {
|
1249 |
+
$translation_status['english_name'] = $translation_status['locale'];
|
1250 |
+
}
|
1251 |
|
1252 |
+
$translation_status_arr[] = $translation_status;
|
1253 |
+
}
|
|
|
|
|
|
|
|
|
1254 |
|
1255 |
+
//////////////////////////////////////////////////////////////////////////////////
|
1256 |
+
// Sort translation array
|
1257 |
+
//////////////////////////////////////////////////////////////////////////////////
|
1258 |
+
$volume = array_column( $translation_status_arr, $params['sort_field_name'] ); // default $params['sort_field_name'] = 'percent'
|
1259 |
+
array_multisort( $volume, $params['sort_order'], $params['sort_type'], $translation_status_arr );
|
1260 |
|
1261 |
+
return $translation_status_arr;
|
1262 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1264 |
|
1265 |
+
/**
|
1266 |
+
* Scan directory for PO files
|
1267 |
+
*
|
1268 |
+
* @param $dir_to_scan path to directory with PO files
|
1269 |
+
*
|
1270 |
+
* @return array array with names of PO files in this dir
|
1271 |
+
*/
|
1272 |
+
function wpbc_scan_dir_for_po_files( $dir_to_scan ){
|
1273 |
+
|
1274 |
+
$found_files = array();
|
1275 |
+
|
1276 |
+
$files = scandir( $dir_to_scan );
|
1277 |
+
if ( ! $files ) {
|
1278 |
+
$found_files = array();
|
1279 |
+
}
|
1280 |
+
|
1281 |
+
foreach ( $files as $file ) {
|
1282 |
+
if ( '.' === $file[0] || is_dir( $dir_to_scan . "/$file" ) ) {
|
1283 |
+
continue;
|
1284 |
+
}
|
1285 |
+
if ( substr( $file, - 3 ) !== '.po' ) {
|
1286 |
+
continue;
|
1287 |
+
}
|
1288 |
+
$match_result = preg_match( '/(?:(.+)-)?([a-z]{2,3}(?:_[A-Z]{2})?(?:_[a-z0-9]+)?).po/', $file, $match );
|
1289 |
+
if ( ! $match_result ) {
|
1290 |
+
continue;
|
1291 |
+
}
|
1292 |
+
if ( ! in_array( substr( $file, 0, - 3 ) . '.mo', $files, true ) ) {
|
1293 |
+
continue;
|
1294 |
+
}
|
1295 |
+
|
1296 |
+
$found_files[] = $file;
|
1297 |
+
}
|
1298 |
+
|
1299 |
+
return $found_files;
|
1300 |
+
}
|
1301 |
+
|
1302 |
+
|
1303 |
+
/**
|
1304 |
+
* Get translation data statuses from PO file
|
1305 |
+
*
|
1306 |
+
* @param $pot_file_path string - full path to PO translation file
|
1307 |
+
*
|
1308 |
+
* @return array array of PO statuses
|
1309 |
+
*/
|
1310 |
+
function wpbc_get_po_translation_statuses( $pot_file_path ){
|
1311 |
+
|
1312 |
+
$translation_status = array(
|
1313 |
+
'filename' => basename( $pot_file_path )
|
1314 |
+
, 'locale' => substr( $pot_file_path, ( strrpos( $pot_file_path, '-' ) + 1 ), - 3 )
|
1315 |
+
, 'total' => 0
|
1316 |
+
, 'error' => false
|
1317 |
+
);
|
1318 |
+
|
1319 |
+
if ( is_readable( $pot_file_path ) ) {
|
1320 |
+
|
1321 |
+
if ( ! class_exists( 'PO' ) ) {
|
1322 |
+
require_once ABSPATH . WPINC . '/pomo/po.php';
|
1323 |
+
}
|
1324 |
+
|
1325 |
+
if ( class_exists( 'PO' ) ) {
|
1326 |
+
|
1327 |
+
$po = new PO();
|
1328 |
+
$is_good = $po->import_from_file( $pot_file_path );
|
1329 |
+
|
1330 |
+
if ( $is_good ) {
|
1331 |
+
|
1332 |
+
$transaltion_total = count( $po->entries );
|
1333 |
+
$transaltion_no = 0;
|
1334 |
+
$transaltion_fuzzy = 0;
|
1335 |
+
|
1336 |
+
foreach ( $po->entries as $po_index => $po_item ) {
|
1337 |
+
|
1338 |
+
$translation = $po_item;
|
1339 |
+
|
1340 |
+
if ( 0 == count( $translation->translations ) ) {
|
1341 |
+
$transaltion_no++;
|
1342 |
+
} elseif ( true === in_array( 'fuzzy', $translation->flags ) ) {
|
1343 |
+
$transaltion_fuzzy++;
|
1344 |
+
}
|
1345 |
+
}
|
1346 |
+
|
1347 |
+
$transaltion_done = $transaltion_total - $transaltion_no - $transaltion_fuzzy;
|
1348 |
+
$transaltion_percent = round( ( $transaltion_done * 100 ) / $transaltion_total, 2 );
|
1349 |
+
|
1350 |
+
$translation_status = wp_parse_args(
|
1351 |
+
array(
|
1352 |
+
'percent' => $transaltion_percent
|
1353 |
+
, 'done' => $transaltion_done
|
1354 |
+
, 'total' => $transaltion_total
|
1355 |
+
, 'untranslated' => $transaltion_no
|
1356 |
+
, 'fuzzy' => $transaltion_fuzzy
|
1357 |
+
)
|
1358 |
+
, $translation_status );
|
1359 |
+
|
1360 |
+
} else {
|
1361 |
+
$translation_status['error'] = 'Import translation from PO file failed';
|
1362 |
+
}
|
1363 |
+
} else {
|
1364 |
+
$translation_status['error'] = 'Can not access to PO class';
|
1365 |
+
}
|
1366 |
+
|
1367 |
+
} else {
|
1368 |
+
$translation_status['error'] = 'File not readable';
|
1369 |
+
}
|
1370 |
+
return $translation_status;
|
1371 |
+
}
|
1372 |
+
|
1373 |
+
|
1374 |
+
|
1375 |
+
/**
|
1376 |
+
* Load translation POT file, and generate PHP file with all translations relative to plugin.
|
1377 |
+
* Link: http://server.com/wp-admin/admin.php?page=wpbc-settings&system_info=show&pot=1#wpbc_general_settings_system_info_metabox
|
1378 |
+
*/
|
1379 |
+
function wpbc_pot_to_php() {
|
1380 |
+
|
1381 |
+
/*
|
1382 |
+
* $shortcode = 'wpml';
|
1383 |
+
|
1384 |
+
// Find anything between [wpml] and [/wpml] shortcodes. Magic here: [\s\S]*? - fit to any text
|
1385 |
+
preg_match_all( '/\[' . $shortcode . '\]([\s\S]*?)\[\/' . $shortcode . '\]/i', $text, $wpml_translations, PREG_SET_ORDER );
|
1386 |
+
//debuge( $wpml_translations );
|
1387 |
+
|
1388 |
+
foreach ( $wpml_translations as $translation ) {
|
1389 |
+
|
1390 |
+
*/
|
1391 |
+
|
1392 |
+
$pot_file = WP_PLUGIN_DIR . '/' . trim( WPBC_PLUGIN_DIRNAME . '/languages/booking.pot' , '/' );
|
1393 |
+
|
1394 |
+
if ( !is_readable( $pot_file ) ) {
|
1395 |
+
wpbc_show_message_in_settings( 'POT file not found: ' . $pot_file , 'error' );
|
1396 |
+
return false;
|
1397 |
+
} else
|
1398 |
+
wpbc_show_message_in_settings( 'POT file found: ' . $pot_file , 'info' );
|
1399 |
+
|
1400 |
+
|
1401 |
+
if ( ! class_exists( 'PO' ) )
|
1402 |
+
require_once ABSPATH . WPINC . '/pomo/po.php';
|
1403 |
+
|
1404 |
+
if ( class_exists( 'PO' ) ) {
|
1405 |
+
|
1406 |
+
$po = new PO();
|
1407 |
+
$po->import_from_file( $pot_file );
|
1408 |
+
|
1409 |
+
wpbc_show_message_in_settings( 'Found <strong>' . count($po->entries) . '</strong> translations' , 'info' );
|
1410 |
+
|
1411 |
+
//FixIn: 8.7.3.6
|
1412 |
+
$translation_files = array();
|
1413 |
+
|
1414 |
+
|
1415 |
+
// Generate content of the file
|
1416 |
+
//$all_translations = '<?php function wpbc_all_translations() { $wpbc_all_translations = array(); ';
|
1417 |
+
|
1418 |
+
$lines_number = 1;
|
1419 |
+
$all_translations = '';
|
1420 |
+
foreach ( $po->entries as $transaltion => $transaltion_obj ) {
|
1421 |
+
|
1422 |
+
$transaltion = str_replace( "'", "\'", $transaltion );
|
1423 |
+
$all_translations .= ' $wpbc_all_translations[] = __(\''. $transaltion .'\', \'booking\'); ' . "\n";
|
1424 |
+
$lines_number++;
|
1425 |
+
|
1426 |
+
// Maximum number of lines in such files
|
1427 |
+
if ( $lines_number >= 998 ) {
|
1428 |
+
$file_number = count( $translation_files ) + 1;
|
1429 |
+
$translation_files[] = '<?php function wpbc_all_translations' . $file_number . '() { $wpbc_all_translations = array(); ' . "\n" . $all_translations . " } ";
|
1430 |
+
$all_translations = '';
|
1431 |
+
$lines_number = 1;
|
1432 |
+
}
|
1433 |
+
|
1434 |
+
}
|
1435 |
+
|
1436 |
+
if ( ! empty( $all_translations ) ) {
|
1437 |
+
$file_number = count( $translation_files ) + 1;
|
1438 |
+
$translation_files[] = '<?php function wpbc_all_translations' . $file_number . '() { $wpbc_all_translations = array(); ' . "\n" . $all_translations . " } ";
|
1439 |
+
}
|
1440 |
+
|
1441 |
+
|
1442 |
+
//$all_translations .= ' } ';
|
1443 |
+
|
1444 |
+
foreach ( $translation_files as $file_number => $file_content ) {
|
1445 |
+
|
1446 |
+
// Path to new PHP file with all
|
1447 |
+
$new_php_file = WP_PLUGIN_DIR . '/' . trim( WPBC_PLUGIN_DIRNAME . '/core/lang/wpbc_all_translations' . ( ( ! empty( $file_number ) ) ? $file_number : '' ) . '.php', '/' ); //FixIn: 8.9.4.12
|
1448 |
+
|
1449 |
+
$fh = fopen( $new_php_file, 'w' );
|
1450 |
+
if ( false === $fh ) {
|
1451 |
+
wpbc_show_message_in_settings( 'Can not create or edit PHP file: ' . $new_php_file, 'error' );
|
1452 |
+
|
1453 |
+
return false;
|
1454 |
+
}
|
1455 |
+
$res = fwrite( $fh, $file_content );
|
1456 |
+
if ( false === $res ) {
|
1457 |
+
wpbc_show_message_in_settings( 'Some error during saving data into file ' . $new_php_file, 'error' );
|
1458 |
+
|
1459 |
+
return false;
|
1460 |
+
}
|
1461 |
+
$res = fclose( $fh );
|
1462 |
+
|
1463 |
+
wpbc_show_message_in_settings( 'Completed! [ ' . htmlentities( $new_php_file ) . ' ]', 'info' );
|
1464 |
+
}
|
1465 |
+
|
1466 |
+
echo '<a class="button button-secondary" style="margin:10px 0;" href="' . wpbc_get_settings_url() . '" >' . __( 'Go to Settings', 'booking' ) . '</a>';
|
1467 |
+
|
1468 |
+
return $res;
|
1469 |
+
|
1470 |
+
} else {
|
1471 |
+
wpbc_show_message_in_settings( 'PO class does not exist or do not loaded' , 'error' );
|
1472 |
}
|
1473 |
+
|
1474 |
+
|
1475 |
+
|
1476 |
+
// $filename = $pot_file;
|
1477 |
+
// $reader = new POMO_FileReader( $filename );
|
1478 |
+
////debuge($reader);
|
1479 |
+
// if ( ! $reader->is_resource() ) {
|
1480 |
+
// return false;
|
1481 |
+
// }
|
1482 |
+
//
|
1483 |
+
// $file_data = $reader->read_all();
|
1484 |
+
//
|
1485 |
+
// $mo = new PO();
|
1486 |
+
// $pomo_reader = new POMO_StringReader($file_data);
|
1487 |
+
// $mo->import_from_reader( $pomo_reader );
|
1488 |
+
//debuge($mo) ;
|
1489 |
+
// if ( isset( $l10n[$domain] ) )
|
1490 |
+
// $mo->merge_with( $l10n[$domain] );
|
1491 |
+
|
1492 |
+
|
1493 |
+
|
1494 |
+
}
|
1495 |
+
|
1496 |
+
|
1497 |
+
|
1498 |
+
|
1499 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1500 |
+
// Deprecated
|
1501 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
1502 |
+
|
1503 |
+
/**
|
1504 |
+
* Deprecated
|
1505 |
+
*/
|
1506 |
+
function wpbc_get_booking_locale() {
|
1507 |
+
return wpbc_get_maybe_reloaded_booking_locale();
|
1508 |
}
|
core/wpbc.php
CHANGED
@@ -27,42 +27,39 @@ final class Booking_Calendar {
|
|
27 |
public $cron;
|
28 |
public $notice;
|
29 |
public $booking_obj;
|
30 |
-
|
31 |
|
32 |
public $admin_menu;
|
33 |
public $js;
|
34 |
public $css;
|
35 |
-
|
36 |
|
37 |
/** Get Single Instance of this Class and Init Plugin */
|
38 |
public static function init() {
|
39 |
|
40 |
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Booking_Calendar ) ) {
|
41 |
|
42 |
-
|
43 |
-
|
44 |
|
45 |
self::$instance = new Booking_Calendar;
|
46 |
self::$instance->constants();
|
47 |
self::$instance->includes();
|
48 |
self::$instance->define_version();
|
49 |
|
50 |
-
|
51 |
-
if ( class_exists( 'WPBC_BookingInstall' ) ) { // Check if we need to run Install / Uninstal process.
|
52 |
-
|
53 |
new WPBC_BookingInstall();
|
54 |
}
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
|
|
|
|
61 |
|
62 |
make_bk_action('wpbc_booking_calendar_started');
|
63 |
-
|
64 |
-
//
|
65 |
-
if ( $is_continue ) { // Possible Load Admin or Front-End page
|
66 |
|
67 |
self::$instance->js = new WPBC_JS;
|
68 |
self::$instance->css = new WPBC_CSS;
|
@@ -70,17 +67,17 @@ public static function init() {
|
|
70 |
if( is_admin() ) {
|
71 |
|
72 |
// Define Menu
|
73 |
-
add_action( '_admin_menu', array( self::$instance, 'define_admin_menu') );
|
74 |
|
75 |
-
add_action( 'admin_footer', 'wpbc_print_js', 50 );
|
76 |
|
77 |
} else {
|
78 |
|
79 |
-
if ( function_exists( 'wpbc_br_cache' ) ) $br_cache = wpbc_br_cache();
|
80 |
|
81 |
-
add_action( 'wp_enqueue_scripts', array(self::$instance->css, 'load'), 1000000001 );
|
82 |
-
add_action( 'wp_enqueue_scripts', array(self::$instance->js, 'load'), 1000000001 );
|
83 |
-
add_action( 'wp_footer', 'wpbc_print_js', 50 );
|
84 |
}
|
85 |
}
|
86 |
|
@@ -102,12 +99,13 @@ public function define_admin_menu(){
|
|
102 |
$title .= $update_count_title;
|
103 |
}
|
104 |
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
|
|
111 |
|
112 |
$booking_menu_position = get_bk_option( 'booking_menu_position' );
|
113 |
switch ( $booking_menu_position ) {
|
@@ -117,7 +115,7 @@ public function define_admin_menu(){
|
|
117 |
case 'middle':
|
118 |
global $_wp_last_object_menu; // The index of the last top-level menu in the object menu group
|
119 |
$_wp_last_object_menu++;
|
120 |
-
$booking_menu_position = $_wp_last_object_menu;
|
121 |
break;
|
122 |
case 'bottom':
|
123 |
$booking_menu_position = '99.999';
|
@@ -127,7 +125,6 @@ public function define_admin_menu(){
|
|
127 |
break;
|
128 |
}
|
129 |
|
130 |
-
|
131 |
self::$instance->admin_menu['master'] = new WPBC_Admin_Menus(
|
132 |
'wpbc' , array (
|
133 |
'in_menu' => 'root'
|
@@ -156,7 +153,6 @@ public function define_admin_menu(){
|
|
156 |
99 Separator
|
157 |
*/
|
158 |
)
|
159 |
-
|
160 |
);
|
161 |
|
162 |
self::$instance->admin_menu['new'] = new WPBC_Admin_Menus(
|
@@ -191,7 +187,6 @@ public function define_admin_menu(){
|
|
191 |
)
|
192 |
);
|
193 |
|
194 |
-
|
195 |
//FixIn: 8.0.1.6
|
196 |
if ( ! class_exists( 'wpdev_bk_personal' ) ) {
|
197 |
|
@@ -209,7 +204,6 @@ public function define_admin_menu(){
|
|
209 |
);
|
210 |
}
|
211 |
|
212 |
-
|
213 |
}
|
214 |
|
215 |
|
@@ -248,41 +242,7 @@ public function define_admin_menu(){
|
|
248 |
if (!defined('WPDEV_BK_VERSION')) define('WPDEV_BK_VERSION', $plugin_data['Version'] );
|
249 |
}
|
250 |
|
251 |
-
|
252 |
-
/**
|
253 |
-
* Load Plugin Locale.
|
254 |
-
* Look firstly in Global folder: /wp-content/languages/booking
|
255 |
-
* then in Local folder: /wp-content/plugins/booking/languages/
|
256 |
-
* and afterwards load default : load_plugin_textdomain( ...
|
257 |
-
*/
|
258 |
-
public function load_textdomain() {
|
259 |
-
// Set filter for plugin's languages directory
|
260 |
-
$plugin_lang_dir = WPBC_PLUGIN_DIR . '/languages/';
|
261 |
-
$plugin_lang_dir = apply_filters( 'wpbc~languages_directory', $plugin_lang_dir );
|
262 |
-
|
263 |
-
// Plugin locale filter
|
264 |
-
$locale = apply_filters( 'plugin_locale', get_locale() ,'booking');
|
265 |
-
$mofile = sprintf( '%1$s-%2$s.mo', 'booking', $locale );
|
266 |
-
|
267 |
-
// Setup paths to current locale file
|
268 |
-
$mofile_local = $plugin_lang_dir . $mofile;
|
269 |
-
$mofile_global = WP_LANG_DIR . '/booking/' . $mofile;
|
270 |
-
|
271 |
-
if ( file_exists( $mofile_global ) ) {
|
272 |
-
// Look in global /wp-content/languages/booking folder
|
273 |
-
load_textdomain( 'booking', $mofile_global );
|
274 |
-
|
275 |
-
} elseif ( file_exists( $mofile_local ) ) {
|
276 |
-
// Look in local /wp-content/plugins/booking/languages/ folder
|
277 |
-
load_textdomain( 'booking', $mofile_local );
|
278 |
-
|
279 |
-
} else {
|
280 |
-
// Load the default language files
|
281 |
-
load_plugin_textdomain( 'booking', false, $plugin_lang_dir );
|
282 |
-
}
|
283 |
-
}
|
284 |
-
|
285 |
-
|
286 |
// Cloning instances of the class is forbidden
|
287 |
public function __clone() {
|
288 |
|
27 |
public $cron;
|
28 |
public $notice;
|
29 |
public $booking_obj;
|
|
|
30 |
|
31 |
public $admin_menu;
|
32 |
public $js;
|
33 |
public $css;
|
|
|
34 |
|
35 |
/** Get Single Instance of this Class and Init Plugin */
|
36 |
public static function init() {
|
37 |
|
38 |
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Booking_Calendar ) ) {
|
39 |
|
40 |
+
global $wpbc_settings;
|
41 |
+
$wpbc_settings = array();
|
42 |
|
43 |
self::$instance = new Booking_Calendar;
|
44 |
self::$instance->constants();
|
45 |
self::$instance->includes();
|
46 |
self::$instance->define_version();
|
47 |
|
48 |
+
if ( class_exists( 'WPBC_BookingInstall' ) ) { // Check if we need to run Install / Uninstal process.
|
|
|
|
|
49 |
new WPBC_BookingInstall();
|
50 |
}
|
51 |
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Make Ajax, Response, in this case $is_continue_at_frontend = false
|
55 |
+
* or
|
56 |
+
* define Booking Class for front-end side, then $is_continue_at_frontend = true
|
57 |
+
*/
|
58 |
+
$is_continue_at_frontend = self::$instance->start();
|
59 |
|
60 |
make_bk_action('wpbc_booking_calendar_started');
|
61 |
+
|
62 |
+
if ( $is_continue_at_frontend ) { // Possible Load Admin or Front-End page
|
|
|
63 |
|
64 |
self::$instance->js = new WPBC_JS;
|
65 |
self::$instance->css = new WPBC_CSS;
|
67 |
if( is_admin() ) {
|
68 |
|
69 |
// Define Menu
|
70 |
+
add_action( '_admin_menu', array( self::$instance, 'define_admin_menu') ); // _admin_menu - Fires before the administration menu loads in the admin.
|
71 |
|
72 |
+
add_action( 'admin_footer', 'wpbc_print_js', 50 ); // Load my Queued JavaScript Code at the footer of the Admin Panel page. Executed in ALL Admin Menu Pages
|
73 |
|
74 |
} else {
|
75 |
|
76 |
+
if ( function_exists( 'wpbc_br_cache' ) ) $br_cache = wpbc_br_cache(); // Init booking resources cache
|
77 |
|
78 |
+
add_action( 'wp_enqueue_scripts', array(self::$instance->css, 'load'), 1000000001 ); // Load CSS at front-end side // Enqueue Scripts to All Client pages
|
79 |
+
add_action( 'wp_enqueue_scripts', array(self::$instance->js, 'load'), 1000000001 ); // Load JavaScript files and define JS varibales at forn-end side
|
80 |
+
add_action( 'wp_footer', 'wpbc_print_js', 50 ); // Load my Queued JavaScript Code at the footer of the page, if executed "wp_footer" hook at the Theme.
|
81 |
}
|
82 |
}
|
83 |
|
99 |
$title .= $update_count_title;
|
100 |
}
|
101 |
|
102 |
+
/**
|
103 |
+
global $menu;
|
104 |
+
if ( current_user_can( ) ) {
|
105 |
+
$menu[] = array( '', 'read', 'separator-wpbc', '', 'wp-menu-separator wpbc' );
|
106 |
+
}
|
107 |
+
debuge($menu);
|
108 |
+
*/
|
109 |
|
110 |
$booking_menu_position = get_bk_option( 'booking_menu_position' );
|
111 |
switch ( $booking_menu_position ) {
|
115 |
case 'middle':
|
116 |
global $_wp_last_object_menu; // The index of the last top-level menu in the object menu group
|
117 |
$_wp_last_object_menu++;
|
118 |
+
$booking_menu_position = $_wp_last_object_menu; // 58.9;
|
119 |
break;
|
120 |
case 'bottom':
|
121 |
$booking_menu_position = '99.999';
|
125 |
break;
|
126 |
}
|
127 |
|
|
|
128 |
self::$instance->admin_menu['master'] = new WPBC_Admin_Menus(
|
129 |
'wpbc' , array (
|
130 |
'in_menu' => 'root'
|
153 |
99 Separator
|
154 |
*/
|
155 |
)
|
|
|
156 |
);
|
157 |
|
158 |
self::$instance->admin_menu['new'] = new WPBC_Admin_Menus(
|
187 |
)
|
188 |
);
|
189 |
|
|
|
190 |
//FixIn: 8.0.1.6
|
191 |
if ( ! class_exists( 'wpdev_bk_personal' ) ) {
|
192 |
|
204 |
);
|
205 |
}
|
206 |
|
|
|
207 |
}
|
208 |
|
209 |
|
242 |
if (!defined('WPDEV_BK_VERSION')) define('WPDEV_BK_VERSION', $plugin_data['Version'] );
|
243 |
}
|
244 |
|
245 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
// Cloning instances of the class is forbidden
|
247 |
public function __clone() {
|
248 |
|
css/admin.css
CHANGED
@@ -307,3 +307,14 @@ select option.wpbc_child_resource{
|
|
307 |
padding: 1px 14px;
|
308 |
}
|
309 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
padding: 1px 14px;
|
308 |
}
|
309 |
}
|
310 |
+
|
311 |
+
.wpbc_booking_system_info_buttons_align {
|
312 |
+
display: flex;
|
313 |
+
flex-flow: row wrap;
|
314 |
+
justify-content: center;
|
315 |
+
margin: 0em;
|
316 |
+
}
|
317 |
+
.wpbc_booking_system_info_buttons_align a.button {
|
318 |
+
flex: 0 0 auto;
|
319 |
+
margin: 1em 1em 0;
|
320 |
+
}
|
css/calendar.css
CHANGED
@@ -52,6 +52,14 @@ div.date-content-bottom{
|
|
52 |
border: 0 none;
|
53 |
vertical-align: baseline;
|
54 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
#content .datepick-days-cell, /* Reset the padding in TD and TH elements of calendar to prevent conflict with some WP themes */
|
56 |
#content .datepick-title-row th{
|
57 |
padding: 0px;
|
@@ -533,4 +541,128 @@ div#datepick-div textarea {
|
|
533 |
/* iPad 3 & 4 Media Queries - Retina iPads */
|
534 |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 2) {
|
535 |
}
|
536 |
-
/*******************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
border: 0 none;
|
53 |
vertical-align: baseline;
|
54 |
}
|
55 |
+
.datepick-inline .datepick, /* Month table */
|
56 |
+
.datepick-inline .datepick-days-cell, /* Date cell */
|
57 |
+
.datepick-inline .datepick-days-cell a, /* Active date cell */
|
58 |
+
.datepick-inline .datepick-days-cell div, /* Cehck in/out */
|
59 |
+
.datepick-inline .datepick-title-row, /* Week row */
|
60 |
+
.datepick-inline .datepick-title-row th { /* Week cell */
|
61 |
+
line-height: 1.4;
|
62 |
+
}
|
63 |
#content .datepick-days-cell, /* Reset the padding in TD and TH elements of calendar to prevent conflict with some WP themes */
|
64 |
#content .datepick-title-row th{
|
65 |
padding: 0px;
|
541 |
/* iPad 3 & 4 Media Queries - Retina iPads */
|
542 |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 2) {
|
543 |
}
|
544 |
+
/*******************************************************************************/
|
545 |
+
|
546 |
+
|
547 |
+
/*******************************************************************************/
|
548 |
+
/* T I M E S L O T S AS D.O.T.S //FixIn: 8.9.4.13 */
|
549 |
+
/*******************************************************************************/
|
550 |
+
.datepick-inline .datepick-days-cell .date-cell-content {
|
551 |
+
display: flex;
|
552 |
+
flex-flow: column nowrap;
|
553 |
+
justify-content: flex-start;
|
554 |
+
align-items: stretch;
|
555 |
+
width: 100%;
|
556 |
+
height: 100%;
|
557 |
+
}
|
558 |
+
.datepick-inline .datepick-days-cell .date-cell-content .date-content-top,
|
559 |
+
.datepick-inline .datepick-days-cell .date-cell-content .date-content-bottom {
|
560 |
+
flex: 1 1 35%;
|
561 |
+
line-height: normal;
|
562 |
+
}
|
563 |
+
.datepick-inline .datepick-days-cell .date-cell-content a {
|
564 |
+
flex: 1 1 30%;
|
565 |
+
}
|
566 |
+
.datepick-inline .timespartly .date-content-top{
|
567 |
+
display: flex;
|
568 |
+
flex-flow: row nowrap;
|
569 |
+
align-items: center;
|
570 |
+
overflow: hidden;
|
571 |
+
}
|
572 |
+
.datepick-inline .timespartly .date-content-top .wpbc_time_dots{
|
573 |
+
flex: 1 1 1px;
|
574 |
+
font-size: 20px;
|
575 |
+
|
576 |
+
position: absolute;
|
577 |
+
display: flex;
|
578 |
+
flex-flow: column nowrap;
|
579 |
+
align-items: center;
|
580 |
+
width: 100%;
|
581 |
+
}
|
582 |
+
/*******************************************************************************/
|
583 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
584 |
+
/*******************************************************************************/
|
585 |
+
/* Table Day Cell div boundary element */
|
586 |
+
.datepick-inline td.datepick-days-cell .wpbc-cell-box {
|
587 |
+
position: relative;
|
588 |
+
width: 100%;
|
589 |
+
height: 100%;
|
590 |
+
padding: 0;
|
591 |
+
margin: 0;
|
592 |
+
}
|
593 |
+
.wpbc-cell-box .wpbc-diagonal-el {
|
594 |
+
display: none; /* Do not visible by default ! */
|
595 |
+
position:absolute; /* Important to have parent element with "position: relative;" !!! */
|
596 |
+
top: 0;
|
597 |
+
left: 0;
|
598 |
+
width: 100%;
|
599 |
+
height: 100%;
|
600 |
+
box-sizing: border-box;
|
601 |
+
}
|
602 |
+
.wpbc-cell-box .wpbc-diagonal-el svg {
|
603 |
+
position: absolute;
|
604 |
+
top: 0;
|
605 |
+
left: 0;
|
606 |
+
width: 100%;
|
607 |
+
height: 100%;
|
608 |
+
}
|
609 |
+
|
610 |
+
/* Show Vertical Lines */
|
611 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon:nth-child(1){
|
612 |
+
display: none;
|
613 |
+
}
|
614 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon:nth-child(2){
|
615 |
+
display: block;
|
616 |
+
}
|
617 |
+
/* Show Diagonal Lines */
|
618 |
+
.wpbc_change_over_triangle .wpbc-cell-box .wpbc-diagonal-el svg polygon:nth-child(1){
|
619 |
+
display: block;
|
620 |
+
}
|
621 |
+
.wpbc_change_over_triangle .wpbc-cell-box .wpbc-diagonal-el svg polygon:nth-child(2){
|
622 |
+
display: none;
|
623 |
+
}
|
624 |
+
/* *** Fill diagonal COLOR for check in/out items in calendar skins: .wpbc-cell-box .wpbc-diagonal-el svg polygon{...} */
|
625 |
+
/* Show CO item only when we are have check in / out */
|
626 |
+
.datepick-inline td.datepick-days-cell.check_in_time .wpbc-cell-box .wpbc-diagonal-el,
|
627 |
+
.datepick-inline td.datepick-days-cell.check_out_time .wpbc-cell-box .wpbc-diagonal-el {
|
628 |
+
display: block;
|
629 |
+
}
|
630 |
+
/* Hide Times DOTs, when we are have "check in / out" Activated */
|
631 |
+
.datepick-inline td.datepick-days-cell.check_in_time .wpbc-cell-box .date-content-top,
|
632 |
+
.datepick-inline td.datepick-days-cell.check_out_time .wpbc-cell-box .date-content-top {
|
633 |
+
visibility: hidden;
|
634 |
+
}
|
635 |
+
/* When "C e l l O V E R" -- hide diagonal */
|
636 |
+
.datepick-inline .datepick td.datepick-days-cell.datepick-days-cell-over .wpbc-cell-box .wpbc-diagonal-el{
|
637 |
+
display: none;
|
638 |
+
}
|
639 |
+
/* S E L E C T E D Dates */
|
640 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell.datepick-current-day .wpbc-cell-box .wpbc-diagonal-el{
|
641 |
+
display: none;
|
642 |
+
}
|
643 |
+
.check-in-div, .check-out-div {
|
644 |
+
display: none !important;
|
645 |
+
}
|
646 |
+
/********************************************************************************************/
|
647 |
+
/* Deprecated !!!! Fix for using OLD check in/out dates style. We do not recommend use it */
|
648 |
+
/********************************************************************************************
|
649 |
+
.check-in-div, .check-out-div {
|
650 |
+
display: block !important;
|
651 |
+
}
|
652 |
+
.datepick-days-cell .wpbc-diagonal-el {
|
653 |
+
display: none !important;
|
654 |
+
}
|
655 |
+
.wpbc_change_over_triangle .block_hints .block_check_in_out.check_out_time div.check-out-div, .wpbc_change_over_triangle td.timespartly.check_out_time div.check-out-div {
|
656 |
+
transform: rotate(-135deg) translate(-6px,10%);
|
657 |
+
}
|
658 |
+
.wpbc_change_over_triangle .block_hints .block_check_in_out.check_in_time div.check-in-div, .wpbc_change_over_triangle td.timespartly.check_in_time div.check-in-div {
|
659 |
+
transform: rotate(45deg) translate(-85%,-10%);
|
660 |
+
}
|
661 |
+
/* In calendar skin CSS file, comment this lines:
|
662 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
663 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
664 |
+
...
|
665 |
+
}
|
666 |
+
*/
|
667 |
+
/* End Deprecated !!!! Fix for using OLD check in/out dates style */
|
668 |
+
/********************************************************************************************/
|
css/skins/black-2.css
CHANGED
@@ -18,15 +18,15 @@
|
|
18 |
.datepick-inline {
|
19 |
color:#ffffff;
|
20 |
background-color:#191919;
|
21 |
-
text-transform:uppercase
|
22 |
background:none;
|
23 |
border:none;
|
24 |
box-shadow:none;
|
25 |
-moz-box-shadow:none;
|
26 |
-webkit-box-shadow:none;
|
27 |
-
border-radius:
|
28 |
-
-moz-border-radius:
|
29 |
-
-webkit-border-radius:
|
30 |
}
|
31 |
/* Background of one calendar month */
|
32 |
.datepick-inline .datepick{
|
@@ -107,12 +107,14 @@ text-shadow:none;
|
|
107 |
font-weight: 600;
|
108 |
text-shadow: none;
|
109 |
}
|
|
|
|
|
|
|
110 |
/*******************************************************************************/
|
111 |
-
|
112 |
/* T I M E S L O T S */
|
113 |
.block_hints .block_time,
|
114 |
.datepick-inline .timespartly{
|
115 |
-
background-image: url("../../assets/img/clock_fill.png")
|
116 |
background-repeat: no-repeat;
|
117 |
background-position:100% 100%;
|
118 |
}
|
@@ -183,6 +185,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
183 |
background-color: #05738e;
|
184 |
}
|
185 |
/* S E L E C T E D Dates - Text color */
|
|
|
186 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
187 |
color: #EEEEEE;
|
188 |
text-shadow: 0 -1px 0 #000000;
|
@@ -190,12 +193,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
190 |
/*******************************************************************************/
|
191 |
|
192 |
/* C e l l O V E R Dates - Background */
|
|
|
193 |
.datepick-inline .datepick .datepick-days-cell-over{
|
194 |
background:#aaa;
|
195 |
}
|
196 |
/* C e l l O V E R Dates - Text color */
|
197 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
198 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
199 |
color: #eee;
|
200 |
text-shadow: 0 -1px 0 #888;
|
201 |
}
|
@@ -230,5 +235,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
230 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
231 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
232 |
color: #CCCCCC; /* This style for the uvailbale date, when we are select the dates */
|
233 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
}
|
18 |
.datepick-inline {
|
19 |
color:#ffffff;
|
20 |
background-color:#191919;
|
21 |
+
text-transform:uppercase;
|
22 |
background:none;
|
23 |
border:none;
|
24 |
box-shadow:none;
|
25 |
-moz-box-shadow:none;
|
26 |
-webkit-box-shadow:none;
|
27 |
+
border-radius:0;
|
28 |
+
-moz-border-radius:0;
|
29 |
+
-webkit-border-radius:0;
|
30 |
}
|
31 |
/* Background of one calendar month */
|
32 |
.datepick-inline .datepick{
|
107 |
font-weight: 600;
|
108 |
text-shadow: none;
|
109 |
}
|
110 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
111 |
+
text-shadow: none;
|
112 |
+
}
|
113 |
/*******************************************************************************/
|
|
|
114 |
/* T I M E S L O T S */
|
115 |
.block_hints .block_time,
|
116 |
.datepick-inline .timespartly{
|
117 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
118 |
background-repeat: no-repeat;
|
119 |
background-position:100% 100%;
|
120 |
}
|
185 |
background-color: #05738e;
|
186 |
}
|
187 |
/* S E L E C T E D Dates - Text color */
|
188 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
189 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
190 |
color: #EEEEEE;
|
191 |
text-shadow: 0 -1px 0 #000000;
|
193 |
/*******************************************************************************/
|
194 |
|
195 |
/* C e l l O V E R Dates - Background */
|
196 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
197 |
.datepick-inline .datepick .datepick-days-cell-over{
|
198 |
background:#aaa;
|
199 |
}
|
200 |
/* C e l l O V E R Dates - Text color */
|
201 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
202 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
203 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
204 |
color: #eee;
|
205 |
text-shadow: 0 -1px 0 #888;
|
206 |
}
|
235 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
236 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
237 |
color: #CCCCCC; /* This style for the uvailbale date, when we are select the dates */
|
238 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
239 |
+
}
|
240 |
+
.datepick-inline .date_available span {
|
241 |
+
text-shadow: none;
|
242 |
+
}
|
243 |
+
|
244 |
+
/*******************************************************************************/
|
245 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
246 |
+
/*******************************************************************************/
|
247 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
248 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
249 |
+
fill: #191919;
|
250 |
+
}
|
251 |
+
/* Firstly we define background of the day cells background as available */
|
252 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
253 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
254 |
+
background-color: #191919;
|
255 |
+
}
|
256 |
+
/* Pending */
|
257 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
258 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
259 |
+
{
|
260 |
+
fill: #DF9A00;
|
261 |
+
}
|
262 |
+
/* Approved */
|
263 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
264 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
265 |
+
{
|
266 |
+
fill: #c23b1b;
|
267 |
+
}
|
268 |
+
/* C e l l O V E R Dates */
|
269 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
270 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
271 |
+
background-color: #aaa;
|
272 |
}
|
css/skins/black.css
CHANGED
@@ -99,12 +99,15 @@ div.datepick-inline .datepick-title-row th{
|
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 -1px 0 #000;
|
101 |
}
|
|
|
|
|
|
|
102 |
/*******************************************************************************/
|
103 |
|
104 |
/* T I M E S L O T S */
|
105 |
.block_hints .block_time,
|
106 |
.datepick-inline .timespartly{
|
107 |
-
background-image: url("../../assets/img/clock_fill.png")
|
108 |
background-repeat: no-repeat;
|
109 |
background-position:100% 100%;
|
110 |
}
|
@@ -175,6 +178,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
175 |
background-color: #707099;
|
176 |
}
|
177 |
/* S E L E C T E D Dates - Text color */
|
|
|
178 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
179 |
color: #ededff;
|
180 |
text-shadow: 0 -1px 0 #339;
|
@@ -182,12 +186,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
182 |
/*******************************************************************************/
|
183 |
|
184 |
/* C e l l O V E R Dates - Background */
|
|
|
185 |
.datepick-inline .datepick .datepick-days-cell-over{
|
186 |
background:#79A;
|
187 |
}
|
188 |
/* C e l l O V E R Dates - Text color */
|
189 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
190 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
191 |
color: #eee;
|
192 |
text-shadow: 0 -1px 0 #888;
|
193 |
}
|
@@ -223,5 +229,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
223 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
224 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
225 |
color: #aaa; /* This style for the uvailbale date, when we are select the dates */
|
226 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
}
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 -1px 0 #000;
|
101 |
}
|
102 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
103 |
+
text-shadow: none;
|
104 |
+
}
|
105 |
/*******************************************************************************/
|
106 |
|
107 |
/* T I M E S L O T S */
|
108 |
.block_hints .block_time,
|
109 |
.datepick-inline .timespartly{
|
110 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
111 |
background-repeat: no-repeat;
|
112 |
background-position:100% 100%;
|
113 |
}
|
178 |
background-color: #707099;
|
179 |
}
|
180 |
/* S E L E C T E D Dates - Text color */
|
181 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
182 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
183 |
color: #ededff;
|
184 |
text-shadow: 0 -1px 0 #339;
|
186 |
/*******************************************************************************/
|
187 |
|
188 |
/* C e l l O V E R Dates - Background */
|
189 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
190 |
.datepick-inline .datepick .datepick-days-cell-over{
|
191 |
background:#79A;
|
192 |
}
|
193 |
/* C e l l O V E R Dates - Text color */
|
194 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
195 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
196 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
197 |
color: #eee;
|
198 |
text-shadow: 0 -1px 0 #888;
|
199 |
}
|
229 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
230 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
231 |
color: #aaa; /* This style for the uvailbale date, when we are select the dates */
|
232 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
233 |
+
}
|
234 |
+
.datepick-inline .date_available span {
|
235 |
+
text-shadow: none;
|
236 |
+
}
|
237 |
+
|
238 |
+
/*******************************************************************************/
|
239 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
240 |
+
/*******************************************************************************/
|
241 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
242 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
243 |
+
fill: #333;
|
244 |
+
}
|
245 |
+
/* Firstly we define background of the day cells background as available */
|
246 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
247 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
248 |
+
background-color: #333;
|
249 |
+
}
|
250 |
+
/* Pending */
|
251 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
252 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
253 |
+
{
|
254 |
+
fill: #da3;
|
255 |
+
}
|
256 |
+
/* Approved */
|
257 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
258 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
259 |
+
{
|
260 |
+
fill: #853;
|
261 |
+
}
|
262 |
+
/* C e l l O V E R Dates */
|
263 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
264 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
265 |
+
background-color: #79A;
|
266 |
}
|
css/skins/multidays.css
CHANGED
@@ -98,12 +98,15 @@ div.datepick-inline .datepick-title-row th{
|
|
98 |
font-weight: 600;
|
99 |
text-shadow: 0 -1px 0 #339933;
|
100 |
}
|
|
|
|
|
|
|
101 |
/*******************************************************************************/
|
102 |
|
103 |
/* T I M E S L O T S */
|
104 |
.block_hints .block_time,
|
105 |
.datepick-inline .timespartly{
|
106 |
-
background-image: url("../../assets/img/clock_fill.png")
|
107 |
background-repeat: no-repeat;
|
108 |
background-position:100% 100%;
|
109 |
}
|
@@ -174,6 +177,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
174 |
background-color: #555;
|
175 |
}
|
176 |
/* S E L E C T E D Dates - Text color */
|
|
|
177 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
178 |
color: #EEEEEE;
|
179 |
text-shadow: 0 -1px 0 #000000;
|
@@ -181,12 +185,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
181 |
/*******************************************************************************/
|
182 |
|
183 |
/* C e l l O V E R Dates - Background */
|
|
|
184 |
.datepick-inline .datepick .datepick-days-cell-over{
|
185 |
background:#aaa;
|
186 |
}
|
187 |
/* C e l l O V E R Dates - Text color */
|
188 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
189 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
190 |
color: #eee;
|
191 |
text-shadow: 0 -1px 0 #888;
|
192 |
}
|
@@ -221,5 +227,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
221 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
222 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
223 |
color: #888; /* This style for the uvailbale date, when we are select the dates */
|
224 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
}
|
98 |
font-weight: 600;
|
99 |
text-shadow: 0 -1px 0 #339933;
|
100 |
}
|
101 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
102 |
+
text-shadow: none;
|
103 |
+
}
|
104 |
/*******************************************************************************/
|
105 |
|
106 |
/* T I M E S L O T S */
|
107 |
.block_hints .block_time,
|
108 |
.datepick-inline .timespartly{
|
109 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
110 |
background-repeat: no-repeat;
|
111 |
background-position:100% 100%;
|
112 |
}
|
177 |
background-color: #555;
|
178 |
}
|
179 |
/* S E L E C T E D Dates - Text color */
|
180 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
181 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
182 |
color: #EEEEEE;
|
183 |
text-shadow: 0 -1px 0 #000000;
|
185 |
/*******************************************************************************/
|
186 |
|
187 |
/* C e l l O V E R Dates - Background */
|
188 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
189 |
.datepick-inline .datepick .datepick-days-cell-over{
|
190 |
background:#aaa;
|
191 |
}
|
192 |
/* C e l l O V E R Dates - Text color */
|
193 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
194 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
195 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
196 |
color: #eee;
|
197 |
text-shadow: 0 -1px 0 #888;
|
198 |
}
|
227 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
228 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
229 |
color: #888; /* This style for the uvailbale date, when we are select the dates */
|
230 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
231 |
+
}
|
232 |
+
.datepick-inline .date_available span {
|
233 |
+
text-shadow: none;
|
234 |
+
}
|
235 |
+
|
236 |
+
/*******************************************************************************/
|
237 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
238 |
+
/*******************************************************************************/
|
239 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
240 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
241 |
+
fill: #00D025;
|
242 |
+
}
|
243 |
+
/* Firstly we define background of the day cells background as available */
|
244 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
245 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
246 |
+
background-color: #00D025;
|
247 |
+
}
|
248 |
+
/* Pending */
|
249 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
250 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
251 |
+
{
|
252 |
+
fill: #FFD200;
|
253 |
+
}
|
254 |
+
/* Approved */
|
255 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
256 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
257 |
+
{
|
258 |
+
fill: #f50;
|
259 |
+
}
|
260 |
+
/* C e l l O V E R Dates */
|
261 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
262 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
263 |
+
background-color: #aaa;
|
264 |
}
|
css/skins/premium-black.css
CHANGED
@@ -99,12 +99,15 @@ div.datepick-inline .datepick-title-row th{
|
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 -1px 0 #555555;
|
101 |
}
|
|
|
|
|
|
|
102 |
/*******************************************************************************/
|
103 |
|
104 |
/* T I M E S L O T S */
|
105 |
.block_hints .block_time,
|
106 |
.datepick-inline .timespartly{
|
107 |
-
background-image: url("../../assets/img/clock_fill.png")
|
108 |
background-repeat: no-repeat;
|
109 |
background-position:100% 100%;
|
110 |
}
|
@@ -175,6 +178,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
175 |
background-color: #357;
|
176 |
}
|
177 |
/* S E L E C T E D Dates - Text color */
|
|
|
178 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
179 |
color: #EEEEEE;
|
180 |
text-shadow: 0 -1px 0 #000000;
|
@@ -182,12 +186,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
182 |
/*******************************************************************************/
|
183 |
|
184 |
/* C e l l O V E R Dates - Background */
|
|
|
185 |
.datepick-inline .datepick .datepick-days-cell-over{
|
186 |
background:#79A;
|
187 |
}
|
188 |
/* C e l l O V E R Dates - Text color */
|
189 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
190 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
191 |
color: #eee;
|
192 |
text-shadow: 0 -1px 0 #888;
|
193 |
}
|
@@ -222,5 +228,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
222 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
223 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
224 |
color: #aaa; /* This style for the uvailbale date, when we are select the dates */
|
225 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
}
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 -1px 0 #555555;
|
101 |
}
|
102 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
103 |
+
text-shadow: none;
|
104 |
+
}
|
105 |
/*******************************************************************************/
|
106 |
|
107 |
/* T I M E S L O T S */
|
108 |
.block_hints .block_time,
|
109 |
.datepick-inline .timespartly{
|
110 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
111 |
background-repeat: no-repeat;
|
112 |
background-position:100% 100%;
|
113 |
}
|
178 |
background-color: #357;
|
179 |
}
|
180 |
/* S E L E C T E D Dates - Text color */
|
181 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
182 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
183 |
color: #EEEEEE;
|
184 |
text-shadow: 0 -1px 0 #000000;
|
186 |
/*******************************************************************************/
|
187 |
|
188 |
/* C e l l O V E R Dates - Background */
|
189 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
190 |
.datepick-inline .datepick .datepick-days-cell-over{
|
191 |
background:#79A;
|
192 |
}
|
193 |
/* C e l l O V E R Dates - Text color */
|
194 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
195 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
196 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
197 |
color: #eee;
|
198 |
text-shadow: 0 -1px 0 #888;
|
199 |
}
|
228 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
229 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
230 |
color: #aaa; /* This style for the uvailbale date, when we are select the dates */
|
231 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
232 |
+
}
|
233 |
+
.datepick-inline .date_available span {
|
234 |
+
text-shadow: none;
|
235 |
+
}
|
236 |
+
|
237 |
+
/*******************************************************************************/
|
238 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
239 |
+
/*******************************************************************************/
|
240 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
241 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
242 |
+
fill: #333;
|
243 |
+
}
|
244 |
+
/* Firstly we define background of the day cells background as available */
|
245 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
246 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
247 |
+
background-color: #333;
|
248 |
+
}
|
249 |
+
/* Pending */
|
250 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
251 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
252 |
+
{
|
253 |
+
fill: #DF9A00;
|
254 |
+
}
|
255 |
+
/* Approved */
|
256 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
257 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
258 |
+
{
|
259 |
+
fill: #C60B0B;
|
260 |
+
}
|
261 |
+
/* C e l l O V E R Dates */
|
262 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
263 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
264 |
+
background-color: #79A;
|
265 |
}
|
css/skins/premium-light.css
CHANGED
@@ -99,12 +99,15 @@ div.datepick-inline .datepick-title-row th{
|
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 1px 0 #eee;
|
101 |
}
|
|
|
|
|
|
|
102 |
/*******************************************************************************/
|
103 |
|
104 |
/* T I M E S L O T S */
|
105 |
.block_hints .block_time,
|
106 |
.datepick-inline .timespartly{
|
107 |
-
background-image: url("../../assets/img/clock_fill.png")
|
108 |
background-repeat: no-repeat;
|
109 |
background-position:100% 100%;
|
110 |
}
|
@@ -175,6 +178,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
175 |
background-color: #889;
|
176 |
}
|
177 |
/* S E L E C T E D Dates - Text color */
|
|
|
178 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
179 |
color: #EEEEEE;
|
180 |
text-shadow: 0 -1px 0 #7777AA;
|
@@ -182,12 +186,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
182 |
/*******************************************************************************/
|
183 |
|
184 |
/* C e l l O V E R Dates - Background */
|
|
|
185 |
.datepick-inline .datepick .datepick-days-cell-over{
|
186 |
background:#bbc;
|
187 |
}
|
188 |
/* C e l l O V E R Dates - Text color */
|
189 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
190 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
191 |
color: #eee;
|
192 |
text-shadow: 0 -1px 0 #888;
|
193 |
}
|
@@ -222,5 +228,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
222 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
223 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
224 |
color: #CCCCCC; /* This style for the uvailbale date, when we are select the dates */
|
225 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
}
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 1px 0 #eee;
|
101 |
}
|
102 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
103 |
+
text-shadow: none;
|
104 |
+
}
|
105 |
/*******************************************************************************/
|
106 |
|
107 |
/* T I M E S L O T S */
|
108 |
.block_hints .block_time,
|
109 |
.datepick-inline .timespartly{
|
110 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
111 |
background-repeat: no-repeat;
|
112 |
background-position:100% 100%;
|
113 |
}
|
178 |
background-color: #889;
|
179 |
}
|
180 |
/* S E L E C T E D Dates - Text color */
|
181 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
182 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
183 |
color: #EEEEEE;
|
184 |
text-shadow: 0 -1px 0 #7777AA;
|
186 |
/*******************************************************************************/
|
187 |
|
188 |
/* C e l l O V E R Dates - Background */
|
189 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
190 |
.datepick-inline .datepick .datepick-days-cell-over{
|
191 |
background:#bbc;
|
192 |
}
|
193 |
/* C e l l O V E R Dates - Text color */
|
194 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
195 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
196 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
197 |
color: #eee;
|
198 |
text-shadow: 0 -1px 0 #888;
|
199 |
}
|
228 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
229 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
230 |
color: #CCCCCC; /* This style for the uvailbale date, when we are select the dates */
|
231 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
232 |
+
}
|
233 |
+
.datepick-inline .date_available span {
|
234 |
+
text-shadow: none;
|
235 |
+
}
|
236 |
+
|
237 |
+
/*******************************************************************************/
|
238 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
239 |
+
/*******************************************************************************/
|
240 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
241 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
242 |
+
fill: #eee;
|
243 |
+
}
|
244 |
+
/* Firstly we define background of the day cells background as available */
|
245 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
246 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
247 |
+
background-color: #eee;
|
248 |
+
}
|
249 |
+
/* Pending */
|
250 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
251 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
252 |
+
{
|
253 |
+
fill: #F5E5BF;
|
254 |
+
}
|
255 |
+
/* Approved */
|
256 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
257 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
258 |
+
{
|
259 |
+
fill: #D2AA8B;
|
260 |
+
}
|
261 |
+
/* C e l l O V E R Dates */
|
262 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
263 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
264 |
+
background-color: #bbc;
|
265 |
}
|
css/skins/premium-marine.css
CHANGED
@@ -99,12 +99,15 @@ div.datepick-inline .datepick-title-row th{
|
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 -1px 0 #333;
|
101 |
}
|
|
|
|
|
|
|
102 |
/*******************************************************************************/
|
103 |
|
104 |
/* T I M E S L O T S */
|
105 |
.block_hints .block_time,
|
106 |
.datepick-inline .timespartly{
|
107 |
-
background-image: url("../../assets/img/clock_fill.png")
|
108 |
background-repeat: no-repeat;
|
109 |
background-position:100% 100%;
|
110 |
}
|
@@ -175,6 +178,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
175 |
background-color: #555;
|
176 |
}
|
177 |
/* S E L E C T E D Dates - Text color */
|
|
|
178 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
179 |
color: #EEEEEE;
|
180 |
text-shadow: 0 -1px 0 #000000;
|
@@ -182,12 +186,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
182 |
/*******************************************************************************/
|
183 |
|
184 |
/* C e l l O V E R Dates - Background */
|
|
|
185 |
.datepick-inline .datepick .datepick-days-cell-over{
|
186 |
background:#9e99a0;
|
187 |
}
|
188 |
/* C e l l O V E R Dates - Text color */
|
189 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
190 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
191 |
color: #eee;
|
192 |
text-shadow: 0 -1px 0 #888;
|
193 |
}
|
@@ -223,5 +229,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
223 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
224 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
225 |
color: #bbb; /* This style for the uvailbale date, when we are select the dates */
|
226 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
}
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 -1px 0 #333;
|
101 |
}
|
102 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
103 |
+
text-shadow: none;
|
104 |
+
}
|
105 |
/*******************************************************************************/
|
106 |
|
107 |
/* T I M E S L O T S */
|
108 |
.block_hints .block_time,
|
109 |
.datepick-inline .timespartly{
|
110 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
111 |
background-repeat: no-repeat;
|
112 |
background-position:100% 100%;
|
113 |
}
|
178 |
background-color: #555;
|
179 |
}
|
180 |
/* S E L E C T E D Dates - Text color */
|
181 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
182 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
183 |
color: #EEEEEE;
|
184 |
text-shadow: 0 -1px 0 #000000;
|
186 |
/*******************************************************************************/
|
187 |
|
188 |
/* C e l l O V E R Dates - Background */
|
189 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
190 |
.datepick-inline .datepick .datepick-days-cell-over{
|
191 |
background:#9e99a0;
|
192 |
}
|
193 |
/* C e l l O V E R Dates - Text color */
|
194 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
195 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
196 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
197 |
color: #eee;
|
198 |
text-shadow: 0 -1px 0 #888;
|
199 |
}
|
229 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
230 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
231 |
color: #bbb; /* This style for the uvailbale date, when we are select the dates */
|
232 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
233 |
+
}
|
234 |
+
.datepick-inline .date_available span {
|
235 |
+
text-shadow: none;
|
236 |
+
}
|
237 |
+
|
238 |
+
/*******************************************************************************/
|
239 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
240 |
+
/*******************************************************************************/
|
241 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
242 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
243 |
+
fill: #789;
|
244 |
+
}
|
245 |
+
/* Firstly we define background of the day cells background as available */
|
246 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
247 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
248 |
+
background-color: #789;
|
249 |
+
}
|
250 |
+
/* Pending */
|
251 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
252 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
253 |
+
{
|
254 |
+
fill: #99BBD5;
|
255 |
+
}
|
256 |
+
/* Approved */
|
257 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
258 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
259 |
+
{
|
260 |
+
fill: #EEAA55;
|
261 |
+
}
|
262 |
+
/* C e l l O V E R Dates */
|
263 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
264 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
265 |
+
background-color: #9e99a0;
|
266 |
}
|
css/skins/premium-steel.css
CHANGED
@@ -99,12 +99,15 @@ div.datepick-inline .datepick-title-row th{
|
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 1px 0 #eee;
|
101 |
}
|
|
|
|
|
|
|
102 |
/*******************************************************************************/
|
103 |
|
104 |
/* T I M E S L O T S */
|
105 |
.block_hints .block_time,
|
106 |
.datepick-inline .timespartly{
|
107 |
-
background-image: url("../../assets/img/clock_fill.png")
|
108 |
background-repeat: no-repeat;
|
109 |
background-position:100% 100%;
|
110 |
}
|
@@ -175,6 +178,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
175 |
background-color: #88b;
|
176 |
}
|
177 |
/* S E L E C T E D Dates - Text color */
|
|
|
178 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
179 |
color: #EEEEEE;
|
180 |
text-shadow: 0 -1px 0 #7777AA;
|
@@ -182,12 +186,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
182 |
/*******************************************************************************/
|
183 |
|
184 |
/* C e l l O V E R Dates - Background */
|
|
|
185 |
.datepick-inline .datepick .datepick-days-cell-over{
|
186 |
background:#aae;
|
187 |
}
|
188 |
/* C e l l O V E R Dates - Text color */
|
189 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
190 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
191 |
color: #eee;
|
192 |
text-shadow: 0 -1px 0 #888;
|
193 |
}
|
@@ -222,5 +228,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
222 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
223 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
224 |
color: #CCCCCC; /* This style for the uvailbale date, when we are select the dates */
|
225 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
}
|
99 |
font-weight: 600;
|
100 |
text-shadow: 0 1px 0 #eee;
|
101 |
}
|
102 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
103 |
+
text-shadow: none;
|
104 |
+
}
|
105 |
/*******************************************************************************/
|
106 |
|
107 |
/* T I M E S L O T S */
|
108 |
.block_hints .block_time,
|
109 |
.datepick-inline .timespartly{
|
110 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
111 |
background-repeat: no-repeat;
|
112 |
background-position:100% 100%;
|
113 |
}
|
178 |
background-color: #88b;
|
179 |
}
|
180 |
/* S E L E C T E D Dates - Text color */
|
181 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
182 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
183 |
color: #EEEEEE;
|
184 |
text-shadow: 0 -1px 0 #7777AA;
|
186 |
/*******************************************************************************/
|
187 |
|
188 |
/* C e l l O V E R Dates - Background */
|
189 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
190 |
.datepick-inline .datepick .datepick-days-cell-over{
|
191 |
background:#aae;
|
192 |
}
|
193 |
/* C e l l O V E R Dates - Text color */
|
194 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
195 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
196 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
197 |
color: #eee;
|
198 |
text-shadow: 0 -1px 0 #888;
|
199 |
}
|
228 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
229 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
230 |
color: #CCCCCC; /* This style for the uvailbale date, when we are select the dates */
|
231 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
232 |
+
}
|
233 |
+
.datepick-inline .date_available span {
|
234 |
+
text-shadow: none;
|
235 |
+
}
|
236 |
+
|
237 |
+
/*******************************************************************************/
|
238 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
239 |
+
/*******************************************************************************/
|
240 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
241 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
242 |
+
fill: #eee;
|
243 |
+
}
|
244 |
+
/* Firstly we define background of the day cells background as available */
|
245 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
246 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
247 |
+
background-color: #eee;
|
248 |
+
}
|
249 |
+
/* Pending */
|
250 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
251 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
252 |
+
{
|
253 |
+
fill: #DDDDE0;
|
254 |
+
}
|
255 |
+
/* Approved */
|
256 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
257 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
258 |
+
{
|
259 |
+
fill: #9999A0;
|
260 |
+
}
|
261 |
+
/* C e l l O V E R Dates */
|
262 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
263 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
264 |
+
background-color: #aae;
|
265 |
}
|
css/skins/standard.css
CHANGED
@@ -98,12 +98,15 @@ div.datepick-inline .datepick-title-row th{
|
|
98 |
font-weight: 600;
|
99 |
text-shadow: 0 1px 0 #fff;
|
100 |
}
|
|
|
|
|
|
|
101 |
/*******************************************************************************/
|
102 |
|
103 |
/* T I M E S L O T S */
|
104 |
.block_hints .block_time,
|
105 |
.datepick-inline .timespartly{
|
106 |
-
background-image: url("../../assets/img/clock_fill.png")
|
107 |
background-repeat: no-repeat;
|
108 |
background-position:100% 100%;
|
109 |
}
|
@@ -174,6 +177,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
174 |
background-color: #555;
|
175 |
}
|
176 |
/* S E L E C T E D Dates - Text color */
|
|
|
177 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
178 |
color: #EEEEEE;
|
179 |
text-shadow: 0 -1px 0 #000000;
|
@@ -181,12 +185,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
181 |
/*******************************************************************************/
|
182 |
|
183 |
/* C e l l O V E R Dates - Background */
|
|
|
184 |
.datepick-inline .datepick .datepick-days-cell-over{
|
185 |
background:#aaa;
|
186 |
}
|
187 |
/* C e l l O V E R Dates - Text color */
|
188 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
189 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
190 |
color: #eee;
|
191 |
text-shadow: 0 -1px 0 #888;
|
192 |
}
|
@@ -221,5 +227,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
221 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
222 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
223 |
color: #CCCCCC; /* This style for the uvailbale date, when we are select the dates */
|
224 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
}
|
98 |
font-weight: 600;
|
99 |
text-shadow: 0 1px 0 #fff;
|
100 |
}
|
101 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
102 |
+
text-shadow: none;
|
103 |
+
}
|
104 |
/*******************************************************************************/
|
105 |
|
106 |
/* T I M E S L O T S */
|
107 |
.block_hints .block_time,
|
108 |
.datepick-inline .timespartly{
|
109 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
110 |
background-repeat: no-repeat;
|
111 |
background-position:100% 100%;
|
112 |
}
|
177 |
background-color: #555;
|
178 |
}
|
179 |
/* S E L E C T E D Dates - Text color */
|
180 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
181 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
182 |
color: #EEEEEE;
|
183 |
text-shadow: 0 -1px 0 #000000;
|
185 |
/*******************************************************************************/
|
186 |
|
187 |
/* C e l l O V E R Dates - Background */
|
188 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
189 |
.datepick-inline .datepick .datepick-days-cell-over{
|
190 |
background:#aaa;
|
191 |
}
|
192 |
/* C e l l O V E R Dates - Text color */
|
193 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
194 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
195 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
196 |
color: #eee;
|
197 |
text-shadow: 0 -1px 0 #888;
|
198 |
}
|
227 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
228 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
229 |
color: #CCCCCC; /* This style for the uvailbale date, when we are select the dates */
|
230 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
231 |
+
}
|
232 |
+
.datepick-inline .date_available span {
|
233 |
+
text-shadow: none;
|
234 |
+
}
|
235 |
+
|
236 |
+
/*******************************************************************************/
|
237 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
238 |
+
/*******************************************************************************/
|
239 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
240 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
241 |
+
fill: #f5f5f5;
|
242 |
+
}
|
243 |
+
/* Firstly we define background of the day cells background as available */
|
244 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
245 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
246 |
+
background-color: #f5f5f5;
|
247 |
+
}
|
248 |
+
/* Pending */
|
249 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
250 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
251 |
+
{
|
252 |
+
fill: #77AAFF;
|
253 |
+
}
|
254 |
+
/* Approved */
|
255 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
256 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
257 |
+
{
|
258 |
+
fill: #5577AA;
|
259 |
+
}
|
260 |
+
/* C e l l O V E R Dates */
|
261 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
262 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
263 |
+
background-color: #aaa;
|
264 |
}
|
css/skins/traditional-light.css
CHANGED
@@ -97,12 +97,15 @@ div.datepick-inline .datepick-title-row th{
|
|
97 |
font-weight: 600;
|
98 |
text-shadow: 0 -1px 0 #555555;
|
99 |
}
|
|
|
|
|
|
|
100 |
/*******************************************************************************/
|
101 |
|
102 |
/* T I M E S L O T S */
|
103 |
.block_hints .block_time,
|
104 |
.datepick-inline .timespartly{
|
105 |
-
background-image: url("../../assets/img/clock_fill.png")
|
106 |
background-repeat: no-repeat;
|
107 |
background-position:100% 100%;
|
108 |
}
|
@@ -173,6 +176,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
173 |
background-color: #555;
|
174 |
}
|
175 |
/* S E L E C T E D Dates - Text color */
|
|
|
176 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
177 |
color: #EEEEEE;
|
178 |
text-shadow: 0 -1px 0 #000000;
|
@@ -180,12 +184,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
180 |
/*******************************************************************************/
|
181 |
|
182 |
/* C e l l O V E R Dates - Background */
|
|
|
183 |
.datepick-inline .datepick .datepick-days-cell-over{
|
184 |
background:#aaa;
|
185 |
}
|
186 |
/* C e l l O V E R Dates - Text color */
|
187 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
188 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
189 |
color: #eee;
|
190 |
text-shadow: 0 -1px 0 #888;
|
191 |
}
|
@@ -220,5 +226,38 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
220 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
221 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
222 |
color: #ddd; /* This style for the uvailbale date, when we are select the dates */
|
223 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
}
|
97 |
font-weight: 600;
|
98 |
text-shadow: 0 -1px 0 #555555;
|
99 |
}
|
100 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
101 |
+
text-shadow: none;
|
102 |
+
}
|
103 |
/*******************************************************************************/
|
104 |
|
105 |
/* T I M E S L O T S */
|
106 |
.block_hints .block_time,
|
107 |
.datepick-inline .timespartly{
|
108 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
109 |
background-repeat: no-repeat;
|
110 |
background-position:100% 100%;
|
111 |
}
|
176 |
background-color: #555;
|
177 |
}
|
178 |
/* S E L E C T E D Dates - Text color */
|
179 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
180 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
181 |
color: #EEEEEE;
|
182 |
text-shadow: 0 -1px 0 #000000;
|
184 |
/*******************************************************************************/
|
185 |
|
186 |
/* C e l l O V E R Dates - Background */
|
187 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
188 |
.datepick-inline .datepick .datepick-days-cell-over{
|
189 |
background:#aaa;
|
190 |
}
|
191 |
/* C e l l O V E R Dates - Text color */
|
192 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
193 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
194 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
195 |
color: #eee;
|
196 |
text-shadow: 0 -1px 0 #888;
|
197 |
}
|
226 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
227 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
228 |
color: #ddd; /* This style for the uvailbale date, when we are select the dates */
|
229 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
230 |
+
}
|
231 |
+
.datepick-inline .date_available span {
|
232 |
+
text-shadow: none;
|
233 |
+
}
|
234 |
+
|
235 |
+
/*******************************************************************************/
|
236 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
237 |
+
/*******************************************************************************/
|
238 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
239 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
240 |
+
fill: #4EC447;
|
241 |
+
}
|
242 |
+
/* Firstly we define background of the day cells background as available */
|
243 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
244 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
245 |
+
background-color: #4EC447;
|
246 |
+
}
|
247 |
+
/* Pending */
|
248 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
249 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
250 |
+
{
|
251 |
+
fill: #DF9A00;
|
252 |
+
}
|
253 |
+
/* Approved */
|
254 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
255 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
256 |
+
{
|
257 |
+
fill: #C60B0B;
|
258 |
+
}
|
259 |
+
/* C e l l O V E R Dates */
|
260 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
261 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
262 |
+
background-color: #aaa;
|
263 |
}
|
css/skins/traditional.css
CHANGED
@@ -98,14 +98,17 @@ div.datepick-inline .datepick-title-row th{
|
|
98 |
font-weight: 600;
|
99 |
text-shadow: 0 1px 0 #fff;
|
100 |
}
|
|
|
|
|
|
|
101 |
/*******************************************************************************/
|
102 |
|
103 |
/* T I M E S L O T S */
|
104 |
-
.block_hints .block_time,
|
105 |
.datepick-inline .timespartly{
|
106 |
-
background-image: url("../../assets/img/clock_fill.png")
|
107 |
background-repeat: no-repeat;
|
108 |
-
background-position:100% 100%;
|
109 |
}
|
110 |
/*******************************************************************************/
|
111 |
|
@@ -174,6 +177,7 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
174 |
background-color: #555;
|
175 |
}
|
176 |
/* S E L E C T E D Dates - Text color */
|
|
|
177 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
178 |
color: #EEEEEE;
|
179 |
text-shadow: 0 -1px 0 #000000;
|
@@ -181,12 +185,14 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_i
|
|
181 |
/*******************************************************************************/
|
182 |
|
183 |
/* C e l l O V E R Dates - Background */
|
|
|
184 |
.datepick-inline .datepick .datepick-days-cell-over{
|
185 |
background:#aaa;
|
186 |
}
|
187 |
/* C e l l O V E R Dates - Text color */
|
188 |
-
.datepick-inline .datepick .datepick-days-cell-over
|
189 |
-
.datepick-inline .datepick .datepick-days-cell-over a
|
|
|
190 |
color: #eee;
|
191 |
text-shadow: 0 -1px 0 #888;
|
192 |
}
|
@@ -220,6 +226,39 @@ td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in
|
|
220 |
}
|
221 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
222 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
223 |
-
color: #CCCCCC; /* This style for the
|
224 |
-
text-shadow:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
}
|
98 |
font-weight: 600;
|
99 |
text-shadow: 0 1px 0 #fff;
|
100 |
}
|
101 |
+
.datepick-inline .date_available.datepick-unselectable span{ /* //FixIn: 8.9.4.13 */
|
102 |
+
text-shadow: none;
|
103 |
+
}
|
104 |
/*******************************************************************************/
|
105 |
|
106 |
/* T I M E S L O T S */
|
107 |
+
.block_hints .block_time,
|
108 |
.datepick-inline .timespartly{
|
109 |
+
/*background-image: url("../../assets/img/clock_fill.png");*/ /* //FixIn: 8.9.4.13 */
|
110 |
background-repeat: no-repeat;
|
111 |
+
background-position:100% 100%;
|
112 |
}
|
113 |
/*******************************************************************************/
|
114 |
|
177 |
background-color: #555;
|
178 |
}
|
179 |
/* S E L E C T E D Dates - Text color */
|
180 |
+
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
181 |
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
|
182 |
color: #EEEEEE;
|
183 |
text-shadow: 0 -1px 0 #000000;
|
185 |
/*******************************************************************************/
|
186 |
|
187 |
/* C e l l O V E R Dates - Background */
|
188 |
+
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
|
189 |
.datepick-inline .datepick .datepick-days-cell-over{
|
190 |
background:#aaa;
|
191 |
}
|
192 |
/* C e l l O V E R Dates - Text color */
|
193 |
+
.datepick-inline .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots, /* //FixIn: 8.9.4.13 */
|
194 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
|
195 |
+
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell-over a{
|
196 |
color: #eee;
|
197 |
text-shadow: 0 -1px 0 #888;
|
198 |
}
|
226 |
}
|
227 |
/* Same as in this Section above --- A V A I L A B L E and UNSELECTABLE - Text */
|
228 |
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
|
229 |
+
color: #CCCCCC; /* This style for the unavailable date, when we are select the dates */
|
230 |
+
text-shadow: none; /* This style for the unavailable date, when we are select the dates */
|
231 |
+
}
|
232 |
+
.datepick-inline .date_available span {
|
233 |
+
text-shadow: none;
|
234 |
+
}
|
235 |
+
|
236 |
+
/*******************************************************************************/
|
237 |
+
/* CHECK IN / OUT as P.O.L.Y.G.O.N.S //FixIn: 8.9.4.13 */
|
238 |
+
/*******************************************************************************/
|
239 |
+
/* Fill diagonal check in/out items with AVAILABLE background color */
|
240 |
+
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
|
241 |
+
fill: #f5f5f5;
|
242 |
+
}
|
243 |
+
/* Firstly we define background of the day cells background as available */
|
244 |
+
.datepick-inline td.datepick-days-cell.check_in_time,
|
245 |
+
.datepick-inline td.datepick-days-cell.check_out_time {
|
246 |
+
background-color: #F5F5F5;
|
247 |
+
}
|
248 |
+
/* Pending */
|
249 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
250 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
251 |
+
{
|
252 |
+
fill: #DF9A00;
|
253 |
+
}
|
254 |
+
/* Approved */
|
255 |
+
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved .wpbc-cell-box .wpbc-co-in svg polygon, /* Check In */
|
256 |
+
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved .wpbc-cell-box .wpbc-co-out svg polygon /* Check Out */
|
257 |
+
{
|
258 |
+
fill: #C60B0B;
|
259 |
+
}
|
260 |
+
/* C e l l O V E R Dates */
|
261 |
+
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
|
262 |
+
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
|
263 |
+
background-color: #aaa;
|
264 |
}
|
js/client.js
CHANGED
@@ -342,9 +342,10 @@ function init_datepick_cal(bk_type, date_approved_par, my_num_month, start_day_
|
|
342 |
|| ( ( additional_class.indexOf('check_out_time_date_approved') != -1 ) && ( additional_class.indexOf('check_in_time_date2approve') != -1 ) )
|
343 |
) ) {
|
344 |
// Remove CSS classes from this date
|
345 |
-
|
346 |
-
time_return_value[1]=time_return_value[1].replace("
|
347 |
-
time_return_value[1]=time_return_value[1].replace("
|
|
|
348 |
}
|
349 |
time_return_value[1]=time_return_value[1].replace("date_available","");
|
350 |
}
|
342 |
|| ( ( additional_class.indexOf('check_out_time_date_approved') != -1 ) && ( additional_class.indexOf('check_in_time_date2approve') != -1 ) )
|
343 |
) ) {
|
344 |
// Remove CSS classes from this date
|
345 |
+
/* //FixIn: 8.9.4.13.1 - Show diagonal line in dates, where we have check in/out bookings with the same status (pending or approved) */
|
346 |
+
// time_return_value[1]=time_return_value[1].replace("check_in_time","");
|
347 |
+
// time_return_value[1]=time_return_value[1].replace("check_out_time","");
|
348 |
+
// time_return_value[1]=time_return_value[1].replace("timespartly","");
|
349 |
}
|
350 |
time_return_value[1]=time_return_value[1].replace("date_available","");
|
351 |
}
|
js/datepick/{jquery.datepick.wpbc.5.6.js → jquery.datepick.wpbc.9.0.js}
RENAMED
@@ -1861,18 +1861,39 @@ $.extend(Datepick.prototype, {
|
|
1861 |
inst.id + '\',' + printDate.getTime() + ')"' +
|
1862 |
' onmouseout="jQuery.datepick._doMouseOut(this,\'' + inst.id + '\')"' +
|
1863 |
' onclick="jQuery.datepick._selectDay(this,\'#' + // Select
|
1864 |
-
inst.id + '\',' + printDate.getTime() + ')"') + '>'
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1876 |
printDate.setDate(printDate.getDate() + 1);
|
1877 |
printDate = this._daylightSavingAdjust(printDate);
|
1878 |
}
|
1861 |
inst.id + '\',' + printDate.getTime() + ')"' +
|
1862 |
' onmouseout="jQuery.datepick._doMouseOut(this,\'' + inst.id + '\')"' +
|
1863 |
' onclick="jQuery.datepick._selectDay(this,\'#' + // Select
|
1864 |
+
inst.id + '\',' + printDate.getTime() + ')"') + '>';
|
1865 |
+
|
1866 |
+
/** Start content of Day cell *************************************************************/
|
1867 |
+
html += '<div class="wpbc-cell-box">' + //FixIn: 8.9.4.13
|
1868 |
+
'<div class="wpbc-diagonal-el">' +
|
1869 |
+
'<div class="wpbc-co-out">' +
|
1870 |
+
'<svg height="100%" width="100%" viewBox="0 0 100 100" preserveAspectRatio="none">' +
|
1871 |
+
'<polygon points="0,0 0,99 99,0"></polygon>' +
|
1872 |
+
'<polygon points="0,0 0,100 49,100 49,0"></polygon>' +
|
1873 |
+
'</svg>' +
|
1874 |
+
'</div>' +
|
1875 |
+
'<div class="wpbc-co-in">' +
|
1876 |
+
'<svg height="100%" width="100%" viewBox="0 0 98 98" preserveAspectRatio="none">' +
|
1877 |
+
'<polygon points="0,99 99,99 99,0"></polygon>' +
|
1878 |
+
'<polygon points="50,98 98,98 98,0 50,0"></polygon>' +
|
1879 |
+
'</svg>' +
|
1880 |
+
'</div>' +
|
1881 |
+
'</div>' +
|
1882 |
+
//'<div class="check-in-div"><div></div></div>' + // Deprecated! remove this line
|
1883 |
+
//'<div class="check-out-div"><div></div></div>' + // Deprecated! remove this line
|
1884 |
+
'<div class="date-cell-content">' + //FixIn: 8.9.4.13
|
1885 |
+
'<div class="date-content-top">' +
|
1886 |
+
(unselectable ? '' : ((typeof (wpbc_show_date_info_top) == 'function') ? wpbc_show_date_info_top( inst.id, printDate.getTime() ) : '')) +
|
1887 |
+
'</div>' +
|
1888 |
+
(empty ? ' ' : // Not showing other months //FixIn:6.0.1.2
|
1889 |
+
(unselectable ? '<span>' + printDate.getDate()+ '</span>' : '<a>' + printDate.getDate() + '</a>')) +
|
1890 |
+
'<div class="date-content-bottom">'+
|
1891 |
+
(unselectable ? '' : ((typeof (wpbc_show_date_info_bottom) == 'function') ? wpbc_show_date_info_bottom( inst.id, printDate.getTime() ) : '')) +
|
1892 |
+
'</div>' +
|
1893 |
+
'</div>' +
|
1894 |
+
'</div>';
|
1895 |
+
/** End content of Day cell *******************************************************************/
|
1896 |
+
html += '</td>';
|
1897 |
printDate.setDate(printDate.getDate() + 1);
|
1898 |
printDate = this._daylightSavingAdjust(printDate);
|
1899 |
}
|
js/wpbc_times.js
CHANGED
@@ -21,6 +21,65 @@ function is_this_time_selections_not_available( resource_id, form_elements ){
|
|
21 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
22 |
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
/**
|
25 |
* Prepare for showing popovers in calendar at front-end side
|
26 |
*
|
21 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
22 |
|
23 |
|
24 |
+
function wpbc_show_date_info_top( param_calendar_id, my_thisDateTime ){
|
25 |
+
|
26 |
+
var resource_id = parseInt( param_calendar_id.replace("calendar_booking","") );
|
27 |
+
|
28 |
+
var date_obj = new Date(my_thisDateTime);
|
29 |
+
|
30 |
+
var td_class = ( date_obj.getMonth() + 1 ) + '-' + date_obj.getDate() + '-' + date_obj.getFullYear();
|
31 |
+
|
32 |
+
|
33 |
+
var times_array = [];
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
// Get Times from Approved dates
|
38 |
+
var times_array_approved = wpbc_get_times_from_dates_arr( date_approved, resource_id, td_class );
|
39 |
+
for ( i = 0; i < times_array_approved.length; i++ ){
|
40 |
+
times_array[ times_array.length ] = times_array_approved[ i ];
|
41 |
+
}
|
42 |
+
|
43 |
+
// Get Times from Pending dates
|
44 |
+
var times_array_pending = wpbc_get_times_from_dates_arr( date2approve, resource_id, td_class );
|
45 |
+
for ( i = 0; i < times_array_pending.length; i++ ){
|
46 |
+
times_array[ times_array.length ] = times_array_pending[ i ];
|
47 |
+
}
|
48 |
+
|
49 |
+
// Time availability
|
50 |
+
if ( typeof(hover_day_check_global_time_availability) == 'function' ){
|
51 |
+
times_array = hover_day_check_global_time_availability( date_obj, resource_id, times_array );
|
52 |
+
}
|
53 |
+
|
54 |
+
|
55 |
+
//FixIn: 8.2.1.9
|
56 |
+
if ( times_array.length > 0 ){
|
57 |
+
//times_array = wpbc_sort_times_array( times_array );
|
58 |
+
var dot_content = '';
|
59 |
+
for ( var i = 0; i < (times_array.length / 2); i++ ){
|
60 |
+
dot_content += '·';
|
61 |
+
}
|
62 |
+
return '<div class="wpbc_time_dots">'+dot_content+'</div>';
|
63 |
+
} else {
|
64 |
+
return '';
|
65 |
+
}
|
66 |
+
}
|
67 |
+
|
68 |
+
function wpbc_show_date_info_bottom( param_calendar_id, my_thisDateTime ) {
|
69 |
+
|
70 |
+
if ( typeof( wpbc_show_day_cost_in_date_bottom ) == 'function' ) {
|
71 |
+
|
72 |
+
return wpbc_show_day_cost_in_date_bottom( param_calendar_id, my_thisDateTime );
|
73 |
+
|
74 |
+
} else {
|
75 |
+
return '';
|
76 |
+
}
|
77 |
+
}
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
/**
|
84 |
* Prepare for showing popovers in calendar at front-end side
|
85 |
*
|
languages/booking-ar_SA.mo
DELETED
Binary file
|
languages/booking-be_BY.mo
DELETED
Binary file
|
languages/booking-bg_BG.mo
DELETED
Binary file
|
languages/booking-ca.mo
DELETED
Binary file
|
languages/booking-cs_CZ.mo
DELETED
Binary file
|
languages/booking-da_DK.mo
DELETED
Binary file
|
languages/booking-de_DE.mo
DELETED
Binary file
|
languages/booking-el.mo
DELETED
Binary file
|
languages/booking-es_ES.mo
DELETED
Binary file
|
languages/booking-es_MX.mo
DELETED
Binary file
|
languages/booking-fi.mo
DELETED
Binary file
|
languages/booking-fr_FR.mo
DELETED
Binary file
|
languages/booking-gl_ES.mo
DELETED
Binary file
|
languages/booking-he_IL.mo
DELETED
Binary file
|
languages/booking-hr.mo
DELETED
Binary file
|
languages/booking-hu_HU.mo
DELETED
Binary file
|
languages/booking-it_IT.mo
DELETED
Binary file
|
languages/booking-nb_NO.mo
DELETED
Binary file
|
languages/booking-nl_NL.mo
DELETED
Binary file
|
languages/booking-pl_PL.mo
DELETED
Binary file
|
languages/booking-pt_BR.mo
DELETED
Binary file
|
languages/booking-pt_PT.mo
DELETED
Binary file
|
languages/booking-ro_RO.mo
DELETED
Binary file
|
languages/booking-ru_RU.mo
DELETED
Binary file
|
languages/booking-sk_SK.mo
DELETED
Binary file
|
languages/booking-sl_SI.mo
DELETED
Binary file
|
languages/booking-sv_SE.mo
DELETED
Binary file
|
languages/booking-th_TH.mo
DELETED
Binary file
|
languages/booking-tr_TR.mo
DELETED
Binary file
|
languages/booking-uk.mo
DELETED
Binary file
|
languages/booking-zh_CN.mo
DELETED
Binary file
|
languages/booking-zh_TW.mo
DELETED
Binary file
|
languages/booking.pot
DELETED
@@ -1,9517 +0,0 @@
|
|
1 |
-
#, fuzzy
|
2 |
-
msgid ""
|
3 |
-
msgstr ""
|
4 |
-
"Project-Id-Version: booking\n"
|
5 |
-
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2021-11-20 15:00+0200\n"
|
7 |
-
"PO-Revision-Date: \n"
|
8 |
-
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
-
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
10 |
-
"Language: en_US\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
-
"X-Poedit-Basepath: ..\n"
|
17 |
-
"X-Generator: Poedit 2.4.3\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:466
|
38 |
-
#: core/lib/wpbc_all_translations.php:6 js/wpbc-gutenberg.js:815
|
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:233
|
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
|
59 |
-
msgid "Sunday"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: core/admin/api-settings.php:110 core/admin/api-settings.php:236
|
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
|
67 |
-
msgid "Monday"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: core/admin/api-settings.php:111 core/admin/api-settings.php:239
|
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
|
75 |
-
msgid "Tuesday"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: core/admin/api-settings.php:112 core/admin/api-settings.php:242
|
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
|
83 |
-
msgid "Wednesday"
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: core/admin/api-settings.php:113 core/admin/api-settings.php:245
|
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
|
91 |
-
msgid "Thursday"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: core/admin/api-settings.php:114 core/admin/api-settings.php:248
|
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
|
99 |
-
msgid "Friday"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: core/admin/api-settings.php:115 core/admin/api-settings.php:251
|
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:166 core/lib/wpbc_all_translations.php:20
|
126 |
-
msgid "Time picker for time slots"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: core/admin/api-settings.php:167 core/lib/wpbc_all_translations.php:21
|
130 |
-
msgid "Show time slots as a time picker instead of a select box."
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
#: core/admin/api-settings.php:191 core/lib/wpbc_all_translations.php:22
|
134 |
-
msgid "Time Picker Skin"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: core/admin/api-settings.php:192 core/lib/wpbc_all_translations.php:23
|
138 |
-
msgid "Select the skin of the time picker"
|
139 |
-
msgstr ""
|
140 |
-
|
141 |
-
#: core/admin/api-settings.php:203 core/lib/wpbc_all_translations.php:24
|
142 |
-
msgid "Do not change background color for partially booked days"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#: core/admin/api-settings.php:204 core/lib/wpbc_all_translations.php:25
|
146 |
-
msgid "Show partially booked days with same background as in legend item"
|
147 |
-
msgstr ""
|
148 |
-
|
149 |
-
#: core/admin/api-settings.php:205 core/admin/api-settings.php:355 core/admin/api-settings.php:530
|
150 |
-
#: core/admin/api-settings.php:565 core/admin/api-settings.php:886
|
151 |
-
#: core/admin/page-form-free.php:189 core/admin/page-ics-export.php:467
|
152 |
-
#: core/lib/wpbc_all_translations.php:26 core/timeline/v2/wpbc-class-timeline_v2.php:2822
|
153 |
-
#: inc/_bl/admin/api-settings-l.php:179 inc/_bl/admin/api-settings-l.php:185
|
154 |
-
#: inc/_bl/admin/api-settings-l.php:216 inc/gateways/page-gateways.php:225
|
155 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1160 js/wpbc-gutenberg.js:1038
|
156 |
-
msgid "Note"
|
157 |
-
msgstr ""
|
158 |
-
|
159 |
-
#: core/admin/api-settings.php:206 core/admin/api-settings.php:531
|
160 |
-
#: core/lib/wpbc_all_translations.php:27
|
161 |
-
msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: core/admin/api-settings.php:228 core/lib/wpbc_all_translations.php:28
|
165 |
-
msgid "Unavailable week days"
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
#: core/admin/api-settings.php:258 core/lib/wpbc_all_translations.php:29
|
169 |
-
msgid "Check unavailable days in calendars. This option will overwrite all other settings."
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:30
|
173 |
-
msgid "Unavailable days from today"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: core/admin/api-settings.php:277 core/lib/wpbc_all_translations.php:31
|
177 |
-
msgid "Select number of unavailable days in calendar start from today."
|
178 |
-
msgstr ""
|
179 |
-
|
180 |
-
#: core/admin/api-settings.php:316 core/lib/wpbc_all_translations.php:32 inc/_ps/lib_p.php:268
|
181 |
-
msgid "Simple"
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#: core/admin/api-settings.php:316 core/admin/wpbc-toolbar-tiny.php:246
|
185 |
-
#: core/admin/wpbc-toolbar-tiny.php:704 core/admin/wpbc-toolbar-tiny.php:1205
|
186 |
-
#: core/admin/wpbc-toolbar-tiny.php:1621 core/lib/wpbc_all_translations.php:33
|
187 |
-
#: inc/_bm/m-toolbar.php:29 inc/_bm/m-toolbar.php:113 inc/_bm/m-toolbar.php:402
|
188 |
-
#: inc/_ps/lib_p.php:268 js/wpbc-gutenberg.js:571
|
189 |
-
msgid "Booking Form"
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#: core/admin/api-settings.php:317 core/lib/wpbc_all_translations.php:34 inc/_ps/lib_p.php:264
|
193 |
-
msgid ""
|
194 |
-
"Check the box, if you want to use simple booking form customization from Free plugin version at "
|
195 |
-
"Settings - Form page."
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
#: core/admin/api-settings.php:325 core/lib/wpbc_all_translations.php:35
|
199 |
-
msgid "Syntax highlighter"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: core/admin/api-settings.php:326 core/lib/wpbc_all_translations.php:36
|
203 |
-
msgid "Check the box, if you want to use syntax highlighter during customization booking form."
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: core/admin/api-settings.php:337 core/lib/wpbc_all_translations.php:37
|
207 |
-
#: inc/_ps/form/class-wpbc-form-help.php:194
|
208 |
-
msgid "CAPTCHA"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: core/admin/api-settings.php:338 core/lib/wpbc_all_translations.php:38
|
212 |
-
msgid "Check the box to activate CAPTCHA inside the booking form."
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: core/admin/api-settings.php:345 core/lib/wpbc_all_translations.php:39
|
216 |
-
msgid "Auto-fill fields"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: core/admin/api-settings.php:346 core/lib/wpbc_all_translations.php:40
|
220 |
-
msgid "Check the box to activate auto-fill form fields for logged in users."
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: core/admin/api-settings.php:353 core/lib/wpbc_all_translations.php:41
|
224 |
-
msgid "Use CSS BootStrap"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: core/admin/api-settings.php:354 core/lib/wpbc_all_translations.php:42
|
228 |
-
msgid "Using BootStrap CSS for the form fields"
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: core/admin/api-settings.php:355 core/lib/wpbc_all_translations.php:43
|
232 |
-
msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: core/admin/api-settings.php:380 core/lib/wpbc_all_translations.php:44
|
236 |
-
msgid "Show legend below calendar"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: core/admin/api-settings.php:381 core/lib/wpbc_all_translations.php:45
|
240 |
-
msgid "Check this box to display a legend of dates below the booking calendar."
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: core/admin/api-settings.php:393 core/lib/wpbc_all_translations.php:46
|
244 |
-
msgid "Available item"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: core/admin/api-settings.php:407 core/lib/wpbc_all_translations.php:47
|
248 |
-
#: core/wpbc-activation.php:1040
|
249 |
-
msgid "Available"
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: core/admin/api-settings.php:416 core/lib/wpbc_all_translations.php:48
|
253 |
-
#, php-format
|
254 |
-
msgid "Activate and type your %stitle of available%s item in legend"
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: core/admin/api-settings.php:430 core/lib/wpbc_all_translations.php:49
|
258 |
-
msgid "Pending item"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: core/admin/api-settings.php:444 core/admin/page-email-deny.php:558
|
262 |
-
#: core/admin/wpbc-class-listing.php:328 core/admin/wpbc-class-listing.php:426
|
263 |
-
#: core/admin/wpbc-toolbars.php:549 core/admin/wpbc-toolbars.php:964
|
264 |
-
#: core/lib/wpbc_all_translations.php:50 core/timeline/v2/wpbc-class-timeline_v2.php:2679
|
265 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2732 core/wpbc-activation.php:1044
|
266 |
-
#: inc/_bs/lib_s.php:328 inc/_ps/personal.php:369 inc/_ps/wpbc-export-csv.php:430
|
267 |
-
#: inc/_ps/wpbc-print.php:119
|
268 |
-
msgid "Pending"
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: core/admin/api-settings.php:453 core/lib/wpbc_all_translations.php:51
|
272 |
-
#, php-format
|
273 |
-
msgid "Activate and type your %stitle of pending%s item in legend"
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: core/admin/api-settings.php:467 core/lib/wpbc_all_translations.php:52
|
277 |
-
msgid "Approved item"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: core/admin/api-settings.php:481 core/lib/wpbc_all_translations.php:53
|
281 |
-
#: core/wpbc-activation.php:1048
|
282 |
-
msgid "Booked"
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: core/admin/api-settings.php:490 core/lib/wpbc_all_translations.php:54
|
286 |
-
#, php-format
|
287 |
-
msgid "Activate and type your %stitle of approved%s item in legend"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: core/admin/api-settings.php:505 core/lib/wpbc_all_translations.php:55
|
291 |
-
msgid "Partially booked item"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: core/admin/api-settings.php:519 core/lib/wpbc_all_translations.php:56
|
295 |
-
#: core/wpbc-activation.php:1054
|
296 |
-
msgid "Partially booked"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: core/admin/api-settings.php:528 core/lib/wpbc_all_translations.php:57
|
300 |
-
#, php-format
|
301 |
-
msgid "Activate and type your %stitle of partially booked%s item in legend"
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: core/admin/api-settings.php:553 core/lib/wpbc_all_translations.php:58
|
305 |
-
msgid "Show date number in legend"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: core/admin/api-settings.php:554 core/lib/wpbc_all_translations.php:59
|
309 |
-
msgid "Check this box to display today date number in legend cells. "
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: core/admin/api-settings.php:562 core/lib/wpbc_all_translations.php:60
|
313 |
-
msgid "Show \"Thank You\" message"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: core/admin/api-settings.php:563 core/lib/wpbc_all_translations.php:61
|
317 |
-
msgid "Redirect visitor to a new \"Thank You\" page"
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#: core/admin/api-settings.php:565 core/lib/wpbc_all_translations.php:62
|
321 |
-
msgid "This action will have no effect, if the payment form(s) is active!"
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: core/admin/api-settings.php:570 core/lib/wpbc_all_translations.php:63
|
325 |
-
msgid "Action after booking is done"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: core/admin/api-settings.php:579 core/lib/wpbc_all_translations.php:64
|
329 |
-
#: core/wpbc-activation.php:871
|
330 |
-
#, php-format
|
331 |
-
msgid ""
|
332 |
-
"Thank you for your online booking. %s We will send confirmation of your booking as soon as "
|
333 |
-
"possible."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: core/admin/api-settings.php:580 core/lib/wpbc_all_translations.php:65
|
337 |
-
msgid "Message title"
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: core/admin/api-settings.php:581 core/lib/wpbc_all_translations.php:66
|
341 |
-
#, php-format
|
342 |
-
msgid "Type title of message %safter booking has done by user%s"
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: core/admin/api-settings.php:592 core/lib/wpbc_all_translations.php:67
|
346 |
-
msgid "Time of message showing"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: core/admin/api-settings.php:593 core/lib/wpbc_all_translations.php:68
|
350 |
-
msgid "Set duration of time (milliseconds) to show this message"
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: core/admin/api-settings.php:620 core/lib/wpbc_all_translations.php:69
|
354 |
-
msgid "URL of \"thank you\" page"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: core/admin/api-settings.php:636 core/lib/wpbc_all_translations.php:70
|
358 |
-
#, php-format
|
359 |
-
msgid "Type URL of %s\"Thank You\" page%s"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: core/admin/api-settings.php:648 core/lib/wpbc_all_translations.php:71 core/wpbc.php:137
|
363 |
-
#: core/wpbc.php:138
|
364 |
-
msgid "Bookings Listing"
|
365 |
-
msgstr ""
|
366 |
-
|
367 |
-
#: core/admin/api-settings.php:649 core/admin/page-settings.php:242 core/admin/page-timeline.php:45
|
368 |
-
#: core/admin/page-timeline.php:46 core/admin/page-timeline.php:47 core/admin/wpbc-toolbars.php:482
|
369 |
-
#: core/lib/wpbc_all_translations.php:72 core/wpbc-functions.php:1878
|
370 |
-
msgid "Calendar Overview"
|
371 |
-
msgstr ""
|
372 |
-
|
373 |
-
#: core/admin/api-settings.php:654 core/lib/wpbc_all_translations.php:73
|
374 |
-
msgid "Default booking admin page"
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: core/admin/api-settings.php:655 core/lib/wpbc_all_translations.php:74
|
378 |
-
msgid "Select your default view mode of bookings at the booking listing page"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: core/admin/api-settings.php:671 core/admin/wpbc-toolbar-tiny.php:399
|
382 |
-
#: core/admin/wpbc-toolbars.php:1184 core/admin/wpbc-toolbars.php:1244
|
383 |
-
#: core/lib/wpbc_all_translations.php:75 inc/_bl/admin/page-coupons.php:526
|
384 |
-
msgid "Day"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: core/admin/api-settings.php:672 core/admin/wpbc-toolbar-tiny.php:400
|
388 |
-
#: core/admin/wpbc-toolbars.php:1201 core/admin/wpbc-toolbars.php:1258
|
389 |
-
#: core/lib/wpbc_all_translations.php:76
|
390 |
-
msgid "Week"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: core/admin/api-settings.php:673 core/admin/api-settings.php:680
|
394 |
-
#: core/admin/wpbc-toolbar-tiny.php:402 core/admin/wpbc-toolbars.php:1218
|
395 |
-
#: core/admin/wpbc-toolbars.php:1272 core/lib/wpbc_all_translations.php:77
|
396 |
-
#: inc/_bl/admin/page-coupons.php:525
|
397 |
-
msgid "Month"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: core/admin/api-settings.php:674 core/admin/wpbc-toolbar-tiny.php:404
|
401 |
-
#: core/admin/wpbc-toolbars.php:1286 core/lib/wpbc_all_translations.php:78
|
402 |
-
msgid "2 Months"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: core/admin/api-settings.php:675 core/admin/api-settings.php:681
|
406 |
-
#: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:79
|
407 |
-
msgid "3 Months"
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: core/admin/api-settings.php:676 core/admin/api-settings.php:682
|
411 |
-
#: core/admin/wpbc-toolbar-tiny.php:407 core/admin/wpbc-toolbars.php:579
|
412 |
-
#: core/admin/wpbc-toolbars.php:813 core/lib/wpbc_all_translations.php:80
|
413 |
-
#: inc/_bl/admin/page-coupons.php:524
|
414 |
-
msgid "Year"
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
#: core/admin/api-settings.php:687 core/lib/wpbc_all_translations.php:81
|
418 |
-
msgid "Default calendar view mode"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: core/admin/api-settings.php:688 core/lib/wpbc_all_translations.php:82
|
422 |
-
msgid "Select your default calendar view mode at booking calendar overview page"
|
423 |
-
msgstr ""
|
424 |
-
|
425 |
-
#: core/admin/api-settings.php:698 core/lib/wpbc_all_translations.php:83
|
426 |
-
msgid "Filter tab"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: core/admin/api-settings.php:699 core/lib/wpbc_all_translations.php:84
|
430 |
-
msgid "Actions tab"
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: core/admin/api-settings.php:704 core/lib/wpbc_all_translations.php:85
|
434 |
-
msgid "Default toolbar tab"
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: core/admin/api-settings.php:705 core/lib/wpbc_all_translations.php:86
|
438 |
-
msgid "Select your default opened tab in toolbar at booking listing page"
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
#: core/admin/api-settings.php:717 core/lib/wpbc_all_translations.php:87
|
442 |
-
msgid "Bookings number per page"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: core/admin/api-settings.php:718 core/lib/wpbc_all_translations.php:88
|
446 |
-
msgid "Select number of bookings per page in booking listing"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: core/admin/api-settings.php:725 core/admin/api-settings.php:726
|
450 |
-
#: core/admin/wpbc-class-listing.php:122 core/admin/wpbc-toolbars.php:735
|
451 |
-
#: core/admin/wpbc-toolbars.php:738 core/lib/wpbc_all_translations.php:89
|
452 |
-
#: core/sync/wpbc-gcal-class.php:640 core/sync/wpbc-gcal-class.php:661
|
453 |
-
#: inc/_bl/admin/page-coupons.php:495 inc/_bm/admin/page-availability.php:491
|
454 |
-
#: inc/_bm/admin/page-availability.php:972 inc/_bm/admin/page-cost-rate.php:148
|
455 |
-
#: inc/_bm/admin/page-cost.php:571 inc/_bm/admin/page-seasons.php:506 inc/_bs/lib_s.php:180
|
456 |
-
#: inc/_bs/lib_s.php:185 inc/_mu/admin/page-users.php:428
|
457 |
-
#: inc/_ps/admin/br-table-export-feeds.php:168 inc/_ps/admin/br-table-import-gcal-p.php:140
|
458 |
-
#: inc/_ps/admin/page-resources.php:455 inc/_ps/form/class-wpbc-field-help-text.php:211
|
459 |
-
#: inc/_ps/lib_p.php:124 inc/_ps/lib_p.php:128 inc/_ps/wpbc-print.php:82
|
460 |
-
#: inc/gateways/page-gateways.php:887
|
461 |
-
msgid "ID"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: core/admin/api-settings.php:725 core/admin/api-settings.php:727 core/admin/api-settings.php:731
|
465 |
-
#: core/admin/api-settings.php:735 core/lib/wpbc_all_translations.php:90
|
466 |
-
#: inc/_bl/admin/page-search.php:180 inc/_bl/admin/page-search.php:182
|
467 |
-
#: inc/_bl/admin/page-search.php:184 inc/_bl/admin/page-search.php:186
|
468 |
-
#: inc/_bl/admin/page-search.php:188
|
469 |
-
msgid "ASC"
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: core/admin/api-settings.php:726 core/admin/api-settings.php:728 core/admin/api-settings.php:732
|
473 |
-
#: core/admin/api-settings.php:736 core/lib/wpbc_all_translations.php:91
|
474 |
-
#: inc/_bl/admin/page-search.php:181 inc/_bl/admin/page-search.php:183
|
475 |
-
#: inc/_bl/admin/page-search.php:185 inc/_bl/admin/page-search.php:187
|
476 |
-
#: inc/_bl/admin/page-search.php:189
|
477 |
-
msgid "DESC"
|
478 |
-
msgstr ""
|
479 |
-
|
480 |
-
#: core/admin/api-settings.php:727 core/admin/api-settings.php:728 core/admin/wpbc-toolbars.php:588
|
481 |
-
#: core/admin/wpbc-toolbars.php:650 core/admin/wpbc-toolbars.php:736
|
482 |
-
#: core/admin/wpbc-toolbars.php:739 core/admin/wpbc-toolbars.php:855
|
483 |
-
#: core/lib/wpbc_all_translations.php:92 core/sync/wpbc-gcal-class.php:643
|
484 |
-
#: core/sync/wpbc-gcal-class.php:678 core/timeline/v2/wpbc-class-timeline_v2.php:73
|
485 |
-
#: inc/_bs/lib_s.php:181 inc/_bs/lib_s.php:186 inc/_ps/lib_p.php:125 inc/_ps/lib_p.php:129
|
486 |
-
#: inc/_ps/wpbc-form-templates.php:89 inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
|
487 |
-
msgid "Dates"
|
488 |
-
msgstr ""
|
489 |
-
|
490 |
-
#: core/admin/api-settings.php:731 core/admin/api-settings.php:732
|
491 |
-
#: core/lib/wpbc_all_translations.php:93 inc/_bl/admin/page-search.php:955
|
492 |
-
#: inc/_bm/admin/page-availability.php:876 inc/_bm/admin/page-cost-rate.php:106
|
493 |
-
#: inc/_bm/admin/page-cost-valuation.php:134 inc/_bs/lib_s.php:182 inc/_bs/lib_s.php:187
|
494 |
-
#: inc/_ps/lib_p.php:126 inc/_ps/lib_p.php:130
|
495 |
-
msgid "Resource"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: core/admin/api-settings.php:735 core/admin/api-settings.php:736
|
499 |
-
#: core/admin/wpbc-toolbar-tiny.php:1809 core/lib/wpbc_all_translations.php:94
|
500 |
-
#: inc/_bs/admin/api-settings-s.php:924 inc/_bs/lib_s.php:140 inc/_bs/lib_s.php:183
|
501 |
-
#: inc/_bs/lib_s.php:188 inc/_ps/wpbc-print.php:86
|
502 |
-
msgid "Cost"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: core/admin/api-settings.php:741 core/lib/wpbc_all_translations.php:95
|
506 |
-
msgid "Bookings default order"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: core/admin/api-settings.php:742 core/lib/wpbc_all_translations.php:96
|
510 |
-
msgid "Select your default order of bookings in the booking listing"
|
511 |
-
msgstr ""
|
512 |
-
|
513 |
-
#: core/admin/api-settings.php:759 core/lib/wpbc_all_translations.php:97
|
514 |
-
#: inc/_bl/admin/page-search.php:223
|
515 |
-
msgid "Date Format"
|
516 |
-
msgstr ""
|
517 |
-
|
518 |
-
#: core/admin/api-settings.php:764 core/lib/wpbc_all_translations.php:98
|
519 |
-
msgid "F j, Y"
|
520 |
-
msgstr ""
|
521 |
-
|
522 |
-
#: core/admin/api-settings.php:767 core/admin/wpbc-toolbars.php:1484
|
523 |
-
#: core/lib/wpbc_all_translations.php:99 inc/_bm/admin/api-settings-m.php:197
|
524 |
-
#: inc/_bs/admin/api-settings-s.php:426 inc/_bs/lib_s.php:55
|
525 |
-
msgid "Custom"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: core/admin/api-settings.php:793 core/lib/wpbc_all_translations.php:100
|
529 |
-
#, php-format
|
530 |
-
msgid ""
|
531 |
-
"Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
#: core/admin/api-settings.php:808 core/lib/wpbc_all_translations.php:101
|
535 |
-
msgid "Use localized time format"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: core/admin/api-settings.php:809 core/lib/wpbc_all_translations.php:102
|
539 |
-
msgid ""
|
540 |
-
"This option useful only, if you have issue with translation of time format. If you activated "
|
541 |
-
"this option, at some servers possible issue with \"Daylight Saving Time\" - booked times can be "
|
542 |
-
"later on 1 hour."
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: core/admin/api-settings.php:817 core/lib/wpbc_all_translations.php:103
|
546 |
-
msgid "Short days view"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: core/admin/api-settings.php:818 core/lib/wpbc_all_translations.php:104
|
550 |
-
msgid "Wide days view"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: core/admin/api-settings.php:823 core/lib/wpbc_all_translations.php:105
|
554 |
-
msgid "Dates view"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: core/admin/api-settings.php:824 core/lib/wpbc_all_translations.php:106
|
558 |
-
msgid "Select the default view for dates on the booking tables"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: core/admin/api-settings.php:840 core/lib/wpbc_all_translations.php:107
|
562 |
-
msgid "Show / hide hints"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: core/admin/api-settings.php:841 core/lib/wpbc_all_translations.php:108
|
566 |
-
msgid "Check this box if you want to show help hints on the admin panel."
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: core/admin/api-settings.php:861 core/lib/wpbc_all_translations.php:109
|
570 |
-
msgid "Allow unlimited bookings per same day(s)"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: core/admin/api-settings.php:862 core/lib/wpbc_all_translations.php:110
|
574 |
-
#, php-format
|
575 |
-
msgid ""
|
576 |
-
"Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
|
577 |
-
"able to make %sunlimited bookings per same date(s) in calendar and do not see any booked "
|
578 |
-
"date(s)%s of other visitors."
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: core/admin/api-settings.php:872 core/lib/wpbc_all_translations.php:111
|
582 |
-
#: inc/_bl/admin/api-settings-l.php:101
|
583 |
-
msgid "Use pending days as available"
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: core/admin/api-settings.php:873 core/lib/wpbc_all_translations.php:112
|
587 |
-
#: inc/_bl/admin/api-settings-l.php:102
|
588 |
-
msgid "Check this box if you want to show the pending days as available in calendars"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: core/admin/api-settings.php:884 core/lib/wpbc_all_translations.php:113
|
592 |
-
msgid "Checking to prevent double booking, during submitting booking"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: core/admin/api-settings.php:885 core/lib/wpbc_all_translations.php:114
|
596 |
-
#, php-format
|
597 |
-
msgid ""
|
598 |
-
"Check this box, if you want to %sre-check if the selected dates available during submitting "
|
599 |
-
"booking%s."
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: core/admin/api-settings.php:887 core/lib/wpbc_all_translations.php:115
|
603 |
-
msgid ""
|
604 |
-
"This feature useful to prevent double booking of the same date(s) or time(s), if several "
|
605 |
-
"visitors try to book the same date(s) in same calendar during the same time."
|
606 |
-
msgstr ""
|
607 |
-
|
608 |
-
#: core/admin/api-settings.php:888 core/lib/wpbc_all_translations.php:116
|
609 |
-
msgid "This feature does not work for booking resources with capacity higher than one."
|
610 |
-
msgstr ""
|
611 |
-
|
612 |
-
#: core/admin/api-settings.php:905 core/lib/wpbc_all_translations.php:117
|
613 |
-
msgid "Show advanced settings of JavaScript loading"
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: core/admin/api-settings.php:906 core/lib/wpbc_all_translations.php:118
|
617 |
-
msgid "Hide advanced settings of JavaScript loading"
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#: core/admin/api-settings.php:914 core/lib/wpbc_all_translations.php:119
|
621 |
-
msgid "Disable Bootstrap loading on Front-End"
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: core/admin/api-settings.php:915 core/admin/api-settings.php:924
|
625 |
-
#: core/lib/wpbc_all_translations.php:120
|
626 |
-
msgid ""
|
627 |
-
" If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
|
628 |
-
"of this script by this plugin."
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
-
#: core/admin/api-settings.php:923 core/lib/wpbc_all_translations.php:121
|
632 |
-
msgid "Disable Bootstrap loading on Back-End"
|
633 |
-
msgstr ""
|
634 |
-
|
635 |
-
#: core/admin/api-settings.php:933 core/lib/wpbc_all_translations.php:122
|
636 |
-
msgid "Load JS and CSS files only on specific pages"
|
637 |
-
msgstr ""
|
638 |
-
|
639 |
-
#: core/admin/api-settings.php:934 core/lib/wpbc_all_translations.php:123
|
640 |
-
msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: core/admin/api-settings.php:944 core/lib/wpbc_all_translations.php:124
|
644 |
-
msgid "Relative URLs of pages, where to load plugin CSS and JS files"
|
645 |
-
msgstr ""
|
646 |
-
|
647 |
-
#: core/admin/api-settings.php:945 core/lib/wpbc_all_translations.php:125
|
648 |
-
#, php-format
|
649 |
-
msgid ""
|
650 |
-
"Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
|
651 |
-
"availability calendars). Please enter one URL per line. Example: %s"
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
#: core/admin/api-settings.php:959 core/lib/wpbc_all_translations.php:126
|
655 |
-
msgid "Show system debugging log for beta features"
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: core/admin/api-settings.php:960 core/lib/wpbc_all_translations.php:127
|
659 |
-
msgid "Activate this option only for testing beta features"
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: core/admin/api-settings.php:976 core/lib/wpbc_all_translations.php:128
|
663 |
-
msgid "Show settings of powered by notice"
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: core/admin/api-settings.php:977 core/lib/wpbc_all_translations.php:129
|
667 |
-
msgid "Hide settings of powered by notice"
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: core/admin/api-settings.php:984 core/lib/wpbc_all_translations.php:130
|
671 |
-
msgid "Powered by notice"
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: core/admin/api-settings.php:985 core/lib/wpbc_all_translations.php:131
|
675 |
-
msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
-
#: core/admin/api-settings.php:993 core/lib/wpbc_all_translations.php:132
|
679 |
-
msgid "Help and info notices"
|
680 |
-
msgstr ""
|
681 |
-
|
682 |
-
#: core/admin/api-settings.php:994 core/lib/wpbc_all_translations.php:133
|
683 |
-
msgid " Turn On/Off version notice and help info links at booking admin panel."
|
684 |
-
msgstr ""
|
685 |
-
|
686 |
-
#: core/admin/api-settings.php:1022 core/lib/wpbc_all_translations.php:134
|
687 |
-
msgid "Plugin menu position"
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: core/admin/api-settings.php:1025 core/lib/wpbc_all_translations.php:135
|
691 |
-
msgid "Top"
|
692 |
-
msgstr ""
|
693 |
-
|
694 |
-
#: core/admin/api-settings.php:1026 core/lib/wpbc_all_translations.php:136
|
695 |
-
msgid "Middle"
|
696 |
-
msgstr ""
|
697 |
-
|
698 |
-
#: core/admin/api-settings.php:1027 core/lib/wpbc_all_translations.php:137
|
699 |
-
msgid "Bottom"
|
700 |
-
msgstr ""
|
701 |
-
|
702 |
-
#: core/admin/api-settings.php:1038 core/lib/wpbc_all_translations.php:138
|
703 |
-
msgid "User permissions for plugin menu pages"
|
704 |
-
msgstr ""
|
705 |
-
|
706 |
-
#: core/admin/api-settings.php:1053 core/admin/wpbc-toolbars.php:556
|
707 |
-
#: core/admin/wpbc-toolbars.php:771 core/lib/wpbc_all_translations.php:139
|
708 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:74 core/wpbc.php:136
|
709 |
-
msgid "Bookings"
|
710 |
-
msgstr ""
|
711 |
-
|
712 |
-
#: core/admin/api-settings.php:1062 core/admin/page-new.php:33 core/admin/page-new.php:34
|
713 |
-
#: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1847
|
714 |
-
#: core/lib/wpbc_all_translations.php:140 core/wpbc-functions.php:1908 core/wpbc.php:165
|
715 |
-
#: core/wpbc.php:166 core/wpbc.php:167
|
716 |
-
msgid "Add booking"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: core/admin/api-settings.php:1072 core/admin/page-import-gcal.php:491
|
720 |
-
#: core/lib/wpbc_all_translations.php:141 core/timeline/v2/wpbc-class-timeline_v2.php:72
|
721 |
-
#: core/wpbc-functions.php:1918 core/wpbc.php:176 core/wpbc.php:178
|
722 |
-
#: inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
|
723 |
-
#: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
|
724 |
-
#: inc/_bm/admin/page-cost-valuation.php:133 inc/_mu/admin/page-users.php:446
|
725 |
-
#: inc/_ps/admin/br-table-export-feeds.php:172 inc/_ps/admin/br-table-import-gcal-p.php:144
|
726 |
-
#: inc/_ps/admin/page-resources.php:38 inc/_ps/admin/page-resources.php:138
|
727 |
-
msgid "Resources"
|
728 |
-
msgstr ""
|
729 |
-
|
730 |
-
#: core/admin/api-settings.php:1081 core/lib/wpbc_all_translations.php:142
|
731 |
-
#: core/wpbc-functions.php:1973 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
|
732 |
-
#: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
|
733 |
-
msgid "Settings"
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: core/admin/api-settings.php:1082 core/lib/wpbc_all_translations.php:143
|
737 |
-
msgid "Select user access level for the menu pages of plugin"
|
738 |
-
msgstr ""
|
739 |
-
|
740 |
-
#: core/admin/api-settings.php:1093 core/lib/wpbc_all_translations.php:144 core/wpbc.php:204
|
741 |
-
msgid "Premium"
|
742 |
-
msgstr ""
|
743 |
-
|
744 |
-
#: core/admin/api-settings.php:1094 core/lib/wpbc_all_translations.php:145
|
745 |
-
msgid "Show / hide menu"
|
746 |
-
msgstr ""
|
747 |
-
|
748 |
-
#: core/admin/api-settings.php:1097 core/admin/wpbc-toolbar-tiny.php:597
|
749 |
-
#: core/admin/wpbc-toolbar-tiny.php:1816 core/admin/wpbc-toolbars.php:790
|
750 |
-
#: core/lib/wpbc_all_translations.php:146 core/lib/wpdev-booking-widget.php:104
|
751 |
-
#: js/wpbc-gutenberg.js:1338
|
752 |
-
msgid "Show"
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: core/admin/api-settings.php:1098 core/class/wpbc-class-notices.php:104
|
756 |
-
#: core/lib/wpbc_all_translations.php:147 core/sync/wpbc-gcal-class.php:704
|
757 |
-
#: core/wpbc-functions.php:2377
|
758 |
-
msgid "Hide"
|
759 |
-
msgstr ""
|
760 |
-
|
761 |
-
#: core/admin/api-settings.php:1115 core/lib/wpbc_all_translations.php:148
|
762 |
-
msgid "Delete booking data, when plugin deactivated"
|
763 |
-
msgstr ""
|
764 |
-
|
765 |
-
#: core/admin/api-settings.php:1116 core/lib/wpbc_all_translations.php:149
|
766 |
-
msgid "Check this box to delete all booking data when you uninstal this plugin."
|
767 |
-
msgstr ""
|
768 |
-
|
769 |
-
#: core/admin/api-settings.php:1142 core/admin/page-form-free.php:1029
|
770 |
-
#: core/lib/wpbc_all_translations.php:150 core/sync/wpbc-gcal-class.php:474
|
771 |
-
#: core/sync/wpbc-gcal-class.php:642 core/sync/wpbc-gcal-class.php:668
|
772 |
-
#: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
|
773 |
-
#: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
|
774 |
-
#: inc/_ps/admin/br-table-export-feeds.php:179 inc/_ps/admin/br-table-import-gcal-p.php:151
|
775 |
-
msgid "Info"
|
776 |
-
msgstr ""
|
777 |
-
|
778 |
-
#: core/admin/api-settings.php:1177 core/admin/page-settings.php:307
|
779 |
-
#: core/lib/wpbc_all_translations.php:151
|
780 |
-
msgid "Restore all dismissed windows"
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: core/admin/api-settings.php:1301 core/admin/api-settings.php:1332
|
784 |
-
#: core/admin/api-settings.php:1364 core/admin/api-settings.php:1377
|
785 |
-
#: core/admin/api-settings.php:1410 core/lib/wpbc_all_translations.php:152
|
786 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:564
|
787 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/page-gateways.php:936
|
788 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:661 inc/gateways/sage/wpbc-gw-sage.php:591
|
789 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:941
|
790 |
-
msgid "Warning"
|
791 |
-
msgstr ""
|
792 |
-
|
793 |
-
#: core/admin/api-settings.php:1302 core/lib/wpbc_all_translations.php:153
|
794 |
-
msgid ""
|
795 |
-
"You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
|
796 |
-
"the same date. Do you really want to do this?"
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: core/admin/api-settings.php:1333 core/lib/wpbc_all_translations.php:154
|
800 |
-
msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: core/admin/api-settings.php:1365 core/admin/api-settings.php:1378
|
804 |
-
#: core/lib/wpbc_all_translations.php:155
|
805 |
-
msgid ""
|
806 |
-
"You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
|
807 |
-
"really want to do this?"
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: core/admin/api-settings.php:1411 core/lib/wpbc_all_translations.php:156
|
811 |
-
msgid ""
|
812 |
-
"If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
|
813 |
-
"you really want to do this?"
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
|
817 |
-
#: core/admin/wpbc-toolbars.php:467 core/lib/wpbc_all_translations.php:157
|
818 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2633 core/wpbc-functions.php:1886
|
819 |
-
msgid "Booking Listing"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
|
823 |
-
#: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
|
824 |
-
#: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
|
825 |
-
#: core/lib/wpbc_all_translations.php:158 inc/_bm/admin/page-cost-deposit.php:134
|
826 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:138
|
827 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
|
828 |
-
#: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:297
|
829 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
|
830 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:317
|
831 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:364
|
832 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:720 inc/gateways/paypal/wpbc-gw-paypal.php:743
|
833 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:766 inc/gateways/sage/wpbc-gw-sage.php:384
|
834 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:517
|
835 |
-
msgid "Enable / Disable"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
|
839 |
-
#: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
|
840 |
-
#: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
|
841 |
-
#: core/lib/wpbc_all_translations.php:159 inc/_bs/admin/page-email-payment.php:180
|
842 |
-
#: inc/_ps/admin/page-email-edit.php:179
|
843 |
-
msgid "Enable this email notification"
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
#: core/admin/page-email-approved.php:189 core/admin/page-email-approved.php:205
|
847 |
-
#: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
|
848 |
-
#: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
|
849 |
-
#: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
|
850 |
-
#: core/lib/wpbc_all_translations.php:160 inc/_bs/admin/page-email-payment.php:191
|
851 |
-
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
|
852 |
-
#: inc/_ps/admin/page-email-edit.php:205
|
853 |
-
msgid "Copy(ies)"
|
854 |
-
msgstr ""
|
855 |
-
|
856 |
-
#: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
|
857 |
-
#: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
|
858 |
-
#: core/lib/wpbc_all_translations.php:161 inc/_bs/admin/page-email-payment.php:192
|
859 |
-
#: inc/_ps/admin/page-email-edit.php:191
|
860 |
-
msgid "Enable / disable sending email(s) to additional addresses"
|
861 |
-
msgstr ""
|
862 |
-
|
863 |
-
#: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
|
864 |
-
#: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
|
865 |
-
#: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:162
|
866 |
-
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
867 |
-
#: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
|
868 |
-
msgid "To"
|
869 |
-
msgstr ""
|
870 |
-
|
871 |
-
#: core/admin/page-email-approved.php:215 core/admin/page-email-approved.php:272
|
872 |
-
#: core/admin/page-email-deleted.php:215 core/admin/page-email-deleted.php:272
|
873 |
-
#: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
|
874 |
-
#: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
|
875 |
-
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
|
876 |
-
#: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:163
|
877 |
-
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
878 |
-
#: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
|
879 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:730 inc/gateways/paypal/wpbc-gw-paypal.php:753
|
880 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:776
|
881 |
-
msgid "Email Address"
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: core/admin/page-email-approved.php:215 core/admin/page-email-approved.php:272
|
885 |
-
#: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:215
|
886 |
-
#: core/admin/page-email-deleted.php:272 core/admin/page-email-deleted.php:314
|
887 |
-
#: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
|
888 |
-
#: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:202
|
889 |
-
#: core/admin/page-email-new-admin.php:254 core/admin/page-email-new-admin.php:295
|
890 |
-
#: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
|
891 |
-
#: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
|
892 |
-
#: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1190
|
893 |
-
#: core/admin/page-form-free.php:2121 core/lib/wpbc_all_translations.php:164
|
894 |
-
#: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
|
895 |
-
#: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
|
896 |
-
#: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
|
897 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:309
|
898 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:343 inc/gateways/ideal/wpbc-gw-ideal.php:390
|
899 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:405 inc/gateways/ipay88/wpbc-gw-ipay88.php:329
|
900 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:344 inc/gateways/paypal/wpbc-gw-paypal.php:397
|
901 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:413 inc/gateways/sage/wpbc-gw-sage.php:396
|
902 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:411 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:545
|
903 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:560
|
904 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:577
|
905 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:592
|
906 |
-
msgid "Required"
|
907 |
-
msgstr ""
|
908 |
-
|
909 |
-
#: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
|
910 |
-
#: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
|
911 |
-
#: core/lib/wpbc_all_translations.php:165 inc/_bs/admin/page-email-payment.php:217
|
912 |
-
#: inc/_ps/admin/page-email-edit.php:216
|
913 |
-
msgid "You can put multiple emails separated by"
|
914 |
-
msgstr ""
|
915 |
-
|
916 |
-
#: core/admin/page-email-approved.php:234 core/admin/page-email-approved.php:290
|
917 |
-
#: core/admin/page-email-deleted.php:234 core/admin/page-email-deleted.php:290
|
918 |
-
#: core/admin/page-email-deny.php:236 core/admin/page-email-deny.php:290
|
919 |
-
#: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
|
920 |
-
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
921 |
-
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
|
922 |
-
#: core/admin/wpbc-toolbar-tiny.php:436 core/admin/wpbc-toolbar-tiny.php:1807
|
923 |
-
#: core/lib/wpbc_all_translations.php:166 core/lib/wpdev-booking-widget.php:96
|
924 |
-
#: core/sync/wpbc-gcal-class.php:641 core/sync/wpbc-gcal-class.php:664
|
925 |
-
#: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
|
926 |
-
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
927 |
-
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
928 |
-
#: inc/_ps/wpbc-booking-select-widget.php:140 js/wpbc-gutenberg.js:809
|
929 |
-
msgid "Title"
|
930 |
-
msgstr ""
|
931 |
-
|
932 |
-
#: core/admin/page-email-approved.php:234 core/admin/page-email-approved.php:290
|
933 |
-
#: core/admin/page-email-deleted.php:234 core/admin/page-email-deleted.php:290
|
934 |
-
#: core/admin/page-email-deny.php:236 core/admin/page-email-deny.php:290
|
935 |
-
#: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
|
936 |
-
#: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
|
937 |
-
#: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
|
938 |
-
#: core/admin/wpbc-toolbar-tiny.php:436 core/lib/wpbc_all_translations.php:167
|
939 |
-
#: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
|
940 |
-
#: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
|
941 |
-
#: inc/_ps/form/class-wpbc-field-help-button.php:73
|
942 |
-
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:128
|
943 |
-
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:164
|
944 |
-
#: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
|
945 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:129
|
946 |
-
#: inc/_ps/form/class-wpbc-field-help-text.php:194 inc/_ps/form/class-wpbc-field-help-text.php:211
|
947 |
-
#: inc/_ps/form/class-wpbc-field-help-text.php:228 inc/_ps/form/class-wpbc-field-help-text.php:247
|
948 |
-
#: inc/_ps/form/class-wpbc-field-help-text.php:264 inc/_ps/form/class-wpbc-field-help-text.php:281
|
949 |
-
#: inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
950 |
-
#: inc/_ps/form/class-wpbc-field-help-textarea.php:111 inc/gateways/page-gateways.php:409
|
951 |
-
msgid "optional"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#: core/admin/page-email-approved.php:262 core/admin/page-email-deleted.php:262
|
955 |
-
#: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
|
956 |
-
#: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
|
957 |
-
#: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:600
|
958 |
-
#: core/lib/wpbc_all_translations.php:168 core/sync/wpbc-gcal.php:171
|
959 |
-
#: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
|
960 |
-
#: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
|
961 |
-
#: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
|
962 |
-
msgid "From"
|
963 |
-
msgstr ""
|
964 |
-
|
965 |
-
#: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:169
|
966 |
-
msgid "Email Address will be used in the FROM field of response to Visitor."
|
967 |
-
msgstr ""
|
968 |
-
|
969 |
-
#: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:170
|
970 |
-
#: core/wpbc-activation.php:1006
|
971 |
-
msgid "Your booking has been approved"
|
972 |
-
msgstr ""
|
973 |
-
|
974 |
-
#: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
|
975 |
-
#: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
|
976 |
-
#: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
|
977 |
-
#: core/lib/wpbc_all_translations.php:171 inc/_bs/admin/page-email-payment.php:316
|
978 |
-
#: inc/_ps/admin/page-email-edit.php:312
|
979 |
-
msgid "Subject"
|
980 |
-
msgstr ""
|
981 |
-
|
982 |
-
#: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
|
983 |
-
#: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
|
984 |
-
#: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
|
985 |
-
#: core/lib/wpbc_all_translations.php:172 inc/_bs/admin/page-email-payment.php:317
|
986 |
-
#: inc/_ps/admin/page-email-edit.php:313
|
987 |
-
#, php-format
|
988 |
-
msgid "Type your email %ssubject%s for the booking confimation message."
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
-
#: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:173
|
992 |
-
#: core/wpbc-activation.php:1008
|
993 |
-
#, php-format
|
994 |
-
msgid ""
|
995 |
-
"Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
|
996 |
-
"you, %s"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:174
|
1000 |
-
#: core/wpbc-activation.php:1010
|
1001 |
-
#, php-format
|
1002 |
-
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
1003 |
-
msgstr ""
|
1004 |
-
|
1005 |
-
#: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
|
1006 |
-
#: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
|
1007 |
-
#: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
|
1008 |
-
#: core/lib/wpbc_all_translations.php:175 inc/_bs/admin/page-email-payment.php:334
|
1009 |
-
#: inc/_ps/admin/page-email-edit.php:330
|
1010 |
-
msgid "Content"
|
1011 |
-
msgstr ""
|
1012 |
-
|
1013 |
-
#: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
|
1014 |
-
#: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
|
1015 |
-
#: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
|
1016 |
-
#: core/lib/wpbc_all_translations.php:176 inc/_bs/admin/page-email-payment.php:335
|
1017 |
-
#: inc/_ps/admin/page-email-edit.php:331
|
1018 |
-
msgid "Type your email message content. "
|
1019 |
-
msgstr ""
|
1020 |
-
|
1021 |
-
#: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
|
1022 |
-
#: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
|
1023 |
-
#: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
|
1024 |
-
#: core/lib/wpbc_all_translations.php:177 inc/_bs/admin/page-email-payment.php:356
|
1025 |
-
#: inc/_ps/admin/page-email-edit.php:352
|
1026 |
-
msgid "Email Heading"
|
1027 |
-
msgstr ""
|
1028 |
-
|
1029 |
-
#: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
|
1030 |
-
#: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
|
1031 |
-
#: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
|
1032 |
-
#: core/lib/wpbc_all_translations.php:178 inc/_bs/admin/page-email-payment.php:357
|
1033 |
-
#: inc/_ps/admin/page-email-edit.php:353
|
1034 |
-
msgid "Enter main heading contained within the email notification."
|
1035 |
-
msgstr ""
|
1036 |
-
|
1037 |
-
#: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
|
1038 |
-
#: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
|
1039 |
-
#: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
|
1040 |
-
#: core/lib/wpbc_all_translations.php:179 inc/_bs/admin/page-email-payment.php:366
|
1041 |
-
#: inc/_ps/admin/page-email-edit.php:362
|
1042 |
-
msgid "Email Footer Text"
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
|
1046 |
-
#: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
|
1047 |
-
#: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
|
1048 |
-
#: core/lib/wpbc_all_translations.php:180 inc/_bs/admin/page-email-payment.php:367
|
1049 |
-
#: inc/_ps/admin/page-email-edit.php:363
|
1050 |
-
msgid "Enter text contained within footer of the email notification"
|
1051 |
-
msgstr ""
|
1052 |
-
|
1053 |
-
#: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
|
1054 |
-
#: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
|
1055 |
-
#: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
|
1056 |
-
#: core/lib/wpbc_all_translations.php:181 inc/_bs/admin/page-email-payment.php:377
|
1057 |
-
#: inc/_ps/admin/page-email-edit.php:373
|
1058 |
-
msgid "Email template"
|
1059 |
-
msgstr ""
|
1060 |
-
|
1061 |
-
#: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
|
1062 |
-
#: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
|
1063 |
-
#: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
|
1064 |
-
#: core/lib/wpbc_all_translations.php:182 inc/_bs/admin/page-email-payment.php:378
|
1065 |
-
#: inc/_ps/admin/page-email-edit.php:374
|
1066 |
-
msgid "Choose email template."
|
1067 |
-
msgstr ""
|
1068 |
-
|
1069 |
-
#: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
|
1070 |
-
#: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
|
1071 |
-
#: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
|
1072 |
-
#: core/lib/wpbc_all_translations.php:183 inc/_bs/admin/page-email-payment.php:382
|
1073 |
-
#: inc/_ps/admin/page-email-edit.php:378
|
1074 |
-
msgid "Plain (without styles)"
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
#: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
|
1078 |
-
#: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
|
1079 |
-
#: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
|
1080 |
-
#: core/lib/wpbc_all_translations.php:184 inc/_bs/admin/page-email-payment.php:383
|
1081 |
-
#: inc/_ps/admin/page-email-edit.php:379
|
1082 |
-
msgid "Standard 1 column"
|
1083 |
-
msgstr ""
|
1084 |
-
|
1085 |
-
#: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
|
1086 |
-
#: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
|
1087 |
-
#: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
|
1088 |
-
#: core/lib/wpbc_all_translations.php:185 inc/_bs/admin/page-email-payment.php:390
|
1089 |
-
#: inc/_ps/admin/page-email-edit.php:386
|
1090 |
-
#, php-format
|
1091 |
-
msgid "You can override this email template in this folder %s"
|
1092 |
-
msgstr ""
|
1093 |
-
|
1094 |
-
#: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
|
1095 |
-
#: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
|
1096 |
-
#: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
|
1097 |
-
#: core/lib/wpbc_all_translations.php:186 inc/_bs/admin/page-email-payment.php:400
|
1098 |
-
#: inc/_ps/admin/page-email-edit.php:396
|
1099 |
-
msgid "Base Color"
|
1100 |
-
msgstr ""
|
1101 |
-
|
1102 |
-
#: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
|
1103 |
-
#: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
|
1104 |
-
#: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
|
1105 |
-
#: core/lib/wpbc_all_translations.php:187 inc/_bs/admin/page-email-payment.php:401
|
1106 |
-
#: inc/_ps/admin/page-email-edit.php:397
|
1107 |
-
msgid "The base color for email templates."
|
1108 |
-
msgstr ""
|
1109 |
-
|
1110 |
-
#: core/admin/page-email-approved.php:402 core/admin/page-email-approved.php:411
|
1111 |
-
#: core/admin/page-email-approved.php:420 core/admin/page-email-approved.php:429
|
1112 |
-
#: core/admin/page-email-deleted.php:399 core/admin/page-email-deleted.php:408
|
1113 |
-
#: core/admin/page-email-deleted.php:417 core/admin/page-email-deleted.php:426
|
1114 |
-
#: core/admin/page-email-deny.php:399 core/admin/page-email-deny.php:408
|
1115 |
-
#: core/admin/page-email-deny.php:417 core/admin/page-email-deny.php:426
|
1116 |
-
#: core/admin/page-email-new-admin.php:378 core/admin/page-email-new-admin.php:387
|
1117 |
-
#: core/admin/page-email-new-admin.php:396 core/admin/page-email-new-admin.php:405
|
1118 |
-
#: core/admin/page-email-new-visitor.php:384 core/admin/page-email-new-visitor.php:393
|
1119 |
-
#: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
|
1120 |
-
#: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
|
1121 |
-
#: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
|
1122 |
-
#: core/lib/wpbc_all_translations.php:188 inc/_bs/admin/page-email-payment.php:402
|
1123 |
-
#: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
|
1124 |
-
#: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
|
1125 |
-
#: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
|
1126 |
-
#: inc/_ps/admin/page-email-edit.php:425
|
1127 |
-
msgid "Default color"
|
1128 |
-
msgstr ""
|
1129 |
-
|
1130 |
-
#: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
|
1131 |
-
#: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
|
1132 |
-
#: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
|
1133 |
-
#: core/lib/wpbc_all_translations.php:189 inc/_bs/admin/page-email-payment.php:409
|
1134 |
-
#: inc/_ps/admin/page-email-edit.php:405
|
1135 |
-
msgid "Background Color"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
|
1139 |
-
#: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
|
1140 |
-
#: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
|
1141 |
-
#: core/lib/wpbc_all_translations.php:190 inc/_bs/admin/page-email-payment.php:410
|
1142 |
-
#: inc/_ps/admin/page-email-edit.php:406
|
1143 |
-
msgid "The background color for email templates."
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
|
1147 |
-
#: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
|
1148 |
-
#: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
|
1149 |
-
#: core/lib/wpbc_all_translations.php:191 inc/_bs/admin/page-email-payment.php:418
|
1150 |
-
#: inc/_ps/admin/page-email-edit.php:414
|
1151 |
-
msgid "Email Body Background Color"
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
|
1155 |
-
#: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
|
1156 |
-
#: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
|
1157 |
-
#: core/lib/wpbc_all_translations.php:192 inc/_bs/admin/page-email-payment.php:419
|
1158 |
-
#: inc/_ps/admin/page-email-edit.php:415
|
1159 |
-
msgid "The main body background color for email templates."
|
1160 |
-
msgstr ""
|
1161 |
-
|
1162 |
-
#: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
|
1163 |
-
#: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
|
1164 |
-
#: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
|
1165 |
-
#: core/lib/wpbc_all_translations.php:193 inc/_bs/admin/page-email-payment.php:427
|
1166 |
-
#: inc/_ps/admin/page-email-edit.php:423
|
1167 |
-
msgid "Email Body Text Colour"
|
1168 |
-
msgstr ""
|
1169 |
-
|
1170 |
-
#: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
|
1171 |
-
#: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
|
1172 |
-
#: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
|
1173 |
-
#: core/lib/wpbc_all_translations.php:194 inc/_bs/admin/page-email-payment.php:428
|
1174 |
-
#: inc/_ps/admin/page-email-edit.php:424
|
1175 |
-
msgid "The main body text color for email templates."
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
|
1179 |
-
#: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
|
1180 |
-
#: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
|
1181 |
-
#: core/lib/wpbc_all_translations.php:195 inc/_bs/admin/page-email-payment.php:443
|
1182 |
-
#: inc/_ps/admin/page-email-edit.php:439
|
1183 |
-
msgid "Email format"
|
1184 |
-
msgstr ""
|
1185 |
-
|
1186 |
-
#: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
|
1187 |
-
#: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
|
1188 |
-
#: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
|
1189 |
-
#: core/lib/wpbc_all_translations.php:196 inc/_bs/admin/page-email-payment.php:444
|
1190 |
-
#: inc/_ps/admin/page-email-edit.php:440
|
1191 |
-
msgid "Choose which format of email to send."
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
|
1195 |
-
#: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
|
1196 |
-
#: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
|
1197 |
-
#: core/lib/wpbc_all_translations.php:197 inc/_bs/admin/page-email-payment.php:448
|
1198 |
-
#: inc/_ps/admin/page-email-edit.php:444
|
1199 |
-
msgid "Plain text"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
|
1203 |
-
#: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
|
1204 |
-
#: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
|
1205 |
-
#: core/lib/wpbc_all_translations.php:198 inc/_bs/admin/page-email-payment.php:455
|
1206 |
-
#: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:714
|
1207 |
-
#: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:1142
|
1208 |
-
msgid "HTML"
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
-
#: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
|
1212 |
-
#: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
|
1213 |
-
#: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
|
1214 |
-
#: core/lib/wpbc_all_translations.php:199 inc/_bs/admin/page-email-payment.php:456
|
1215 |
-
#: inc/_ps/admin/page-email-edit.php:452
|
1216 |
-
msgid "Multipart"
|
1217 |
-
msgstr ""
|
1218 |
-
|
1219 |
-
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1220 |
-
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1221 |
-
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1222 |
-
#: core/lib/wpbc_all_translations.php:200 inc/_bs/admin/page-email-payment.php:483
|
1223 |
-
#: inc/_ps/admin/page-email-edit.php:479
|
1224 |
-
#, php-format
|
1225 |
-
msgid ""
|
1226 |
-
"For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
|
1227 |
-
"%s You can approve or cancel this booking at: %s Thank you, Reservation service.\""
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
#: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
|
1231 |
-
#: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
|
1232 |
-
#: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
|
1233 |
-
#: core/lib/wpbc_all_translations.php:201 core/sync/wpbc-gcal.php:406
|
1234 |
-
#: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
|
1235 |
-
msgid "here"
|
1236 |
-
msgstr ""
|
1237 |
-
|
1238 |
-
#: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:329
|
1239 |
-
#: core/admin/wpbc-toolbars.php:550 core/lib/wpbc_all_translations.php:202
|
1240 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2735 inc/_ps/personal.php:368
|
1241 |
-
#: inc/_ps/wpbc-export-csv.php:428 inc/_ps/wpbc-print.php:118
|
1242 |
-
msgid "Approved"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: core/admin/page-email-approved.php:561 core/admin/page-email-deleted.php:559
|
1246 |
-
#: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:513
|
1247 |
-
#: core/admin/page-email-new-admin.php:514 core/admin/page-email-new-admin.php:538
|
1248 |
-
#: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
|
1249 |
-
#: core/lib/wpbc_all_translations.php:203 inc/_bs/admin/page-email-payment.php:561
|
1250 |
-
#: inc/_ps/admin/page-email-edit.php:557
|
1251 |
-
msgid "Emails Settings"
|
1252 |
-
msgstr ""
|
1253 |
-
|
1254 |
-
#: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:204
|
1255 |
-
msgid "Customization of email template, which is sent to Visitor after approval of booking"
|
1256 |
-
msgstr ""
|
1257 |
-
|
1258 |
-
#: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:205
|
1259 |
-
msgid "Email is sent to Visitor after Approval of booking."
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
#: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
|
1263 |
-
#: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:686
|
1264 |
-
#: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
|
1265 |
-
#: core/lib/wpbc_all_translations.php:206 inc/_bs/admin/page-email-payment.php:705
|
1266 |
-
#: inc/_ps/admin/page-email-edit.php:701
|
1267 |
-
msgid "Header / Footer"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
|
1271 |
-
#: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:693
|
1272 |
-
#: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
|
1273 |
-
#: core/lib/wpbc_all_translations.php:207 inc/_bs/admin/page-email-payment.php:712
|
1274 |
-
#: inc/_ps/admin/page-email-edit.php:708
|
1275 |
-
msgid "Email Styles"
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
#: core/admin/page-email-approved.php:725 core/admin/page-email-deleted.php:722
|
1279 |
-
#: core/admin/page-email-deny.php:722 core/admin/page-email-new-admin.php:705
|
1280 |
-
#: core/admin/page-email-new-visitor.php:701 core/admin/page-email-trash.php:727
|
1281 |
-
#: core/admin/page-form-free.php:1192 core/admin/page-form-timeslots.php:768
|
1282 |
-
#: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
|
1283 |
-
#: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:178
|
1284 |
-
#: core/lib/wpbc_all_translations.php:208 inc/_bl/admin/page-coupons.php:548
|
1285 |
-
#: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
|
1286 |
-
#: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
|
1287 |
-
#: inc/_ps/admin/page-email-edit.php:720
|
1288 |
-
msgid "Actions"
|
1289 |
-
msgstr ""
|
1290 |
-
|
1291 |
-
#: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
|
1292 |
-
#: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:709
|
1293 |
-
#: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
|
1294 |
-
#: core/lib/wpbc_all_translations.php:209 inc/_bs/admin/page-email-payment.php:728
|
1295 |
-
#: inc/_ps/admin/page-email-edit.php:724
|
1296 |
-
msgid "Send Test Email"
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
#: core/admin/page-email-approved.php:731 core/admin/page-email-approved.php:767
|
1300 |
-
#: core/admin/page-email-deleted.php:728 core/admin/page-email-deleted.php:764
|
1301 |
-
#: core/admin/page-email-deny.php:728 core/admin/page-email-deny.php:764
|
1302 |
-
#: core/admin/page-email-new-admin.php:711 core/admin/page-email-new-admin.php:747
|
1303 |
-
#: core/admin/page-email-new-visitor.php:707 core/admin/page-email-new-visitor.php:743
|
1304 |
-
#: core/admin/page-email-trash.php:733 core/admin/page-email-trash.php:769
|
1305 |
-
#: core/admin/page-form-free.php:146 core/admin/page-form-free.php:246
|
1306 |
-
#: core/admin/page-form-free.php:2241 core/admin/page-ics-export.php:236
|
1307 |
-
#: core/admin/page-ics-general.php:432 core/admin/page-ics-import.php:203
|
1308 |
-
#: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:148
|
1309 |
-
#: core/admin/page-settings.php:301 core/admin/wpbc-toolbars.php:1826
|
1310 |
-
#: core/lib/wpbc_all_translations.php:210 inc/_bl/admin/page-coupons.php:220
|
1311 |
-
#: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:458
|
1312 |
-
#: inc/_bl/admin/page-search.php:558 inc/_bm/admin/page-availability.php:1024
|
1313 |
-
#: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
|
1314 |
-
#: inc/_bm/admin/page-cost-deposit.php:362 inc/_bm/admin/page-cost-early-late-booking.php:544
|
1315 |
-
#: inc/_bm/admin/page-cost-rate.php:231 inc/_bm/admin/page-cost-valuation.php:257
|
1316 |
-
#: inc/_bm/admin/page-cost.php:227 inc/_bm/admin/page-seasons.php:205
|
1317 |
-
#: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
|
1318 |
-
#: inc/_bs/admin/page-email-payment.php:730 inc/_bs/admin/page-email-payment.php:766
|
1319 |
-
#: inc/_mu/admin/page-users.php:168 inc/_ps/admin/page-email-edit.php:726
|
1320 |
-
#: inc/_ps/admin/page-email-edit.php:762 inc/_ps/admin/page-resources.php:193
|
1321 |
-
#: inc/_ps/admin/page-settings-form.php:125 inc/_ps/admin/page-settings-form.php:187
|
1322 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:930
|
1323 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:489
|
1324 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:924 inc/gateways/ipay88/wpbc-gw-ipay88.php:864
|
1325 |
-
#: inc/gateways/page-gateways.php:705 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:402
|
1326 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:1124 inc/gateways/sage/wpbc-gw-sage.php:913
|
1327 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1234
|
1328 |
-
msgid "Save Changes"
|
1329 |
-
msgstr ""
|
1330 |
-
|
1331 |
-
#: core/admin/page-email-approved.php:749 core/admin/page-email-deleted.php:746
|
1332 |
-
#: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:729
|
1333 |
-
#: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
|
1334 |
-
#: core/admin/page-form-free.php:1191 core/admin/wpbc-dashboard.php:471
|
1335 |
-
#: core/lib/wpbc_all_translations.php:211 inc/_bs/admin/page-email-payment.php:748
|
1336 |
-
#: inc/_ps/admin/page-email-edit.php:744
|
1337 |
-
msgid "Type"
|
1338 |
-
msgstr ""
|
1339 |
-
|
1340 |
-
#: core/admin/page-email-approved.php:756 core/admin/page-email-deleted.php:753
|
1341 |
-
#: core/admin/page-email-deny.php:753 core/admin/page-email-new-admin.php:736
|
1342 |
-
#: core/admin/page-email-new-visitor.php:732 core/admin/page-email-trash.php:758
|
1343 |
-
#: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
|
1344 |
-
#: core/admin/page-settings.php:142 core/admin/page-settings.php:293
|
1345 |
-
#: core/admin/wpbc-toolbars.php:434 core/admin/wpbc-toolbars.php:440
|
1346 |
-
#: core/lib/wpbc_all_translations.php:212 inc/_bl/admin/page-search.php:508
|
1347 |
-
#: inc/_bl/admin/page-search.php:536 inc/_bm/admin/page-cost-advanced.php:155
|
1348 |
-
#: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
|
1349 |
-
#: inc/_ps/admin/page-settings-form.php:181
|
1350 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:452 inc/gateways/page-gateways.php:696
|
1351 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:393 inc/gateways/paypal/wpbc-gw-paypal.php:1098
|
1352 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:1115
|
1353 |
-
msgid "Help"
|
1354 |
-
msgstr ""
|
1355 |
-
|
1356 |
-
#: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
|
1357 |
-
#: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:826
|
1358 |
-
#: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
|
1359 |
-
#: core/lib/wpbc_all_translations.php:213 inc/_bs/admin/page-email-payment.php:837
|
1360 |
-
#: inc/_ps/admin/page-email-edit.php:833
|
1361 |
-
msgid "Email sent to "
|
1362 |
-
msgstr ""
|
1363 |
-
|
1364 |
-
#: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
|
1365 |
-
#: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:828
|
1366 |
-
#: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
|
1367 |
-
#: core/lib/wpbc_all_translations.php:214 core/wpbc-emails.php:449
|
1368 |
-
#: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
|
1369 |
-
msgid "Email was not sent. An error occurred."
|
1370 |
-
msgstr ""
|
1371 |
-
|
1372 |
-
#: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
|
1373 |
-
#: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:912
|
1374 |
-
#: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
|
1375 |
-
#: core/lib/wpbc_all_translations.php:215 inc/_bs/admin/page-email-payment.php:854
|
1376 |
-
#: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:951
|
1377 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
|
1378 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:945 inc/gateways/ipay88/wpbc-gw-ipay88.php:885
|
1379 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1145
|
1380 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:934 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1253
|
1381 |
-
msgid "Settings saved."
|
1382 |
-
msgstr ""
|
1383 |
-
|
1384 |
-
#: core/admin/page-email-approved.php:917 core/admin/page-email-approved.php:920
|
1385 |
-
#: core/admin/page-email-deleted.php:913 core/admin/page-email-deleted.php:916
|
1386 |
-
#: core/admin/page-email-deny.php:913 core/admin/page-email-deny.php:916
|
1387 |
-
#: core/admin/page-email-new-admin.php:974 core/admin/page-email-new-admin.php:977
|
1388 |
-
#: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
|
1389 |
-
#: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
|
1390 |
-
#: core/lib/wpbc_all_translations.php:216 inc/_bs/admin/page-email-payment.php:915
|
1391 |
-
#: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
|
1392 |
-
#: inc/_ps/admin/page-email-edit.php:914
|
1393 |
-
msgid "If empty then title defined as WordPress"
|
1394 |
-
msgstr ""
|
1395 |
-
|
1396 |
-
#: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
|
1397 |
-
#: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:994
|
1398 |
-
#: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
|
1399 |
-
#: core/lib/wpbc_all_translations.php:217 inc/_bs/admin/page-email-payment.php:935
|
1400 |
-
#: inc/_ps/admin/page-email-edit.php:931
|
1401 |
-
msgid ""
|
1402 |
-
"Email different from website DNS, its can be a reason of not delivery emails. Please use the "
|
1403 |
-
"email withing the same domain as your website!"
|
1404 |
-
msgstr ""
|
1405 |
-
|
1406 |
-
#: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
|
1407 |
-
#: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:218
|
1408 |
-
#: core/wpbc-activation.php:1017
|
1409 |
-
msgid "Your booking has been declined"
|
1410 |
-
msgstr ""
|
1411 |
-
|
1412 |
-
#: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
|
1413 |
-
#: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:219
|
1414 |
-
#: core/wpbc-activation.php:1018
|
1415 |
-
#, php-format
|
1416 |
-
msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
|
1417 |
-
msgstr ""
|
1418 |
-
|
1419 |
-
#: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:468
|
1420 |
-
#: core/lib/wpbc_all_translations.php:220 inc/_bl/admin/page-coupons.php:378
|
1421 |
-
#: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
|
1422 |
-
#: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
|
1423 |
-
#: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:557
|
1424 |
-
#: inc/_ps/admin/page-resources.php:318 inc/_ps/personal.php:185
|
1425 |
-
msgid "Deleted"
|
1426 |
-
msgstr ""
|
1427 |
-
|
1428 |
-
#: core/admin/page-email-deleted.php:560 core/lib/wpbc_all_translations.php:221
|
1429 |
-
msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
|
1430 |
-
msgstr ""
|
1431 |
-
|
1432 |
-
#: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:222
|
1433 |
-
msgid "Email is sent to Visitor after Deleting of booking."
|
1434 |
-
msgstr ""
|
1435 |
-
|
1436 |
-
#: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:223
|
1437 |
-
msgid ""
|
1438 |
-
"Customization of email template, which is sent to Visitor, when booking status is set to Pending"
|
1439 |
-
msgstr ""
|
1440 |
-
|
1441 |
-
#: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:224
|
1442 |
-
msgid "Email is sent to Visitor after booking set as Pending."
|
1443 |
-
msgstr ""
|
1444 |
-
|
1445 |
-
#: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
|
1446 |
-
#: core/admin/wpbc-class-listing.php:302 core/lib/wpbc_all_translations.php:225
|
1447 |
-
#: core/wpbc-activation.php:988 core/wpbc-activation.php:995
|
1448 |
-
msgid "New booking"
|
1449 |
-
msgstr ""
|
1450 |
-
|
1451 |
-
#: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:226
|
1452 |
-
#: core/wpbc-activation.php:989
|
1453 |
-
#, php-format
|
1454 |
-
msgid ""
|
1455 |
-
"You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
|
1456 |
-
"booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
|
1457 |
-
msgstr ""
|
1458 |
-
|
1459 |
-
#: core/admin/page-email-new-admin.php:512 core/lib/wpbc_all_translations.php:227
|
1460 |
-
#: core/wpbc-functions.php:1990
|
1461 |
-
msgid "Emails"
|
1462 |
-
msgstr ""
|
1463 |
-
|
1464 |
-
#: core/admin/page-email-new-admin.php:537 core/admin/page-email-new-visitor.php:537
|
1465 |
-
#: core/lib/wpbc_all_translations.php:228
|
1466 |
-
msgid "New"
|
1467 |
-
msgstr ""
|
1468 |
-
|
1469 |
-
#: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:229
|
1470 |
-
msgid "admin"
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:230
|
1474 |
-
msgid "Customization of email template, which is sending to Admin after new booking"
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#: core/admin/page-email-new-admin.php:679 core/lib/wpbc_all_translations.php:231
|
1478 |
-
msgid "Email is sending to Admin after creation of booking."
|
1479 |
-
msgstr ""
|
1480 |
-
|
1481 |
-
#: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:232
|
1482 |
-
#: core/wpbc-activation.php:997
|
1483 |
-
#, php-format
|
1484 |
-
msgid ""
|
1485 |
-
"Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
|
1486 |
-
"edit this booking at this page: %s Thank you, %s"
|
1487 |
-
msgstr ""
|
1488 |
-
|
1489 |
-
#: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:233
|
1490 |
-
#: core/wpbc-activation.php:999
|
1491 |
-
#, php-format
|
1492 |
-
msgid ""
|
1493 |
-
"Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
|
1494 |
-
"%s"
|
1495 |
-
msgstr ""
|
1496 |
-
|
1497 |
-
#: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:234
|
1498 |
-
msgid "visitor"
|
1499 |
-
msgstr ""
|
1500 |
-
|
1501 |
-
#: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:235
|
1502 |
-
msgid "Customization of email template, which is sending to Visitor after new booking"
|
1503 |
-
msgstr ""
|
1504 |
-
|
1505 |
-
#: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:236
|
1506 |
-
msgid "Email is sending to Visitor after creation of booking."
|
1507 |
-
msgstr ""
|
1508 |
-
|
1509 |
-
#: core/admin/page-email-trash.php:563 core/admin/wpbc-toolbars.php:994
|
1510 |
-
#: core/lib/wpbc_all_translations.php:237 core/timeline/v2/wpbc-class-timeline_v2.php:2662
|
1511 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2772
|
1512 |
-
msgid "Trash / Reject"
|
1513 |
-
msgstr ""
|
1514 |
-
|
1515 |
-
#: core/admin/page-email-trash.php:565 core/lib/wpbc_all_translations.php:238
|
1516 |
-
msgid "Customization of email template, which is sent to Visitor after rejecting of booking"
|
1517 |
-
msgstr ""
|
1518 |
-
|
1519 |
-
#: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:239
|
1520 |
-
msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: core/admin/page-form-free.php:61 core/admin/page-settings.php:104
|
1524 |
-
#: core/admin/page-settings.php:228 core/lib/wpbc_all_translations.php:240
|
1525 |
-
#: core/wpbc-functions.php:1982 inc/_ps/admin/page-settings-form.php:46
|
1526 |
-
msgid "Form"
|
1527 |
-
msgstr ""
|
1528 |
-
|
1529 |
-
#: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:241
|
1530 |
-
#: inc/_ps/admin/page-settings-form.php:47
|
1531 |
-
msgid "Fields Settings"
|
1532 |
-
msgstr ""
|
1533 |
-
|
1534 |
-
#: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:242
|
1535 |
-
#: inc/_ps/admin/page-settings-form.php:48
|
1536 |
-
msgid "Customizaton of Form Fields"
|
1537 |
-
msgstr ""
|
1538 |
-
|
1539 |
-
#: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
|
1540 |
-
#: core/lib/wpbc_all_translations.php:243
|
1541 |
-
msgid "Check Premium Features"
|
1542 |
-
msgstr ""
|
1543 |
-
|
1544 |
-
#: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:244
|
1545 |
-
msgid "Upgrade to higher versions"
|
1546 |
-
msgstr ""
|
1547 |
-
|
1548 |
-
#: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:245
|
1549 |
-
msgid "Form Field Configuration"
|
1550 |
-
msgstr ""
|
1551 |
-
|
1552 |
-
#: core/admin/page-form-free.php:190 core/lib/wpbc_all_translations.php:246
|
1553 |
-
#, php-format
|
1554 |
-
msgid ""
|
1555 |
-
"You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in "
|
1556 |
-
"booking form (below) or by adding this field from (above) toolbar."
|
1557 |
-
msgstr ""
|
1558 |
-
|
1559 |
-
#: core/admin/page-form-free.php:226 core/lib/wpbc_all_translations.php:247
|
1560 |
-
msgid "Title of send button"
|
1561 |
-
msgstr ""
|
1562 |
-
|
1563 |
-
#: core/admin/page-form-free.php:230 core/lib/wpbc_all_translations.php:248
|
1564 |
-
#: core/wpbc-activation.php:1036 inc/_ps/personal.php:2130 inc/_ps/wpbc-form-templates.php:42
|
1565 |
-
#: inc/_ps/wpbc-form-templates.php:61 inc/_ps/wpbc-form-templates.php:81
|
1566 |
-
#: inc/_ps/wpbc-form-templates.php:104 inc/_ps/wpbc-form-templates.php:127
|
1567 |
-
msgid "Send"
|
1568 |
-
msgstr ""
|
1569 |
-
|
1570 |
-
#: core/admin/page-form-free.php:231 core/lib/wpbc_all_translations.php:249
|
1571 |
-
#, php-format
|
1572 |
-
msgid "Enter %stitle of submit button%s in the booking form"
|
1573 |
-
msgstr ""
|
1574 |
-
|
1575 |
-
#: core/admin/page-form-free.php:895 core/lib/wpbc_all_translations.php:250
|
1576 |
-
msgid "Reset to default form"
|
1577 |
-
msgstr ""
|
1578 |
-
|
1579 |
-
#: core/admin/page-form-free.php:899 core/admin/page-form-free.php:1509
|
1580 |
-
#: core/admin/wpbc-class-listing.php:396 core/admin/wpbc-class-listing.php:402
|
1581 |
-
#: core/admin/wpbc-toolbars.php:997 core/admin/wpbc-toolbars.php:1014
|
1582 |
-
#: core/admin/wpbc-toolbars.php:1078 core/lib/wpbc_all_translations.php:251
|
1583 |
-
#: inc/_bl/admin/page-coupons.php:236 inc/_bl/admin/page-coupons.php:808
|
1584 |
-
#: inc/_bm/admin/page-availability.php:274 inc/_bm/admin/page-cost-valuation.php:354
|
1585 |
-
#: inc/_bm/admin/page-cost.php:529 inc/_bm/admin/page-seasons.php:221
|
1586 |
-
#: inc/_bm/admin/page-seasons.php:602 inc/_ps/admin/page-resources.php:222
|
1587 |
-
#: inc/_ps/personal.php:2164
|
1588 |
-
msgid "Do you really want to do this ?"
|
1589 |
-
msgstr ""
|
1590 |
-
|
1591 |
-
#: core/admin/page-form-free.php:927 core/admin/page-form-free.php:2227
|
1592 |
-
#: core/lib/wpbc_all_translations.php:252
|
1593 |
-
msgid "Add New Field"
|
1594 |
-
msgstr ""
|
1595 |
-
|
1596 |
-
#: core/admin/page-form-free.php:944 core/admin/page-form-free.php:979
|
1597 |
-
#: core/lib/wpbc_all_translations.php:253 inc/_ps/admin/page-settings-form.php:313
|
1598 |
-
msgid "Select"
|
1599 |
-
msgstr ""
|
1600 |
-
|
1601 |
-
#: core/admin/page-form-free.php:944 core/lib/wpbc_all_translations.php:254
|
1602 |
-
msgid "Form Field"
|
1603 |
-
msgstr ""
|
1604 |
-
|
1605 |
-
#: core/admin/page-form-free.php:966 core/lib/wpbc_all_translations.php:255
|
1606 |
-
#: inc/_ps/form/class-wpbc-form-help.php:141
|
1607 |
-
msgid "Standard Fields"
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#: core/admin/page-form-free.php:969 core/lib/wpbc_all_translations.php:256
|
1611 |
-
#: inc/_ps/form/class-wpbc-form-help.php:147
|
1612 |
-
msgid "Text"
|
1613 |
-
msgstr ""
|
1614 |
-
|
1615 |
-
#: core/admin/page-form-free.php:989 core/lib/wpbc_all_translations.php:257
|
1616 |
-
#: inc/_ps/form/class-wpbc-form-help.php:156
|
1617 |
-
msgid "Textarea"
|
1618 |
-
msgstr ""
|
1619 |
-
|
1620 |
-
#: core/admin/page-form-free.php:999 core/lib/wpbc_all_translations.php:258
|
1621 |
-
msgid "Checkbox"
|
1622 |
-
msgstr ""
|
1623 |
-
|
1624 |
-
#: core/admin/page-form-free.php:1014 core/lib/wpbc_all_translations.php:259
|
1625 |
-
#: inc/_ps/form/class-wpbc-form-help.php:486
|
1626 |
-
msgid "Advanced Fields"
|
1627 |
-
msgstr ""
|
1628 |
-
|
1629 |
-
#: core/admin/page-form-free.php:1018 core/admin/page-form-free.php:2041
|
1630 |
-
#: core/admin/page-form-free.php:2042 core/admin/page-form-timeslots.php:106
|
1631 |
-
#: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
|
1632 |
-
#: core/admin/page-form-timeslots.php:816 core/admin/page-settings.php:94
|
1633 |
-
#: core/admin/page-settings.php:215 core/lib/wpbc_all_translations.php:260
|
1634 |
-
msgid "Time Slots"
|
1635 |
-
msgstr ""
|
1636 |
-
|
1637 |
-
#: core/admin/page-form-free.php:1076 core/lib/wpbc_all_translations.php:261
|
1638 |
-
msgid "View"
|
1639 |
-
msgstr ""
|
1640 |
-
|
1641 |
-
#: core/admin/page-form-free.php:1095 core/lib/wpbc_all_translations.php:262
|
1642 |
-
msgid "Standard Forms"
|
1643 |
-
msgstr ""
|
1644 |
-
|
1645 |
-
#: core/admin/page-form-free.php:1098 core/lib/wpbc_all_translations.php:263
|
1646 |
-
msgid "Form under calendar"
|
1647 |
-
msgstr ""
|
1648 |
-
|
1649 |
-
#: core/admin/page-form-free.php:1108 core/lib/wpbc_all_translations.php:264
|
1650 |
-
msgid "Form at right side of calendar"
|
1651 |
-
msgstr ""
|
1652 |
-
|
1653 |
-
#: core/admin/page-form-free.php:1118 core/lib/wpbc_all_translations.php:265
|
1654 |
-
msgid "Form and calendar are centered"
|
1655 |
-
msgstr ""
|
1656 |
-
|
1657 |
-
#: core/admin/page-form-free.php:1128 core/lib/wpbc_all_translations.php:266
|
1658 |
-
msgid "Form for dark background"
|
1659 |
-
msgstr ""
|
1660 |
-
|
1661 |
-
#: core/admin/page-form-free.php:1188 core/admin/page-form-free.php:2100
|
1662 |
-
#: core/lib/wpbc_all_translations.php:267
|
1663 |
-
msgid "Active"
|
1664 |
-
msgstr ""
|
1665 |
-
|
1666 |
-
#: core/admin/page-form-free.php:1189 core/lib/wpbc_all_translations.php:268
|
1667 |
-
msgid "Field Label"
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
-
#: core/admin/page-form-free.php:1191 core/admin/page-form-free.php:2166
|
1671 |
-
#: core/lib/wpbc_all_translations.php:269 inc/_ps/form/class-wpbc-field-help-text.php:177
|
1672 |
-
msgid "Name"
|
1673 |
-
msgstr ""
|
1674 |
-
|
1675 |
-
#: core/admin/page-form-free.php:1268 core/admin/page-form-free.php:1709
|
1676 |
-
#: core/admin/page-form-free.php:1770 core/lib/wpbc_all_translations.php:270
|
1677 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2642
|
1678 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2700 inc/_bl/admin/page-coupons.php:215
|
1679 |
-
#: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
|
1680 |
-
#: inc/_bm/admin/page-cost.php:218 inc/_bm/admin/page-seasons.php:200
|
1681 |
-
#: inc/_bm/admin/page-seasons.php:598 inc/_bm/admin/page-seasons.php:815
|
1682 |
-
#: inc/_bm/admin/page-seasons.php:821 inc/_ps/admin/page-resources.php:188
|
1683 |
-
msgid "Edit"
|
1684 |
-
msgstr ""
|
1685 |
-
|
1686 |
-
#: core/admin/page-form-free.php:1269 core/admin/page-form-free.php:1710
|
1687 |
-
#: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:271
|
1688 |
-
msgid "Remove"
|
1689 |
-
msgstr ""
|
1690 |
-
|
1691 |
-
#: core/admin/page-form-free.php:1944 core/lib/wpbc_all_translations.php:272
|
1692 |
-
#: inc/_ps/form/class-wpbc-form-help.php:88
|
1693 |
-
msgid "Shortcodes"
|
1694 |
-
msgstr ""
|
1695 |
-
|
1696 |
-
#: core/admin/page-form-free.php:1945 core/lib/wpbc_all_translations.php:273
|
1697 |
-
#: inc/_ps/form/class-wpbc-form-help.php:89
|
1698 |
-
msgid ""
|
1699 |
-
"You can generate the form fields for your form (at the left side) by selection specific field in "
|
1700 |
-
"the above selectbox."
|
1701 |
-
msgstr ""
|
1702 |
-
|
1703 |
-
#: core/admin/page-form-free.php:1946 core/lib/wpbc_all_translations.php:274
|
1704 |
-
#: inc/_ps/form/class-wpbc-form-help.php:90
|
1705 |
-
#, php-format
|
1706 |
-
msgid "Please read more about the booking form fields configuration %shere%s."
|
1707 |
-
msgstr ""
|
1708 |
-
|
1709 |
-
#: core/admin/page-form-free.php:1948 core/lib/wpbc_all_translations.php:275
|
1710 |
-
#: inc/_ps/form/class-wpbc-form-help.php:99
|
1711 |
-
msgid "Default Form Templates"
|
1712 |
-
msgstr ""
|
1713 |
-
|
1714 |
-
#: core/admin/page-form-free.php:1949 core/lib/wpbc_all_translations.php:276
|
1715 |
-
#: inc/_ps/form/class-wpbc-form-help.php:100
|
1716 |
-
#, php-format
|
1717 |
-
msgid ""
|
1718 |
-
"You can reset your active form template by selecting default %sform template%s at the top "
|
1719 |
-
"toolbar. Please select the form template and click on %sReset%s button for resetting only active "
|
1720 |
-
"form (Booking Form or Content of Booking Fields form). Click on %sBoth%s button if you want to "
|
1721 |
-
"reset both forms: Booking Form and Content of Booking Fields form."
|
1722 |
-
msgstr ""
|
1723 |
-
|
1724 |
-
#: core/admin/page-form-free.php:2079 core/lib/wpbc_all_translations.php:277
|
1725 |
-
#: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
|
1726 |
-
#: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
|
1727 |
-
msgid "First Name"
|
1728 |
-
msgstr ""
|
1729 |
-
|
1730 |
-
#: core/admin/page-form-free.php:2101 core/lib/wpbc_all_translations.php:278
|
1731 |
-
msgid "Show / hide field in booking form"
|
1732 |
-
msgstr ""
|
1733 |
-
|
1734 |
-
#: core/admin/page-form-free.php:2122 core/lib/wpbc_all_translations.php:279
|
1735 |
-
msgid "Set field as required"
|
1736 |
-
msgstr ""
|
1737 |
-
|
1738 |
-
#: core/admin/page-form-free.php:2142 core/admin/page-form-timeslots.php:784
|
1739 |
-
#: core/admin/wpbc-toolbar-tiny.php:434 core/admin/wpbc-toolbar-tiny.php:1225
|
1740 |
-
#: core/lib/wpbc_all_translations.php:280 inc/_ps/form/class-wpbc-field-help-button.php:73
|
1741 |
-
#: js/wpbc-gutenberg.js:889
|
1742 |
-
msgid "Label"
|
1743 |
-
msgstr ""
|
1744 |
-
|
1745 |
-
#: core/admin/page-form-free.php:2171 core/lib/wpbc_all_translations.php:281
|
1746 |
-
#, php-format
|
1747 |
-
msgid "Type only %sunique field name%s, that is not using in form"
|
1748 |
-
msgstr ""
|
1749 |
-
|
1750 |
-
#: core/admin/page-form-free.php:2192 core/lib/wpbc_all_translations.php:282
|
1751 |
-
msgid "Values"
|
1752 |
-
msgstr ""
|
1753 |
-
|
1754 |
-
#: core/admin/page-form-free.php:2197 core/lib/wpbc_all_translations.php:283
|
1755 |
-
msgid "Enter dropdown options. One option per line."
|
1756 |
-
msgstr ""
|
1757 |
-
|
1758 |
-
#: core/admin/page-form-free.php:2232 core/admin/wpbc-toolbar-tiny.php:304
|
1759 |
-
#: core/admin/wpbc-toolbars.php:710 core/admin/wpbc-toolbars.php:915
|
1760 |
-
#: core/admin/wpbc-toolbars.php:1536 core/lib/wpbc_all_translations.php:284
|
1761 |
-
#: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:105 inc/_bs/s-toolbar.php:209
|
1762 |
-
#: inc/_ps/p-toolbar.php:541 inc/_ps/p-toolbar.php:586
|
1763 |
-
msgid "Close"
|
1764 |
-
msgstr ""
|
1765 |
-
|
1766 |
-
#: core/admin/page-form-free.php:2246 core/lib/wpbc_all_translations.php:285
|
1767 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2701 inc/_bm/m-toolbar.php:377
|
1768 |
-
#: inc/_bm/m-toolbar.php:378 inc/_ps/p-toolbar.php:420 inc/_ps/p-toolbar.php:472
|
1769 |
-
#: inc/_ps/p-toolbar.php:505
|
1770 |
-
msgid "Cancel"
|
1771 |
-
msgstr ""
|
1772 |
-
|
1773 |
-
#: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:286
|
1774 |
-
msgid "in 24 hour format"
|
1775 |
-
msgstr ""
|
1776 |
-
|
1777 |
-
#: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:287
|
1778 |
-
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
|
1779 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:119
|
1780 |
-
msgid "One option per line"
|
1781 |
-
msgstr ""
|
1782 |
-
|
1783 |
-
#: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:288
|
1784 |
-
msgid "Titles"
|
1785 |
-
msgstr ""
|
1786 |
-
|
1787 |
-
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:289
|
1788 |
-
#: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
|
1789 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:137
|
1790 |
-
msgid "One title per line"
|
1791 |
-
msgstr ""
|
1792 |
-
|
1793 |
-
#: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:290
|
1794 |
-
msgid "Visible options in selectbox"
|
1795 |
-
msgstr ""
|
1796 |
-
|
1797 |
-
#: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:291
|
1798 |
-
msgid "Reset times by"
|
1799 |
-
msgstr ""
|
1800 |
-
|
1801 |
-
#: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
|
1802 |
-
#: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
|
1803 |
-
#: core/admin/wpbc-toolbar-tiny.php:640 core/lib/wpbc_all_translations.php:292
|
1804 |
-
#: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
|
1805 |
-
#: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
|
1806 |
-
msgid "hours"
|
1807 |
-
msgstr ""
|
1808 |
-
|
1809 |
-
#: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
|
1810 |
-
#: core/lib/wpbc_all_translations.php:293 inc/_bm/admin/api-settings-m.php:98
|
1811 |
-
#: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
|
1812 |
-
#: inc/_bs/admin/api-settings-s.php:901
|
1813 |
-
msgid "hour"
|
1814 |
-
msgstr ""
|
1815 |
-
|
1816 |
-
#: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
|
1817 |
-
#: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
|
1818 |
-
#: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:294
|
1819 |
-
#: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
|
1820 |
-
#: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
|
1821 |
-
#: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
|
1822 |
-
#: inc/_bs/admin/api-settings-s.php:527 inc/_ps/admin/page-settings-form.php:419
|
1823 |
-
#: inc/_ps/admin/page-settings-form.php:429
|
1824 |
-
msgid "minutes"
|
1825 |
-
msgstr ""
|
1826 |
-
|
1827 |
-
#: core/admin/page-form-timeslots.php:422 core/admin/page-form-timeslots.php:432
|
1828 |
-
#: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
|
1829 |
-
#: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
|
1830 |
-
#: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
|
1831 |
-
#: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:295
|
1832 |
-
#: core/wpbc-js.php:131 inc/_ps/personal.php:278
|
1833 |
-
msgid "Processing"
|
1834 |
-
msgstr ""
|
1835 |
-
|
1836 |
-
#: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:296
|
1837 |
-
msgid "+ Add Time Slot"
|
1838 |
-
msgstr ""
|
1839 |
-
|
1840 |
-
#: core/admin/page-ics-export.php:42 core/admin/page-ics-export.php:43
|
1841 |
-
#: core/admin/page-ics-general.php:278 core/admin/page-ics-general.php:279
|
1842 |
-
#: core/admin/page-ics-general.php:298 core/admin/page-ics-general.php:299
|
1843 |
-
#: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
|
1844 |
-
#: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
|
1845 |
-
#: core/lib/wpbc_all_translations.php:297 core/wpbc-functions.php:2007
|
1846 |
-
msgid "Sync"
|
1847 |
-
msgstr ""
|
1848 |
-
|
1849 |
-
#: core/admin/page-ics-export.php:44 core/admin/page-ics-general.php:280
|
1850 |
-
#: core/admin/page-ics-general.php:413 core/admin/page-ics-general.php:422
|
1851 |
-
#: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
|
1852 |
-
#: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
|
1853 |
-
#: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:469
|
1854 |
-
#: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:298
|
1855 |
-
#: core/sync/wpbc-gcal.php:465
|
1856 |
-
msgid "Import"
|
1857 |
-
msgstr ""
|
1858 |
-
|
1859 |
-
#: core/admin/page-ics-export.php:44 core/admin/page-ics-export.php:61
|
1860 |
-
#: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
|
1861 |
-
#: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:280
|
1862 |
-
#: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
|
1863 |
-
#: core/lib/wpbc_all_translations.php:299
|
1864 |
-
msgid "Export"
|
1865 |
-
msgstr ""
|
1866 |
-
|
1867 |
-
#: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
|
1868 |
-
#: core/lib/wpbc_all_translations.php:300
|
1869 |
-
msgid "feed"
|
1870 |
-
msgstr ""
|
1871 |
-
|
1872 |
-
#: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
|
1873 |
-
#: core/lib/wpbc_all_translations.php:301 core/sync/wpbc-gcal.php:398
|
1874 |
-
#: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:767
|
1875 |
-
msgid "Warning!"
|
1876 |
-
msgstr ""
|
1877 |
-
|
1878 |
-
#: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:302
|
1879 |
-
#, php-format
|
1880 |
-
msgid "This feature require %s"
|
1881 |
-
msgstr ""
|
1882 |
-
|
1883 |
-
#: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
|
1884 |
-
#: core/lib/wpbc_all_translations.php:303 inc/_bl/admin/api-settings-l.php:162
|
1885 |
-
#: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
|
1886 |
-
#: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
|
1887 |
-
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
|
1888 |
-
#: inc/_ps/form/class-wpbc-form-help.php:230 inc/_ps/form/class-wpbc-form-help.php:278
|
1889 |
-
#: inc/_ps/form/class-wpbc-form-help.php:291 inc/_ps/form/class-wpbc-form-help.php:303
|
1890 |
-
#: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:341
|
1891 |
-
#: inc/_ps/form/class-wpbc-form-help.php:343 inc/_ps/form/class-wpbc-form-help.php:380
|
1892 |
-
#: inc/_ps/form/class-wpbc-form-help.php:382 inc/_ps/form/class-wpbc-form-help.php:497
|
1893 |
-
#: inc/_ps/form/class-wpbc-form-help.php:515 inc/_ps/form/class-wpbc-form-help.php:645
|
1894 |
-
#: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:460
|
1895 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:892
|
1896 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:831 inc/gateways/sage/wpbc-gw-sage.php:882
|
1897 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:810
|
1898 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1196
|
1899 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1203 js/wpbc-gutenberg.js:1176
|
1900 |
-
#: js/wpbc-gutenberg.js:1262
|
1901 |
-
msgid "Important!"
|
1902 |
-
msgstr ""
|
1903 |
-
|
1904 |
-
#: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
|
1905 |
-
#: core/lib/wpbc_all_translations.php:304
|
1906 |
-
#, php-format
|
1907 |
-
msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
|
1908 |
-
msgstr ""
|
1909 |
-
|
1910 |
-
#: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
|
1911 |
-
#: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:305
|
1912 |
-
msgid "How it works"
|
1913 |
-
msgstr ""
|
1914 |
-
|
1915 |
-
#: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
|
1916 |
-
#: core/lib/wpbc_all_translations.php:306
|
1917 |
-
msgid ".ics feed URL"
|
1918 |
-
msgstr ""
|
1919 |
-
|
1920 |
-
#: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:307
|
1921 |
-
#: inc/_ps/admin/br-table-export-feeds.php:69
|
1922 |
-
msgid "Open in new window"
|
1923 |
-
msgstr ""
|
1924 |
-
|
1925 |
-
#: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:308
|
1926 |
-
msgid "Please enter URL for generating .ics feed"
|
1927 |
-
msgstr ""
|
1928 |
-
|
1929 |
-
#: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:309
|
1930 |
-
msgid "This .ics feed of bookings starting from today for 1 year"
|
1931 |
-
msgstr ""
|
1932 |
-
|
1933 |
-
#: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:881
|
1934 |
-
#: core/admin/wpbc-toolbar-tiny.php:1096 core/admin/wpbc-toolbar-tiny.php:1177
|
1935 |
-
#: core/lib/wpbc_all_translations.php:310 inc/_bm/admin/api-settings-m.php:60
|
1936 |
-
#: inc/_ps/wpbc-booking-select-widget.php:188
|
1937 |
-
msgid "None"
|
1938 |
-
msgstr ""
|
1939 |
-
|
1940 |
-
#: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:311
|
1941 |
-
msgid "Event Title"
|
1942 |
-
msgstr ""
|
1943 |
-
|
1944 |
-
#: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
|
1945 |
-
#: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:312
|
1946 |
-
#, php-format
|
1947 |
-
msgid "Select field for assigning to %sevent property%s"
|
1948 |
-
msgstr ""
|
1949 |
-
|
1950 |
-
#: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:313
|
1951 |
-
msgid "Event Description (optional field)"
|
1952 |
-
msgstr ""
|
1953 |
-
|
1954 |
-
#: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:314
|
1955 |
-
msgid "Location"
|
1956 |
-
msgstr ""
|
1957 |
-
|
1958 |
-
#: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:206
|
1959 |
-
#: core/lib/wpbc_all_translations.php:315 core/sync/wpbc-gcal.php:314
|
1960 |
-
#: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:628 inc/_ps/admin/activation-p.php:45
|
1961 |
-
msgid "Default"
|
1962 |
-
msgstr ""
|
1963 |
-
|
1964 |
-
#: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:316
|
1965 |
-
#: core/sync/wpbc-gcal.php:309
|
1966 |
-
msgid "Timezone"
|
1967 |
-
msgstr ""
|
1968 |
-
|
1969 |
-
#: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:317
|
1970 |
-
#: core/sync/wpbc-gcal.php:343
|
1971 |
-
msgid "Select a city in your required timezone, if you are having problems with dates and times."
|
1972 |
-
msgstr ""
|
1973 |
-
|
1974 |
-
#: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:318
|
1975 |
-
#: inc/_bs/admin/api-settings-s.php:314
|
1976 |
-
msgid "Use check in/out time"
|
1977 |
-
msgstr ""
|
1978 |
-
|
1979 |
-
#: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:319
|
1980 |
-
msgid "Use check in/out time of plugin, during import .ics feeds"
|
1981 |
-
msgstr ""
|
1982 |
-
|
1983 |
-
#: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:320
|
1984 |
-
msgid "Append check out day"
|
1985 |
-
msgstr ""
|
1986 |
-
|
1987 |
-
#: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:321
|
1988 |
-
msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
|
1989 |
-
msgstr ""
|
1990 |
-
|
1991 |
-
#: core/admin/page-ics-general.php:188 core/lib/wpbc_all_translations.php:322
|
1992 |
-
msgid "Export only approved bookings"
|
1993 |
-
msgstr ""
|
1994 |
-
|
1995 |
-
#: core/admin/page-ics-general.php:189 core/lib/wpbc_all_translations.php:323
|
1996 |
-
msgid "Enable of export only approved bookings in .ics feeds"
|
1997 |
-
msgstr ""
|
1998 |
-
|
1999 |
-
#: core/admin/page-ics-general.php:198 core/lib/wpbc_all_translations.php:324
|
2000 |
-
msgid "Export bookings type"
|
2001 |
-
msgstr ""
|
2002 |
-
|
2003 |
-
#: core/admin/page-ics-general.php:199 core/lib/wpbc_all_translations.php:325
|
2004 |
-
msgid "Select which type of bookings to export"
|
2005 |
-
msgstr ""
|
2006 |
-
|
2007 |
-
#: core/admin/page-ics-general.php:203 core/admin/wpbc-toolbar-tiny.php:435
|
2008 |
-
#: core/admin/wpbc-toolbar-tiny.php:444 core/admin/wpbc-toolbars.php:785
|
2009 |
-
#: core/lib/wpbc_all_translations.php:326
|
2010 |
-
msgid "All bookings"
|
2011 |
-
msgstr ""
|
2012 |
-
|
2013 |
-
#: core/admin/page-ics-general.php:204 core/lib/wpbc_all_translations.php:327
|
2014 |
-
msgid "Bookings created in Booking Calendar"
|
2015 |
-
msgstr ""
|
2016 |
-
|
2017 |
-
#: core/admin/page-ics-general.php:205 core/lib/wpbc_all_translations.php:328
|
2018 |
-
msgid "Imported bookings"
|
2019 |
-
msgstr ""
|
2020 |
-
|
2021 |
-
#: core/admin/page-ics-general.php:217 core/lib/wpbc_all_translations.php:329
|
2022 |
-
msgid "Force import"
|
2023 |
-
msgstr ""
|
2024 |
-
|
2025 |
-
#: core/admin/page-ics-general.php:218 core/lib/wpbc_all_translations.php:330
|
2026 |
-
msgid "Import bookings without checking, if such bookings already have been imported."
|
2027 |
-
msgstr ""
|
2028 |
-
|
2029 |
-
#: core/admin/page-ics-general.php:226 core/lib/wpbc_all_translations.php:331
|
2030 |
-
msgid "Trash all imported bookings before new import"
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
-
#: core/admin/page-ics-general.php:227 core/lib/wpbc_all_translations.php:332
|
2034 |
-
msgid ""
|
2035 |
-
"Move all previously imported bookings to trash before new import bookings. Its can resolve "
|
2036 |
-
"issue of updating deleted and edited events in external sources. Its work only, if you are using "
|
2037 |
-
"one source (.ics feed) for importing into specific booking resource!"
|
2038 |
-
msgstr ""
|
2039 |
-
|
2040 |
-
#: core/admin/page-ics-general.php:297 core/admin/page-settings.php:74
|
2041 |
-
#: core/lib/wpbc_all_translations.php:333 inc/gateways/page-gateways.php:568
|
2042 |
-
msgid "General"
|
2043 |
-
msgstr ""
|
2044 |
-
|
2045 |
-
#: core/admin/page-ics-general.php:298 core/admin/page-ics-general.php:299
|
2046 |
-
#: core/admin/page-ics-general.php:406 core/admin/page-import-gcal.php:485
|
2047 |
-
#: core/admin/page-settings.php:75 core/admin/page-settings.php:76
|
2048 |
-
#: core/lib/wpbc_all_translations.php:334 core/wpbc.php:188
|
2049 |
-
msgid "General Settings"
|
2050 |
-
msgstr ""
|
2051 |
-
|
2052 |
-
#: core/admin/page-ics-general.php:413 core/lib/wpbc_all_translations.php:335
|
2053 |
-
msgid "Assign events fields to specific booking form field"
|
2054 |
-
msgstr ""
|
2055 |
-
|
2056 |
-
#: core/admin/page-ics-general.php:422 core/admin/page-settings.php:127
|
2057 |
-
#: core/admin/page-settings.php:263 core/lib/wpbc_all_translations.php:336
|
2058 |
-
#: inc/_bl/admin/page-search.php:552 inc/_bl/admin/page-search.php:748
|
2059 |
-
#: inc/_bl/admin/page-search.php:793 inc/_bl/wpbc-search-availability.php:167
|
2060 |
-
#: inc/_bl/wpbc-search-availability.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:921
|
2061 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:915 inc/gateways/ipay88/wpbc-gw-ipay88.php:855
|
2062 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:1091 inc/gateways/sage/wpbc-gw-sage.php:904
|
2063 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1225
|
2064 |
-
msgid "Advanced"
|
2065 |
-
msgstr ""
|
2066 |
-
|
2067 |
-
#: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:337
|
2068 |
-
msgid "feeds"
|
2069 |
-
msgstr ""
|
2070 |
-
|
2071 |
-
#: core/admin/page-ics-import.php:438 core/admin/wpbc-sql.php:592
|
2072 |
-
#: core/admin/wpbc-toolbar-tiny.php:337 core/lib/wpbc_all_translations.php:338
|
2073 |
-
#: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:998 inc/_ps/p-toolbar.php:1029
|
2074 |
-
msgid "parent resource"
|
2075 |
-
msgstr ""
|
2076 |
-
|
2077 |
-
#: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:339
|
2078 |
-
msgid "Enter URL to .ics feed"
|
2079 |
-
msgstr ""
|
2080 |
-
|
2081 |
-
#: core/admin/page-ics-import.php:465 core/lib/wpbc_all_translations.php:340
|
2082 |
-
msgid "Choose file"
|
2083 |
-
msgstr ""
|
2084 |
-
|
2085 |
-
#: core/admin/page-ics-import.php:466 core/lib/wpbc_all_translations.php:341
|
2086 |
-
msgid "Insert file URL"
|
2087 |
-
msgstr ""
|
2088 |
-
|
2089 |
-
#: core/admin/page-ics-import.php:467 core/lib/wpbc_all_translations.php:342
|
2090 |
-
msgid "Upload / Select "
|
2091 |
-
msgstr ""
|
2092 |
-
|
2093 |
-
#: core/admin/page-ics-import.php:504 core/lib/wpbc_all_translations.php:343
|
2094 |
-
msgid "What does .ics feeds import/export mean?"
|
2095 |
-
msgstr ""
|
2096 |
-
|
2097 |
-
#: core/admin/page-ics-import.php:512 core/lib/wpbc_all_translations.php:344
|
2098 |
-
#, php-format
|
2099 |
-
msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
|
2100 |
-
msgstr ""
|
2101 |
-
|
2102 |
-
#: core/admin/page-ics-import.php:520 core/lib/wpbc_all_translations.php:345
|
2103 |
-
msgid "and any other calendar that uses .ics format"
|
2104 |
-
msgstr ""
|
2105 |
-
|
2106 |
-
#: core/admin/page-ics-import.php:534 core/class/wpbc-class-welcome.php:1059
|
2107 |
-
#: core/lib/wpbc_all_translations.php:346
|
2108 |
-
#, php-format
|
2109 |
-
msgid ""
|
2110 |
-
".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
|
2111 |
-
"between different sources %s Using a common calendar format (.ics), you can keep all your "
|
2112 |
-
"calendars updated and synchronized."
|
2113 |
-
msgstr ""
|
2114 |
-
|
2115 |
-
#: core/admin/page-ics-import.php:555 core/lib/wpbc_all_translations.php:347
|
2116 |
-
msgid "Is it automatic process?"
|
2117 |
-
msgstr ""
|
2118 |
-
|
2119 |
-
#: core/admin/page-ics-import.php:565 core/lib/wpbc_all_translations.php:348
|
2120 |
-
msgid ""
|
2121 |
-
"By default .ics import is not automatic process. You need to set up CRON script on your server "
|
2122 |
-
"to periodically access front-end page(s) with import .ics feeds shortcodes."
|
2123 |
-
msgstr ""
|
2124 |
-
|
2125 |
-
#: core/admin/page-ics-import.php:584 core/lib/wpbc_all_translations.php:349
|
2126 |
-
msgid "How to start import of .ics feeds (files)?"
|
2127 |
-
msgstr ""
|
2128 |
-
|
2129 |
-
#: core/admin/page-ics-import.php:591 core/admin/page-ics-import.php:638
|
2130 |
-
#: core/lib/wpbc_all_translations.php:350
|
2131 |
-
#, php-format
|
2132 |
-
msgid "Install %s plugin."
|
2133 |
-
msgstr ""
|
2134 |
-
|
2135 |
-
#: core/admin/page-ics-import.php:595 core/lib/wpbc_all_translations.php:351
|
2136 |
-
#, php-format
|
2137 |
-
msgid ""
|
2138 |
-
"Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
|
2139 |
-
"configuration%s"
|
2140 |
-
msgstr ""
|
2141 |
-
|
2142 |
-
#: core/admin/page-ics-import.php:604 core/lib/wpbc_all_translations.php:352
|
2143 |
-
#, php-format
|
2144 |
-
msgid ""
|
2145 |
-
"Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
|
2146 |
-
"(sources) into the same resource.%sAlso its possible to define different CRON parameters for "
|
2147 |
-
"accessing such different pages with different time intervals."
|
2148 |
-
msgstr ""
|
2149 |
-
|
2150 |
-
#: core/admin/page-ics-import.php:613 core/lib/wpbc_all_translations.php:353
|
2151 |
-
msgid "Or you can import .ics feed or file directly at current page."
|
2152 |
-
msgstr ""
|
2153 |
-
|
2154 |
-
#: core/admin/page-ics-import.php:620 core/lib/wpbc_all_translations.php:354
|
2155 |
-
#, php-format
|
2156 |
-
msgid ""
|
2157 |
-
"If you have inserted import shortcodes from %s, then you can configure your CRON for "
|
2158 |
-
"periodically access these pages and import .ics feeds."
|
2159 |
-
msgstr ""
|
2160 |
-
|
2161 |
-
#: core/admin/page-ics-import.php:631 core/lib/wpbc_all_translations.php:355
|
2162 |
-
msgid "How to start export of .ics feeds (files)?"
|
2163 |
-
msgstr ""
|
2164 |
-
|
2165 |
-
#: core/admin/page-ics-import.php:642 core/lib/wpbc_all_translations.php:356
|
2166 |
-
msgid "Configure ULR feed(s) at this settings page."
|
2167 |
-
msgstr ""
|
2168 |
-
|
2169 |
-
#: core/admin/page-ics-import.php:647 core/lib/wpbc_all_translations.php:357
|
2170 |
-
#, php-format
|
2171 |
-
msgid ""
|
2172 |
-
"Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
|
2173 |
-
"info about how to import .ics feeds into other websites at the support pages of sepcific "
|
2174 |
-
"website."
|
2175 |
-
msgstr ""
|
2176 |
-
|
2177 |
-
#: core/admin/page-ics-import.php:656 core/lib/wpbc_all_translations.php:358
|
2178 |
-
msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
|
2179 |
-
msgstr ""
|
2180 |
-
|
2181 |
-
#: core/admin/page-ics-import.php:711 core/lib/wpbc_all_translations.php:359
|
2182 |
-
#: core/sync/wpbc-gcal-class.php:492 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:451
|
2183 |
-
msgid "Done"
|
2184 |
-
msgstr ""
|
2185 |
-
|
2186 |
-
#: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:360
|
2187 |
-
msgid "Activate auto import"
|
2188 |
-
msgstr ""
|
2189 |
-
|
2190 |
-
#: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:361
|
2191 |
-
#, php-format
|
2192 |
-
msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
|
2193 |
-
msgstr ""
|
2194 |
-
|
2195 |
-
#: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:567
|
2196 |
-
#: core/admin/wpbc-toolbars.php:801 core/lib/wpbc_all_translations.php:362 core/wpbc-emails.php:208
|
2197 |
-
#: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
|
2198 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:230
|
2199 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
|
2200 |
-
#: inc/_bs/admin/api-settings-s.php:534 inc/_bs/admin/api-settings-s.php:895
|
2201 |
-
#: inc/_ps/form/class-wpbc-form-help.php:705
|
2202 |
-
msgid "day"
|
2203 |
-
msgstr ""
|
2204 |
-
|
2205 |
-
#: core/admin/page-import-gcal.php:73 core/admin/page-import-gcal.php:197
|
2206 |
-
#: core/admin/page-import-gcal.php:279 core/admin/wpbc-toolbars.php:568
|
2207 |
-
#: core/admin/wpbc-toolbars.php:569 core/admin/wpbc-toolbars.php:570
|
2208 |
-
#: core/admin/wpbc-toolbars.php:571 core/admin/wpbc-toolbars.php:572
|
2209 |
-
#: core/admin/wpbc-toolbars.php:802 core/admin/wpbc-toolbars.php:803
|
2210 |
-
#: core/admin/wpbc-toolbars.php:804 core/admin/wpbc-toolbars.php:805
|
2211 |
-
#: core/admin/wpbc-toolbars.php:806 core/lib/wpbc_all_translations.php:363
|
2212 |
-
#: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:94
|
2213 |
-
#: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
|
2214 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
|
2215 |
-
#: inc/_bm/admin/page-cost-valuation.php:348 inc/_bm/admin/page-cost-valuation.php:481
|
2216 |
-
#: inc/_bm/admin/page-seasons.php:1051 inc/_bs/admin/api-settings-s.php:536
|
2217 |
-
#: inc/_ps/admin/page-settings-form.php:483 inc/_ps/wpbc-form-templates.php:231
|
2218 |
-
#: inc/_ps/wpbc-form-templates.php:266
|
2219 |
-
msgid "days"
|
2220 |
-
msgstr ""
|
2221 |
-
|
2222 |
-
#: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:364
|
2223 |
-
msgid "Import events every"
|
2224 |
-
msgstr ""
|
2225 |
-
|
2226 |
-
#: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:365
|
2227 |
-
msgid "Select time duration of import requests."
|
2228 |
-
msgstr ""
|
2229 |
-
|
2230 |
-
#: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:366
|
2231 |
-
msgid "Google API Key"
|
2232 |
-
msgstr ""
|
2233 |
-
|
2234 |
-
#: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:367
|
2235 |
-
msgid "Please enter your Google API key. This field required to import events."
|
2236 |
-
msgstr ""
|
2237 |
-
|
2238 |
-
#: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:368
|
2239 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:369
|
2240 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:407
|
2241 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:438 inc/gateways/ideal/wpbc-gw-ideal.php:423
|
2242 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ideal/wpbc-gw-ideal.php:482
|
2243 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:399 inc/gateways/paypal/wpbc-gw-paypal.php:550
|
2244 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:508 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:596
|
2245 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:761
|
2246 |
-
msgid "Note:"
|
2247 |
-
msgstr ""
|
2248 |
-
|
2249 |
-
#: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:369
|
2250 |
-
#, php-format
|
2251 |
-
msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
|
2252 |
-
msgstr ""
|
2253 |
-
|
2254 |
-
#: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:370
|
2255 |
-
#: inc/_ps/admin/br-table-import-gcal-p.php:148
|
2256 |
-
msgid "Google Calendar ID"
|
2257 |
-
msgstr ""
|
2258 |
-
|
2259 |
-
#: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:371
|
2260 |
-
#: core/sync/wpbc-gcal.php:295
|
2261 |
-
msgid "Maximum number"
|
2262 |
-
msgstr ""
|
2263 |
-
|
2264 |
-
#: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:372
|
2265 |
-
#: core/sync/wpbc-gcal.php:298
|
2266 |
-
msgid "You can specify the maximum number of events to import during one session."
|
2267 |
-
msgstr ""
|
2268 |
-
|
2269 |
-
#: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
|
2270 |
-
#: core/lib/wpbc_all_translations.php:373 core/sync/wpbc-gcal.php:184 core/sync/wpbc-gcal.php:248
|
2271 |
-
msgid "Now"
|
2272 |
-
msgstr ""
|
2273 |
-
|
2274 |
-
#: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
|
2275 |
-
#: core/lib/wpbc_all_translations.php:374 core/sync/wpbc-gcal.php:185 core/sync/wpbc-gcal.php:249
|
2276 |
-
msgid "00:00 today"
|
2277 |
-
msgstr ""
|
2278 |
-
|
2279 |
-
#: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
|
2280 |
-
#: core/lib/wpbc_all_translations.php:375 core/sync/wpbc-gcal.php:186 core/sync/wpbc-gcal.php:250
|
2281 |
-
msgid "Start of current week"
|
2282 |
-
msgstr ""
|
2283 |
-
|
2284 |
-
#: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
|
2285 |
-
#: core/lib/wpbc_all_translations.php:376 core/sync/wpbc-gcal.php:187 core/sync/wpbc-gcal.php:251
|
2286 |
-
msgid "Start of current month"
|
2287 |
-
msgstr ""
|
2288 |
-
|
2289 |
-
#: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
|
2290 |
-
#: core/lib/wpbc_all_translations.php:377 core/sync/wpbc-gcal.php:188 core/sync/wpbc-gcal.php:252
|
2291 |
-
msgid "End of current month"
|
2292 |
-
msgstr ""
|
2293 |
-
|
2294 |
-
#: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:378
|
2295 |
-
#: core/sync/wpbc-gcal.php:189
|
2296 |
-
msgid "The start of time"
|
2297 |
-
msgstr ""
|
2298 |
-
|
2299 |
-
#: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
|
2300 |
-
#: core/lib/wpbc_all_translations.php:379 core/sync/wpbc-gcal.php:190 core/sync/wpbc-gcal.php:254
|
2301 |
-
msgid "Specific date / time"
|
2302 |
-
msgstr ""
|
2303 |
-
|
2304 |
-
#: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:380
|
2305 |
-
#: core/sync/wpbc-gcal.php:197
|
2306 |
-
msgid "Select option, when to start retrieving events."
|
2307 |
-
msgstr ""
|
2308 |
-
|
2309 |
-
#: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
|
2310 |
-
#: core/lib/wpbc_all_translations.php:381 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
|
2311 |
-
msgid "Offset"
|
2312 |
-
msgstr ""
|
2313 |
-
|
2314 |
-
#: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
|
2315 |
-
#: core/lib/wpbc_all_translations.php:382 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
|
2316 |
-
msgid "Enter date / time"
|
2317 |
-
msgstr ""
|
2318 |
-
|
2319 |
-
#: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
|
2320 |
-
#: core/lib/wpbc_all_translations.php:383 core/sync/wpbc-gcal.php:205 core/sync/wpbc-gcal.php:269
|
2321 |
-
msgid "seconds"
|
2322 |
-
msgstr ""
|
2323 |
-
|
2324 |
-
#: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
|
2325 |
-
#: core/lib/wpbc_all_translations.php:384 core/sync/wpbc-gcal.php:215
|
2326 |
-
msgid ""
|
2327 |
-
"You can specify an additional offset from you chosen start point. The offset can be negative."
|
2328 |
-
msgstr ""
|
2329 |
-
|
2330 |
-
#: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
|
2331 |
-
#: core/lib/wpbc_all_translations.php:385 core/sync/wpbc-gcal.php:218 core/sync/wpbc-gcal.php:282
|
2332 |
-
#, php-format
|
2333 |
-
msgid "Type your date in format %s. Example: %s"
|
2334 |
-
msgstr ""
|
2335 |
-
|
2336 |
-
#: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:386
|
2337 |
-
#: core/sync/wpbc-gcal.php:253
|
2338 |
-
msgid "The end of time"
|
2339 |
-
msgstr ""
|
2340 |
-
|
2341 |
-
#: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:620
|
2342 |
-
#: core/lib/wpbc_all_translations.php:387 core/sync/wpbc-gcal.php:235
|
2343 |
-
msgid "Until"
|
2344 |
-
msgstr ""
|
2345 |
-
|
2346 |
-
#: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:388
|
2347 |
-
#: core/sync/wpbc-gcal.php:261
|
2348 |
-
msgid "Select option, when to stop retrieving events."
|
2349 |
-
msgstr ""
|
2350 |
-
|
2351 |
-
#: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:389
|
2352 |
-
msgid "To get Google Calendar API key please follow this instruction"
|
2353 |
-
msgstr ""
|
2354 |
-
|
2355 |
-
#: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:390
|
2356 |
-
#, php-format
|
2357 |
-
msgid "Go to Google Developer Console: %s."
|
2358 |
-
msgstr ""
|
2359 |
-
|
2360 |
-
#: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:391
|
2361 |
-
msgid "Give your project a name and click \"Create\"."
|
2362 |
-
msgstr ""
|
2363 |
-
|
2364 |
-
#: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:392
|
2365 |
-
msgid "In the sidebar click on \"APIs & auth\"."
|
2366 |
-
msgstr ""
|
2367 |
-
|
2368 |
-
#: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:393
|
2369 |
-
msgid "Click APIs and make sure \"Calendar API\" is set to ON."
|
2370 |
-
msgstr ""
|
2371 |
-
|
2372 |
-
#: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:394
|
2373 |
-
msgid "Now click on \"Credentials\" in the sidebar."
|
2374 |
-
msgstr ""
|
2375 |
-
|
2376 |
-
#: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:395
|
2377 |
-
msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
|
2378 |
-
msgstr ""
|
2379 |
-
|
2380 |
-
#: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:396
|
2381 |
-
msgid "On the popup click the button \"Server Key\" and click \"Create\"."
|
2382 |
-
msgstr ""
|
2383 |
-
|
2384 |
-
#: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:397
|
2385 |
-
#, php-format
|
2386 |
-
msgid ""
|
2387 |
-
"You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
|
2388 |
-
"%sGoogle API Key%s field at this page."
|
2389 |
-
msgstr ""
|
2390 |
-
|
2391 |
-
#: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:398
|
2392 |
-
msgid "Set Your Calendar to Public"
|
2393 |
-
msgstr ""
|
2394 |
-
|
2395 |
-
#: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
|
2396 |
-
#: core/lib/wpbc_all_translations.php:399
|
2397 |
-
msgid "Navigate to your Google calendars."
|
2398 |
-
msgstr ""
|
2399 |
-
|
2400 |
-
#: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
|
2401 |
-
#: core/lib/wpbc_all_translations.php:400
|
2402 |
-
msgid "Open the settings for the calendar."
|
2403 |
-
msgstr ""
|
2404 |
-
|
2405 |
-
#: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:401
|
2406 |
-
msgid "Click the \"Share this Calendar\" link."
|
2407 |
-
msgstr ""
|
2408 |
-
|
2409 |
-
#: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:402
|
2410 |
-
msgid "Click the checkbox to make calendar public. Do not check the other option."
|
2411 |
-
msgstr ""
|
2412 |
-
|
2413 |
-
#: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:403
|
2414 |
-
msgid "Find Your Calendar ID"
|
2415 |
-
msgstr ""
|
2416 |
-
|
2417 |
-
#: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:404
|
2418 |
-
#, php-format
|
2419 |
-
msgid ""
|
2420 |
-
"Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
|
2421 |
-
"%suse the Calendar ID only, not the entire XML feed URL%s."
|
2422 |
-
msgstr ""
|
2423 |
-
|
2424 |
-
#: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
|
2425 |
-
#: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:405
|
2426 |
-
#: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
|
2427 |
-
msgid "Import Google Calendar Events"
|
2428 |
-
msgstr ""
|
2429 |
-
|
2430 |
-
#: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
|
2431 |
-
#: core/lib/wpbc_all_translations.php:406
|
2432 |
-
msgid "Auto import events"
|
2433 |
-
msgstr ""
|
2434 |
-
|
2435 |
-
#: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
|
2436 |
-
#: core/lib/wpbc_all_translations.php:407
|
2437 |
-
msgid "Default settings for retrieving events"
|
2438 |
-
msgstr ""
|
2439 |
-
|
2440 |
-
#: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:408
|
2441 |
-
msgid "Google Calendar - General Settings"
|
2442 |
-
msgstr ""
|
2443 |
-
|
2444 |
-
#: core/admin/page-settings.php:88 core/admin/page-settings.php:209
|
2445 |
-
#: core/admin/wpbc-toolbar-tiny.php:248 core/lib/wpbc_all_translations.php:409
|
2446 |
-
#: inc/_ps/form/class-wpbc-form-help.php:115
|
2447 |
-
msgid "Calendar"
|
2448 |
-
msgstr ""
|
2449 |
-
|
2450 |
-
#: core/admin/page-settings.php:99 core/admin/page-settings.php:221
|
2451 |
-
#: core/lib/wpbc_all_translations.php:410 core/wpbc-functions.php:1954
|
2452 |
-
#: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
|
2453 |
-
#: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
|
2454 |
-
#: inc/_ps/wpbc-form-templates.php:307 inc/_ps/wpbc-form-templates.php:333
|
2455 |
-
#: inc/_ps/wpbc-form-templates.php:350
|
2456 |
-
msgid "Availability"
|
2457 |
-
msgstr ""
|
2458 |
-
|
2459 |
-
#: core/admin/page-settings.php:109 core/admin/page-settings.php:235
|
2460 |
-
#: core/lib/wpbc_all_translations.php:411
|
2461 |
-
msgid "Booking Admin Panel"
|
2462 |
-
msgstr ""
|
2463 |
-
|
2464 |
-
#: core/admin/page-settings.php:114 core/admin/page-settings.php:242
|
2465 |
-
#: core/lib/wpbc_all_translations.php:412 js/wpbc-gutenberg.js:749
|
2466 |
-
msgid "Timeline"
|
2467 |
-
msgstr ""
|
2468 |
-
|
2469 |
-
#: core/admin/page-settings.php:122 core/lib/wpbc_all_translations.php:413
|
2470 |
-
msgid "Auto cancellation / approval"
|
2471 |
-
msgstr ""
|
2472 |
-
|
2473 |
-
#: core/admin/page-settings.php:132 core/admin/page-settings.php:279
|
2474 |
-
#: core/lib/wpbc_all_translations.php:414
|
2475 |
-
msgid "Plugin Menu"
|
2476 |
-
msgstr ""
|
2477 |
-
|
2478 |
-
#: core/admin/page-settings.php:137 core/lib/wpbc_all_translations.php:415
|
2479 |
-
msgid "Uninstall"
|
2480 |
-
msgstr ""
|
2481 |
-
|
2482 |
-
#: core/admin/page-settings.php:254 core/lib/wpbc_all_translations.php:416
|
2483 |
-
msgid "Auto cancellation / auto approval of bookings"
|
2484 |
-
msgstr ""
|
2485 |
-
|
2486 |
-
#: core/admin/page-settings.php:272 core/lib/wpbc_all_translations.php:417
|
2487 |
-
msgid "Information"
|
2488 |
-
msgstr ""
|
2489 |
-
|
2490 |
-
#: core/admin/page-settings.php:286 core/lib/wpbc_all_translations.php:418
|
2491 |
-
msgid "Uninstall / deactivation"
|
2492 |
-
msgstr ""
|
2493 |
-
|
2494 |
-
#: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
|
2495 |
-
#: core/lib/wpbc_all_translations.php:419 inc/_ps/admin/page-settings-up.php:38
|
2496 |
-
msgid "Upgrade"
|
2497 |
-
msgstr ""
|
2498 |
-
|
2499 |
-
#: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1526
|
2500 |
-
#: core/admin/wpbc-toolbar-tiny.php:1535 core/lib/wpbc_all_translations.php:420
|
2501 |
-
#: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
|
2502 |
-
#: inc/_bl/wpbc-search-availability.php:669 inc/_bl/wpdev-booking-search-widget.php:75
|
2503 |
-
#: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
|
2504 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:82 inc/_bm/admin/page-cost-rate.php:77
|
2505 |
-
#: inc/_bm/admin/page-cost-valuation.php:103 inc/_bm/admin/page-seasons.php:826
|
2506 |
-
#: inc/_bm/admin/page-seasons.php:828
|
2507 |
-
msgid "Nothing Found"
|
2508 |
-
msgstr ""
|
2509 |
-
|
2510 |
-
#: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:421
|
2511 |
-
#: inc/_ps/wpbc-print.php:83
|
2512 |
-
msgid "Labels"
|
2513 |
-
msgstr ""
|
2514 |
-
|
2515 |
-
#: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:422
|
2516 |
-
msgid "Booking Data"
|
2517 |
-
msgstr ""
|
2518 |
-
|
2519 |
-
#: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:423
|
2520 |
-
msgid "Booking Dates"
|
2521 |
-
msgstr ""
|
2522 |
-
|
2523 |
-
#: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:424
|
2524 |
-
msgid "Show ALL dates of booking"
|
2525 |
-
msgstr ""
|
2526 |
-
|
2527 |
-
#: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:425
|
2528 |
-
msgid "Show only check in/out dates"
|
2529 |
-
msgstr ""
|
2530 |
-
|
2531 |
-
#: core/admin/wpbc-class-listing.php:221 core/lib/wpbc_all_translations.php:426
|
2532 |
-
msgid "Resource not exist"
|
2533 |
-
msgstr ""
|
2534 |
-
|
2535 |
-
#: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:427
|
2536 |
-
#: inc/_bs/lib_s.php:296 inc/_bs/lib_s.php:311
|
2537 |
-
msgid "Unknown"
|
2538 |
-
msgstr ""
|
2539 |
-
|
2540 |
-
#: core/admin/wpbc-class-listing.php:331 core/admin/wpbc-toolbars.php:765
|
2541 |
-
#: core/lib/wpbc_all_translations.php:428
|
2542 |
-
msgid "In Trash / Rejected"
|
2543 |
-
msgstr ""
|
2544 |
-
|
2545 |
-
#: core/admin/wpbc-class-listing.php:334 core/lib/wpbc_all_translations.php:429
|
2546 |
-
msgid "Imported"
|
2547 |
-
msgstr ""
|
2548 |
-
|
2549 |
-
#: core/admin/wpbc-class-listing.php:398 core/lib/wpbc_all_translations.php:430
|
2550 |
-
msgid "Reject - move to trash"
|
2551 |
-
msgstr ""
|
2552 |
-
|
2553 |
-
#: core/admin/wpbc-class-listing.php:404 core/admin/wpbc-toolbars.php:1011
|
2554 |
-
#: core/lib/wpbc_all_translations.php:431 core/timeline/v2/wpbc-class-timeline_v2.php:2666
|
2555 |
-
msgid "Restore"
|
2556 |
-
msgstr ""
|
2557 |
-
|
2558 |
-
#: core/admin/wpbc-class-listing.php:408 core/lib/wpbc_all_translations.php:432
|
2559 |
-
msgid "Do you really want to delete this booking ?"
|
2560 |
-
msgstr ""
|
2561 |
-
|
2562 |
-
#: core/admin/wpbc-class-listing.php:410 core/lib/wpbc_all_translations.php:433
|
2563 |
-
#: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
|
2564 |
-
msgid "Completely Delete"
|
2565 |
-
msgstr ""
|
2566 |
-
|
2567 |
-
#: core/admin/wpbc-class-listing.php:419 core/admin/wpbc-toolbars.php:949
|
2568 |
-
#: core/lib/wpbc_all_translations.php:434 core/timeline/v2/wpbc-class-timeline_v2.php:2676
|
2569 |
-
msgid "Approve"
|
2570 |
-
msgstr ""
|
2571 |
-
|
2572 |
-
#: core/admin/wpbc-class-listing.php:424 core/admin/wpbc-toolbars.php:967
|
2573 |
-
#: core/lib/wpbc_all_translations.php:435
|
2574 |
-
msgid "Do you really want to set booking as pending ?"
|
2575 |
-
msgstr ""
|
2576 |
-
|
2577 |
-
#: core/admin/wpbc-class-listing.php:435 core/lib/wpbc_all_translations.php:436
|
2578 |
-
#: inc/_bs/lib_s.php:339
|
2579 |
-
msgid "Created"
|
2580 |
-
msgstr ""
|
2581 |
-
|
2582 |
-
#: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:233
|
2583 |
-
#: core/lib/wpbc_all_translations.php:437 core/lib/wpdev-booking-widget.php:14
|
2584 |
-
#: core/wpbc-functions.php:1850 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
|
2585 |
-
#: core/wpbc.php:189
|
2586 |
-
msgid "Booking Calendar"
|
2587 |
-
msgstr ""
|
2588 |
-
|
2589 |
-
#: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
|
2590 |
-
#: core/lib/wpbc_all_translations.php:438
|
2591 |
-
msgid "Video guide"
|
2592 |
-
msgstr ""
|
2593 |
-
|
2594 |
-
#: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:439
|
2595 |
-
msgid "Support"
|
2596 |
-
msgstr ""
|
2597 |
-
|
2598 |
-
#: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:440
|
2599 |
-
msgid "Getting Started"
|
2600 |
-
msgstr ""
|
2601 |
-
|
2602 |
-
#: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:441
|
2603 |
-
msgid "Help Info"
|
2604 |
-
msgstr ""
|
2605 |
-
|
2606 |
-
#: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:441
|
2607 |
-
#: core/lib/wpbc_all_translations.php:442
|
2608 |
-
msgid "FAQ"
|
2609 |
-
msgstr ""
|
2610 |
-
|
2611 |
-
#: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:443
|
2612 |
-
msgid "Contact email"
|
2613 |
-
msgstr ""
|
2614 |
-
|
2615 |
-
#: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:444
|
2616 |
-
msgid "Rate plugin (thanks:)"
|
2617 |
-
msgstr ""
|
2618 |
-
|
2619 |
-
#: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:445
|
2620 |
-
msgid "Current version"
|
2621 |
-
msgstr ""
|
2622 |
-
|
2623 |
-
#: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:446
|
2624 |
-
msgid "Demo"
|
2625 |
-
msgstr ""
|
2626 |
-
|
2627 |
-
#: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:447
|
2628 |
-
msgid "Version"
|
2629 |
-
msgstr ""
|
2630 |
-
|
2631 |
-
#: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:448
|
2632 |
-
msgid "Used for"
|
2633 |
-
msgstr ""
|
2634 |
-
|
2635 |
-
#: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:449
|
2636 |
-
msgid "websites"
|
2637 |
-
msgstr ""
|
2638 |
-
|
2639 |
-
#: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:450
|
2640 |
-
msgid "website"
|
2641 |
-
msgstr ""
|
2642 |
-
|
2643 |
-
#: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:451
|
2644 |
-
msgid "Release date"
|
2645 |
-
msgstr ""
|
2646 |
-
|
2647 |
-
#: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:452
|
2648 |
-
msgid "Explore Premium Features"
|
2649 |
-
msgstr ""
|
2650 |
-
|
2651 |
-
#: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:453
|
2652 |
-
msgid "Statistic"
|
2653 |
-
msgstr ""
|
2654 |
-
|
2655 |
-
#: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:454
|
2656 |
-
msgid "New (unverified) booking(s)"
|
2657 |
-
msgstr ""
|
2658 |
-
|
2659 |
-
#: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:455
|
2660 |
-
msgid "Pending booking(s)"
|
2661 |
-
msgstr ""
|
2662 |
-
|
2663 |
-
#: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:456
|
2664 |
-
msgid "Agenda"
|
2665 |
-
msgstr ""
|
2666 |
-
|
2667 |
-
#: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:457
|
2668 |
-
msgid "New booking(s) made today"
|
2669 |
-
msgstr ""
|
2670 |
-
|
2671 |
-
#: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:458
|
2672 |
-
msgid "Bookings for today"
|
2673 |
-
msgstr ""
|
2674 |
-
|
2675 |
-
#: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2469
|
2676 |
-
#: core/lib/wpbc_all_translations.php:459
|
2677 |
-
msgid "Insert booking calendar"
|
2678 |
-
msgstr ""
|
2679 |
-
|
2680 |
-
#: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2470
|
2681 |
-
#: core/lib/wpbc_all_translations.php:460
|
2682 |
-
msgid "Booking calendar"
|
2683 |
-
msgstr ""
|
2684 |
-
|
2685 |
-
#: core/admin/wpbc-toolbar-tiny.php:231 core/lib/wpbc_all_translations.php:461
|
2686 |
-
msgid "Insert Shortcode"
|
2687 |
-
msgstr ""
|
2688 |
-
|
2689 |
-
#: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:462
|
2690 |
-
#: inc/_ps/admin/api-settings-p.php:197
|
2691 |
-
msgid "TimeLine"
|
2692 |
-
msgstr ""
|
2693 |
-
|
2694 |
-
#: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:463
|
2695 |
-
msgid "Resources Selection"
|
2696 |
-
msgstr ""
|
2697 |
-
|
2698 |
-
#: core/admin/wpbc-toolbar-tiny.php:252 core/lib/wpbc_all_translations.php:464
|
2699 |
-
#: core/wpbc-functions.php:2017 inc/_bl/admin/page-search.php:366 inc/_bl/biz_l.php:775
|
2700 |
-
#: inc/_bl/biz_l.php:790
|
2701 |
-
msgid "Search"
|
2702 |
-
msgstr ""
|
2703 |
-
|
2704 |
-
#: core/admin/wpbc-toolbar-tiny.php:253 core/lib/wpbc_all_translations.php:465
|
2705 |
-
msgid "Only Form"
|
2706 |
-
msgstr ""
|
2707 |
-
|
2708 |
-
#: core/admin/wpbc-toolbar-tiny.php:256 core/lib/wpbc_all_translations.php:466
|
2709 |
-
#: inc/_ps/form/class-wpbc-form-help.php:754
|
2710 |
-
msgid "Other"
|
2711 |
-
msgstr ""
|
2712 |
-
|
2713 |
-
#: core/admin/wpbc-toolbar-tiny.php:304 core/lib/wpbc_all_translations.php:467
|
2714 |
-
msgid "Insert into page"
|
2715 |
-
msgstr ""
|
2716 |
-
|
2717 |
-
#: core/admin/wpbc-toolbar-tiny.php:377 core/admin/wpbc-toolbar-tiny.php:1157
|
2718 |
-
#: core/lib/wpbc_all_translations.php:468 core/wpbc.php:177 inc/_ps/admin/page-resources.php:40
|
2719 |
-
#: inc/_ps/p-toolbar.php:769
|
2720 |
-
msgid "Booking resources"
|
2721 |
-
msgstr ""
|
2722 |
-
|
2723 |
-
#: core/admin/wpbc-toolbar-tiny.php:378 core/lib/wpbc_all_translations.php:469
|
2724 |
-
msgid "Select booking resources. Please use CTRL to select multiple booking resources."
|
2725 |
-
msgstr ""
|
2726 |
-
|
2727 |
-
#: core/admin/wpbc-toolbar-tiny.php:412 core/lib/wpbc_all_translations.php:470
|
2728 |
-
#: js/wpbc-gutenberg.js:806
|
2729 |
-
msgid "View mode"
|
2730 |
-
msgstr ""
|
2731 |
-
|
2732 |
-
#: core/admin/wpbc-toolbar-tiny.php:413 core/lib/wpbc_all_translations.php:471
|
2733 |
-
msgid "Select type of view format"
|
2734 |
-
msgstr ""
|
2735 |
-
|
2736 |
-
#: core/admin/wpbc-toolbar-tiny.php:467 core/lib/wpbc_all_translations.php:472
|
2737 |
-
msgid "Select number of months to scroll after loading"
|
2738 |
-
msgstr ""
|
2739 |
-
|
2740 |
-
#: core/admin/wpbc-toolbar-tiny.php:488 core/lib/wpbc_all_translations.php:473
|
2741 |
-
#: js/wpbc-gutenberg.js:812
|
2742 |
-
msgid "Number of days to scroll"
|
2743 |
-
msgstr ""
|
2744 |
-
|
2745 |
-
#: core/admin/wpbc-toolbar-tiny.php:489 core/lib/wpbc_all_translations.php:474
|
2746 |
-
msgid "Select number of days to scroll after loading"
|
2747 |
-
msgstr ""
|
2748 |
-
|
2749 |
-
#: core/admin/wpbc-toolbar-tiny.php:509 core/admin/wpbc-toolbars.php:1503
|
2750 |
-
#: core/lib/wpbc_all_translations.php:475 js/wpbc-gutenberg.js:818
|
2751 |
-
msgid "Start Date"
|
2752 |
-
msgstr ""
|
2753 |
-
|
2754 |
-
#: core/admin/wpbc-toolbar-tiny.php:587 core/lib/wpbc_all_translations.php:476
|
2755 |
-
msgid "Select start date"
|
2756 |
-
msgstr ""
|
2757 |
-
|
2758 |
-
#: core/admin/wpbc-toolbar-tiny.php:680 core/admin/wpbc-toolbar-tiny.php:923
|
2759 |
-
#: core/admin/wpbc-toolbar-tiny.php:1597 core/admin/wpbc-toolbar-tiny.php:1789
|
2760 |
-
#: core/lib/wpbc_all_translations.php:477 core/lib/wpdev-booking-widget.php:118
|
2761 |
-
#: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:970
|
2762 |
-
#: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:612 js/wpbc-gutenberg.js:702
|
2763 |
-
#: js/wpbc-gutenberg.js:969 js/wpbc-gutenberg.js:1335
|
2764 |
-
msgid "Booking resource"
|
2765 |
-
msgstr ""
|
2766 |
-
|
2767 |
-
#: core/admin/wpbc-toolbar-tiny.php:681 core/admin/wpbc-toolbar-tiny.php:924
|
2768 |
-
#: core/admin/wpbc-toolbar-tiny.php:1598 core/admin/wpbc-toolbar-tiny.php:1790
|
2769 |
-
#: core/lib/wpbc_all_translations.php:478 inc/_ps/admin/br-table-import-gcal-p.php:184
|
2770 |
-
msgid "Select booking resource"
|
2771 |
-
msgstr ""
|
2772 |
-
|
2773 |
-
#: core/admin/wpbc-toolbar-tiny.php:705 core/admin/wpbc-toolbar-tiny.php:1206
|
2774 |
-
#: core/admin/wpbc-toolbar-tiny.php:1622 core/lib/wpbc_all_translations.php:479
|
2775 |
-
#: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
|
2776 |
-
msgid "Select default custom booking form"
|
2777 |
-
msgstr ""
|
2778 |
-
|
2779 |
-
#: core/admin/wpbc-toolbar-tiny.php:716 core/admin/wpbc-toolbar-tiny.php:946
|
2780 |
-
#: core/admin/wpbc-toolbar-tiny.php:1294 core/admin/wpbc-toolbars.php:1618
|
2781 |
-
#: core/lib/wpbc_all_translations.php:480 core/lib/wpdev-booking-widget.php:135
|
2782 |
-
#: inc/_ps/wpbc-booking-select-widget.php:201
|
2783 |
-
msgid "Visible months"
|
2784 |
-
msgstr ""
|
2785 |
-
|
2786 |
-
#: core/admin/wpbc-toolbar-tiny.php:717 core/admin/wpbc-toolbar-tiny.php:947
|
2787 |
-
#: core/admin/wpbc-toolbar-tiny.php:1295 core/lib/wpbc_all_translations.php:481
|
2788 |
-
msgid "Select number of month to show for calendar."
|
2789 |
-
msgstr ""
|
2790 |
-
|
2791 |
-
#: core/admin/wpbc-toolbar-tiny.php:737 core/admin/wpbc-toolbar-tiny.php:967
|
2792 |
-
#: core/admin/wpbc-toolbar-tiny.php:1313 core/lib/wpbc_all_translations.php:482
|
2793 |
-
msgid "Start month:"
|
2794 |
-
msgstr ""
|
2795 |
-
|
2796 |
-
#: core/admin/wpbc-toolbar-tiny.php:795 core/admin/wpbc-toolbar-tiny.php:1025
|
2797 |
-
#: core/admin/wpbc-toolbar-tiny.php:1371 core/lib/wpbc_all_translations.php:483
|
2798 |
-
msgid "Select start month of calendar"
|
2799 |
-
msgstr ""
|
2800 |
-
|
2801 |
-
#: core/admin/wpbc-toolbar-tiny.php:802 core/admin/wpbc-toolbar-tiny.php:1032
|
2802 |
-
#: core/admin/wpbc-toolbar-tiny.php:1264 core/lib/wpbc_all_translations.php:484
|
2803 |
-
msgid "Show advanced settings"
|
2804 |
-
msgstr ""
|
2805 |
-
|
2806 |
-
#: core/admin/wpbc-toolbar-tiny.php:803 core/admin/wpbc-toolbar-tiny.php:1033
|
2807 |
-
#: core/admin/wpbc-toolbar-tiny.php:1265 core/lib/wpbc_all_translations.php:485
|
2808 |
-
msgid "Hide advanced settings"
|
2809 |
-
msgstr ""
|
2810 |
-
|
2811 |
-
#: core/admin/wpbc-toolbar-tiny.php:813 core/admin/wpbc-toolbar-tiny.php:1043
|
2812 |
-
#: core/admin/wpbc-toolbar-tiny.php:1275 core/lib/wpbc_all_translations.php:486
|
2813 |
-
#, php-format
|
2814 |
-
msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
|
2815 |
-
msgstr ""
|
2816 |
-
|
2817 |
-
#: core/admin/wpbc-toolbar-tiny.php:814 core/admin/wpbc-toolbar-tiny.php:1044
|
2818 |
-
#: core/lib/wpbc_all_translations.php:487
|
2819 |
-
#, php-format
|
2820 |
-
msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
|
2821 |
-
msgstr ""
|
2822 |
-
|
2823 |
-
#: core/admin/wpbc-toolbar-tiny.php:824 core/admin/wpbc-toolbar-tiny.php:1054
|
2824 |
-
#: core/admin/wpbc-toolbar-tiny.php:1378 core/admin/wpbc-toolbars.php:242
|
2825 |
-
#: core/lib/wpbc_all_translations.php:488 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
|
2826 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:627
|
2827 |
-
#: js/wpbc-gutenberg.js:714 js/wpbc-gutenberg.js:910
|
2828 |
-
msgid "Options"
|
2829 |
-
msgstr ""
|
2830 |
-
|
2831 |
-
#: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:1075
|
2832 |
-
#: core/admin/wpbc-toolbar-tiny.php:1399 core/lib/wpbc_all_translations.php:489
|
2833 |
-
#, php-format
|
2834 |
-
msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
|
2835 |
-
msgstr ""
|
2836 |
-
|
2837 |
-
#: core/admin/wpbc-toolbar-tiny.php:849 core/admin/wpbc-toolbar-tiny.php:1079
|
2838 |
-
#: core/admin/wpbc-toolbar-tiny.php:1403 core/lib/wpbc_all_translations.php:490
|
2839 |
-
msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
|
2840 |
-
msgstr ""
|
2841 |
-
|
2842 |
-
#: core/admin/wpbc-toolbar-tiny.php:850 core/admin/wpbc-toolbar-tiny.php:858
|
2843 |
-
#: core/admin/wpbc-toolbar-tiny.php:1080 core/admin/wpbc-toolbar-tiny.php:1404
|
2844 |
-
#: core/lib/wpbc_all_translations.php:491 inc/_bm/admin/page-availability.php:510
|
2845 |
-
#: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
|
2846 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
|
2847 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
|
2848 |
-
msgid "Description"
|
2849 |
-
msgstr ""
|
2850 |
-
|
2851 |
-
#: core/admin/wpbc-toolbar-tiny.php:851 core/admin/wpbc-toolbar-tiny.php:1081
|
2852 |
-
#: core/admin/wpbc-toolbar-tiny.php:1405 core/lib/wpbc_all_translations.php:492
|
2853 |
-
msgid ""
|
2854 |
-
"Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
|
2855 |
-
"to use percentage for width: 100%)"
|
2856 |
-
msgstr ""
|
2857 |
-
|
2858 |
-
#: core/admin/wpbc-toolbar-tiny.php:852 core/admin/wpbc-toolbar-tiny.php:860
|
2859 |
-
#: core/admin/wpbc-toolbar-tiny.php:1082 core/admin/wpbc-toolbar-tiny.php:1406
|
2860 |
-
#: core/lib/wpbc_all_translations.php:493
|
2861 |
-
msgid "Code Example"
|
2862 |
-
msgstr ""
|
2863 |
-
|
2864 |
-
#: core/admin/wpbc-toolbar-tiny.php:857 core/lib/wpbc_all_translations.php:494
|
2865 |
-
msgid ""
|
2866 |
-
"Specify that during certain seasons (or days of week), the specific minimum number of days must "
|
2867 |
-
"be booked. "
|
2868 |
-
msgstr ""
|
2869 |
-
|
2870 |
-
#: core/admin/wpbc-toolbar-tiny.php:859 core/lib/wpbc_all_translations.php:495
|
2871 |
-
msgid ""
|
2872 |
-
"Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
|
2873 |
-
msgstr ""
|
2874 |
-
|
2875 |
-
#: core/admin/wpbc-toolbar-tiny.php:866 core/lib/wpbc_all_translations.php:496
|
2876 |
-
#, php-format
|
2877 |
-
msgid ""
|
2878 |
-
"Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
|
2879 |
-
"shortcodes %shere%s"
|
2880 |
-
msgstr ""
|
2881 |
-
|
2882 |
-
#: core/admin/wpbc-toolbar-tiny.php:889 core/admin/wpbc-toolbar-tiny.php:1104
|
2883 |
-
#: core/lib/wpbc_all_translations.php:497
|
2884 |
-
msgid "Aggregate booking dates from other resources"
|
2885 |
-
msgstr ""
|
2886 |
-
|
2887 |
-
#: core/admin/wpbc-toolbar-tiny.php:890 core/admin/wpbc-toolbar-tiny.php:1105
|
2888 |
-
#: core/lib/wpbc_all_translations.php:498
|
2889 |
-
msgid ""
|
2890 |
-
"Select booking resources, for getting booking dates from them and set such dates as unavailable "
|
2891 |
-
"in destination calendar."
|
2892 |
-
msgstr ""
|
2893 |
-
|
2894 |
-
#: core/admin/wpbc-toolbar-tiny.php:1136 core/lib/wpbc_all_translations.php:499
|
2895 |
-
#: inc/_bl/admin/page-search.php:491 inc/_bl/admin/page-search.php:524
|
2896 |
-
#: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
|
2897 |
-
#: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
|
2898 |
-
#: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
|
2899 |
-
#: inc/_ps/admin/page-resources.php:201 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:885
|
2900 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:900
|
2901 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
|
2902 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
|
2903 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:875
|
2904 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1142
|
2905 |
-
msgid "Note!"
|
2906 |
-
msgstr ""
|
2907 |
-
|
2908 |
-
#: core/admin/wpbc-toolbar-tiny.php:1137 core/lib/wpbc_all_translations.php:500
|
2909 |
-
#, php-format
|
2910 |
-
msgid ""
|
2911 |
-
"This shortcode %s is using for selection of the booking form of specific booking resources in "
|
2912 |
-
"selectbox"
|
2913 |
-
msgstr ""
|
2914 |
-
|
2915 |
-
#: core/admin/wpbc-toolbar-tiny.php:1150 core/admin/wpbc-toolbars.php:1666
|
2916 |
-
#: core/lib/wpbc_all_translations.php:501 inc/_ps/admin/br-table-import-gcal-p.php:173
|
2917 |
-
#: inc/_ps/wpbc-booking-select-widget.php:163
|
2918 |
-
msgid "All"
|
2919 |
-
msgstr ""
|
2920 |
-
|
2921 |
-
#: core/admin/wpbc-toolbar-tiny.php:1159 core/lib/wpbc_all_translations.php:502
|
2922 |
-
#: inc/_ps/wpbc-booking-select-widget.php:175
|
2923 |
-
msgid ""
|
2924 |
-
"Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
|
2925 |
-
"resources."
|
2926 |
-
msgstr ""
|
2927 |
-
|
2928 |
-
#: core/admin/wpbc-toolbar-tiny.php:1184 core/lib/wpbc_all_translations.php:503
|
2929 |
-
#: inc/_ps/wpbc-booking-select-widget.php:181
|
2930 |
-
msgid "Preselected resource"
|
2931 |
-
msgstr ""
|
2932 |
-
|
2933 |
-
#: core/admin/wpbc-toolbar-tiny.php:1185 core/lib/wpbc_all_translations.php:504
|
2934 |
-
msgid "Define preselected resource."
|
2935 |
-
msgstr ""
|
2936 |
-
|
2937 |
-
#: core/admin/wpbc-toolbar-tiny.php:1210 core/lib/wpbc_all_translations.php:505
|
2938 |
-
#: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1255
|
2939 |
-
msgid "Default Form"
|
2940 |
-
msgstr ""
|
2941 |
-
|
2942 |
-
#: core/admin/wpbc-toolbar-tiny.php:1226 core/admin/wpbc-toolbar-tiny.php:1235
|
2943 |
-
#: core/lib/wpbc_all_translations.php:506
|
2944 |
-
msgid "Please select the resource:"
|
2945 |
-
msgstr ""
|
2946 |
-
|
2947 |
-
#: core/admin/wpbc-toolbar-tiny.php:1227 core/lib/wpbc_all_translations.php:507
|
2948 |
-
msgid "Title near your select box."
|
2949 |
-
msgstr ""
|
2950 |
-
|
2951 |
-
#: core/admin/wpbc-toolbar-tiny.php:1244 core/lib/wpbc_all_translations.php:508
|
2952 |
-
#: inc/_ps/wpbc-booking-select-widget.php:247
|
2953 |
-
msgid "First option title"
|
2954 |
-
msgstr ""
|
2955 |
-
|
2956 |
-
#: core/admin/wpbc-toolbar-tiny.php:1245 core/lib/wpbc_all_translations.php:509
|
2957 |
-
#: inc/_ps/personal.php:553 js/wpbc-gutenberg.js:843
|
2958 |
-
msgid "Please Select"
|
2959 |
-
msgstr ""
|
2960 |
-
|
2961 |
-
#: core/admin/wpbc-toolbar-tiny.php:1246 core/lib/wpbc_all_translations.php:510
|
2962 |
-
#: inc/_ps/wpbc-booking-select-widget.php:254
|
2963 |
-
msgid "First option in dropdown list."
|
2964 |
-
msgstr ""
|
2965 |
-
|
2966 |
-
#: core/admin/wpbc-toolbar-tiny.php:1246 core/lib/wpbc_all_translations.php:511
|
2967 |
-
#: inc/_ps/wpbc-booking-select-widget.php:256
|
2968 |
-
msgid "Please leave it empty if you want to skip it."
|
2969 |
-
msgstr ""
|
2970 |
-
|
2971 |
-
#: core/admin/wpbc-toolbar-tiny.php:1436 core/admin/wpbc-toolbar-tiny.php:1716
|
2972 |
-
#: core/lib/wpbc_all_translations.php:512
|
2973 |
-
msgid "Select shortcode to insert"
|
2974 |
-
msgstr ""
|
2975 |
-
|
2976 |
-
#: core/admin/wpbc-toolbar-tiny.php:1448 core/lib/wpbc_all_translations.php:513
|
2977 |
-
msgid "Search form"
|
2978 |
-
msgstr ""
|
2979 |
-
|
2980 |
-
#: core/admin/wpbc-toolbar-tiny.php:1451 core/lib/wpbc_all_translations.php:514
|
2981 |
-
#: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:659
|
2982 |
-
#: inc/_bl/wpbc-search-availability.php:674
|
2983 |
-
msgid "Search results"
|
2984 |
-
msgstr ""
|
2985 |
-
|
2986 |
-
#: core/admin/wpbc-toolbar-tiny.php:1470 core/lib/wpbc_all_translations.php:515
|
2987 |
-
msgid "Check this box to show search results on other page"
|
2988 |
-
msgstr ""
|
2989 |
-
|
2990 |
-
#: core/admin/wpbc-toolbar-tiny.php:1487 core/lib/wpbc_all_translations.php:516
|
2991 |
-
msgid "URL of search results:"
|
2992 |
-
msgstr ""
|
2993 |
-
|
2994 |
-
#: core/admin/wpbc-toolbar-tiny.php:1489 core/lib/wpbc_all_translations.php:517
|
2995 |
-
msgid "Type the URL of search results page."
|
2996 |
-
msgstr ""
|
2997 |
-
|
2998 |
-
#: core/admin/wpbc-toolbar-tiny.php:1506 core/lib/wpbc_all_translations.php:518
|
2999 |
-
msgid "Title of Search results:"
|
3000 |
-
msgstr ""
|
3001 |
-
|
3002 |
-
#: core/admin/wpbc-toolbar-tiny.php:1507 core/admin/wpbc-toolbar-tiny.php:1516
|
3003 |
-
#: core/lib/wpbc_all_translations.php:519 inc/_bl/wpdev-booking-search-widget.php:79
|
3004 |
-
msgid "Result(s) Found"
|
3005 |
-
msgstr ""
|
3006 |
-
|
3007 |
-
#: core/admin/wpbc-toolbar-tiny.php:1508 core/lib/wpbc_all_translations.php:520
|
3008 |
-
msgid "Type the title of Search results."
|
3009 |
-
msgstr ""
|
3010 |
-
|
3011 |
-
#: core/admin/wpbc-toolbar-tiny.php:1508 core/lib/wpbc_all_translations.php:521
|
3012 |
-
msgid "show number of search results"
|
3013 |
-
msgstr ""
|
3014 |
-
|
3015 |
-
#: core/admin/wpbc-toolbar-tiny.php:1525 core/lib/wpbc_all_translations.php:522
|
3016 |
-
msgid "Nothing Found Message:"
|
3017 |
-
msgstr ""
|
3018 |
-
|
3019 |
-
#: core/admin/wpbc-toolbar-tiny.php:1527 core/lib/wpbc_all_translations.php:523
|
3020 |
-
msgid "Type the message, when nothing found."
|
3021 |
-
msgstr ""
|
3022 |
-
|
3023 |
-
#: core/admin/wpbc-toolbar-tiny.php:1547 core/lib/wpbc_all_translations.php:524
|
3024 |
-
msgid "Search only for users:"
|
3025 |
-
msgstr ""
|
3026 |
-
|
3027 |
-
#: core/admin/wpbc-toolbar-tiny.php:1549 core/lib/wpbc_all_translations.php:525
|
3028 |
-
msgid ""
|
3029 |
-
"Type IDs of the users (separated by comma \",\") for searching availability only for these "
|
3030 |
-
"users, or leave it blank for searching for all users."
|
3031 |
-
msgstr ""
|
3032 |
-
|
3033 |
-
#: core/admin/wpbc-toolbar-tiny.php:1569 core/lib/wpbc_all_translations.php:526
|
3034 |
-
#, php-format
|
3035 |
-
msgid ""
|
3036 |
-
"This shortcode %s is using for showing the search results at specific page, if the search form "
|
3037 |
-
"is submit showing the search results at different page"
|
3038 |
-
msgstr ""
|
3039 |
-
|
3040 |
-
#: core/admin/wpbc-toolbar-tiny.php:1631 core/lib/wpbc_all_translations.php:527
|
3041 |
-
msgid "date"
|
3042 |
-
msgstr ""
|
3043 |
-
|
3044 |
-
#: core/admin/wpbc-toolbar-tiny.php:1691 core/lib/wpbc_all_translations.php:528
|
3045 |
-
msgid "Define date for booking"
|
3046 |
-
msgstr ""
|
3047 |
-
|
3048 |
-
#: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:529
|
3049 |
-
#: inc/_ps/p-toolbar.php:270
|
3050 |
-
msgid "Edit Booking"
|
3051 |
-
msgstr ""
|
3052 |
-
|
3053 |
-
#: core/admin/wpbc-toolbar-tiny.php:1732 core/lib/wpbc_all_translations.php:530
|
3054 |
-
msgid "Show listing of customer bookings"
|
3055 |
-
msgstr ""
|
3056 |
-
|
3057 |
-
#: core/admin/wpbc-toolbar-tiny.php:1735 core/lib/wpbc_all_translations.php:531
|
3058 |
-
msgid "Show info about Booking Resource"
|
3059 |
-
msgstr ""
|
3060 |
-
|
3061 |
-
#: core/admin/wpbc-toolbar-tiny.php:1751 core/lib/wpbc_all_translations.php:532
|
3062 |
-
#, php-format
|
3063 |
-
msgid ""
|
3064 |
-
"This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
|
3065 |
-
"%s or make %spayment%s after receiving an admin email payment request"
|
3066 |
-
msgstr ""
|
3067 |
-
|
3068 |
-
#: core/admin/wpbc-toolbar-tiny.php:1752 core/lib/wpbc_all_translations.php:533
|
3069 |
-
#, php-format
|
3070 |
-
msgid ""
|
3071 |
-
"The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
|
3072 |
-
"to this page"
|
3073 |
-
msgstr ""
|
3074 |
-
|
3075 |
-
#: core/admin/wpbc-toolbar-tiny.php:1753 core/admin/wpbc-toolbar-tiny.php:1769
|
3076 |
-
#: core/lib/wpbc_all_translations.php:534
|
3077 |
-
#, php-format
|
3078 |
-
msgid "Email templates, which use shortcodes: %s, will be linked to this page"
|
3079 |
-
msgstr ""
|
3080 |
-
|
3081 |
-
#: core/admin/wpbc-toolbar-tiny.php:1767 core/lib/wpbc_all_translations.php:535
|
3082 |
-
#, php-format
|
3083 |
-
msgid ""
|
3084 |
-
"This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
|
3085 |
-
msgstr ""
|
3086 |
-
|
3087 |
-
#: core/admin/wpbc-toolbar-tiny.php:1768 core/lib/wpbc_all_translations.php:536
|
3088 |
-
#, php-format
|
3089 |
-
msgid ""
|
3090 |
-
"The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
|
3091 |
-
"settings page%s must link to this page"
|
3092 |
-
msgstr ""
|
3093 |
-
|
3094 |
-
#: core/admin/wpbc-toolbar-tiny.php:1770 core/lib/wpbc_all_translations.php:537
|
3095 |
-
#, php-format
|
3096 |
-
msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
|
3097 |
-
msgstr ""
|
3098 |
-
|
3099 |
-
#: core/admin/wpbc-toolbar-tiny.php:1770 core/lib/wpbc_all_translations.php:538
|
3100 |
-
msgid "Trick"
|
3101 |
-
msgstr ""
|
3102 |
-
|
3103 |
-
#: core/admin/wpbc-toolbar-tiny.php:1811 core/lib/wpbc_all_translations.php:539
|
3104 |
-
#: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
|
3105 |
-
#: inc/_ps/admin/br-table-import-gcal-p.php:63
|
3106 |
-
msgid "Capacity"
|
3107 |
-
msgstr ""
|
3108 |
-
|
3109 |
-
#: core/admin/wpbc-toolbar-tiny.php:1817 core/lib/wpbc_all_translations.php:540
|
3110 |
-
msgid "Select type of info to show."
|
3111 |
-
msgstr ""
|
3112 |
-
|
3113 |
-
#: core/admin/wpbc-toolbar-tiny.php:2127 core/admin/wpbc-toolbar-tiny.php:2170
|
3114 |
-
#: core/admin/wpbc-toolbar-tiny.php:2254 core/admin/wpbc-toolbar-tiny.php:2343
|
3115 |
-
#: core/lib/wpbc_all_translations.php:541
|
3116 |
-
msgid "No booking resources"
|
3117 |
-
msgstr ""
|
3118 |
-
|
3119 |
-
#: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:542
|
3120 |
-
msgid "Filters"
|
3121 |
-
msgstr ""
|
3122 |
-
|
3123 |
-
#: core/admin/wpbc-toolbars.php:350 core/lib/wpbc_all_translations.php:543
|
3124 |
-
msgid "Expand Advanced Toolbar"
|
3125 |
-
msgstr ""
|
3126 |
-
|
3127 |
-
#: core/admin/wpbc-toolbars.php:357 core/lib/wpbc_all_translations.php:544
|
3128 |
-
msgid "Collapse Advanced Toolbar"
|
3129 |
-
msgstr ""
|
3130 |
-
|
3131 |
-
#: core/admin/wpbc-toolbars.php:379 core/lib/wpbc_all_translations.php:545
|
3132 |
-
msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
|
3133 |
-
msgstr ""
|
3134 |
-
|
3135 |
-
#: core/admin/wpbc-toolbars.php:380 core/lib/wpbc_all_translations.php:546
|
3136 |
-
msgid "Emails sending"
|
3137 |
-
msgstr ""
|
3138 |
-
|
3139 |
-
#: core/admin/wpbc-toolbars.php:405 core/lib/wpbc_all_translations.php:547
|
3140 |
-
msgid "Booking ID"
|
3141 |
-
msgstr ""
|
3142 |
-
|
3143 |
-
#: core/admin/wpbc-toolbars.php:408 core/admin/wpbc-toolbars.php:2255
|
3144 |
-
#: core/lib/wpbc_all_translations.php:548
|
3145 |
-
msgid "Go"
|
3146 |
-
msgstr ""
|
3147 |
-
|
3148 |
-
#: core/admin/wpbc-toolbars.php:442 core/lib/wpbc_all_translations.php:549
|
3149 |
-
msgid "Technical Support"
|
3150 |
-
msgstr ""
|
3151 |
-
|
3152 |
-
#: core/admin/wpbc-toolbars.php:444 core/lib/wpbc_all_translations.php:550
|
3153 |
-
msgid "About Booking Calendar"
|
3154 |
-
msgstr ""
|
3155 |
-
|
3156 |
-
#: core/admin/wpbc-toolbars.php:511 core/admin/wpbc-toolbars.php:691
|
3157 |
-
#: core/admin/wpbc-toolbars.php:896 core/admin/wpbc-toolbars.php:1516
|
3158 |
-
#: core/lib/wpbc_all_translations.php:551 inc/_bs/lib_s.php:85
|
3159 |
-
msgid "Apply"
|
3160 |
-
msgstr ""
|
3161 |
-
|
3162 |
-
#: core/admin/wpbc-toolbars.php:512 core/lib/wpbc_all_translations.php:552
|
3163 |
-
msgid "Refresh booking listing"
|
3164 |
-
msgstr ""
|
3165 |
-
|
3166 |
-
#: core/admin/wpbc-toolbars.php:526 core/lib/wpbc_all_translations.php:553
|
3167 |
-
msgid "Reset filter to default values"
|
3168 |
-
msgstr ""
|
3169 |
-
|
3170 |
-
#: core/admin/wpbc-toolbars.php:552 core/admin/wpbc-toolbars.php:767
|
3171 |
-
#: core/lib/wpbc_all_translations.php:554
|
3172 |
-
msgid "Any"
|
3173 |
-
msgstr ""
|
3174 |
-
|
3175 |
-
#: core/admin/wpbc-toolbars.php:573 core/admin/wpbc-toolbars.php:807
|
3176 |
-
#: core/lib/wpbc_all_translations.php:555
|
3177 |
-
msgid "week"
|
3178 |
-
msgstr ""
|
3179 |
-
|
3180 |
-
#: core/admin/wpbc-toolbars.php:574 core/admin/wpbc-toolbars.php:808
|
3181 |
-
#: core/lib/wpbc_all_translations.php:556
|
3182 |
-
msgid "weeks"
|
3183 |
-
msgstr ""
|
3184 |
-
|
3185 |
-
#: core/admin/wpbc-toolbars.php:575 core/admin/wpbc-toolbars.php:809
|
3186 |
-
#: core/lib/wpbc_all_translations.php:557
|
3187 |
-
msgid "month"
|
3188 |
-
msgstr ""
|
3189 |
-
|
3190 |
-
#: core/admin/wpbc-toolbars.php:576 core/admin/wpbc-toolbars.php:577
|
3191 |
-
#: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:810
|
3192 |
-
#: core/admin/wpbc-toolbars.php:811 core/admin/wpbc-toolbars.php:812
|
3193 |
-
#: core/lib/wpbc_all_translations.php:558
|
3194 |
-
msgid "months"
|
3195 |
-
msgstr ""
|
3196 |
-
|
3197 |
-
#: core/admin/wpbc-toolbars.php:586 core/admin/wpbc-toolbars.php:821
|
3198 |
-
#: core/lib/wpbc_all_translations.php:559
|
3199 |
-
msgid "Filter bookings by booking dates"
|
3200 |
-
msgstr ""
|
3201 |
-
|
3202 |
-
#: core/admin/wpbc-toolbars.php:590 core/lib/wpbc_all_translations.php:560
|
3203 |
-
msgid "Current dates"
|
3204 |
-
msgstr ""
|
3205 |
-
|
3206 |
-
#: core/admin/wpbc-toolbars.php:591 core/admin/wpbc-toolbars.php:825
|
3207 |
-
#: core/lib/wpbc_all_translations.php:561
|
3208 |
-
msgid "Today"
|
3209 |
-
msgstr ""
|
3210 |
-
|
3211 |
-
#: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:562
|
3212 |
-
msgid "Previous dates"
|
3213 |
-
msgstr ""
|
3214 |
-
|
3215 |
-
#: core/admin/wpbc-toolbars.php:593 core/admin/wpbc-toolbars.php:826
|
3216 |
-
#: core/lib/wpbc_all_translations.php:563
|
3217 |
-
msgid "All dates"
|
3218 |
-
msgstr ""
|
3219 |
-
|
3220 |
-
#: core/admin/wpbc-toolbars.php:595 core/lib/wpbc_all_translations.php:564
|
3221 |
-
msgid "Today check in/out"
|
3222 |
-
msgstr ""
|
3223 |
-
|
3224 |
-
#: core/admin/wpbc-toolbars.php:596 core/lib/wpbc_all_translations.php:565
|
3225 |
-
msgid "Check In - Tomorrow"
|
3226 |
-
msgstr ""
|
3227 |
-
|
3228 |
-
#: core/admin/wpbc-toolbars.php:597 core/lib/wpbc_all_translations.php:566
|
3229 |
-
msgid "Check Out - Tomorrow"
|
3230 |
-
msgstr ""
|
3231 |
-
|
3232 |
-
#: core/admin/wpbc-toolbars.php:602 core/lib/wpbc_all_translations.php:567
|
3233 |
-
#: core/wpbc-functions.php:2530
|
3234 |
-
msgid "Next"
|
3235 |
-
msgstr ""
|
3236 |
-
|
3237 |
-
#: core/admin/wpbc-toolbars.php:626 core/admin/wpbc-toolbars.php:831
|
3238 |
-
#: core/lib/wpbc_all_translations.php:568
|
3239 |
-
msgid "Prior"
|
3240 |
-
msgstr ""
|
3241 |
-
|
3242 |
-
#: core/admin/wpbc-toolbars.php:666 core/admin/wpbc-toolbars.php:871
|
3243 |
-
#: core/lib/wpbc_all_translations.php:569
|
3244 |
-
msgid "Check-in"
|
3245 |
-
msgstr ""
|
3246 |
-
|
3247 |
-
#: core/admin/wpbc-toolbars.php:678 core/admin/wpbc-toolbars.php:883
|
3248 |
-
#: core/lib/wpbc_all_translations.php:570
|
3249 |
-
msgid "Check-out"
|
3250 |
-
msgstr ""
|
3251 |
-
|
3252 |
-
#: core/admin/wpbc-toolbars.php:750 core/lib/wpbc_all_translations.php:571
|
3253 |
-
msgid "Order by"
|
3254 |
-
msgstr ""
|
3255 |
-
|
3256 |
-
#: core/admin/wpbc-toolbars.php:764 core/lib/wpbc_all_translations.php:572
|
3257 |
-
msgid "Exist"
|
3258 |
-
msgstr ""
|
3259 |
-
|
3260 |
-
#: core/admin/wpbc-toolbars.php:786 core/lib/wpbc_all_translations.php:573
|
3261 |
-
msgid "New bookings"
|
3262 |
-
msgstr ""
|
3263 |
-
|
3264 |
-
#: core/admin/wpbc-toolbars.php:823 core/lib/wpbc_all_translations.php:574
|
3265 |
-
msgid "Creation"
|
3266 |
-
msgstr ""
|
3267 |
-
|
3268 |
-
#: core/admin/wpbc-toolbars.php:950 core/lib/wpbc_all_translations.php:575
|
3269 |
-
msgid "Approve selected bookings"
|
3270 |
-
msgstr ""
|
3271 |
-
|
3272 |
-
#: core/admin/wpbc-toolbars.php:965 core/lib/wpbc_all_translations.php:576
|
3273 |
-
msgid "Set selected bookings as pending"
|
3274 |
-
msgstr ""
|
3275 |
-
|
3276 |
-
#: core/admin/wpbc-toolbars.php:995 core/lib/wpbc_all_translations.php:577
|
3277 |
-
msgid "Reject booking - move selected bookings to trash"
|
3278 |
-
msgstr ""
|
3279 |
-
|
3280 |
-
#: core/admin/wpbc-toolbars.php:1012 core/lib/wpbc_all_translations.php:578
|
3281 |
-
msgid "Restore selected bookings"
|
3282 |
-
msgstr ""
|
3283 |
-
|
3284 |
-
#: core/admin/wpbc-toolbars.php:1028 core/lib/wpbc_all_translations.php:579
|
3285 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2670 inc/_bl/admin/page-coupons.php:216
|
3286 |
-
#: inc/_bl/admin/page-coupons.php:222 inc/_bm/admin/page-availability.php:240
|
3287 |
-
#: inc/_bm/admin/page-availability.php:246 inc/_bm/admin/page-cost-valuation.php:567
|
3288 |
-
#: inc/_bm/admin/page-cost.php:223 inc/_bm/admin/page-cost.php:233
|
3289 |
-
#: inc/_bm/admin/page-seasons.php:201 inc/_bm/admin/page-seasons.php:207 inc/_bm/m-toolbar.php:297
|
3290 |
-
#: inc/_ps/admin/page-resources.php:189 inc/_ps/admin/page-resources.php:195
|
3291 |
-
msgid "Delete"
|
3292 |
-
msgstr ""
|
3293 |
-
|
3294 |
-
#: core/admin/wpbc-toolbars.php:1029 core/lib/wpbc_all_translations.php:580
|
3295 |
-
msgid "Delete selected bookings"
|
3296 |
-
msgstr ""
|
3297 |
-
|
3298 |
-
#: core/admin/wpbc-toolbars.php:1031 core/lib/wpbc_all_translations.php:581
|
3299 |
-
#: core/sync/wpbc-gcal-class.php:706
|
3300 |
-
msgid "Do you really want to delete selected booking(s) ?"
|
3301 |
-
msgstr ""
|
3302 |
-
|
3303 |
-
#: core/admin/wpbc-toolbars.php:1047 core/lib/wpbc_all_translations.php:582
|
3304 |
-
msgid "Reason of cancellation"
|
3305 |
-
msgstr ""
|
3306 |
-
|
3307 |
-
#: core/admin/wpbc-toolbars.php:1075 core/admin/wpbc-toolbars.php:1076 core/lib/wpbc-ajax.php:380
|
3308 |
-
#: core/lib/wpbc_all_translations.php:583
|
3309 |
-
msgid "Empty Trash"
|
3310 |
-
msgstr ""
|
3311 |
-
|
3312 |
-
#: core/admin/wpbc-toolbars.php:1106 core/lib/wpbc_all_translations.php:584
|
3313 |
-
msgid "Read All"
|
3314 |
-
msgstr ""
|
3315 |
-
|
3316 |
-
#: core/admin/wpbc-toolbars.php:1107 core/lib/wpbc_all_translations.php:585
|
3317 |
-
msgid "Mark as read all bookings"
|
3318 |
-
msgstr ""
|
3319 |
-
|
3320 |
-
#: core/admin/wpbc-toolbars.php:1120 core/lib/wpbc_all_translations.php:586
|
3321 |
-
msgid "Read"
|
3322 |
-
msgstr ""
|
3323 |
-
|
3324 |
-
#: core/admin/wpbc-toolbars.php:1121 core/lib/wpbc_all_translations.php:587
|
3325 |
-
msgid "Mark as read selected bookings"
|
3326 |
-
msgstr ""
|
3327 |
-
|
3328 |
-
#: core/admin/wpbc-toolbars.php:1135 core/lib/wpbc_all_translations.php:588
|
3329 |
-
msgid "Unread"
|
3330 |
-
msgstr ""
|
3331 |
-
|
3332 |
-
#: core/admin/wpbc-toolbars.php:1136 core/lib/wpbc_all_translations.php:589
|
3333 |
-
msgid "Mark as Unread selected bookings"
|
3334 |
-
msgstr ""
|
3335 |
-
|
3336 |
-
#: core/admin/wpbc-toolbars.php:1185 core/admin/wpbc-toolbars.php:1245
|
3337 |
-
#: core/lib/wpbc_all_translations.php:590
|
3338 |
-
msgid "Show day"
|
3339 |
-
msgstr ""
|
3340 |
-
|
3341 |
-
#: core/admin/wpbc-toolbars.php:1202 core/admin/wpbc-toolbars.php:1259
|
3342 |
-
#: core/lib/wpbc_all_translations.php:591
|
3343 |
-
msgid "Show week"
|
3344 |
-
msgstr ""
|
3345 |
-
|
3346 |
-
#: core/admin/wpbc-toolbars.php:1219 core/admin/wpbc-toolbars.php:1273
|
3347 |
-
#: core/lib/wpbc_all_translations.php:592
|
3348 |
-
msgid "Show month"
|
3349 |
-
msgstr ""
|
3350 |
-
|
3351 |
-
#: core/admin/wpbc-toolbars.php:1287 core/lib/wpbc_all_translations.php:593
|
3352 |
-
msgid "Show 2 months"
|
3353 |
-
msgstr ""
|
3354 |
-
|
3355 |
-
#: core/admin/wpbc-toolbars.php:1344 core/admin/wpbc-toolbars.php:1358
|
3356 |
-
#: core/admin/wpbc-toolbars.php:1405 core/lib/wpbc_all_translations.php:594
|
3357 |
-
msgid "Previous 4 weeks"
|
3358 |
-
msgstr ""
|
3359 |
-
|
3360 |
-
#: core/admin/wpbc-toolbars.php:1345 core/admin/wpbc-toolbars.php:1359
|
3361 |
-
#: core/admin/wpbc-toolbars.php:1406 core/lib/wpbc_all_translations.php:595
|
3362 |
-
msgid "Previous week"
|
3363 |
-
msgstr ""
|
3364 |
-
|
3365 |
-
#: core/admin/wpbc-toolbars.php:1346 core/admin/wpbc-toolbars.php:1360
|
3366 |
-
#: core/admin/wpbc-toolbars.php:1407 core/lib/wpbc_all_translations.php:596
|
3367 |
-
msgid "Current week"
|
3368 |
-
msgstr ""
|
3369 |
-
|
3370 |
-
#: core/admin/wpbc-toolbars.php:1347 core/admin/wpbc-toolbars.php:1361
|
3371 |
-
#: core/admin/wpbc-toolbars.php:1408 core/lib/wpbc_all_translations.php:597
|
3372 |
-
msgid "Next week"
|
3373 |
-
msgstr ""
|
3374 |
-
|
3375 |
-
#: core/admin/wpbc-toolbars.php:1348 core/admin/wpbc-toolbars.php:1362
|
3376 |
-
#: core/admin/wpbc-toolbars.php:1409 core/lib/wpbc_all_translations.php:598
|
3377 |
-
msgid "Next 4 weeks"
|
3378 |
-
msgstr ""
|
3379 |
-
|
3380 |
-
#: core/admin/wpbc-toolbars.php:1372 core/admin/wpbc-toolbars.php:1422
|
3381 |
-
#: core/admin/wpbc-toolbars.php:1437 core/lib/wpbc_all_translations.php:599
|
3382 |
-
msgid "Previous 3 months"
|
3383 |
-
msgstr ""
|
3384 |
-
|
3385 |
-
#: core/admin/wpbc-toolbars.php:1373 core/admin/wpbc-toolbars.php:1423
|
3386 |
-
#: core/admin/wpbc-toolbars.php:1438 core/lib/wpbc_all_translations.php:600
|
3387 |
-
msgid "Previous month"
|
3388 |
-
msgstr ""
|
3389 |
-
|
3390 |
-
#: core/admin/wpbc-toolbars.php:1374 core/admin/wpbc-toolbars.php:1424
|
3391 |
-
#: core/admin/wpbc-toolbars.php:1439 core/lib/wpbc_all_translations.php:601
|
3392 |
-
msgid "Current month"
|
3393 |
-
msgstr ""
|
3394 |
-
|
3395 |
-
#: core/admin/wpbc-toolbars.php:1375 core/admin/wpbc-toolbars.php:1425
|
3396 |
-
#: core/admin/wpbc-toolbars.php:1440 core/lib/wpbc_all_translations.php:602
|
3397 |
-
msgid "Next month"
|
3398 |
-
msgstr ""
|
3399 |
-
|
3400 |
-
#: core/admin/wpbc-toolbars.php:1376 core/admin/wpbc-toolbars.php:1426
|
3401 |
-
#: core/admin/wpbc-toolbars.php:1441 core/lib/wpbc_all_translations.php:603
|
3402 |
-
msgid "Next 3 months"
|
3403 |
-
msgstr ""
|
3404 |
-
|
3405 |
-
#: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:604
|
3406 |
-
msgid "Previous 7 days"
|
3407 |
-
msgstr ""
|
3408 |
-
|
3409 |
-
#: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:605
|
3410 |
-
msgid "Previous day"
|
3411 |
-
msgstr ""
|
3412 |
-
|
3413 |
-
#: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:606
|
3414 |
-
msgid "Current day"
|
3415 |
-
msgstr ""
|
3416 |
-
|
3417 |
-
#: core/admin/wpbc-toolbars.php:1393 core/lib/wpbc_all_translations.php:607
|
3418 |
-
msgid "Next day"
|
3419 |
-
msgstr ""
|
3420 |
-
|
3421 |
-
#: core/admin/wpbc-toolbars.php:1394 core/lib/wpbc_all_translations.php:608
|
3422 |
-
msgid "Next 7 days"
|
3423 |
-
msgstr ""
|
3424 |
-
|
3425 |
-
#: core/admin/wpbc-toolbars.php:1665 core/lib/wpbc_all_translations.php:609
|
3426 |
-
msgid "Number of months in one row"
|
3427 |
-
msgstr ""
|
3428 |
-
|
3429 |
-
#: core/admin/wpbc-toolbars.php:1710 core/lib/wpbc_all_translations.php:610
|
3430 |
-
msgid "Calendar width"
|
3431 |
-
msgstr ""
|
3432 |
-
|
3433 |
-
#: core/admin/wpbc-toolbars.php:1758 core/lib/wpbc_all_translations.php:611
|
3434 |
-
msgid "Calendar cell height"
|
3435 |
-
msgstr ""
|
3436 |
-
|
3437 |
-
#: core/admin/wpbc-toolbars.php:1867 core/admin/wpbc-toolbars.php:1868
|
3438 |
-
#: core/lib/wpbc_all_translations.php:612
|
3439 |
-
msgid "Send email notification to customer about this operation"
|
3440 |
-
msgstr ""
|
3441 |
-
|
3442 |
-
#: core/admin/wpbc-toolbars.php:1911 core/admin/wpbc-toolbars.php:1912
|
3443 |
-
#: core/lib/wpbc_all_translations.php:613
|
3444 |
-
msgid "Add to Google Calendar"
|
3445 |
-
msgstr ""
|
3446 |
-
|
3447 |
-
#: core/admin/wpbc-toolbars.php:2115 core/lib/wpbc_all_translations.php:614
|
3448 |
-
#: inc/gateways/page-gateways.php:1440 inc/gateways/page-gateways.php:1458
|
3449 |
-
msgid "Total"
|
3450 |
-
msgstr ""
|
3451 |
-
|
3452 |
-
#: core/admin/wpbc-toolbars.php:2251 core/lib/wpbc_all_translations.php:615
|
3453 |
-
msgid "ID or Title"
|
3454 |
-
msgstr ""
|
3455 |
-
|
3456 |
-
#: core/any/api-emails.php:508 core/lib/wpbc_all_translations.php:616
|
3457 |
-
msgid "Email copy to"
|
3458 |
-
msgstr ""
|
3459 |
-
|
3460 |
-
#: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
|
3461 |
-
#: core/lib/wpbc_all_translations.php:617 core/wpbc-functions.php:2795 core/wpbc-functions.php:2818
|
3462 |
-
msgid "Dismiss"
|
3463 |
-
msgstr ""
|
3464 |
-
|
3465 |
-
#: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:618
|
3466 |
-
#, php-format
|
3467 |
-
msgid ""
|
3468 |
-
"Probably you updated your paid version of Booking Calendar by free version or update process "
|
3469 |
-
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3470 |
-
msgstr ""
|
3471 |
-
|
3472 |
-
#: core/class/wpbc-class-welcome.php:1999 core/class/wpbc-class-welcome.php:2485
|
3473 |
-
#: core/lib/wpbc_all_translations.php:619 inc/_ps/admin/page-settings-up.php:155
|
3474 |
-
msgid "Purchase"
|
3475 |
-
msgstr ""
|
3476 |
-
|
3477 |
-
#: core/class/wpbc-class-welcome.php:1999 core/class/wpbc-class-welcome.php:2485
|
3478 |
-
#: core/lib/wpbc_all_translations.php:620 inc/_ps/admin/page-settings-up.php:155
|
3479 |
-
msgid "Upgrade Now"
|
3480 |
-
msgstr ""
|
3481 |
-
|
3482 |
-
#: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:38 core/lib/wpbc-ajax.php:70
|
3483 |
-
#: core/lib/wpbc-ajax.php:88 core/lib/wpbc_all_translations.php:621
|
3484 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:1115
|
3485 |
-
#, php-format
|
3486 |
-
msgid ""
|
3487 |
-
"%sError!%s Request do not pass security check! Please refresh the page and try one more time."
|
3488 |
-
msgstr ""
|
3489 |
-
|
3490 |
-
#: core/lib/wpbc-ajax.php:34 core/lib/wpbc-ajax.php:39 core/lib/wpbc-ajax.php:71
|
3491 |
-
#: core/lib/wpbc-ajax.php:89 core/lib/wpbc_all_translations.php:622
|
3492 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:1116
|
3493 |
-
#, php-format
|
3494 |
-
msgid "Please check more %shere%s"
|
3495 |
-
msgstr ""
|
3496 |
-
|
3497 |
-
#: core/lib/wpbc-ajax.php:146 core/lib/wpbc_all_translations.php:623
|
3498 |
-
msgid "Set as Unread"
|
3499 |
-
msgstr ""
|
3500 |
-
|
3501 |
-
#: core/lib/wpbc-ajax.php:148 core/lib/wpbc_all_translations.php:624
|
3502 |
-
msgid "Set as Read"
|
3503 |
-
msgstr ""
|
3504 |
-
|
3505 |
-
#: core/lib/wpbc-ajax.php:197 core/lib/wpbc_all_translations.php:625
|
3506 |
-
msgid "Approved by:"
|
3507 |
-
msgstr ""
|
3508 |
-
|
3509 |
-
#: core/lib/wpbc-ajax.php:197 core/lib/wpbc_all_translations.php:626
|
3510 |
-
msgid "Declined by:"
|
3511 |
-
msgstr ""
|
3512 |
-
|
3513 |
-
#: core/lib/wpbc-ajax.php:225 core/lib/wpbc_all_translations.php:627
|
3514 |
-
msgid "Set as Approved"
|
3515 |
-
msgstr ""
|
3516 |
-
|
3517 |
-
#: core/lib/wpbc-ajax.php:227 core/lib/wpbc_all_translations.php:628
|
3518 |
-
msgid "Set as Pending"
|
3519 |
-
msgstr ""
|
3520 |
-
|
3521 |
-
#: core/lib/wpbc-ajax.php:248 core/lib/wpbc-ajax.php:428 core/lib/wpbc_all_translations.php:629
|
3522 |
-
msgid "Reason for cancellation here"
|
3523 |
-
msgstr ""
|
3524 |
-
|
3525 |
-
#: core/lib/wpbc-ajax.php:249 core/lib/wpbc-ajax.php:429 core/lib/wpbc_all_translations.php:630
|
3526 |
-
msgid "Reason of cancellation here"
|
3527 |
-
msgstr ""
|
3528 |
-
|
3529 |
-
#: core/lib/wpbc-ajax.php:303 core/lib/wpbc_all_translations.php:631
|
3530 |
-
msgid "Moved to trash"
|
3531 |
-
msgstr ""
|
3532 |
-
|
3533 |
-
#: core/lib/wpbc-ajax.php:311 core/lib/wpbc_all_translations.php:632
|
3534 |
-
msgid "Restored"
|
3535 |
-
msgstr ""
|
3536 |
-
|
3537 |
-
#: core/lib/wpbc-ajax.php:408 core/lib/wpbc_all_translations.php:633
|
3538 |
-
#, php-format
|
3539 |
-
msgid "Deleted %d bookings from trash"
|
3540 |
-
msgstr ""
|
3541 |
-
|
3542 |
-
#: core/lib/wpbc-ajax.php:581 core/lib/wpbc_all_translations.php:634 inc/_ps/personal.php:170
|
3543 |
-
msgid "Saved"
|
3544 |
-
msgstr ""
|
3545 |
-
|
3546 |
-
#: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:635
|
3547 |
-
msgid "The code you entered is incorrect"
|
3548 |
-
msgstr ""
|
3549 |
-
|
3550 |
-
#: core/lib/wpbc-booking-new.php:139 core/lib/wpbc_all_translations.php:636
|
3551 |
-
msgid "Updating..."
|
3552 |
-
msgstr ""
|
3553 |
-
|
3554 |
-
#: core/lib/wpbc-booking-new.php:171 core/lib/wpbc_all_translations.php:637
|
3555 |
-
#: inc/_ps/personal.php:2415 inc/_ps/personal.php:2606
|
3556 |
-
msgid "Updated successfully"
|
3557 |
-
msgstr ""
|
3558 |
-
|
3559 |
-
#: core/lib/wpbc-booking-new.php:957 core/lib/wpbc_all_translations.php:638
|
3560 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:878
|
3561 |
-
msgid "Error!"
|
3562 |
-
msgstr ""
|
3563 |
-
|
3564 |
-
#: core/lib/wpbc-booking-new.php:958 core/lib/wpbc_all_translations.php:639
|
3565 |
-
msgid ""
|
3566 |
-
"Probably these date(s) just was booking by other visitor. Please reload this page and make "
|
3567 |
-
"booking again."
|
3568 |
-
msgstr ""
|
3569 |
-
|
3570 |
-
#: core/lib/wpbc_all_translations.php:640
|
3571 |
-
msgid "Timeline type"
|
3572 |
-
msgstr ""
|
3573 |
-
|
3574 |
-
#: core/lib/wpbc_all_translations.php:641
|
3575 |
-
msgid "Select type of timeline to load"
|
3576 |
-
msgstr ""
|
3577 |
-
|
3578 |
-
#: core/lib/wpbc_all_translations.php:642
|
3579 |
-
msgid "Flex Timeline"
|
3580 |
-
msgstr ""
|
3581 |
-
|
3582 |
-
#: core/lib/wpbc_all_translations.php:643
|
3583 |
-
msgid "Old Timeline"
|
3584 |
-
msgstr ""
|
3585 |
-
|
3586 |
-
#: core/lib/wpbc_all_translations.php:644
|
3587 |
-
msgid "Trash"
|
3588 |
-
msgstr ""
|
3589 |
-
|
3590 |
-
#: core/lib/wpbc_all_translations.php:645
|
3591 |
-
msgid "Move to trash"
|
3592 |
-
msgstr ""
|
3593 |
-
|
3594 |
-
#: core/lib/wpbc_all_translations.php:646 core/timeline/v2/wpbc-class-timeline_v2.php:89
|
3595 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:98 core/timeline/v2/wpbc-class-timeline_v2.php:107
|
3596 |
-
msgid "Mon"
|
3597 |
-
msgstr ""
|
3598 |
-
|
3599 |
-
#: core/lib/wpbc_all_translations.php:647 core/timeline/v2/wpbc-class-timeline_v2.php:90
|
3600 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:99 core/timeline/v2/wpbc-class-timeline_v2.php:108
|
3601 |
-
msgid "Tue"
|
3602 |
-
msgstr ""
|
3603 |
-
|
3604 |
-
#: core/lib/wpbc_all_translations.php:648 core/timeline/v2/wpbc-class-timeline_v2.php:91
|
3605 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:100 core/timeline/v2/wpbc-class-timeline_v2.php:109
|
3606 |
-
msgid "Wed"
|
3607 |
-
msgstr ""
|
3608 |
-
|
3609 |
-
#: core/lib/wpbc_all_translations.php:649 core/timeline/v2/wpbc-class-timeline_v2.php:92
|
3610 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:101 core/timeline/v2/wpbc-class-timeline_v2.php:110
|
3611 |
-
msgid "Thu"
|
3612 |
-
msgstr ""
|
3613 |
-
|
3614 |
-
#: core/lib/wpbc_all_translations.php:650 core/timeline/v2/wpbc-class-timeline_v2.php:93
|
3615 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:102 core/timeline/v2/wpbc-class-timeline_v2.php:111
|
3616 |
-
msgid "Fri"
|
3617 |
-
msgstr ""
|
3618 |
-
|
3619 |
-
#: core/lib/wpbc_all_translations.php:651 core/timeline/v2/wpbc-class-timeline_v2.php:94
|
3620 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:103 core/timeline/v2/wpbc-class-timeline_v2.php:112
|
3621 |
-
msgid "Sat"
|
3622 |
-
msgstr ""
|
3623 |
-
|
3624 |
-
#: core/lib/wpbc_all_translations.php:652 core/timeline/v2/wpbc-class-timeline_v2.php:95
|
3625 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:104 core/timeline/v2/wpbc-class-timeline_v2.php:113
|
3626 |
-
msgid "Sun"
|
3627 |
-
msgstr ""
|
3628 |
-
|
3629 |
-
#: core/lib/wpbc_all_translations.php:653 core/timeline/v2/wpbc-class-timeline_v2.php:1428
|
3630 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:1441 inc/_ps/wpbc-form-templates.php:155
|
3631 |
-
msgid "Times"
|
3632 |
-
msgstr ""
|
3633 |
-
|
3634 |
-
#: core/lib/wpbc_all_translations.php:654
|
3635 |
-
msgid "Decline"
|
3636 |
-
msgstr ""
|
3637 |
-
|
3638 |
-
#: core/lib/wpbc_all_translations.php:655 core/timeline/v2/wpbc-class-timeline_v2.php:2702
|
3639 |
-
msgid "Pay"
|
3640 |
-
msgstr ""
|
3641 |
-
|
3642 |
-
#: core/lib/wpbc_all_translations.php:656 core/timeline/v2/wpbc-class-timeline_v2.php:2761
|
3643 |
-
#: core/timeline/v2/wpbc-class-timeline_v2.php:2763 core/wpbc-functions.php:1999
|
3644 |
-
#: inc/_bs/lib_s.php:43 inc/_bs/lib_s.php:273 inc/_bs/lib_s.php:275
|
3645 |
-
#: inc/_ps/admin/page-settings-form.php:388 inc/_ps/admin/page-settings-form.php:399
|
3646 |
-
msgid "Payment"
|
3647 |
-
msgstr ""
|
3648 |
-
|
3649 |
-
#: core/lib/wpbc_all_translations.php:657
|
3650 |
-
msgid "In Trash"
|
3651 |
-
msgstr ""
|
3652 |
-
|
3653 |
-
#: core/lib/wpbc_all_translations.php:658
|
3654 |
-
msgid "Move selected bookings to trash"
|
3655 |
-
msgstr ""
|
3656 |
-
|
3657 |
-
#: core/lib/wpbc_all_translations.php:659
|
3658 |
-
msgid ""
|
3659 |
-
"Check the box, if you want to use syntax highlighter during customization booking form at "
|
3660 |
-
"Settings - Form page."
|
3661 |
-
msgstr ""
|
3662 |
-
|
3663 |
-
#: core/lib/wpbc_all_translations.php:660
|
3664 |
-
msgid "Show 3 months"
|
3665 |
-
msgstr ""
|
3666 |
-
|
3667 |
-
#: core/lib/wpbc_all_translations.php:661
|
3668 |
-
msgid "Show year"
|
3669 |
-
msgstr ""
|
3670 |
-
|
3671 |
-
#: core/lib/wpbc_all_translations.php:662
|
3672 |
-
msgid "Number of months"
|
3673 |
-
msgstr ""
|
3674 |
-
|
3675 |
-
#: core/lib/wpbc_all_translations.php:663 inc/_bs/lib_s.php:47 inc/_bs/lib_s.php:293
|
3676 |
-
msgid "Paid OK"
|
3677 |
-
msgstr ""
|
3678 |
-
|
3679 |
-
#: core/lib/wpbc_all_translations.php:664
|
3680 |
-
msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
|
3681 |
-
msgstr ""
|
3682 |
-
|
3683 |
-
#: core/lib/wpbc_all_translations.php:665
|
3684 |
-
#, php-format
|
3685 |
-
msgid ""
|
3686 |
-
"Probabaly you updated your paid version of Booking Calendar by free version or update process "
|
3687 |
-
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
3688 |
-
msgstr ""
|
3689 |
-
|
3690 |
-
#: core/lib/wpbc_all_translations.php:666
|
3691 |
-
msgid "Copy to admin"
|
3692 |
-
msgstr ""
|
3693 |
-
|
3694 |
-
#: core/lib/wpbc_all_translations.php:667
|
3695 |
-
msgid "Enable / disable sending copy of this email notification to admin"
|
3696 |
-
msgstr ""
|
3697 |
-
|
3698 |
-
#: core/lib/wpbc_all_translations.php:668
|
3699 |
-
msgid "Customization of email template, which is sending to Visitor after approval of booking"
|
3700 |
-
msgstr ""
|
3701 |
-
|
3702 |
-
#: core/lib/wpbc_all_translations.php:669
|
3703 |
-
msgid "Email is sending to Visitor after Approval of booking."
|
3704 |
-
msgstr ""
|
3705 |
-
|
3706 |
-
#: core/lib/wpbc_all_translations.php:670
|
3707 |
-
msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
|
3708 |
-
msgstr ""
|
3709 |
-
|
3710 |
-
#: core/lib/wpbc_all_translations.php:671
|
3711 |
-
msgid "Email is sending to Visitor after Deleting of booking."
|
3712 |
-
msgstr ""
|
3713 |
-
|
3714 |
-
#: core/lib/wpbc_all_translations.php:672
|
3715 |
-
msgid ""
|
3716 |
-
"Customization of email template, which is sending to Visitor, when booking status is set to "
|
3717 |
-
"Pending"
|
3718 |
-
msgstr ""
|
3719 |
-
|
3720 |
-
#: core/lib/wpbc_all_translations.php:673
|
3721 |
-
msgid "Email is sending to Visitor after booking set as Pending."
|
3722 |
-
msgstr ""
|
3723 |
-
|
3724 |
-
#: core/lib/wpbc_all_translations.php:674
|
3725 |
-
msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
|
3726 |
-
msgstr ""
|
3727 |
-
|
3728 |
-
#: core/lib/wpbc_all_translations.php:675
|
3729 |
-
msgid "Confgure ULR feed(s) at this settings page."
|
3730 |
-
msgstr ""
|
3731 |
-
|
3732 |
-
#: core/lib/wpbc_all_translations.php:676
|
3733 |
-
msgid "Reject"
|
3734 |
-
msgstr ""
|
3735 |
-
|
3736 |
-
#: core/lib/wpbc_all_translations.php:677
|
3737 |
-
msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
|
3738 |
-
msgstr ""
|
3739 |
-
|
3740 |
-
#: core/lib/wpbc_all_translations.php:678
|
3741 |
-
msgid "Google Calendar"
|
3742 |
-
msgstr ""
|
3743 |
-
|
3744 |
-
#: core/lib/wpbc_all_translations.php:679
|
3745 |
-
msgid "Events Import"
|
3746 |
-
msgstr ""
|
3747 |
-
|
3748 |
-
#: core/lib/wpbc_all_translations.php:680
|
3749 |
-
msgid "Import Settings"
|
3750 |
-
msgstr ""
|
3751 |
-
|
3752 |
-
#: core/lib/wpbc_all_translations.php:681
|
3753 |
-
msgid "Customization of synchronization with Google Calendar"
|
3754 |
-
msgstr ""
|
3755 |
-
|
3756 |
-
#: core/lib/wpbc_all_translations.php:682 core/wpbc-debug.php:177 core/wpbc-emails.php:449
|
3757 |
-
#: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
|
3758 |
-
#: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
|
3759 |
-
#: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
|
3760 |
-
#: inc/_bm/admin/page-cost-rate.php:77 inc/_bm/admin/page-cost-valuation.php:103
|
3761 |
-
#: inc/_bm/admin/page-seasons.php:826 inc/_bm/admin/page-seasons.php:828 inc/_bs/lib_s.php:346
|
3762 |
-
#: inc/_ps/hash/wpbc-hash-functions.php:67 inc/_ps/hash/wpbc-hash-functions.php:106
|
3763 |
-
#: inc/_ps/hash/wpbc-hash-functions.php:134 inc/_ps/hash/wpbc-hash-functions.php:162
|
3764 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:314
|
3765 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1160
|
3766 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1174
|
3767 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1185
|
3768 |
-
msgid "Error"
|
3769 |
-
msgstr ""
|
3770 |
-
|
3771 |
-
#: core/lib/wpbc_all_translations.php:683
|
3772 |
-
msgid "does not exist"
|
3773 |
-
msgstr ""
|
3774 |
-
|
3775 |
-
#: core/lib/wpbc_all_translations.php:684 core/lib/wpdev-booking-class.php:528
|
3776 |
-
msgid "Calendar is loading..."
|
3777 |
-
msgstr ""
|
3778 |
-
|
3779 |
-
#: core/lib/wpbc_all_translations.php:685 core/lib/wpdev-booking-class.php:712
|
3780 |
-
#: core/lib/wpdev-booking-class.php:773 inc/_ps/personal.php:908 inc/_ps/personal.php:919
|
3781 |
-
msgid "Wrong booking hash in URL (probably expired)"
|
3782 |
-
msgstr ""
|
3783 |
-
|
3784 |
-
#: core/lib/wpbc_all_translations.php:686
|
3785 |
-
msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
|
3786 |
-
msgstr ""
|
3787 |
-
|
3788 |
-
#: core/lib/wpbc_all_translations.php:687 core/lib/wpdev-booking-class.php:896
|
3789 |
-
#, php-format
|
3790 |
-
msgid ""
|
3791 |
-
"%sWarning! Booking calendar for this booking resource are already at the page, please check more "
|
3792 |
-
"about this issue at %sthis page%s"
|
3793 |
-
msgstr ""
|
3794 |
-
|
3795 |
-
#: core/lib/wpbc_all_translations.php:688 core/lib/wpdev-booking-class.php:1140
|
3796 |
-
#: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
|
3797 |
-
msgid "You need to use special shortcode [bookingedit] for booking editing."
|
3798 |
-
msgstr ""
|
3799 |
-
|
3800 |
-
#: core/lib/wpbc_all_translations.php:689 core/lib/wpdev-booking-class.php:1088
|
3801 |
-
#: core/lib/wpdev-booking-class.php:1285 core/lib/wpdev-booking-class.php:1287
|
3802 |
-
#: inc/_ps/hash/wpbc-hash-functions.php:106 inc/_ps/hash/wpbc-hash-functions.php:134
|
3803 |
-
#: inc/_ps/hash/wpbc-hash-functions.php:162 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1664
|
3804 |
-
msgid "Wrong booking hash in URL. Probably hash is expired."
|
3805 |
-
msgstr ""
|
3806 |
-
|
3807 |
-
#: core/lib/wpbc_all_translations.php:690 core/lib/wpdev-booking-class.php:1092
|
3808 |
-
#: core/lib/wpdev-booking-class.php:1291 js/wpbc-gutenberg.js:1188 js/wpbc-gutenberg.js:1274
|
3809 |
-
msgid "You do not set any parameters for booking editing"
|
3810 |
-
msgstr ""
|
3811 |
-
|
3812 |
-
#: core/lib/wpbc_all_translations.php:691 core/lib/wpdev-booking-class.php:1094
|
3813 |
-
#: core/lib/wpdev-booking-class.php:1293
|
3814 |
-
#, php-format
|
3815 |
-
msgid "Please check more about configuration at %sthis page%s"
|
3816 |
-
msgstr ""
|
3817 |
-
|
3818 |
-
#: core/lib/wpbc_all_translations.php:692 core/lib/wpdev-booking-widget.php:108
|
3819 |
-
msgid "Booking form with calendar"
|
3820 |
-
msgstr ""
|
3821 |
-
|
3822 |
-
#: core/lib/wpbc_all_translations.php:693 core/lib/wpdev-booking-widget.php:109
|
3823 |
-
msgid "Only availability calendar"
|
3824 |
-
msgstr ""
|
3825 |
-
|
3826 |
-
#: core/lib/wpbc_all_translations.php:694 core/lib/wpdev-booking-widget.php:150
|
3827 |
-
msgid "Footer"
|
3828 |
-
msgstr ""
|
3829 |
-
|
3830 |
-
#: core/lib/wpbc_all_translations.php:695 core/lib/wpdev-booking-widget.php:155
|
3831 |
-
#, php-format
|
3832 |
-
msgid "Example: %sMake booking here%s"
|
3833 |
-
msgstr ""
|
3834 |
-
|
3835 |
-
#: core/lib/wpbc_all_translations.php:696 core/lib/wpdev-booking-widget.php:159
|
3836 |
-
#: inc/_ps/wpbc-booking-select-widget.php:263
|
3837 |
-
#, php-format
|
3838 |
-
msgid ""
|
3839 |
-
"%sImportant!!!%s Please note, if you show booking calendar (inserted into post/page) with widget "
|
3840 |
-
"at the same page, then the last will not be visible."
|
3841 |
-
msgstr ""
|
3842 |
-
|
3843 |
-
#: core/lib/wpbc_all_translations.php:697 core/lib/wpdev-booking-widget.php:163
|
3844 |
-
#, php-format
|
3845 |
-
msgid "%sSeveral widgets are supported at %spaid versions%s."
|
3846 |
-
msgstr ""
|
3847 |
-
|
3848 |
-
#: core/lib/wpbc_all_translations.php:698 core/sync/wpbc-gcal-class.php:300
|
3849 |
-
msgid "Importing Feed"
|
3850 |
-
msgstr ""
|
3851 |
-
|
3852 |
-
#: core/lib/wpbc_all_translations.php:699 core/sync/wpbc-gcal-class.php:316
|
3853 |
-
msgid "Data Parsing"
|
3854 |
-
msgstr ""
|
3855 |
-
|
3856 |
-
#: core/lib/wpbc_all_translations.php:700 core/sync/wpbc-gcal-class.php:458
|
3857 |
-
msgid ""
|
3858 |
-
"Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
|
3859 |
-
"correct."
|
3860 |
-
msgstr ""
|
3861 |
-
|
3862 |
-
#: core/lib/wpbc_all_translations.php:701 core/sync/wpbc-gcal-class.php:465
|
3863 |
-
msgid "The feed could not be found (404). Please ensure your feed URL is correct."
|
3864 |
-
msgstr ""
|
3865 |
-
|
3866 |
-
#: core/lib/wpbc_all_translations.php:702 core/sync/wpbc-gcal-class.php:468
|
3867 |
-
msgid ""
|
3868 |
-
"Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
|
3869 |
-
"calendar."
|
3870 |
-
msgstr ""
|
3871 |
-
|
3872 |
-
#: core/lib/wpbc_all_translations.php:703 core/sync/wpbc-gcal-class.php:471
|
3873 |
-
#, php-format
|
3874 |
-
msgid ""
|
3875 |
-
"The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
|
3876 |
-
msgstr ""
|
3877 |
-
|
3878 |
-
#: core/lib/wpbc_all_translations.php:704 core/sync/wpbc-gcal-class.php:644
|
3879 |
-
#: core/sync/wpbc-gcal-class.php:694
|
3880 |
-
msgid "GID"
|
3881 |
-
msgstr ""
|
3882 |
-
|
3883 |
-
#: core/lib/wpbc_all_translations.php:705 core/sync/wpbc-gcal-class.php:658
|
3884 |
-
msgid "Selection"
|
3885 |
-
msgstr ""
|
3886 |
-
|
3887 |
-
#: core/lib/wpbc_all_translations.php:706 core/sync/wpbc-gcal-class.php:672
|
3888 |
-
msgid "Location:"
|
3889 |
-
msgstr ""
|
3890 |
-
|
3891 |
-
#: core/lib/wpbc_all_translations.php:707 core/sync/wpbc-gcal-class.php:702
|
3892 |
-
msgid "Reload page"
|
3893 |
-
msgstr ""
|
3894 |
-
|
3895 |
-
#: core/lib/wpbc_all_translations.php:708 core/sync/wpbc-gcal-class.php:715
|
3896 |
-
msgid "Delete selected booking(s)"
|
3897 |
-
msgstr ""
|
3898 |
-
|
3899 |
-
#: core/lib/wpbc_all_translations.php:709 core/sync/wpbc-gcal.php:279
|
3900 |
-
msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
|
3901 |
-
msgstr ""
|
3902 |
-
|
3903 |
-
#: core/lib/wpbc_all_translations.php:710 core/sync/wpbc-gcal.php:399
|
3904 |
-
msgid "Retrieve Google Calendar Events "
|
3905 |
-
msgstr ""
|
3906 |
-
|
3907 |
-
#: core/lib/wpbc_all_translations.php:711 core/sync/wpbc-gcal.php:405
|
3908 |
-
msgid "Please configure settings for import Google Calendar events"
|
3909 |
-
msgstr ""
|
3910 |
-
|
3911 |
-
#: core/lib/wpbc_all_translations.php:712 core/sync/wpbc-gcal.php:433
|
3912 |
-
msgid "Configure"
|
3913 |
-
msgstr ""
|
3914 |
-
|
3915 |
-
#: core/lib/wpbc_all_translations.php:713 core/wpbc-activation.php:565
|
3916 |
-
#, php-format
|
3917 |
-
msgid "%s Found %s not indexed bookings %s"
|
3918 |
-
msgstr ""
|
3919 |
-
|
3920 |
-
#: core/lib/wpbc_all_translations.php:714 core/wpbc-activation.php:580
|
3921 |
-
#, php-format
|
3922 |
-
msgid "%s Finish getting sort dates. %s"
|
3923 |
-
msgstr ""
|
3924 |
-
|
3925 |
-
#: core/lib/wpbc_all_translations.php:715 core/wpbc-activation.php:589
|
3926 |
-
#, php-format
|
3927 |
-
msgid "Updated booking: %s"
|
3928 |
-
msgstr ""
|
3929 |
-
|
3930 |
-
#: core/lib/wpbc_all_translations.php:716 core/wpbc-activation.php:1022
|
3931 |
-
msgid "Booking form"
|
3932 |
-
msgstr ""
|
3933 |
-
|
3934 |
-
#: core/lib/wpbc_all_translations.php:717 core/wpbc-activation.php:1119
|
3935 |
-
#: inc/_ps/admin/page-email-edit.php:310
|
3936 |
-
msgid "The reservation has been modified"
|
3937 |
-
msgstr ""
|
3938 |
-
|
3939 |
-
#: core/lib/wpbc_all_translations.php:718 core/wpbc-activation.php:1120
|
3940 |
-
#: inc/_ps/admin/page-email-edit.php:324
|
3941 |
-
#, php-format
|
3942 |
-
msgid ""
|
3943 |
-
"The reservation %s for: %s has been modified. %sYou can edit this booking on this page: %s "
|
3944 |
-
"Thank you, %s"
|
3945 |
-
msgstr ""
|
3946 |
-
|
3947 |
-
#: core/lib/wpbc_all_translations.php:719 core/wpbc-activation.php:1184
|
3948 |
-
#: inc/_bs/admin/api-settings-s.php:376
|
3949 |
-
msgid "Booked Times:"
|
3950 |
-
msgstr ""
|
3951 |
-
|
3952 |
-
#: core/lib/wpbc_all_translations.php:720 core/wpbc-activation.php:1204
|
3953 |
-
msgid ""
|
3954 |
-
"This booking canceled because we did not receive payment and the administrator did not approve "
|
3955 |
-
"it."
|
3956 |
-
msgstr ""
|
3957 |
-
|
3958 |
-
#: core/lib/wpbc_all_translations.php:721 core/wpbc-activation.php:1236
|
3959 |
-
#: inc/_bs/admin/page-email-payment.php:314
|
3960 |
-
msgid "You need to make payment for this reservation"
|
3961 |
-
msgstr ""
|
3962 |
-
|
3963 |
-
#: core/lib/wpbc_all_translations.php:722 core/wpbc-activation.php:1237
|
3964 |
-
#: inc/_bs/admin/page-email-payment.php:328
|
3965 |
-
#, php-format
|
3966 |
-
msgid ""
|
3967 |
-
"You need to make payment %s for reservation %s at %s. %s Please make payment on this page: %s "
|
3968 |
-
"Thank you, %s"
|
3969 |
-
msgstr ""
|
3970 |
-
|
3971 |
-
#: core/lib/wpbc_all_translations.php:723 core/wpbc-activation.php:1274
|
3972 |
-
#: inc/_bm/admin/api-settings-m.php:247
|
3973 |
-
msgid "Cost: "
|
3974 |
-
msgstr ""
|
3975 |
-
|
3976 |
-
#: core/lib/wpbc_all_translations.php:724 core/wpbc-activation.php:1305
|
3977 |
-
#: inc/_bl/admin/api-settings-l.php:75
|
3978 |
-
msgid "Available: "
|
3979 |
-
msgstr ""
|
3980 |
-
|
3981 |
-
#: core/lib/wpbc_all_translations.php:725 core/wpbc-emails.php:78
|
3982 |
-
msgid "Booking system"
|
3983 |
-
msgstr ""
|
3984 |
-
|
3985 |
-
#: core/lib/wpbc_all_translations.php:726 core/wpbc-emails.php:184
|
3986 |
-
msgid ""
|
3987 |
-
"You can use (in subject and content of email template) any shortcodes, which you used in the "
|
3988 |
-
"booking form. Use the shortcodes in the same way as you used them in the content form at "
|
3989 |
-
"Settings Fields page."
|
3990 |
-
msgstr ""
|
3991 |
-
|
3992 |
-
#: core/lib/wpbc_all_translations.php:727 core/wpbc-emails.php:187
|
3993 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
|
3994 |
-
msgid "You can use following shortcodes in content of this template"
|
3995 |
-
msgstr ""
|
3996 |
-
|
3997 |
-
#: core/lib/wpbc_all_translations.php:728 core/wpbc-emails.php:191
|
3998 |
-
#: inc/gateways/page-gateways.php:1087
|
3999 |
-
#, php-format
|
4000 |
-
msgid ""
|
4001 |
-
"%s - inserting data info about the booking, which you configured in the content form at Settings "
|
4002 |
-
"Fields page"
|
4003 |
-
msgstr ""
|
4004 |
-
|
4005 |
-
#: core/lib/wpbc_all_translations.php:729 core/wpbc-emails.php:193
|
4006 |
-
#, php-format
|
4007 |
-
msgid "%s - inserting data info about the booking"
|
4008 |
-
msgstr ""
|
4009 |
-
|
4010 |
-
#: core/lib/wpbc_all_translations.php:730 core/wpbc-emails.php:197
|
4011 |
-
#, php-format
|
4012 |
-
msgid "%s - inserting the dates of booking"
|
4013 |
-
msgstr ""
|
4014 |
-
|
4015 |
-
#: core/lib/wpbc_all_translations.php:731 core/wpbc-emails.php:201
|
4016 |
-
#, php-format
|
4017 |
-
msgid "%s - inserting check-in date (first day of reservation),"
|
4018 |
-
msgstr ""
|
4019 |
-
|
4020 |
-
#: core/lib/wpbc_all_translations.php:732 core/wpbc-emails.php:206 core/wpbc-emails.php:208
|
4021 |
-
#, php-format
|
4022 |
-
msgid "%s - inserting check-out date (last day of reservation),"
|
4023 |
-
msgstr ""
|
4024 |
-
|
4025 |
-
#: core/lib/wpbc_all_translations.php:733 core/wpbc-emails.php:213
|
4026 |
-
#, php-format
|
4027 |
-
msgid "%s - inserting the number of booking dates "
|
4028 |
-
msgstr ""
|
4029 |
-
|
4030 |
-
#: core/lib/wpbc_all_translations.php:734 core/wpbc-emails.php:219
|
4031 |
-
#, php-format
|
4032 |
-
msgid "%s - inserting ID of booking "
|
4033 |
-
msgstr ""
|
4034 |
-
|
4035 |
-
#: core/lib/wpbc_all_translations.php:735 core/wpbc-emails.php:224
|
4036 |
-
#, php-format
|
4037 |
-
msgid "%s or %s - inserting the title of the booking resource "
|
4038 |
-
msgstr ""
|
4039 |
-
|
4040 |
-
#: core/lib/wpbc_all_translations.php:736 core/wpbc-emails.php:230
|
4041 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
|
4042 |
-
#, php-format
|
4043 |
-
msgid "%s - inserting the cost of booking "
|
4044 |
-
msgstr ""
|
4045 |
-
|
4046 |
-
#: core/lib/wpbc_all_translations.php:737 core/wpbc-emails.php:236
|
4047 |
-
#, php-format
|
4048 |
-
msgid "%s - inserting your site URL "
|
4049 |
-
msgstr ""
|
4050 |
-
|
4051 |
-
#: core/lib/wpbc_all_translations.php:738 core/wpbc-emails.php:239
|
4052 |
-
#, php-format
|
4053 |
-
msgid "%s - inserting IP address of the user who made this action "
|
4054 |
-
msgstr ""
|
4055 |
-
|
4056 |
-
#: core/lib/wpbc_all_translations.php:739 core/wpbc-emails.php:240
|
4057 |
-
#, php-format
|
4058 |
-
msgid ""
|
4059 |
-
"%s - inserting contents of the User-Agent: header from the current request, if there is one "
|
4060 |
-
msgstr ""
|
4061 |
-
|
4062 |
-
#: core/lib/wpbc_all_translations.php:740 core/wpbc-emails.php:241
|
4063 |
-
#, php-format
|
4064 |
-
msgid "%s - inserting address of the page (if any), where visitor make this action "
|
4065 |
-
msgstr ""
|
4066 |
-
|
4067 |
-
#: core/lib/wpbc_all_translations.php:741 core/wpbc-emails.php:245
|
4068 |
-
#, php-format
|
4069 |
-
msgid "%s - inserting date of this action "
|
4070 |
-
msgstr ""
|
4071 |
-
|
4072 |
-
#: core/lib/wpbc_all_translations.php:742 core/wpbc-emails.php:242
|
4073 |
-
#, php-format
|
4074 |
-
msgid "%s - inserting time of this action "
|
4075 |
-
msgstr ""
|
4076 |
-
|
4077 |
-
#: core/lib/wpbc_all_translations.php:743 core/wpbc-emails.php:259
|
4078 |
-
#, php-format
|
4079 |
-
msgid "%s - inserting moderate link of new booking "
|
4080 |
-
msgstr ""
|
4081 |
-
|
4082 |
-
#: core/lib/wpbc_all_translations.php:744 core/wpbc-emails.php:276
|
4083 |
-
#, php-format
|
4084 |
-
msgid ""
|
4085 |
-
"%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
|
4086 |
-
"parameter for setting different %s of this page. Example: %s )"
|
4087 |
-
msgstr ""
|
4088 |
-
|
4089 |
-
#: core/lib/wpbc_all_translations.php:745 core/wpbc-emails.php:280
|
4090 |
-
#, php-format
|
4091 |
-
msgid ""
|
4092 |
-
"%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
|
4093 |
-
"%s parameter for setting different %s of this page. Example: %s )"
|
4094 |
-
msgstr ""
|
4095 |
-
|
4096 |
-
#: core/lib/wpbc_all_translations.php:746 core/wpbc-emails.php:285
|
4097 |
-
#, php-format
|
4098 |
-
msgid ""
|
4099 |
-
"%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
|
4100 |
-
"the %s parameter for setting different %s of this page. Example: %s )"
|
4101 |
-
msgstr ""
|
4102 |
-
|
4103 |
-
#: core/lib/wpbc_all_translations.php:747 core/wpbc-emails.php:289
|
4104 |
-
#, php-format
|
4105 |
-
msgid "%s - add the reason for booking payment, you can enter it before sending email, "
|
4106 |
-
msgstr ""
|
4107 |
-
|
4108 |
-
#: core/lib/wpbc_all_translations.php:748 core/wpbc-emails.php:295
|
4109 |
-
#, php-format
|
4110 |
-
msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
|
4111 |
-
msgstr ""
|
4112 |
-
|
4113 |
-
#: core/lib/wpbc_all_translations.php:749 core/wpbc-emails.php:303 core/wpbc-translation.php:286
|
4114 |
-
msgid "Configuration in several languages"
|
4115 |
-
msgstr ""
|
4116 |
-
|
4117 |
-
#: core/lib/wpbc_all_translations.php:750 core/wpbc-emails.php:304 core/wpbc-translation.php:287
|
4118 |
-
#, php-format
|
4119 |
-
msgid "%s - start new translation section, where %s - locale of translation"
|
4120 |
-
msgstr ""
|
4121 |
-
|
4122 |
-
#: core/lib/wpbc_all_translations.php:751 core/wpbc-emails.php:305 core/wpbc-translation.php:288
|
4123 |
-
#, php-format
|
4124 |
-
msgid "Example #1: %s - start French translation section"
|
4125 |
-
msgstr ""
|
4126 |
-
|
4127 |
-
#: core/lib/wpbc_all_translations.php:752 core/wpbc-emails.php:306 core/wpbc-translation.php:289
|
4128 |
-
#, php-format
|
4129 |
-
msgid "Example #2: \"%s\" - English and French translation of some message"
|
4130 |
-
msgstr ""
|
4131 |
-
|
4132 |
-
#: core/lib/wpbc_all_translations.php:753 core/wpbc-functions.php:1018 inc/_bm/biz_m.php:2085
|
4133 |
-
msgid "yes"
|
4134 |
-
msgstr ""
|
4135 |
-
|
4136 |
-
#: core/lib/wpbc_all_translations.php:754 core/wpbc-functions.php:1022
|
4137 |
-
msgid "no"
|
4138 |
-
msgstr ""
|
4139 |
-
|
4140 |
-
#: core/lib/wpbc_all_translations.php:755 core/wpbc-functions.php:1927
|
4141 |
-
#: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:586
|
4142 |
-
msgid "Costs and Rates"
|
4143 |
-
msgstr ""
|
4144 |
-
|
4145 |
-
#: core/lib/wpbc_all_translations.php:756 core/wpbc-functions.php:1936
|
4146 |
-
#: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
|
4147 |
-
#: inc/gateways/page-gateways.php:92
|
4148 |
-
msgid "Advanced Cost"
|
4149 |
-
msgstr ""
|
4150 |
-
|
4151 |
-
#: core/lib/wpbc_all_translations.php:757 core/wpbc-functions.php:1945
|
4152 |
-
#: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
|
4153 |
-
msgid "Coupons"
|
4154 |
-
msgstr ""
|
4155 |
-
|
4156 |
-
#: core/lib/wpbc_all_translations.php:758 core/wpbc-functions.php:1963
|
4157 |
-
#: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
|
4158 |
-
msgid "Season Filters"
|
4159 |
-
msgstr ""
|
4160 |
-
|
4161 |
-
#: core/lib/wpbc_all_translations.php:759 core/wpbc-functions.php:2125
|
4162 |
-
msgid "Warning! Some error occur, during sending registration request."
|
4163 |
-
msgstr ""
|
4164 |
-
|
4165 |
-
#: core/lib/wpbc_all_translations.php:760 core/wpbc-functions.php:2130
|
4166 |
-
msgid ""
|
4167 |
-
"Please refresh this page and if the same error appear again contact support by email (with info "
|
4168 |
-
"about order number and website) for finishing the registrations"
|
4169 |
-
msgstr ""
|
4170 |
-
|
4171 |
-
#: core/lib/wpbc_all_translations.php:761 core/wpbc-functions.php:2158
|
4172 |
-
#, php-format
|
4173 |
-
msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
|
4174 |
-
msgstr ""
|
4175 |
-
|
4176 |
-
#: core/lib/wpbc_all_translations.php:762 core/wpbc-functions.php:2326
|
4177 |
-
msgid "Changes saved."
|
4178 |
-
msgstr ""
|
4179 |
-
|
4180 |
-
#: core/lib/wpbc_all_translations.php:763 core/wpbc-functions.php:2436
|
4181 |
-
msgid "Click to toggle"
|
4182 |
-
msgstr ""
|
4183 |
-
|
4184 |
-
#: core/lib/wpbc_all_translations.php:764 core/wpbc-functions.php:2497
|
4185 |
-
msgid "Prev"
|
4186 |
-
msgstr ""
|
4187 |
-
|
4188 |
-
#: core/lib/wpbc_all_translations.php:765 core/wpbc-functions.php:2857
|
4189 |
-
msgid "We’ve assembled some links to get you started:"
|
4190 |
-
msgstr ""
|
4191 |
-
|
4192 |
-
#: core/lib/wpbc_all_translations.php:766 core/wpbc-functions.php:2860
|
4193 |
-
msgid "Get Started"
|
4194 |
-
msgstr ""
|
4195 |
-
|
4196 |
-
#: core/lib/wpbc_all_translations.php:767 core/wpbc-functions.php:2863
|
4197 |
-
#, php-format
|
4198 |
-
msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
|
4199 |
-
msgstr ""
|
4200 |
-
|
4201 |
-
#: core/lib/wpbc_all_translations.php:768 core/wpbc-functions.php:2872
|
4202 |
-
#, php-format
|
4203 |
-
msgid "or add booking calendar %sWidget%s to your sidebar."
|
4204 |
-
msgstr ""
|
4205 |
-
|
4206 |
-
#: core/lib/wpbc_all_translations.php:769 core/wpbc-functions.php:2878
|
4207 |
-
#, php-format
|
4208 |
-
msgid "Check %show todo%s that and what %sshortcodes%s are available."
|
4209 |
-
msgstr ""
|
4210 |
-
|
4211 |
-
#: core/lib/wpbc_all_translations.php:770 core/wpbc-functions.php:2885
|
4212 |
-
#, php-format
|
4213 |
-
msgid "Add new booking from your post/page or from %sAdmin Panel%s."
|
4214 |
-
msgstr ""
|
4215 |
-
|
4216 |
-
#: core/lib/wpbc_all_translations.php:771 core/wpbc-functions.php:2891
|
4217 |
-
msgid "Next Steps"
|
4218 |
-
msgstr ""
|
4219 |
-
|
4220 |
-
#: core/lib/wpbc_all_translations.php:772 core/wpbc-functions.php:2894
|
4221 |
-
#, php-format
|
4222 |
-
msgid "Check %sBooking Listing%s page for new bookings."
|
4223 |
-
msgstr ""
|
4224 |
-
|
4225 |
-
#: core/lib/wpbc_all_translations.php:773 core/wpbc-functions.php:2899
|
4226 |
-
#, php-format
|
4227 |
-
msgid "Configure booking %sSettings%s."
|
4228 |
-
msgstr ""
|
4229 |
-
|
4230 |
-
#: core/lib/wpbc_all_translations.php:774 core/wpbc-functions.php:2903
|
4231 |
-
#, php-format
|
4232 |
-
msgid "Configure predefined set of your %sForm Fields%s."
|
4233 |
-
msgstr ""
|
4234 |
-
|
4235 |
-
#: core/lib/wpbc_all_translations.php:775 core/wpbc-functions.php:2907
|
4236 |
-
#, php-format
|
4237 |
-
msgid "Configure your predefined %sEmail Templates%s."
|
4238 |
-
msgstr ""
|
4239 |
-
|
4240 |
-
#: core/lib/wpbc_all_translations.php:776 core/wpbc-functions.php:2913
|
4241 |
-
msgid "Have a questions?"
|
4242 |
-
msgstr ""
|
4243 |
-
|
4244 |
-
#: core/lib/wpbc_all_translations.php:777 core/wpbc-functions.php:2916
|
4245 |
-
#, php-format
|
4246 |
-
msgid "Check out our %sHelp%s"
|
4247 |
-
msgstr ""
|
4248 |
-
|
4249 |
-
#: core/lib/wpbc_all_translations.php:778 core/wpbc-functions.php:2921
|
4250 |
-
#, php-format
|
4251 |
-
msgid "See %sFAQ%s."
|
4252 |
-
msgstr ""
|
4253 |
-
|
4254 |
-
#: core/lib/wpbc_all_translations.php:779 core/wpbc-functions.php:2926
|
4255 |
-
#, php-format
|
4256 |
-
msgid "Still having questions? Contact %sSupport%s."
|
4257 |
-
msgstr ""
|
4258 |
-
|
4259 |
-
#: core/lib/wpbc_all_translations.php:780 core/wpbc-functions.php:2934 core/wpbc.php:205
|
4260 |
-
#, php-format
|
4261 |
-
msgid "Need even more functionality? Check %s higher versions %s"
|
4262 |
-
msgstr ""
|
4263 |
-
|
4264 |
-
#: core/lib/wpbc_all_translations.php:781 core/wpbc-js.php:112
|
4265 |
-
msgid "This field is required"
|
4266 |
-
msgstr ""
|
4267 |
-
|
4268 |
-
#: core/lib/wpbc_all_translations.php:782 core/wpbc-js.php:113
|
4269 |
-
msgid "This checkbox must be checked"
|
4270 |
-
msgstr ""
|
4271 |
-
|
4272 |
-
#: core/lib/wpbc_all_translations.php:783 core/wpbc-js.php:114
|
4273 |
-
msgid "At least one option must be selected"
|
4274 |
-
msgstr ""
|
4275 |
-
|
4276 |
-
#: core/lib/wpbc_all_translations.php:784 core/wpbc-js.php:115
|
4277 |
-
msgid "Incorrect email field"
|
4278 |
-
msgstr ""
|
4279 |
-
|
4280 |
-
#: core/lib/wpbc_all_translations.php:785 core/wpbc-js.php:116
|
4281 |
-
msgid "Your emails do not match"
|
4282 |
-
msgstr ""
|
4283 |
-
|
4284 |
-
#: core/lib/wpbc_all_translations.php:786 core/wpbc-js.php:117
|
4285 |
-
msgid "Please, select booking date(s) at Calendar."
|
4286 |
-
msgstr ""
|
4287 |
-
|
4288 |
-
#: core/lib/wpbc_all_translations.php:787 core/wpbc-js.php:132
|
4289 |
-
msgid "Deleting"
|
4290 |
-
msgstr ""
|
4291 |
-
|
4292 |
-
#: core/lib/wpbc_all_translations.php:788 core/wpbc-js.php:133
|
4293 |
-
msgid "Updating"
|
4294 |
-
msgstr ""
|
4295 |
-
|
4296 |
-
#: core/lib/wpbc_all_translations.php:789 core/wpbc-js.php:134
|
4297 |
-
msgid "Saving"
|
4298 |
-
msgstr ""
|
4299 |
-
|
4300 |
-
#: core/lib/wpbc_all_translations.php:790 core/wpbc.php:97
|
4301 |
-
msgid "Booking"
|
4302 |
-
msgstr ""
|
4303 |
-
|
4304 |
-
#: core/lib/wpbc_all_translations.php:791 core/wpbc.php:289 core/wpbc.php:296
|
4305 |
-
msgid "Action is not allowed!"
|
4306 |
-
msgstr ""
|
4307 |
-
|
4308 |
-
#: core/lib/wpbc_all_translations.php:792 inc/_bl/admin/activation-l.php:119
|
4309 |
-
#: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
|
4310 |
-
#: inc/_bl/admin/page-search.php:783 inc/_bm/admin/api-settings-m.php:567 inc/_bm/m-toolbar.php:62
|
4311 |
-
#: inc/_bm/m-toolbar.php:414 inc/_ps/admin/page-settings-form.php:329
|
4312 |
-
#: inc/_ps/wpbc-booking-select-widget.php:230
|
4313 |
-
msgid "Standard"
|
4314 |
-
msgstr ""
|
4315 |
-
|
4316 |
-
#: core/lib/wpbc_all_translations.php:793 inc/_bl/admin/activation-l.php:120
|
4317 |
-
#: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
|
4318 |
-
#: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
|
4319 |
-
msgid "Superior"
|
4320 |
-
msgstr ""
|
4321 |
-
|
4322 |
-
#: core/lib/wpbc_all_translations.php:794 inc/_bl/admin/activation-l.php:120
|
4323 |
-
#: inc/_bs/admin/activation-s.php:93
|
4324 |
-
msgid "Resource #1"
|
4325 |
-
msgstr ""
|
4326 |
-
|
4327 |
-
#: core/lib/wpbc_all_translations.php:795 inc/_bl/admin/activation-l.php:121
|
4328 |
-
#: inc/_bl/admin/activation-l.php:125
|
4329 |
-
msgid "Presidential Suite"
|
4330 |
-
msgstr ""
|
4331 |
-
|
4332 |
-
#: core/lib/wpbc_all_translations.php:796 inc/_bl/admin/activation-l.php:121
|
4333 |
-
#: inc/_bs/admin/activation-s.php:94
|
4334 |
-
msgid "Resource #2"
|
4335 |
-
msgstr ""
|
4336 |
-
|
4337 |
-
#: core/lib/wpbc_all_translations.php:797 inc/_bl/admin/activation-l.php:122
|
4338 |
-
#: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
|
4339 |
-
msgid "Royal Villa"
|
4340 |
-
msgstr ""
|
4341 |
-
|
4342 |
-
#: core/lib/wpbc_all_translations.php:798 inc/_bl/admin/activation-l.php:122
|
4343 |
-
#: inc/_bs/admin/activation-s.php:95
|
4344 |
-
msgid "Resource #3"
|
4345 |
-
msgstr ""
|
4346 |
-
|
4347 |
-
#: core/lib/wpbc_all_translations.php:799 inc/_bl/admin/api-settings-l.php:34
|
4348 |
-
msgid ""
|
4349 |
-
"Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
|
4350 |
-
"for search results"
|
4351 |
-
msgstr ""
|
4352 |
-
|
4353 |
-
#: core/lib/wpbc_all_translations.php:800 inc/_bl/admin/api-settings-l.php:43
|
4354 |
-
msgid ""
|
4355 |
-
"Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
|
4356 |
-
"1 search results"
|
4357 |
-
msgstr ""
|
4358 |
-
|
4359 |
-
#: core/lib/wpbc_all_translations.php:801 inc/_bl/admin/api-settings-l.php:66
|
4360 |
-
msgid "Show availability in tooltip"
|
4361 |
-
msgstr ""
|
4362 |
-
|
4363 |
-
#: core/lib/wpbc_all_translations.php:802 inc/_bl/admin/api-settings-l.php:67
|
4364 |
-
msgid ""
|
4365 |
-
"Check this box to display the available number of booking resources with a tooltip, when mouse "
|
4366 |
-
"hovers over each day on the calendar(s)."
|
4367 |
-
msgstr ""
|
4368 |
-
|
4369 |
-
#: core/lib/wpbc_all_translations.php:803 inc/_bl/admin/api-settings-l.php:76
|
4370 |
-
msgid "Availability Title"
|
4371 |
-
msgstr ""
|
4372 |
-
|
4373 |
-
#: core/lib/wpbc_all_translations.php:804 inc/_bl/admin/api-settings-l.php:77
|
4374 |
-
#, php-format
|
4375 |
-
msgid "Type your %savailability%s description"
|
4376 |
-
msgstr ""
|
4377 |
-
|
4378 |
-
#: core/lib/wpbc_all_translations.php:805 inc/_bl/admin/api-settings-l.php:110
|
4379 |
-
#: inc/_bs/admin/api-settings-s.php:516
|
4380 |
-
msgid "Auto-cancel bookings"
|
4381 |
-
msgstr ""
|
4382 |
-
|
4383 |
-
#: core/lib/wpbc_all_translations.php:806 inc/_bl/admin/api-settings-l.php:111
|
4384 |
-
#: inc/_bl/admin/api-settings-l.php:131
|
4385 |
-
msgid ""
|
4386 |
-
"Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
|
4387 |
-
"date(s)"
|
4388 |
-
msgstr ""
|
4389 |
-
|
4390 |
-
#: core/lib/wpbc_all_translations.php:807 inc/_bl/admin/api-settings-l.php:129
|
4391 |
-
#: inc/_bl/admin/api-settings-l.php:289
|
4392 |
-
msgid ""
|
4393 |
-
"Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
|
4394 |
-
"booking resource as an approved booking for the dates, which are intersect with dates of "
|
4395 |
-
"approved booking, will be automatically canceled!"
|
4396 |
-
msgstr ""
|
4397 |
-
|
4398 |
-
#: core/lib/wpbc_all_translations.php:808 inc/_bl/admin/api-settings-l.php:160
|
4399 |
-
msgid "Set capacity based on number of visitors"
|
4400 |
-
msgstr ""
|
4401 |
-
|
4402 |
-
#: core/lib/wpbc_all_translations.php:809 inc/_bl/admin/api-settings-l.php:161
|
4403 |
-
msgid ""
|
4404 |
-
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
4405 |
-
"selected visitors."
|
4406 |
-
msgstr ""
|
4407 |
-
|
4408 |
-
#: core/lib/wpbc_all_translations.php:810 inc/_bl/admin/api-settings-l.php:162
|
4409 |
-
#: inc/_ps/admin/api-settings-p.php:330 inc/_ps/admin/api-settings-p.php:343
|
4410 |
-
#, php-format
|
4411 |
-
msgid "Please read more info about configuration of this parameter %shere%s"
|
4412 |
-
msgstr ""
|
4413 |
-
|
4414 |
-
#: core/lib/wpbc_all_translations.php:811 inc/_bl/admin/api-settings-l.php:177
|
4415 |
-
msgid ""
|
4416 |
-
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
4417 |
-
"resource items remaining for each day."
|
4418 |
-
msgstr ""
|
4419 |
-
|
4420 |
-
#: core/lib/wpbc_all_translations.php:812 inc/_bl/admin/api-settings-l.php:180
|
4421 |
-
#, php-format
|
4422 |
-
msgid ""
|
4423 |
-
"Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
|
4424 |
-
"of visitors specified on the booking form."
|
4425 |
-
msgstr ""
|
4426 |
-
|
4427 |
-
#: core/lib/wpbc_all_translations.php:813 inc/_bl/admin/api-settings-l.php:183
|
4428 |
-
msgid ""
|
4429 |
-
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
4430 |
-
"for the resource, which can be at free booking resource items."
|
4431 |
-
msgstr ""
|
4432 |
-
|
4433 |
-
#: core/lib/wpbc_all_translations.php:814 inc/_bl/admin/api-settings-l.php:186
|
4434 |
-
#, php-format
|
4435 |
-
msgid ""
|
4436 |
-
"Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
|
4437 |
-
"visitors specified on the booking form."
|
4438 |
-
msgstr ""
|
4439 |
-
|
4440 |
-
#: core/lib/wpbc_all_translations.php:815 inc/_bl/admin/api-settings-l.php:214
|
4441 |
-
msgid "Disable bookings in different booking resources"
|
4442 |
-
msgstr ""
|
4443 |
-
|
4444 |
-
#: core/lib/wpbc_all_translations.php:816 inc/_bl/admin/api-settings-l.php:215
|
4445 |
-
msgid ""
|
4446 |
-
"Check this box to dissable reservations, which can be stored in different booking resources."
|
4447 |
-
msgstr ""
|
4448 |
-
|
4449 |
-
#: core/lib/wpbc_all_translations.php:817 inc/_bl/admin/api-settings-l.php:216
|
4450 |
-
msgid ""
|
4451 |
-
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
4452 |
-
"show."
|
4453 |
-
msgstr ""
|
4454 |
-
|
4455 |
-
#: core/lib/wpbc_all_translations.php:818 inc/_bl/admin/api-settings-l.php:337
|
4456 |
-
#: inc/_ps/p-toolbar.php:1246
|
4457 |
-
msgid "Parent"
|
4458 |
-
msgstr ""
|
4459 |
-
|
4460 |
-
#: core/lib/wpbc_all_translations.php:819 inc/_bl/admin/api-settings-l.php:343
|
4461 |
-
#: inc/_ps/p-toolbar.php:1264
|
4462 |
-
msgid "Priority"
|
4463 |
-
msgstr ""
|
4464 |
-
|
4465 |
-
#: core/lib/wpbc_all_translations.php:820 inc/_bl/admin/api-settings-l.php:350
|
4466 |
-
msgid "Max visitors"
|
4467 |
-
msgstr ""
|
4468 |
-
|
4469 |
-
#: core/lib/wpbc_all_translations.php:821 inc/_bl/admin/api-settings-l.php:470
|
4470 |
-
msgid "Single"
|
4471 |
-
msgstr ""
|
4472 |
-
|
4473 |
-
#: core/lib/wpbc_all_translations.php:822 inc/_bl/admin/api-settings-l.php:472
|
4474 |
-
msgid "Child"
|
4475 |
-
msgstr ""
|
4476 |
-
|
4477 |
-
#: core/lib/wpbc_all_translations.php:823 inc/_bl/admin/page-coupons.php:46
|
4478 |
-
msgid "Setting coupons for discount"
|
4479 |
-
msgstr ""
|
4480 |
-
|
4481 |
-
#: core/lib/wpbc_all_translations.php:824 inc/_bl/admin/page-coupons.php:122
|
4482 |
-
#: inc/_bm/m-toolbar.php:600 inc/_bm/m-toolbar.php:602
|
4483 |
-
msgid "Create dates filter"
|
4484 |
-
msgstr ""
|
4485 |
-
|
4486 |
-
#: core/lib/wpbc_all_translations.php:825 inc/_bl/admin/page-coupons.php:124
|
4487 |
-
#: inc/_bl/admin/page-coupons.php:871
|
4488 |
-
msgid "Add New Discount Coupon"
|
4489 |
-
msgstr ""
|
4490 |
-
|
4491 |
-
#: core/lib/wpbc_all_translations.php:826 inc/_bl/admin/page-coupons.php:214
|
4492 |
-
#: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
|
4493 |
-
#: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
|
4494 |
-
msgid "Bulk Actions"
|
4495 |
-
msgstr ""
|
4496 |
-
|
4497 |
-
#: core/lib/wpbc_all_translations.php:827 inc/_bl/admin/page-coupons.php:505
|
4498 |
-
#: inc/_bl/admin/page-coupons.php:1170
|
4499 |
-
msgid "Coupon Code"
|
4500 |
-
msgstr ""
|
4501 |
-
|
4502 |
-
#: core/lib/wpbc_all_translations.php:828 inc/_bl/admin/page-coupons.php:511
|
4503 |
-
#: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
|
4504 |
-
msgid "Savings"
|
4505 |
-
msgstr ""
|
4506 |
-
|
4507 |
-
#: core/lib/wpbc_all_translations.php:829 inc/_bl/admin/page-coupons.php:517
|
4508 |
-
msgid "Minimum Cost"
|
4509 |
-
msgstr ""
|
4510 |
-
|
4511 |
-
#: core/lib/wpbc_all_translations.php:830 inc/_bl/admin/page-coupons.php:524
|
4512 |
-
msgid "Expiration"
|
4513 |
-
msgstr ""
|
4514 |
-
|
4515 |
-
#: core/lib/wpbc_all_translations.php:831 inc/_bl/admin/page-coupons.php:533
|
4516 |
-
msgid "Number of usage"
|
4517 |
-
msgstr ""
|
4518 |
-
|
4519 |
-
#: core/lib/wpbc_all_translations.php:832 inc/_bl/admin/page-coupons.php:585
|
4520 |
-
#: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
|
4521 |
-
#: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
|
4522 |
-
#: inc/_bm/admin/page-cost.php:648 inc/_bm/admin/page-seasons.php:565
|
4523 |
-
#: inc/_mu/admin/page-users.php:500 inc/_ps/admin/br-table-export-feeds.php:32
|
4524 |
-
#: inc/_ps/admin/br-table-import-gcal-p.php:30 inc/_ps/admin/page-resources.php:514
|
4525 |
-
msgid "Select Booking Resource"
|
4526 |
-
msgstr ""
|
4527 |
-
|
4528 |
-
#: core/lib/wpbc_all_translations.php:833 inc/_bl/admin/page-coupons.php:776
|
4529 |
-
#: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
|
4530 |
-
#: inc/_ps/p-toolbar.php:755
|
4531 |
-
msgid "All resources"
|
4532 |
-
msgstr ""
|
4533 |
-
|
4534 |
-
#: core/lib/wpbc_all_translations.php:834 inc/_bl/admin/page-coupons.php:993
|
4535 |
-
#: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
|
4536 |
-
msgid "Coupon"
|
4537 |
-
msgstr ""
|
4538 |
-
|
4539 |
-
#: core/lib/wpbc_all_translations.php:835 inc/_bl/admin/page-coupons.php:1171
|
4540 |
-
msgid "Enter coupon code."
|
4541 |
-
msgstr ""
|
4542 |
-
|
4543 |
-
#: core/lib/wpbc_all_translations.php:836 inc/_bl/admin/page-coupons.php:1232
|
4544 |
-
msgid "Enter number of fixed or percentage savings."
|
4545 |
-
msgstr ""
|
4546 |
-
|
4547 |
-
#: core/lib/wpbc_all_translations.php:837 inc/_bl/admin/page-coupons.php:1235
|
4548 |
-
msgid "Expiration Date"
|
4549 |
-
msgstr ""
|
4550 |
-
|
4551 |
-
#: core/lib/wpbc_all_translations.php:838 inc/_bl/admin/page-coupons.php:1311
|
4552 |
-
msgid "Select Expiration Date of the coupon."
|
4553 |
-
msgstr ""
|
4554 |
-
|
4555 |
-
#: core/lib/wpbc_all_translations.php:839 inc/_bl/admin/page-coupons.php:1318
|
4556 |
-
msgid "Minimum Booking Cost"
|
4557 |
-
msgstr ""
|
4558 |
-
|
4559 |
-
#: core/lib/wpbc_all_translations.php:840 inc/_bl/admin/page-coupons.php:1319
|
4560 |
-
msgid "Enter minimum booking cost, when coupon is applicable."
|
4561 |
-
msgstr ""
|
4562 |
-
|
4563 |
-
#: core/lib/wpbc_all_translations.php:841 inc/_bl/admin/page-coupons.php:1336
|
4564 |
-
msgid "Maximum number of usage"
|
4565 |
-
msgstr ""
|
4566 |
-
|
4567 |
-
#: core/lib/wpbc_all_translations.php:842 inc/_bl/admin/page-coupons.php:1337
|
4568 |
-
msgid "Enter maximum number of times, when coupon is applicable."
|
4569 |
-
msgstr ""
|
4570 |
-
|
4571 |
-
#: core/lib/wpbc_all_translations.php:843 inc/_bl/admin/page-coupons.php:1360
|
4572 |
-
msgid "Select booking resources, where is possible to apply this coupon code."
|
4573 |
-
msgstr ""
|
4574 |
-
|
4575 |
-
#: core/lib/wpbc_all_translations.php:844 inc/_bl/admin/page-coupons.php:1378
|
4576 |
-
#: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
|
4577 |
-
#: inc/_ps/p-toolbar.php:1190
|
4578 |
-
msgid "Add New"
|
4579 |
-
msgstr ""
|
4580 |
-
|
4581 |
-
#: core/lib/wpbc_all_translations.php:845 inc/_bl/admin/page-search.php:87
|
4582 |
-
#: inc/_bl/admin/page-search.php:126 inc/_bm/admin/page-cost-advanced.php:692
|
4583 |
-
#: inc/_ps/admin/page-settings-form.php:709 inc/gateways/page-gateways.php:1086
|
4584 |
-
msgid "Use these shortcodes for customization: "
|
4585 |
-
msgstr ""
|
4586 |
-
|
4587 |
-
#: core/lib/wpbc_all_translations.php:846 inc/_bl/admin/page-search.php:88
|
4588 |
-
#, php-format
|
4589 |
-
msgid "%s - search inside posts/pages which are part of this category, "
|
4590 |
-
msgstr ""
|
4591 |
-
|
4592 |
-
#: core/lib/wpbc_all_translations.php:847 inc/_bl/admin/page-search.php:89
|
4593 |
-
#, php-format
|
4594 |
-
msgid "%s - search inside posts/pages which have this tag, "
|
4595 |
-
msgstr ""
|
4596 |
-
|
4597 |
-
#: core/lib/wpbc_all_translations.php:848 inc/_bl/admin/page-search.php:90
|
4598 |
-
#: inc/_bl/admin/page-search.php:142
|
4599 |
-
#, php-format
|
4600 |
-
msgid "%s - check-in date, "
|
4601 |
-
msgstr ""
|
4602 |
-
|
4603 |
-
#: core/lib/wpbc_all_translations.php:849 inc/_bl/admin/page-search.php:91
|
4604 |
-
#: inc/_bl/admin/page-search.php:143
|
4605 |
-
#, php-format
|
4606 |
-
msgid "%s - check-out date, "
|
4607 |
-
msgstr ""
|
4608 |
-
|
4609 |
-
#: core/lib/wpbc_all_translations.php:850 inc/_bl/admin/page-search.php:92
|
4610 |
-
#, php-format
|
4611 |
-
msgid "%s - default selection number of visitors, "
|
4612 |
-
msgstr ""
|
4613 |
-
|
4614 |
-
#: core/lib/wpbc_all_translations.php:851 inc/_bl/admin/page-search.php:93
|
4615 |
-
#, php-format
|
4616 |
-
msgid "Example: %s - custom number of visitor selections\""
|
4617 |
-
msgstr ""
|
4618 |
-
|
4619 |
-
#: core/lib/wpbc_all_translations.php:852 inc/_bl/admin/page-search.php:95
|
4620 |
-
#, php-format
|
4621 |
-
msgid "%s - search button, "
|
4622 |
-
msgstr ""
|
4623 |
-
|
4624 |
-
#: core/lib/wpbc_all_translations.php:853 inc/_bl/admin/page-search.php:96
|
4625 |
-
#: inc/_bl/admin/page-search.php:148
|
4626 |
-
msgid "HTML tags is accepted."
|
4627 |
-
msgstr ""
|
4628 |
-
|
4629 |
-
#: core/lib/wpbc_all_translations.php:854 inc/_bl/admin/page-search.php:127
|
4630 |
-
#, php-format
|
4631 |
-
msgid "%s - resource title, "
|
4632 |
-
msgstr ""
|
4633 |
-
|
4634 |
-
#: core/lib/wpbc_all_translations.php:855 inc/_bl/admin/page-search.php:128
|
4635 |
-
#: inc/_bl/admin/page-search.php:129
|
4636 |
-
#, php-format
|
4637 |
-
msgid "%s - link to the page with booking form, "
|
4638 |
-
msgstr ""
|
4639 |
-
|
4640 |
-
#: core/lib/wpbc_all_translations.php:856 inc/_bl/admin/page-search.php:130
|
4641 |
-
#, php-format
|
4642 |
-
msgid "%s - availability of booking resource, "
|
4643 |
-
msgstr ""
|
4644 |
-
|
4645 |
-
#: core/lib/wpbc_all_translations.php:857 inc/_bl/admin/page-search.php:131
|
4646 |
-
#, php-format
|
4647 |
-
msgid "%s - maximum number of visitors for the booking resource, "
|
4648 |
-
msgstr ""
|
4649 |
-
|
4650 |
-
#: core/lib/wpbc_all_translations.php:858 inc/_bl/admin/page-search.php:132
|
4651 |
-
#, php-format
|
4652 |
-
msgid "%s - cost of booking the resource, "
|
4653 |
-
msgstr ""
|
4654 |
-
|
4655 |
-
#: core/lib/wpbc_all_translations.php:859 inc/_bl/admin/page-search.php:133
|
4656 |
-
#, php-format
|
4657 |
-
msgid "%s - featured image, taken from the featured image associated with the post, "
|
4658 |
-
msgstr ""
|
4659 |
-
|
4660 |
-
#: core/lib/wpbc_all_translations.php:860 inc/_bl/admin/page-search.php:134
|
4661 |
-
#, php-format
|
4662 |
-
msgid "%s - booking info, taken from the excerpt associated with the post, "
|
4663 |
-
msgstr ""
|
4664 |
-
|
4665 |
-
#: core/lib/wpbc_all_translations.php:861 inc/_bl/admin/page-search.php:136
|
4666 |
-
#: inc/_ps/form/class-wpbc-form-help.php:677
|
4667 |
-
msgid "Full cost of the booking."
|
4668 |
-
msgstr ""
|
4669 |
-
|
4670 |
-
#: core/lib/wpbc_all_translations.php:862 inc/_bl/admin/page-search.php:137
|
4671 |
-
#: inc/_ps/form/class-wpbc-form-help.php:679
|
4672 |
-
msgid "Cost of the booking for the selected dates only."
|
4673 |
-
msgstr ""
|
4674 |
-
|
4675 |
-
#: core/lib/wpbc_all_translations.php:863 inc/_bl/admin/page-search.php:138
|
4676 |
-
#: inc/_ps/form/class-wpbc-form-help.php:681
|
4677 |
-
msgid "Additional cost, which depends on the fields selection in the form."
|
4678 |
-
msgstr ""
|
4679 |
-
|
4680 |
-
#: core/lib/wpbc_all_translations.php:864 inc/_bl/admin/page-search.php:139
|
4681 |
-
#: inc/_ps/form/class-wpbc-form-help.php:683
|
4682 |
-
msgid "The deposit cost of the booking."
|
4683 |
-
msgstr ""
|
4684 |
-
|
4685 |
-
#: core/lib/wpbc_all_translations.php:865 inc/_bl/admin/page-search.php:140
|
4686 |
-
#: inc/_ps/form/class-wpbc-form-help.php:685
|
4687 |
-
msgid "Balance cost of the booking - difference between deposit and full cost."
|
4688 |
-
msgstr ""
|
4689 |
-
|
4690 |
-
#: core/lib/wpbc_all_translations.php:866 inc/_bl/admin/page-search.php:155
|
4691 |
-
msgid "hour(s)"
|
4692 |
-
msgstr ""
|
4693 |
-
|
4694 |
-
#: core/lib/wpbc_all_translations.php:867 inc/_bl/admin/page-search.php:158
|
4695 |
-
#: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
|
4696 |
-
msgid "day(s)"
|
4697 |
-
msgstr ""
|
4698 |
-
|
4699 |
-
#: core/lib/wpbc_all_translations.php:868 inc/_bl/admin/page-search.php:163
|
4700 |
-
msgid "Cache expiration"
|
4701 |
-
msgstr ""
|
4702 |
-
|
4703 |
-
#: core/lib/wpbc_all_translations.php:869 inc/_bl/admin/page-search.php:164
|
4704 |
-
msgid "Select time of cache expiration"
|
4705 |
-
msgstr ""
|
4706 |
-
|
4707 |
-
#: core/lib/wpbc_all_translations.php:870 inc/_bl/admin/page-search.php:367
|
4708 |
-
#: inc/_bl/admin/page-search.php:368
|
4709 |
-
msgid "Search Settings"
|
4710 |
-
msgstr ""
|
4711 |
-
|
4712 |
-
#: core/lib/wpbc_all_translations.php:871 inc/_bl/admin/page-search.php:429
|
4713 |
-
msgid "Cache Updated"
|
4714 |
-
msgstr ""
|
4715 |
-
|
4716 |
-
#: core/lib/wpbc_all_translations.php:872 inc/_bl/admin/page-search.php:454
|
4717 |
-
#: inc/_bl/admin/page-search.php:500
|
4718 |
-
msgid "Search Availability Form"
|
4719 |
-
msgstr ""
|
4720 |
-
|
4721 |
-
#: core/lib/wpbc_all_translations.php:873 inc/_bl/admin/page-search.php:455
|
4722 |
-
#: inc/_bl/admin/page-search.php:518 js/wpbc-gutenberg.js:1075
|
4723 |
-
msgid "Search Results"
|
4724 |
-
msgstr ""
|
4725 |
-
|
4726 |
-
#: core/lib/wpbc_all_translations.php:874 inc/_bl/admin/page-search.php:456
|
4727 |
-
#: inc/_bl/admin/page-search.php:545
|
4728 |
-
msgid "Search Cache"
|
4729 |
-
msgstr ""
|
4730 |
-
|
4731 |
-
#: core/lib/wpbc_all_translations.php:875 inc/_bl/admin/page-search.php:492
|
4732 |
-
#, php-format
|
4733 |
-
msgid ""
|
4734 |
-
"If you do not see search results at front-end side of your website, please check troubleshooting "
|
4735 |
-
"instruction %shere%s"
|
4736 |
-
msgstr ""
|
4737 |
-
|
4738 |
-
#: core/lib/wpbc_all_translations.php:876 inc/_bl/admin/page-search.php:525
|
4739 |
-
msgid "CSS customization of search form and search results you can make at this file"
|
4740 |
-
msgstr ""
|
4741 |
-
|
4742 |
-
#: core/lib/wpbc_all_translations.php:877 inc/_bl/admin/page-search.php:697
|
4743 |
-
#: inc/_bl/admin/page-search.php:761
|
4744 |
-
msgid "Select Template"
|
4745 |
-
msgstr ""
|
4746 |
-
|
4747 |
-
#: core/lib/wpbc_all_translations.php:878
|
4748 |
-
msgid "Inlinee Search Form Template"
|
4749 |
-
msgstr ""
|
4750 |
-
|
4751 |
-
#: core/lib/wpbc_all_translations.php:879 inc/_bl/admin/page-search.php:728
|
4752 |
-
msgid "Horizontal Search Form Template"
|
4753 |
-
msgstr ""
|
4754 |
-
|
4755 |
-
#: core/lib/wpbc_all_translations.php:880 inc/_bl/admin/page-search.php:738
|
4756 |
-
msgid "Standard Search Form Template"
|
4757 |
-
msgstr ""
|
4758 |
-
|
4759 |
-
#: core/lib/wpbc_all_translations.php:881 inc/_bl/admin/page-search.php:850
|
4760 |
-
#: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
|
4761 |
-
#: inc/_ps/admin/page-settings-form.php:543
|
4762 |
-
msgid "Reset"
|
4763 |
-
msgstr ""
|
4764 |
-
|
4765 |
-
#: core/lib/wpbc_all_translations.php:882 inc/_bl/admin/page-search.php:851
|
4766 |
-
#: inc/_ps/admin/page-settings-form.php:544
|
4767 |
-
msgid "Reset current Form"
|
4768 |
-
msgstr ""
|
4769 |
-
|
4770 |
-
#: core/lib/wpbc_all_translations.php:883 inc/_bl/admin/page-search.php:920
|
4771 |
-
msgid "Cache will expire:"
|
4772 |
-
msgstr ""
|
4773 |
-
|
4774 |
-
#: core/lib/wpbc_all_translations.php:884 inc/_bl/admin/page-search.php:950
|
4775 |
-
#, php-format
|
4776 |
-
msgid "Found: %s booking forms inside of posts or pages "
|
4777 |
-
msgstr ""
|
4778 |
-
|
4779 |
-
#: core/lib/wpbc_all_translations.php:885 inc/_bl/admin/page-search.php:954
|
4780 |
-
msgid "Page"
|
4781 |
-
msgstr ""
|
4782 |
-
|
4783 |
-
#: core/lib/wpbc_all_translations.php:886 inc/_bl/admin/page-search.php:977
|
4784 |
-
msgid "Reset Search Cache"
|
4785 |
-
msgstr ""
|
4786 |
-
|
4787 |
-
#: core/lib/wpbc_all_translations.php:887 inc/_bl/biz_l.php:136
|
4788 |
-
msgid ""
|
4789 |
-
"Try selecting fewer visitors. The number of visitors may be more than the number of available "
|
4790 |
-
"units on selected day(s)!"
|
4791 |
-
msgstr ""
|
4792 |
-
|
4793 |
-
#: core/lib/wpbc_all_translations.php:888 inc/_bl/biz_l.php:405
|
4794 |
-
msgid "coupon"
|
4795 |
-
msgstr ""
|
4796 |
-
|
4797 |
-
#: core/lib/wpbc_all_translations.php:889 inc/_bl/biz_l.php:407
|
4798 |
-
msgid "discount"
|
4799 |
-
msgstr ""
|
4800 |
-
|
4801 |
-
#: core/lib/wpbc_all_translations.php:890 inc/_bl/biz_l.php:601
|
4802 |
-
msgid "Please select check-in and check-out days!"
|
4803 |
-
msgstr ""
|
4804 |
-
|
4805 |
-
#: core/lib/wpbc_all_translations.php:891 inc/_bl/biz_l.php:1749 inc/_bl/biz_l.php:1760
|
4806 |
-
#: inc/_bl/biz_l.php:1777 inc/_bl/biz_l.php:1782
|
4807 |
-
#, php-format
|
4808 |
-
msgid ""
|
4809 |
-
"Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
|
4810 |
-
"possible to store this sequence of the dates into the one resource.) %s Please %srefresh%s the "
|
4811 |
-
"page and try other days."
|
4812 |
-
msgstr ""
|
4813 |
-
|
4814 |
-
#: core/lib/wpbc_all_translations.php:892 inc/_bl/biz_l.php:2437
|
4815 |
-
#, php-format
|
4816 |
-
msgid "The folowing pending booking(s): %s deleted."
|
4817 |
-
msgstr ""
|
4818 |
-
|
4819 |
-
#: core/lib/wpbc_all_translations.php:893 inc/_bl/wpbc-search-availability.php:861
|
4820 |
-
msgid "Book now"
|
4821 |
-
msgstr ""
|
4822 |
-
|
4823 |
-
#: core/lib/wpbc_all_translations.php:894 inc/_bl/wpdev-booking-search-widget.php:14
|
4824 |
-
#: inc/_bl/wpdev-booking-search-widget.php:67
|
4825 |
-
msgid "Search availability"
|
4826 |
-
msgstr ""
|
4827 |
-
|
4828 |
-
#: core/lib/wpbc_all_translations.php:895 inc/_bl/wpdev-booking-search-widget.php:15
|
4829 |
-
msgid "Search results."
|
4830 |
-
msgstr ""
|
4831 |
-
|
4832 |
-
#: core/lib/wpbc_all_translations.php:896 inc/_bl/wpdev-booking-search-widget.php:16
|
4833 |
-
msgid "Nothing found."
|
4834 |
-
msgstr ""
|
4835 |
-
|
4836 |
-
#: core/lib/wpbc_all_translations.php:897 inc/_bl/wpdev-booking-search-widget.php:85
|
4837 |
-
msgid "Title of search widget"
|
4838 |
-
msgstr ""
|
4839 |
-
|
4840 |
-
#: core/lib/wpbc_all_translations.php:898 inc/_bl/wpdev-booking-search-widget.php:93
|
4841 |
-
msgid "Title of search results"
|
4842 |
-
msgstr ""
|
4843 |
-
|
4844 |
-
#: core/lib/wpbc_all_translations.php:899 inc/_bl/wpdev-booking-search-widget.php:98
|
4845 |
-
#, php-format
|
4846 |
-
msgid "Please type the %sTitle of search results%s."
|
4847 |
-
msgstr ""
|
4848 |
-
|
4849 |
-
#: core/lib/wpbc_all_translations.php:900 inc/_bl/wpdev-booking-search-widget.php:102
|
4850 |
-
msgid "Nothing found message"
|
4851 |
-
msgstr ""
|
4852 |
-
|
4853 |
-
#: core/lib/wpbc_all_translations.php:901 inc/_bl/wpdev-booking-search-widget.php:107
|
4854 |
-
#, php-format
|
4855 |
-
msgid "Please type the %smessage ,what is showing, when nothing found%s."
|
4856 |
-
msgstr ""
|
4857 |
-
|
4858 |
-
#: core/lib/wpbc_all_translations.php:902 inc/_bl/wpdev-booking-search-widget.php:111
|
4859 |
-
msgid "URL of Search Results"
|
4860 |
-
msgstr ""
|
4861 |
-
|
4862 |
-
#: core/lib/wpbc_all_translations.php:903 inc/_bl/wpdev-booking-search-widget.php:116
|
4863 |
-
#, php-format
|
4864 |
-
msgid ""
|
4865 |
-
"Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
|
4866 |
-
"show."
|
4867 |
-
msgstr ""
|
4868 |
-
|
4869 |
-
#: core/lib/wpbc_all_translations.php:904 inc/_bm/admin/activation-m.php:48
|
4870 |
-
#: inc/_mu/multiuser.php:634
|
4871 |
-
msgid "Weekend"
|
4872 |
-
msgstr ""
|
4873 |
-
|
4874 |
-
#: core/lib/wpbc_all_translations.php:905 inc/_bm/admin/activation-m.php:92
|
4875 |
-
#: inc/_mu/multiuser.php:636
|
4876 |
-
msgid "High season"
|
4877 |
-
msgstr ""
|
4878 |
-
|
4879 |
-
#: core/lib/wpbc_all_translations.php:906 inc/_bm/admin/api-settings-m.php:35
|
4880 |
-
msgid "Limit available days from today"
|
4881 |
-
msgstr ""
|
4882 |
-
|
4883 |
-
#: core/lib/wpbc_all_translations.php:907 inc/_bm/admin/api-settings-m.php:36
|
4884 |
-
msgid "Select number of available days in calendar start from today."
|
4885 |
-
msgstr ""
|
4886 |
-
|
4887 |
-
#: core/lib/wpbc_all_translations.php:908 inc/_bm/admin/api-settings-m.php:85
|
4888 |
-
msgid "Unavailable time before / after booking"
|
4889 |
-
msgstr ""
|
4890 |
-
|
4891 |
-
#: core/lib/wpbc_all_translations.php:909 inc/_bm/admin/api-settings-m.php:87
|
4892 |
-
msgid ""
|
4893 |
-
"This feature is applying only for bookings for specific timeslots, or if activated check in/out "
|
4894 |
-
"time option."
|
4895 |
-
msgstr ""
|
4896 |
-
|
4897 |
-
#: core/lib/wpbc_all_translations.php:910 inc/_bm/admin/api-settings-m.php:110
|
4898 |
-
#: inc/_bm/admin/api-settings-m.php:134
|
4899 |
-
msgid "Before booking"
|
4900 |
-
msgstr ""
|
4901 |
-
|
4902 |
-
#: core/lib/wpbc_all_translations.php:911 inc/_bm/admin/api-settings-m.php:111
|
4903 |
-
#: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
|
4904 |
-
#: inc/_bm/admin/api-settings-m.php:144
|
4905 |
-
msgid "Select unavailable time interval."
|
4906 |
-
msgstr ""
|
4907 |
-
|
4908 |
-
#: core/lib/wpbc_all_translations.php:912 inc/_bm/admin/api-settings-m.php:119
|
4909 |
-
#: inc/_bm/admin/api-settings-m.php:143
|
4910 |
-
msgid "After booking"
|
4911 |
-
msgstr ""
|
4912 |
-
|
4913 |
-
#: core/lib/wpbc_all_translations.php:913 inc/_bm/admin/api-settings-m.php:170
|
4914 |
-
msgid "Showing cost in date cell"
|
4915 |
-
msgstr ""
|
4916 |
-
|
4917 |
-
#: core/lib/wpbc_all_translations.php:914 inc/_bm/admin/api-settings-m.php:171
|
4918 |
-
#, php-format
|
4919 |
-
msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
|
4920 |
-
msgstr ""
|
4921 |
-
|
4922 |
-
#: core/lib/wpbc_all_translations.php:915 inc/_bm/admin/api-settings-m.php:188
|
4923 |
-
msgid "Currency symbol"
|
4924 |
-
msgstr ""
|
4925 |
-
|
4926 |
-
#: core/lib/wpbc_all_translations.php:916 inc/_bm/admin/api-settings-m.php:224
|
4927 |
-
#, php-format
|
4928 |
-
msgid ""
|
4929 |
-
"Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
|
4930 |
-
"currency symbols%s"
|
4931 |
-
msgstr ""
|
4932 |
-
|
4933 |
-
#: core/lib/wpbc_all_translations.php:917 inc/_bm/admin/api-settings-m.php:237
|
4934 |
-
msgid "Showing cost in tooltip"
|
4935 |
-
msgstr ""
|
4936 |
-
|
4937 |
-
#: core/lib/wpbc_all_translations.php:918 inc/_bm/admin/api-settings-m.php:238
|
4938 |
-
msgid ""
|
4939 |
-
" Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
|
4940 |
-
"calendar(s)."
|
4941 |
-
msgstr ""
|
4942 |
-
|
4943 |
-
#: core/lib/wpbc_all_translations.php:919 inc/_bm/admin/api-settings-m.php:246
|
4944 |
-
msgid "Cost Title"
|
4945 |
-
msgstr ""
|
4946 |
-
|
4947 |
-
#: core/lib/wpbc_all_translations.php:920 inc/_bm/admin/api-settings-m.php:248
|
4948 |
-
#, php-format
|
4949 |
-
msgid "Type your %scost%s description"
|
4950 |
-
msgstr ""
|
4951 |
-
|
4952 |
-
#: core/lib/wpbc_all_translations.php:921 inc/_bm/admin/api-settings-m.php:569
|
4953 |
-
#: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:424
|
4954 |
-
msgid "Custom Forms"
|
4955 |
-
msgstr ""
|
4956 |
-
|
4957 |
-
#: core/lib/wpbc_all_translations.php:922 inc/_bm/admin/page-availability.php:48
|
4958 |
-
msgid "Configuration of availability for booking resources"
|
4959 |
-
msgstr ""
|
4960 |
-
|
4961 |
-
#: core/lib/wpbc_all_translations.php:923 inc/_bm/admin/page-availability.php:49
|
4962 |
-
msgid "Availability Settings"
|
4963 |
-
msgstr ""
|
4964 |
-
|
4965 |
-
#: core/lib/wpbc_all_translations.php:924 inc/_bm/admin/page-availability.php:143
|
4966 |
-
#: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1219
|
4967 |
-
msgid "Show Children Resources"
|
4968 |
-
msgstr ""
|
4969 |
-
|
4970 |
-
#: core/lib/wpbc_all_translations.php:925 inc/_bm/admin/page-availability.php:145
|
4971 |
-
#: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1221
|
4972 |
-
msgid "Hide Children Resources"
|
4973 |
-
msgstr ""
|
4974 |
-
|
4975 |
-
#: core/lib/wpbc_all_translations.php:926 inc/_bm/admin/page-availability.php:239
|
4976 |
-
#: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
|
4977 |
-
msgid "Set Availability"
|
4978 |
-
msgstr ""
|
4979 |
-
|
4980 |
-
#: core/lib/wpbc_all_translations.php:927 inc/_bm/admin/page-availability.php:253
|
4981 |
-
#: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
|
4982 |
-
#, php-format
|
4983 |
-
msgid ""
|
4984 |
-
"Please reassign exist booking(s) from selected resource(s) to other resources or delete exist "
|
4985 |
-
"booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
|
4986 |
-
msgstr ""
|
4987 |
-
|
4988 |
-
#: core/lib/wpbc_all_translations.php:928 inc/_bm/admin/page-availability.php:499
|
4989 |
-
#: inc/_bm/admin/page-cost.php:581 inc/_ps/admin/page-resources.php:463
|
4990 |
-
msgid "Resource Name"
|
4991 |
-
msgstr ""
|
4992 |
-
|
4993 |
-
#: core/lib/wpbc_all_translations.php:929 inc/_bm/admin/page-availability.php:608
|
4994 |
-
#: inc/_bm/admin/page-availability.php:895
|
4995 |
-
msgid "All days"
|
4996 |
-
msgstr ""
|
4997 |
-
|
4998 |
-
#: core/lib/wpbc_all_translations.php:930 inc/_bm/admin/page-availability.php:609
|
4999 |
-
#: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
|
5000 |
-
#: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
|
5001 |
-
#: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
|
5002 |
-
msgid "available"
|
5003 |
-
msgstr ""
|
5004 |
-
|
5005 |
-
#: core/lib/wpbc_all_translations.php:931 inc/_bm/admin/page-availability.php:610
|
5006 |
-
#: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
|
5007 |
-
#: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
|
5008 |
-
#: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
|
5009 |
-
msgid "unavailable"
|
5010 |
-
msgstr ""
|
5011 |
-
|
5012 |
-
#: core/lib/wpbc_all_translations.php:932 inc/_bm/admin/page-availability.php:635
|
5013 |
-
#, php-format
|
5014 |
-
msgid "and %s on seasons:"
|
5015 |
-
msgstr ""
|
5016 |
-
|
5017 |
-
#: core/lib/wpbc_all_translations.php:933 inc/_bm/admin/page-availability.php:925
|
5018 |
-
#, php-format
|
5019 |
-
msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
|
5020 |
-
msgstr ""
|
5021 |
-
|
5022 |
-
#: core/lib/wpbc_all_translations.php:934 inc/_bm/admin/page-availability.php:943
|
5023 |
-
#: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
|
5024 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
|
5025 |
-
#: inc/_bm/admin/page-cost-valuation.php:148
|
5026 |
-
msgid "Hide season filters"
|
5027 |
-
msgstr ""
|
5028 |
-
|
5029 |
-
#: core/lib/wpbc_all_translations.php:935 inc/_bm/admin/page-availability.php:948
|
5030 |
-
#: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
|
5031 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
|
5032 |
-
#: inc/_bm/admin/page-cost-valuation.php:153
|
5033 |
-
msgid "Show all exist season filters"
|
5034 |
-
msgstr ""
|
5035 |
-
|
5036 |
-
#: core/lib/wpbc_all_translations.php:936 inc/_bm/admin/page-availability.php:981
|
5037 |
-
#: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:889
|
5038 |
-
msgid "Enabled"
|
5039 |
-
msgstr ""
|
5040 |
-
|
5041 |
-
#: core/lib/wpbc_all_translations.php:937 inc/_bm/admin/page-cost-advanced.php:44
|
5042 |
-
msgid "Customization of additional cost, which depend from form fields"
|
5043 |
-
msgstr ""
|
5044 |
-
|
5045 |
-
#: core/lib/wpbc_all_translations.php:938 inc/_bm/admin/page-cost-advanced.php:45
|
5046 |
-
msgid "Advanced Cost Settings"
|
5047 |
-
msgstr ""
|
5048 |
-
|
5049 |
-
#: core/lib/wpbc_all_translations.php:939 inc/_bm/admin/page-cost-advanced.php:125
|
5050 |
-
msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
|
5051 |
-
msgstr ""
|
5052 |
-
|
5053 |
-
#: core/lib/wpbc_all_translations.php:940 inc/_bm/admin/page-cost-advanced.php:127
|
5054 |
-
#, php-format
|
5055 |
-
msgid ""
|
5056 |
-
"Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
|
5057 |
-
"%sbooking form%s."
|
5058 |
-
msgstr ""
|
5059 |
-
|
5060 |
-
#: core/lib/wpbc_all_translations.php:941 inc/_bm/admin/page-cost-advanced.php:441
|
5061 |
-
#: inc/_bm/admin/page-cost-deposit.php:181
|
5062 |
-
msgid "Deposit type"
|
5063 |
-
msgstr ""
|
5064 |
-
|
5065 |
-
#: core/lib/wpbc_all_translations.php:942 inc/_bm/admin/page-cost-advanced.php:460
|
5066 |
-
msgid "of total cost"
|
5067 |
-
msgstr ""
|
5068 |
-
|
5069 |
-
#: core/lib/wpbc_all_translations.php:943 inc/_bm/admin/page-cost-advanced.php:462
|
5070 |
-
#: inc/_bs/admin/api-settings-s.php:898
|
5071 |
-
msgid "night"
|
5072 |
-
msgstr ""
|
5073 |
-
|
5074 |
-
#: core/lib/wpbc_all_translations.php:944 inc/_bm/admin/page-cost-advanced.php:463
|
5075 |
-
msgid "as additional sum"
|
5076 |
-
msgstr ""
|
5077 |
-
|
5078 |
-
#: core/lib/wpbc_all_translations.php:945 inc/_bm/admin/page-cost-advanced.php:658
|
5079 |
-
msgid "Enter additional cost in formats:"
|
5080 |
-
msgstr ""
|
5081 |
-
|
5082 |
-
#: core/lib/wpbc_all_translations.php:946 inc/_bm/admin/page-cost-advanced.php:659
|
5083 |
-
#, php-format
|
5084 |
-
msgid ""
|
5085 |
-
"For example, if the original cost of the booking is %s, then after applying additional costs the "
|
5086 |
-
"total cost will be folowing"
|
5087 |
-
msgstr ""
|
5088 |
-
|
5089 |
-
#: core/lib/wpbc_all_translations.php:947 inc/_bm/admin/page-cost-advanced.php:662
|
5090 |
-
msgid "Enter fixed cost"
|
5091 |
-
msgstr ""
|
5092 |
-
|
5093 |
-
#: core/lib/wpbc_all_translations.php:948 inc/_bm/admin/page-cost-advanced.php:662
|
5094 |
-
#: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
|
5095 |
-
#: inc/_bm/admin/page-cost-advanced.php:681
|
5096 |
-
#, php-format
|
5097 |
-
msgid "%s, then total cost will be %s"
|
5098 |
-
msgstr ""
|
5099 |
-
|
5100 |
-
#: core/lib/wpbc_all_translations.php:949 inc/_bm/admin/page-cost-advanced.php:665
|
5101 |
-
msgid "Enter percentage of the entire booking"
|
5102 |
-
msgstr ""
|
5103 |
-
|
5104 |
-
#: core/lib/wpbc_all_translations.php:950 inc/_bm/admin/page-cost-advanced.php:668
|
5105 |
-
msgid "Enter fixed amount for each selected day"
|
5106 |
-
msgstr ""
|
5107 |
-
|
5108 |
-
#: core/lib/wpbc_all_translations.php:951 inc/_bm/admin/page-cost-advanced.php:668
|
5109 |
-
#, php-format
|
5110 |
-
msgid "%s, then total cost will be (if selected 3 days) %s"
|
5111 |
-
msgstr ""
|
5112 |
-
|
5113 |
-
#: core/lib/wpbc_all_translations.php:952 inc/_bm/admin/page-cost-advanced.php:668
|
5114 |
-
#: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
|
5115 |
-
#: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
|
5116 |
-
msgid "or"
|
5117 |
-
msgstr ""
|
5118 |
-
|
5119 |
-
#: core/lib/wpbc_all_translations.php:953 inc/_bm/admin/page-cost-advanced.php:671
|
5120 |
-
msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
|
5121 |
-
msgstr ""
|
5122 |
-
|
5123 |
-
#: core/lib/wpbc_all_translations.php:954 inc/_bm/admin/page-cost-advanced.php:674
|
5124 |
-
#: inc/_bm/admin/page-cost-advanced.php:687
|
5125 |
-
#, php-format
|
5126 |
-
msgid "Please check more info about configuration of this cost settings on this %spage%s."
|
5127 |
-
msgstr ""
|
5128 |
-
|
5129 |
-
#: core/lib/wpbc_all_translations.php:955 inc/_bm/admin/page-cost-deposit.php:73
|
5130 |
-
msgid "Set Deposit"
|
5131 |
-
msgstr ""
|
5132 |
-
|
5133 |
-
#: core/lib/wpbc_all_translations.php:956 inc/_bm/admin/page-cost-deposit.php:135
|
5134 |
-
msgid "deposit payment for booking resource"
|
5135 |
-
msgstr ""
|
5136 |
-
|
5137 |
-
#: core/lib/wpbc_all_translations.php:957 inc/_bm/admin/page-cost-deposit.php:153
|
5138 |
-
#: inc/_bm/admin/page-cost-deposit.php:162
|
5139 |
-
msgid "Deposit amount"
|
5140 |
-
msgstr ""
|
5141 |
-
|
5142 |
-
#: core/lib/wpbc_all_translations.php:958 inc/_bm/admin/page-cost-deposit.php:199
|
5143 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:203
|
5144 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:404
|
5145 |
-
msgid "fixed total in"
|
5146 |
-
msgstr ""
|
5147 |
-
|
5148 |
-
#: core/lib/wpbc_all_translations.php:959 inc/_bm/admin/page-cost-deposit.php:200
|
5149 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:204
|
5150 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:405
|
5151 |
-
msgid "of payment"
|
5152 |
-
msgstr ""
|
5153 |
-
|
5154 |
-
#: core/lib/wpbc_all_translations.php:960 inc/_bm/admin/page-cost-deposit.php:209
|
5155 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:213
|
5156 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:414
|
5157 |
-
msgid "Conditions"
|
5158 |
-
msgstr ""
|
5159 |
-
|
5160 |
-
#: core/lib/wpbc_all_translations.php:961 inc/_bm/admin/page-cost-deposit.php:219
|
5161 |
-
#, php-format
|
5162 |
-
msgid ""
|
5163 |
-
"Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
|
5164 |
-
msgstr ""
|
5165 |
-
|
5166 |
-
#: core/lib/wpbc_all_translations.php:962 inc/_bm/admin/page-cost-deposit.php:271
|
5167 |
-
#, php-format
|
5168 |
-
msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
|
5169 |
-
msgstr ""
|
5170 |
-
|
5171 |
-
#: core/lib/wpbc_all_translations.php:963 inc/_bm/admin/page-cost-deposit.php:275
|
5172 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:280
|
5173 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
|
5174 |
-
msgid "Any days"
|
5175 |
-
msgstr ""
|
5176 |
-
|
5177 |
-
#: core/lib/wpbc_all_translations.php:964 inc/_bm/admin/page-cost-deposit.php:342
|
5178 |
-
msgid "Deposit payment total"
|
5179 |
-
msgstr ""
|
5180 |
-
|
5181 |
-
#: core/lib/wpbc_all_translations.php:965 inc/_bm/admin/page-cost-rate.php:69
|
5182 |
-
msgid "Set Rates"
|
5183 |
-
msgstr ""
|
5184 |
-
|
5185 |
-
#: core/lib/wpbc_all_translations.php:966 inc/_bm/admin/page-cost-rate.php:163
|
5186 |
-
#: inc/_bm/admin/page-cost.php:676 inc/_bm/admin/page-cost.php:677
|
5187 |
-
msgid "Rates"
|
5188 |
-
msgstr ""
|
5189 |
-
|
5190 |
-
#: core/lib/wpbc_all_translations.php:967 inc/_bm/admin/page-cost-rate.php:167
|
5191 |
-
msgid "Seasonal price"
|
5192 |
-
msgstr ""
|
5193 |
-
|
5194 |
-
#: core/lib/wpbc_all_translations.php:968 inc/_bm/admin/page-cost-rate.php:171
|
5195 |
-
#: inc/_bm/admin/page-cost-valuation.php:198
|
5196 |
-
msgid "Season"
|
5197 |
-
msgstr ""
|
5198 |
-
|
5199 |
-
#: core/lib/wpbc_all_translations.php:969 inc/_bm/admin/page-cost-rate.php:215
|
5200 |
-
#, php-format
|
5201 |
-
msgid ""
|
5202 |
-
"Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
|
5203 |
-
"booking resource (%s) or %sAdd a new seasonal filter%s"
|
5204 |
-
msgstr ""
|
5205 |
-
|
5206 |
-
#: core/lib/wpbc_all_translations.php:970 inc/_bm/admin/page-cost-valuation.php:96
|
5207 |
-
#: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
|
5208 |
-
msgid "Set Valuation Days"
|
5209 |
-
msgstr ""
|
5210 |
-
|
5211 |
-
#: core/lib/wpbc_all_translations.php:971 inc/_bm/admin/page-cost-valuation.php:185
|
5212 |
-
#: inc/_mu/admin/page-users.php:437
|
5213 |
-
msgid "Status"
|
5214 |
-
msgstr ""
|
5215 |
-
|
5216 |
-
#: core/lib/wpbc_all_translations.php:972 inc/_bm/admin/page-cost-valuation.php:194
|
5217 |
-
msgid "Costs"
|
5218 |
-
msgstr ""
|
5219 |
-
|
5220 |
-
#: core/lib/wpbc_all_translations.php:973 inc/_bm/admin/page-cost-valuation.php:249
|
5221 |
-
msgid "Add new cost"
|
5222 |
-
msgstr ""
|
5223 |
-
|
5224 |
-
#: core/lib/wpbc_all_translations.php:974 inc/_bm/admin/page-cost-valuation.php:272
|
5225 |
-
#, php-format
|
5226 |
-
msgid ""
|
5227 |
-
"Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
|
5228 |
-
"the list."
|
5229 |
-
msgstr ""
|
5230 |
-
|
5231 |
-
#: core/lib/wpbc_all_translations.php:975 inc/_bm/admin/page-cost-valuation.php:275
|
5232 |
-
#, php-format
|
5233 |
-
msgid ""
|
5234 |
-
"Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
|
5235 |
-
"terms %s"
|
5236 |
-
msgstr ""
|
5237 |
-
|
5238 |
-
#: core/lib/wpbc_all_translations.php:976 inc/_bm/admin/page-cost-valuation.php:275
|
5239 |
-
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
|
5240 |
-
msgid "Together"
|
5241 |
-
msgstr ""
|
5242 |
-
|
5243 |
-
#: core/lib/wpbc_all_translations.php:977 inc/_bm/admin/page-cost-valuation.php:275
|
5244 |
-
#: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
|
5245 |
-
#: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
|
5246 |
-
msgid "For"
|
5247 |
-
msgstr ""
|
5248 |
-
|
5249 |
-
#: core/lib/wpbc_all_translations.php:978 inc/_bm/admin/page-cost-valuation.php:278
|
5250 |
-
#, php-format
|
5251 |
-
msgid "%s and %s terms have higher priority than a range %s days."
|
5252 |
-
msgstr ""
|
5253 |
-
|
5254 |
-
#: core/lib/wpbc_all_translations.php:979 inc/_bm/admin/page-cost-valuation.php:282
|
5255 |
-
#, php-format
|
5256 |
-
msgid "%s - definition of check-out date."
|
5257 |
-
msgstr ""
|
5258 |
-
|
5259 |
-
#: core/lib/wpbc_all_translations.php:980 inc/_bm/admin/page-cost-valuation.php:284
|
5260 |
-
#: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
|
5261 |
-
#: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
|
5262 |
-
#: inc/_ps/form/class-wpbc-form-help.php:535
|
5263 |
-
msgid "Example"
|
5264 |
-
msgstr ""
|
5265 |
-
|
5266 |
-
#: core/lib/wpbc_all_translations.php:981 inc/_bm/admin/page-cost-valuation.php:291
|
5267 |
-
msgid ""
|
5268 |
-
"Specific cost will take affect, only if it active (the box at the left side is checked) and if "
|
5269 |
-
"\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
|
5270 |
-
msgstr ""
|
5271 |
-
|
5272 |
-
#: core/lib/wpbc_all_translations.php:982 inc/_bm/admin/page-cost-valuation.php:335
|
5273 |
-
#: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
|
5274 |
-
#: inc/_bm/biz_m.php:252
|
5275 |
-
msgid " for all days!"
|
5276 |
-
msgstr ""
|
5277 |
-
|
5278 |
-
#: core/lib/wpbc_all_translations.php:983 inc/_bm/admin/page-cost-valuation.php:341
|
5279 |
-
#: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
|
5280 |
-
msgid "from the cost of 1 day "
|
5281 |
-
msgstr ""
|
5282 |
-
|
5283 |
-
#: core/lib/wpbc_all_translations.php:984 inc/_bm/admin/page-cost-valuation.php:342
|
5284 |
-
#: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
|
5285 |
-
msgid "per 1 day"
|
5286 |
-
msgstr ""
|
5287 |
-
|
5288 |
-
#: core/lib/wpbc_all_translations.php:985 inc/_bm/admin/page-cost-valuation.php:470
|
5289 |
-
#: inc/_bm/admin/page-seasons.php:1564
|
5290 |
-
msgid "to"
|
5291 |
-
msgstr ""
|
5292 |
-
|
5293 |
-
#: core/lib/wpbc_all_translations.php:986 inc/_bm/admin/page-cost-valuation.php:504
|
5294 |
-
#: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
|
5295 |
-
#, php-format
|
5296 |
-
msgid "Additional cost in %s per 1 day"
|
5297 |
-
msgstr ""
|
5298 |
-
|
5299 |
-
#: core/lib/wpbc_all_translations.php:987 inc/_bm/admin/page-cost.php:49
|
5300 |
-
msgid "Customization of rates, valuation days cost and deposit amount "
|
5301 |
-
msgstr ""
|
5302 |
-
|
5303 |
-
#: core/lib/wpbc_all_translations.php:988 inc/_bm/admin/page-cost.php:50
|
5304 |
-
msgid "Costs and Rates Settings"
|
5305 |
-
msgstr ""
|
5306 |
-
|
5307 |
-
#: core/lib/wpbc_all_translations.php:989 inc/_bm/admin/page-cost.php:219
|
5308 |
-
#: inc/_bm/admin/page-cost.php:228
|
5309 |
-
msgid "Set Rate"
|
5310 |
-
msgstr ""
|
5311 |
-
|
5312 |
-
#: core/lib/wpbc_all_translations.php:990 inc/_bm/admin/page-cost.php:221
|
5313 |
-
#: inc/_bm/admin/page-cost.php:230
|
5314 |
-
msgid "Set Deposit Amount"
|
5315 |
-
msgstr ""
|
5316 |
-
|
5317 |
-
#: core/lib/wpbc_all_translations.php:991 inc/_bm/admin/page-cost.php:683
|
5318 |
-
#: inc/_bm/admin/page-cost.php:684
|
5319 |
-
msgid "Valuation days"
|
5320 |
-
msgstr ""
|
5321 |
-
|
5322 |
-
#: core/lib/wpbc_all_translations.php:992 inc/_bm/admin/page-cost.php:690
|
5323 |
-
#: inc/_bm/admin/page-cost.php:691 inc/gateways/page-gateways.php:1456
|
5324 |
-
msgid "Deposit"
|
5325 |
-
msgstr ""
|
5326 |
-
|
5327 |
-
#: core/lib/wpbc_all_translations.php:993 inc/_bm/admin/page-seasons.php:46
|
5328 |
-
msgid "Customizaton of Season Filters"
|
5329 |
-
msgstr ""
|
5330 |
-
|
5331 |
-
#: core/lib/wpbc_all_translations.php:994 inc/_bm/admin/page-seasons.php:680
|
5332 |
-
#: inc/_bm/admin/page-seasons.php:815
|
5333 |
-
msgid "Specific Dates Filter"
|
5334 |
-
msgstr ""
|
5335 |
-
|
5336 |
-
#: core/lib/wpbc_all_translations.php:995 inc/_bm/admin/page-seasons.php:743
|
5337 |
-
#: inc/_bm/admin/page-seasons.php:821
|
5338 |
-
msgid "Conditional Dates Filter"
|
5339 |
-
msgstr ""
|
5340 |
-
|
5341 |
-
#: core/lib/wpbc_all_translations.php:996 inc/_bm/admin/page-seasons.php:956
|
5342 |
-
#: inc/_bm/admin/page-seasons.php:1257
|
5343 |
-
msgid "Filter Name"
|
5344 |
-
msgstr ""
|
5345 |
-
|
5346 |
-
#: core/lib/wpbc_all_translations.php:997 inc/_bm/admin/page-seasons.php:957
|
5347 |
-
#: inc/_bm/admin/page-seasons.php:1258
|
5348 |
-
msgid "Type filter name"
|
5349 |
-
msgstr ""
|
5350 |
-
|
5351 |
-
#: core/lib/wpbc_all_translations.php:998 inc/_bm/admin/page-seasons.php:990
|
5352 |
-
msgid "Weekdays"
|
5353 |
-
msgstr ""
|
5354 |
-
|
5355 |
-
#: core/lib/wpbc_all_translations1.php:2 inc/_bm/admin/page-seasons.php:1106
|
5356 |
-
msgid "Months"
|
5357 |
-
msgstr ""
|
5358 |
-
|
5359 |
-
#: core/lib/wpbc_all_translations1.php:3 inc/_bm/admin/page-seasons.php:1108
|
5360 |
-
#: inc/_bm/admin/page-seasons.php:1283
|
5361 |
-
msgid "January"
|
5362 |
-
msgstr ""
|
5363 |
-
|
5364 |
-
#: core/lib/wpbc_all_translations1.php:4 inc/_bm/admin/page-seasons.php:1109
|
5365 |
-
#: inc/_bm/admin/page-seasons.php:1284
|
5366 |
-
msgid "February"
|
5367 |
-
msgstr ""
|
5368 |
-
|
5369 |
-
#: core/lib/wpbc_all_translations1.php:5 inc/_bm/admin/page-seasons.php:1110
|
5370 |
-
#: inc/_bm/admin/page-seasons.php:1285
|
5371 |
-
msgid "March"
|
5372 |
-
msgstr ""
|
5373 |
-
|
5374 |
-
#: core/lib/wpbc_all_translations1.php:6 inc/_bm/admin/page-seasons.php:1111
|
5375 |
-
#: inc/_bm/admin/page-seasons.php:1286
|
5376 |
-
msgid "April"
|
5377 |
-
msgstr ""
|
5378 |
-
|
5379 |
-
#: core/lib/wpbc_all_translations1.php:7 inc/_bm/admin/page-seasons.php:1112
|
5380 |
-
#: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
|
5381 |
-
msgid "May"
|
5382 |
-
msgstr ""
|
5383 |
-
|
5384 |
-
#: core/lib/wpbc_all_translations1.php:8 inc/_bm/admin/page-seasons.php:1113
|
5385 |
-
#: inc/_bm/admin/page-seasons.php:1288
|
5386 |
-
msgid "June"
|
5387 |
-
msgstr ""
|
5388 |
-
|
5389 |
-
#: core/lib/wpbc_all_translations1.php:9 inc/_bm/admin/page-seasons.php:1114
|
5390 |
-
#: inc/_bm/admin/page-seasons.php:1289
|
5391 |
-
msgid "July"
|
5392 |
-
msgstr ""
|
5393 |
-
|
5394 |
-
#: core/lib/wpbc_all_translations1.php:10 inc/_bm/admin/page-seasons.php:1115
|
5395 |
-
#: inc/_bm/admin/page-seasons.php:1290
|
5396 |
-
msgid "August"
|
5397 |
-
msgstr ""
|
5398 |
-
|
5399 |
-
#: core/lib/wpbc_all_translations1.php:11 inc/_bm/admin/page-seasons.php:1116
|
5400 |
-
#: inc/_bm/admin/page-seasons.php:1291
|
5401 |
-
msgid "September"
|
5402 |
-
msgstr ""
|
5403 |
-
|
5404 |
-
#: core/lib/wpbc_all_translations1.php:12 inc/_bm/admin/page-seasons.php:1117
|
5405 |
-
#: inc/_bm/admin/page-seasons.php:1292
|
5406 |
-
msgid "October"
|
5407 |
-
msgstr ""
|
5408 |
-
|
5409 |
-
#: core/lib/wpbc_all_translations1.php:13 inc/_bm/admin/page-seasons.php:1118
|
5410 |
-
#: inc/_bm/admin/page-seasons.php:1293
|
5411 |
-
msgid "November"
|
5412 |
-
msgstr ""
|
5413 |
-
|
5414 |
-
#: core/lib/wpbc_all_translations1.php:14 inc/_bm/admin/page-seasons.php:1119
|
5415 |
-
#: inc/_bm/admin/page-seasons.php:1294
|
5416 |
-
msgid "December"
|
5417 |
-
msgstr ""
|
5418 |
-
|
5419 |
-
#: core/lib/wpbc_all_translations1.php:15 inc/_bm/admin/page-seasons.php:1174
|
5420 |
-
msgid "Years"
|
5421 |
-
msgstr ""
|
5422 |
-
|
5423 |
-
#: core/lib/wpbc_all_translations1.php:16 inc/_bm/admin/page-seasons.php:1272
|
5424 |
-
#: inc/_bm/admin/page-seasons.php:1487
|
5425 |
-
msgid "Mo"
|
5426 |
-
msgstr ""
|
5427 |
-
|
5428 |
-
#: core/lib/wpbc_all_translations1.php:17 inc/_bm/admin/page-seasons.php:1273
|
5429 |
-
#: inc/_bm/admin/page-seasons.php:1487
|
5430 |
-
msgid "Tu"
|
5431 |
-
msgstr ""
|
5432 |
-
|
5433 |
-
#: core/lib/wpbc_all_translations1.php:18 inc/_bm/admin/page-seasons.php:1274
|
5434 |
-
#: inc/_bm/admin/page-seasons.php:1487
|
5435 |
-
msgid "We"
|
5436 |
-
msgstr ""
|
5437 |
-
|
5438 |
-
#: core/lib/wpbc_all_translations1.php:19 inc/_bm/admin/page-seasons.php:1275
|
5439 |
-
#: inc/_bm/admin/page-seasons.php:1487
|
5440 |
-
msgid "Th"
|
5441 |
-
msgstr ""
|
5442 |
-
|
5443 |
-
#: core/lib/wpbc_all_translations1.php:20 inc/_bm/admin/page-seasons.php:1276
|
5444 |
-
#: inc/_bm/admin/page-seasons.php:1487
|
5445 |
-
msgid "Fr"
|
5446 |
-
msgstr ""
|
5447 |
-
|
5448 |
-
#: core/lib/wpbc_all_translations1.php:21 inc/_bm/admin/page-seasons.php:1277
|
5449 |
-
#: inc/_bm/admin/page-seasons.php:1487
|
5450 |
-
msgid "Sa"
|
5451 |
-
msgstr ""
|
5452 |
-
|
5453 |
-
#: core/lib/wpbc_all_translations1.php:22 inc/_bm/admin/page-seasons.php:1278
|
5454 |
-
#: inc/_bm/admin/page-seasons.php:1487
|
5455 |
-
msgid "Su"
|
5456 |
-
msgstr ""
|
5457 |
-
|
5458 |
-
#: core/lib/wpbc_all_translations1.php:23 inc/_bm/admin/page-seasons.php:1489
|
5459 |
-
msgid "Jan"
|
5460 |
-
msgstr ""
|
5461 |
-
|
5462 |
-
#: core/lib/wpbc_all_translations1.php:24 inc/_bm/admin/page-seasons.php:1489
|
5463 |
-
msgid "Feb"
|
5464 |
-
msgstr ""
|
5465 |
-
|
5466 |
-
#: core/lib/wpbc_all_translations1.php:25 inc/_bm/admin/page-seasons.php:1490
|
5467 |
-
msgid "Mar"
|
5468 |
-
msgstr ""
|
5469 |
-
|
5470 |
-
#: core/lib/wpbc_all_translations1.php:26 inc/_bm/admin/page-seasons.php:1490
|
5471 |
-
msgid "Apr"
|
5472 |
-
msgstr ""
|
5473 |
-
|
5474 |
-
#: core/lib/wpbc_all_translations1.php:27 inc/_bm/admin/page-seasons.php:1491
|
5475 |
-
msgid "Jun"
|
5476 |
-
msgstr ""
|
5477 |
-
|
5478 |
-
#: core/lib/wpbc_all_translations1.php:28 inc/_bm/admin/page-seasons.php:1491
|
5479 |
-
msgid "Jul"
|
5480 |
-
msgstr ""
|
5481 |
-
|
5482 |
-
#: core/lib/wpbc_all_translations1.php:29 inc/_bm/admin/page-seasons.php:1491
|
5483 |
-
msgid "Aug"
|
5484 |
-
msgstr ""
|
5485 |
-
|
5486 |
-
#: core/lib/wpbc_all_translations1.php:30 inc/_bm/admin/page-seasons.php:1492
|
5487 |
-
msgid "Sep"
|
5488 |
-
msgstr ""
|
5489 |
-
|
5490 |
-
#: core/lib/wpbc_all_translations1.php:31 inc/_bm/admin/page-seasons.php:1492
|
5491 |
-
msgid "Oct"
|
5492 |
-
msgstr ""
|
5493 |
-
|
5494 |
-
#: core/lib/wpbc_all_translations1.php:32 inc/_bm/admin/page-seasons.php:1492
|
5495 |
-
msgid "Nov"
|
5496 |
-
msgstr ""
|
5497 |
-
|
5498 |
-
#: core/lib/wpbc_all_translations1.php:33 inc/_bm/admin/page-seasons.php:1492
|
5499 |
-
msgid "Dec"
|
5500 |
-
msgstr ""
|
5501 |
-
|
5502 |
-
#: core/lib/wpbc_all_translations1.php:34 inc/_bm/admin/page-seasons.php:1562
|
5503 |
-
#: inc/_bm/admin/page-seasons.php:1581 inc/_bm/admin/page-seasons.php:1603
|
5504 |
-
#: inc/_bm/admin/page-seasons.php:1627 inc/_bm/admin/page-seasons.php:1645
|
5505 |
-
msgid "No days"
|
5506 |
-
msgstr ""
|
5507 |
-
|
5508 |
-
#: core/lib/wpbc_all_translations1.php:35 inc/_bm/admin/page-seasons.php:1564
|
5509 |
-
msgid "time"
|
5510 |
-
msgstr ""
|
5511 |
-
|
5512 |
-
#: core/lib/wpbc_all_translations1.php:36 inc/_bm/admin/page-seasons.php:1583
|
5513 |
-
msgid "Every"
|
5514 |
-
msgstr ""
|
5515 |
-
|
5516 |
-
#: core/lib/wpbc_all_translations1.php:37 inc/_bm/admin/page-seasons.php:1599
|
5517 |
-
msgid "Each day "
|
5518 |
-
msgstr ""
|
5519 |
-
|
5520 |
-
#: core/lib/wpbc_all_translations1.php:38 inc/_bm/admin/page-seasons.php:1601
|
5521 |
-
msgid "on each day "
|
5522 |
-
msgstr ""
|
5523 |
-
|
5524 |
-
#: core/lib/wpbc_all_translations1.php:39 inc/_bm/admin/page-seasons.php:1606
|
5525 |
-
msgid "On each "
|
5526 |
-
msgstr ""
|
5527 |
-
|
5528 |
-
#: core/lib/wpbc_all_translations1.php:40 inc/_bm/admin/page-seasons.php:1608
|
5529 |
-
msgid "on each "
|
5530 |
-
msgstr ""
|
5531 |
-
|
5532 |
-
#: core/lib/wpbc_all_translations1.php:41 inc/_bm/admin/page-seasons.php:1625
|
5533 |
-
msgid "of every month "
|
5534 |
-
msgstr ""
|
5535 |
-
|
5536 |
-
#: core/lib/wpbc_all_translations1.php:42 inc/_bm/admin/page-seasons.php:1629
|
5537 |
-
msgid "of"
|
5538 |
-
msgstr ""
|
5539 |
-
|
5540 |
-
#: core/lib/wpbc_all_translations1.php:43 inc/_bm/biz_m.php:220
|
5541 |
-
msgid "for all days!"
|
5542 |
-
msgstr ""
|
5543 |
-
|
5544 |
-
#: core/lib/wpbc_all_translations1.php:44 inc/_bm/biz_m.php:764
|
5545 |
-
msgid "Standard booking resource cost"
|
5546 |
-
msgstr ""
|
5547 |
-
|
5548 |
-
#: core/lib/wpbc_all_translations1.php:45 inc/_bm/biz_m.php:765
|
5549 |
-
msgid "Total booking resource cost"
|
5550 |
-
msgstr ""
|
5551 |
-
|
5552 |
-
#: core/lib/wpbc_all_translations1.php:46 inc/_bm/m-toolbar.php:298
|
5553 |
-
msgid "Delete selected booking form"
|
5554 |
-
msgstr ""
|
5555 |
-
|
5556 |
-
#: core/lib/wpbc_all_translations1.php:47 inc/_bm/m-toolbar.php:302
|
5557 |
-
msgid "Do you really want to delete selected booking form ?"
|
5558 |
-
msgstr ""
|
5559 |
-
|
5560 |
-
#: core/lib/wpbc_all_translations1.php:48 inc/_bm/m-toolbar.php:327 inc/_bm/m-toolbar.php:328
|
5561 |
-
msgid "Add New Custom Form"
|
5562 |
-
msgstr ""
|
5563 |
-
|
5564 |
-
#: core/lib/wpbc_all_translations1.php:49 inc/_bm/m-toolbar.php:361
|
5565 |
-
msgid "Type the name of booking form"
|
5566 |
-
msgstr ""
|
5567 |
-
|
5568 |
-
#: core/lib/wpbc_all_translations1.php:50 inc/_bm/m-toolbar.php:368
|
5569 |
-
msgid "Create"
|
5570 |
-
msgstr ""
|
5571 |
-
|
5572 |
-
#: core/lib/wpbc_all_translations1.php:51 inc/_bm/m-toolbar.php:369
|
5573 |
-
msgid "Create new form"
|
5574 |
-
msgstr ""
|
5575 |
-
|
5576 |
-
#: core/lib/wpbc_all_translations1.php:52 inc/_bm/m-toolbar.php:564
|
5577 |
-
msgid "There are no extended booking forms"
|
5578 |
-
msgstr ""
|
5579 |
-
|
5580 |
-
#: core/lib/wpbc_all_translations1.php:53 inc/_bm/m-toolbar.php:608 inc/_bm/m-toolbar.php:610
|
5581 |
-
msgid "Create conditional days filter"
|
5582 |
-
msgstr ""
|
5583 |
-
|
5584 |
-
#: core/lib/wpbc_all_translations1.php:54 inc/_bs/admin/activation-s.php:93
|
5585 |
-
#: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
|
5586 |
-
msgid "Apartment#1"
|
5587 |
-
msgstr ""
|
5588 |
-
|
5589 |
-
#: core/lib/wpbc_all_translations1.php:55 inc/_bs/admin/activation-s.php:94
|
5590 |
-
#: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
|
5591 |
-
msgid "Apartment#2"
|
5592 |
-
msgstr ""
|
5593 |
-
|
5594 |
-
#: core/lib/wpbc_all_translations1.php:56 inc/_bs/admin/activation-s.php:95
|
5595 |
-
#: inc/_ps/admin/activation-p.php:48
|
5596 |
-
msgid "Apartment#3"
|
5597 |
-
msgstr ""
|
5598 |
-
|
5599 |
-
#: core/lib/wpbc_all_translations1.php:57 inc/_bs/admin/api-settings-s.php:31
|
5600 |
-
msgid "Range days"
|
5601 |
-
msgstr ""
|
5602 |
-
|
5603 |
-
#: core/lib/wpbc_all_translations1.php:58 inc/_bs/admin/api-settings-s.php:46
|
5604 |
-
#, php-format
|
5605 |
-
msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
|
5606 |
-
msgstr ""
|
5607 |
-
|
5608 |
-
#: core/lib/wpbc_all_translations1.php:59 inc/_bs/admin/api-settings-s.php:48
|
5609 |
-
#, php-format
|
5610 |
-
msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
|
5611 |
-
msgstr ""
|
5612 |
-
|
5613 |
-
#: core/lib/wpbc_all_translations1.php:60 inc/_bs/admin/api-settings-s.php:74
|
5614 |
-
#: inc/_bs/admin/api-settings-s.php:138
|
5615 |
-
msgid "Days selection number"
|
5616 |
-
msgstr ""
|
5617 |
-
|
5618 |
-
#: core/lib/wpbc_all_translations1.php:61 inc/_bs/admin/api-settings-s.php:75
|
5619 |
-
#, php-format
|
5620 |
-
msgid "Type your %snumber of days for range selection%s"
|
5621 |
-
msgstr ""
|
5622 |
-
|
5623 |
-
#: core/lib/wpbc_all_translations1.php:62 inc/_bs/admin/api-settings-s.php:83
|
5624 |
-
#: inc/_bs/admin/api-settings-s.php:211
|
5625 |
-
msgid "Specific day(s) of week"
|
5626 |
-
msgstr ""
|
5627 |
-
|
5628 |
-
#: core/lib/wpbc_all_translations1.php:63 inc/_bs/admin/api-settings-s.php:84
|
5629 |
-
#: inc/_bs/admin/api-settings-s.php:215
|
5630 |
-
msgid "Any day of week"
|
5631 |
-
msgstr ""
|
5632 |
-
|
5633 |
-
#: core/lib/wpbc_all_translations1.php:64 inc/_bs/admin/api-settings-s.php:90
|
5634 |
-
#: inc/_bs/admin/api-settings-s.php:223
|
5635 |
-
msgid "Start day of range"
|
5636 |
-
msgstr ""
|
5637 |
-
|
5638 |
-
#: core/lib/wpbc_all_translations1.php:65 inc/_bs/admin/api-settings-s.php:119
|
5639 |
-
#: inc/_bs/admin/api-settings-s.php:252
|
5640 |
-
msgid "Select your start day of range selection at week"
|
5641 |
-
msgstr ""
|
5642 |
-
|
5643 |
-
#: core/lib/wpbc_all_translations1.php:66 inc/_bs/admin/api-settings-s.php:152
|
5644 |
-
#: inc/_bs/admin/api-settings-s.php:157
|
5645 |
-
msgid "Min"
|
5646 |
-
msgstr ""
|
5647 |
-
|
5648 |
-
#: core/lib/wpbc_all_translations1.php:67 inc/_bs/admin/api-settings-s.php:170
|
5649 |
-
#: inc/_bs/admin/api-settings-s.php:175
|
5650 |
-
msgid "Max"
|
5651 |
-
msgstr ""
|
5652 |
-
|
5653 |
-
#: core/lib/wpbc_all_translations1.php:68 inc/_bs/admin/api-settings-s.php:187
|
5654 |
-
#, php-format
|
5655 |
-
msgid "Select your %sminimum and maximum number of days for range selection%s"
|
5656 |
-
msgstr ""
|
5657 |
-
|
5658 |
-
#: core/lib/wpbc_all_translations1.php:69 inc/_bs/admin/api-settings-s.php:198
|
5659 |
-
msgid "Specific days selections"
|
5660 |
-
msgstr ""
|
5661 |
-
|
5662 |
-
#: core/lib/wpbc_all_translations1.php:70 inc/_bs/admin/api-settings-s.php:200
|
5663 |
-
#, php-format
|
5664 |
-
msgid ""
|
5665 |
-
"Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
|
5666 |
-
"can be several days separated by comma (example: %s) or by dash (example: %s, its the same like "
|
5667 |
-
"this: %s) or combination (example:%s, its the same like this: %s)"
|
5668 |
-
msgstr ""
|
5669 |
-
|
5670 |
-
#: core/lib/wpbc_all_translations1.php:71 inc/_bs/admin/api-settings-s.php:281
|
5671 |
-
msgid "Use time selections as recurrent time slots"
|
5672 |
-
msgstr ""
|
5673 |
-
|
5674 |
-
#: core/lib/wpbc_all_translations1.php:72 inc/_bs/admin/api-settings-s.php:282
|
5675 |
-
msgid ""
|
5676 |
-
"Check this box if you want to use recurrent time to reserve several days. This means that middle "
|
5677 |
-
"days will be partially booked by actual times, otherwise the time in the booking form will be "
|
5678 |
-
"used as check-in/check-out time for the first and last day of the reservation."
|
5679 |
-
msgstr ""
|
5680 |
-
|
5681 |
-
#: core/lib/wpbc_all_translations1.php:73 inc/_bs/admin/api-settings-s.php:315
|
5682 |
-
msgid "Check this option, to use check in/out time during booking process. "
|
5683 |
-
msgstr ""
|
5684 |
-
|
5685 |
-
#: core/lib/wpbc_all_translations1.php:74 inc/_bs/admin/api-settings-s.php:316
|
5686 |
-
#, php-format
|
5687 |
-
msgid "%s Important!%s This will overwrite any times selection in your booking form."
|
5688 |
-
msgstr ""
|
5689 |
-
|
5690 |
-
#: core/lib/wpbc_all_translations1.php:75 inc/_bs/admin/api-settings-s.php:323
|
5691 |
-
msgid "Check-in time"
|
5692 |
-
msgstr ""
|
5693 |
-
|
5694 |
-
#: core/lib/wpbc_all_translations1.php:76 inc/_bs/admin/api-settings-s.php:324
|
5695 |
-
#, php-format
|
5696 |
-
msgid "Type your %sCheck-in%s time of booking"
|
5697 |
-
msgstr ""
|
5698 |
-
|
5699 |
-
#: core/lib/wpbc_all_translations1.php:77 inc/_bs/admin/api-settings-s.php:336
|
5700 |
-
msgid "Check-Out time"
|
5701 |
-
msgstr ""
|
5702 |
-
|
5703 |
-
#: core/lib/wpbc_all_translations1.php:78 inc/_bs/admin/api-settings-s.php:337
|
5704 |
-
#, php-format
|
5705 |
-
msgid "Type your %sCheck-Out%s time of booking"
|
5706 |
-
msgstr ""
|
5707 |
-
|
5708 |
-
#: core/lib/wpbc_all_translations1.php:79 inc/_bs/admin/api-settings-s.php:351
|
5709 |
-
msgid "Change over days as triangles"
|
5710 |
-
msgstr ""
|
5711 |
-
|
5712 |
-
#: core/lib/wpbc_all_translations1.php:80 inc/_bs/admin/api-settings-s.php:352
|
5713 |
-
msgid "Check this option, to show change over days as triangles. "
|
5714 |
-
msgstr ""
|
5715 |
-
|
5716 |
-
#: core/lib/wpbc_all_translations1.php:81 inc/_bs/admin/api-settings-s.php:377
|
5717 |
-
msgid "Title of booked timeslot(s)"
|
5718 |
-
msgstr ""
|
5719 |
-
|
5720 |
-
#: core/lib/wpbc_all_translations1.php:82 inc/_bs/admin/api-settings-s.php:378
|
5721 |
-
#, php-format
|
5722 |
-
msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
|
5723 |
-
msgstr ""
|
5724 |
-
|
5725 |
-
#: core/lib/wpbc_all_translations1.php:83 inc/_bs/admin/api-settings-s.php:418
|
5726 |
-
msgid "Time Format"
|
5727 |
-
msgstr ""
|
5728 |
-
|
5729 |
-
#: core/lib/wpbc_all_translations1.php:84 inc/_bs/admin/api-settings-s.php:452
|
5730 |
-
#, php-format
|
5731 |
-
msgid ""
|
5732 |
-
"Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
|
5733 |
-
msgstr ""
|
5734 |
-
|
5735 |
-
#: core/lib/wpbc_all_translations1.php:85 inc/_bs/admin/api-settings-s.php:478
|
5736 |
-
msgid "Auto approve all new bookings"
|
5737 |
-
msgstr ""
|
5738 |
-
|
5739 |
-
#: core/lib/wpbc_all_translations1.php:86 inc/_bs/admin/api-settings-s.php:479
|
5740 |
-
#, php-format
|
5741 |
-
msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
|
5742 |
-
msgstr ""
|
5743 |
-
|
5744 |
-
#: core/lib/wpbc_all_translations1.php:87 inc/_bs/admin/api-settings-s.php:517
|
5745 |
-
#, php-format
|
5746 |
-
msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
|
5747 |
-
msgstr ""
|
5748 |
-
|
5749 |
-
#: core/lib/wpbc_all_translations1.php:88 inc/_bs/admin/api-settings-s.php:541
|
5750 |
-
msgid "Cancel bookings older"
|
5751 |
-
msgstr ""
|
5752 |
-
|
5753 |
-
#: core/lib/wpbc_all_translations1.php:89 inc/_bs/admin/api-settings-s.php:542
|
5754 |
-
msgid "Cancel only pending, unpaid bookings, which are older than this selection."
|
5755 |
-
msgstr ""
|
5756 |
-
|
5757 |
-
#: core/lib/wpbc_all_translations1.php:90 inc/_bs/admin/api-settings-s.php:550
|
5758 |
-
msgid "Cancellation email sent"
|
5759 |
-
msgstr ""
|
5760 |
-
|
5761 |
-
#: core/lib/wpbc_all_translations1.php:91 inc/_bs/admin/api-settings-s.php:551
|
5762 |
-
#, php-format
|
5763 |
-
msgid "Check this box to %ssend%s cancellation email for this resource."
|
5764 |
-
msgstr ""
|
5765 |
-
|
5766 |
-
#: core/lib/wpbc_all_translations1.php:92 inc/_bs/admin/api-settings-s.php:559
|
5767 |
-
#: inc/_bs/admin/api-settings-s.php:560
|
5768 |
-
msgid "Reason for cancellation"
|
5769 |
-
msgstr ""
|
5770 |
-
|
5771 |
-
#: core/lib/wpbc_all_translations1.php:93 inc/_bs/admin/api-settings-s.php:561
|
5772 |
-
#, php-format
|
5773 |
-
msgid "Type the reason for %scancellation%s for the email template."
|
5774 |
-
msgstr ""
|
5775 |
-
|
5776 |
-
#: core/lib/wpbc_all_translations1.php:94 inc/_bs/admin/page-email-payment.php:560
|
5777 |
-
msgid "Payment request"
|
5778 |
-
msgstr ""
|
5779 |
-
|
5780 |
-
#: core/lib/wpbc_all_translations1.php:95 inc/_bs/admin/page-email-payment.php:562
|
5781 |
-
msgid "Customization of email template, which is sending to Visitor after payment request"
|
5782 |
-
msgstr ""
|
5783 |
-
|
5784 |
-
#: core/lib/wpbc_all_translations1.php:96
|
5785 |
-
msgid "Email with Payment Request which is sending to Visitor."
|
5786 |
-
msgstr ""
|
5787 |
-
|
5788 |
-
#: core/lib/wpbc_all_translations1.php:97 core/wpbc-js.php:136
|
5789 |
-
msgid "Error! Please reset your check-in/check-out dates above."
|
5790 |
-
msgstr ""
|
5791 |
-
|
5792 |
-
#: core/lib/wpbc_all_translations1.php:98 core/wpbc-js.php:137
|
5793 |
-
msgid ""
|
5794 |
-
"Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
|
5795 |
-
"another date or time."
|
5796 |
-
msgstr ""
|
5797 |
-
|
5798 |
-
#: core/lib/wpbc_all_translations1.php:99 core/wpbc-js.php:138
|
5799 |
-
msgid ""
|
5800 |
-
"End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
|
5801 |
-
"also be earlier that the start time, if only 1 day was selected! Please choose another date or "
|
5802 |
-
"time."
|
5803 |
-
msgstr ""
|
5804 |
-
|
5805 |
-
#: core/lib/wpbc_all_translations1.php:100 core/wpbc-js.php:139 core/wpbc-js.php:140
|
5806 |
-
msgid "The time(s) may be booked, or already in the past!"
|
5807 |
-
msgstr ""
|
5808 |
-
|
5809 |
-
#: core/lib/wpbc_all_translations1.php:101 inc/_bs/biz_s.php:440
|
5810 |
-
msgid "Cost saved successfully"
|
5811 |
-
msgstr ""
|
5812 |
-
|
5813 |
-
#: core/lib/wpbc_all_translations1.php:102 inc/_bs/biz_s.php:447
|
5814 |
-
msgid "Cost is not correct. It must be greater than 0"
|
5815 |
-
msgstr ""
|
5816 |
-
|
5817 |
-
#: core/lib/wpbc_all_translations1.php:103 inc/_bs/biz_s.php:632
|
5818 |
-
msgid "Request has been sent"
|
5819 |
-
msgstr ""
|
5820 |
-
|
5821 |
-
#: core/lib/wpbc_all_translations1.php:104 inc/_bs/biz_s.php:639
|
5822 |
-
msgid "Request has failed"
|
5823 |
-
msgstr ""
|
5824 |
-
|
5825 |
-
#: core/lib/wpbc_all_translations1.php:105 inc/_bs/biz_s.php:670
|
5826 |
-
msgid "The payment status is changed successfully"
|
5827 |
-
msgstr ""
|
5828 |
-
|
5829 |
-
#: core/lib/wpbc_all_translations1.php:106 inc/_bs/biz_s.php:677
|
5830 |
-
msgid "The changing of payment status is failed"
|
5831 |
-
msgstr ""
|
5832 |
-
|
5833 |
-
#: core/lib/wpbc_all_translations1.php:107 inc/_bs/biz_s.php:1095
|
5834 |
-
msgid "deposit"
|
5835 |
-
msgstr ""
|
5836 |
-
|
5837 |
-
#: core/lib/wpbc_all_translations1.php:108 inc/_bs/biz_s.php:1096
|
5838 |
-
msgid "Total cost"
|
5839 |
-
msgstr ""
|
5840 |
-
|
5841 |
-
#: core/lib/wpbc_all_translations1.php:109 inc/_bs/biz_s.php:1097
|
5842 |
-
msgid "balance"
|
5843 |
-
msgstr ""
|
5844 |
-
|
5845 |
-
#: core/lib/wpbc_all_translations1.php:110 inc/_bs/lib_s.php:41 inc/_bs/lib_s.php:72
|
5846 |
-
#: inc/_bs/s-toolbar.php:94
|
5847 |
-
msgid "Payment status"
|
5848 |
-
msgstr ""
|
5849 |
-
|
5850 |
-
#: core/lib/wpbc_all_translations1.php:111 inc/_bs/lib_s.php:45
|
5851 |
-
msgid "Any Status"
|
5852 |
-
msgstr ""
|
5853 |
-
|
5854 |
-
#: core/lib/wpbc_all_translations1.php:112 inc/_bs/lib_s.php:48
|
5855 |
-
msgid "Unknown Status"
|
5856 |
-
msgstr ""
|
5857 |
-
|
5858 |
-
#: core/lib/wpbc_all_translations1.php:113 inc/_bs/lib_s.php:49 inc/_bs/lib_s.php:325
|
5859 |
-
msgid "Not Completed"
|
5860 |
-
msgstr ""
|
5861 |
-
|
5862 |
-
#: core/lib/wpbc_all_translations1.php:114 inc/_bs/lib_s.php:50 inc/_bs/lib_s.php:314
|
5863 |
-
#: inc/_bs/lib_s.php:334
|
5864 |
-
msgid "Failed"
|
5865 |
-
msgstr ""
|
5866 |
-
|
5867 |
-
#: core/lib/wpbc_all_translations1.php:115 inc/_bs/lib_s.php:140
|
5868 |
-
msgid "min"
|
5869 |
-
msgstr ""
|
5870 |
-
|
5871 |
-
#: core/lib/wpbc_all_translations1.php:116 inc/_bs/lib_s.php:140
|
5872 |
-
msgid "max"
|
5873 |
-
msgstr ""
|
5874 |
-
|
5875 |
-
#: core/lib/wpbc_all_translations1.php:117 inc/_bs/lib_s.php:269 inc/_bs/lib_s.php:309
|
5876 |
-
#: inc/_bs/lib_s.php:327
|
5877 |
-
msgid "Completed"
|
5878 |
-
msgstr ""
|
5879 |
-
|
5880 |
-
#: core/lib/wpbc_all_translations1.php:118 inc/_bs/lib_s.php:310 inc/_bs/lib_s.php:330
|
5881 |
-
msgid "In-Progress"
|
5882 |
-
msgstr ""
|
5883 |
-
|
5884 |
-
#: core/lib/wpbc_all_translations1.php:119 inc/_bs/lib_s.php:312 inc/_bs/lib_s.php:347
|
5885 |
-
msgid "Partially paid"
|
5886 |
-
msgstr ""
|
5887 |
-
|
5888 |
-
#: core/lib/wpbc_all_translations1.php:120 inc/_bs/lib_s.php:313 inc/_bs/lib_s.php:348
|
5889 |
-
msgid "Cancelled"
|
5890 |
-
msgstr ""
|
5891 |
-
|
5892 |
-
#: core/lib/wpbc_all_translations1.php:121 inc/_bs/lib_s.php:315 inc/_bs/lib_s.php:336
|
5893 |
-
msgid "Refunded"
|
5894 |
-
msgstr ""
|
5895 |
-
|
5896 |
-
#: core/lib/wpbc_all_translations1.php:122 inc/_bs/lib_s.php:316 inc/_bs/lib_s.php:349
|
5897 |
-
msgid "Fraud"
|
5898 |
-
msgstr ""
|
5899 |
-
|
5900 |
-
#: core/lib/wpbc_all_translations1.php:123 inc/_bs/lib_s.php:323
|
5901 |
-
msgid "!Paid OK"
|
5902 |
-
msgstr ""
|
5903 |
-
|
5904 |
-
#: core/lib/wpbc_all_translations1.php:124 inc/_bs/lib_s.php:324
|
5905 |
-
msgid "Unknown status"
|
5906 |
-
msgstr ""
|
5907 |
-
|
5908 |
-
#: core/lib/wpbc_all_translations1.php:125 inc/_bs/lib_s.php:329
|
5909 |
-
msgid "Processed"
|
5910 |
-
msgstr ""
|
5911 |
-
|
5912 |
-
#: core/lib/wpbc_all_translations1.php:126 inc/_bs/lib_s.php:331
|
5913 |
-
msgid "Canceled_Reversal"
|
5914 |
-
msgstr ""
|
5915 |
-
|
5916 |
-
#: core/lib/wpbc_all_translations1.php:127 inc/_bs/lib_s.php:332
|
5917 |
-
msgid "Denied"
|
5918 |
-
msgstr ""
|
5919 |
-
|
5920 |
-
#: core/lib/wpbc_all_translations1.php:128 inc/_bs/lib_s.php:333
|
5921 |
-
msgid "Expired"
|
5922 |
-
msgstr ""
|
5923 |
-
|
5924 |
-
#: core/lib/wpbc_all_translations1.php:129 inc/_bs/lib_s.php:335
|
5925 |
-
msgid "Partially_Refunded"
|
5926 |
-
msgstr ""
|
5927 |
-
|
5928 |
-
#: core/lib/wpbc_all_translations1.php:130 inc/_bs/lib_s.php:337
|
5929 |
-
msgid "Reversed"
|
5930 |
-
msgstr ""
|
5931 |
-
|
5932 |
-
#: core/lib/wpbc_all_translations1.php:131 inc/_bs/lib_s.php:338
|
5933 |
-
msgid "Voided"
|
5934 |
-
msgstr ""
|
5935 |
-
|
5936 |
-
#: core/lib/wpbc_all_translations1.php:132 inc/_bs/lib_s.php:341
|
5937 |
-
msgid "Not authed"
|
5938 |
-
msgstr ""
|
5939 |
-
|
5940 |
-
#: core/lib/wpbc_all_translations1.php:133 inc/_bs/lib_s.php:342
|
5941 |
-
msgid "Malformed"
|
5942 |
-
msgstr ""
|
5943 |
-
|
5944 |
-
#: core/lib/wpbc_all_translations1.php:134 inc/_bs/lib_s.php:343
|
5945 |
-
msgid "Invalid"
|
5946 |
-
msgstr ""
|
5947 |
-
|
5948 |
-
#: core/lib/wpbc_all_translations1.php:135 inc/_bs/lib_s.php:344
|
5949 |
-
msgid "Abort"
|
5950 |
-
msgstr ""
|
5951 |
-
|
5952 |
-
#: core/lib/wpbc_all_translations1.php:136 inc/_bs/lib_s.php:345
|
5953 |
-
msgid "Rejected"
|
5954 |
-
msgstr ""
|
5955 |
-
|
5956 |
-
#: core/lib/wpbc_all_translations1.php:137 inc/_bs/lib_s.php:350
|
5957 |
-
msgid "Suspended"
|
5958 |
-
msgstr ""
|
5959 |
-
|
5960 |
-
#: core/lib/wpbc_all_translations1.php:138 inc/_bs/s-toolbar.php:68
|
5961 |
-
msgid "Send payment request to visitor"
|
5962 |
-
msgstr ""
|
5963 |
-
|
5964 |
-
#: core/lib/wpbc_all_translations1.php:139 core/timeline/v2/wpbc-class-timeline_v2.php:2650
|
5965 |
-
#: inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:131 inc/_ps/p-toolbar.php:540
|
5966 |
-
msgid "Print"
|
5967 |
-
msgstr ""
|
5968 |
-
|
5969 |
-
#: core/lib/wpbc_all_translations1.php:140 inc/_bs/s-toolbar.php:136
|
5970 |
-
msgid "Save cost"
|
5971 |
-
msgstr ""
|
5972 |
-
|
5973 |
-
#: core/lib/wpbc_all_translations1.php:141 inc/_bs/s-toolbar.php:173
|
5974 |
-
msgid "Change status"
|
5975 |
-
msgstr ""
|
5976 |
-
|
5977 |
-
#: core/lib/wpbc_all_translations1.php:142 inc/_bs/s-toolbar.php:196
|
5978 |
-
msgid "Send payment request to customer"
|
5979 |
-
msgstr ""
|
5980 |
-
|
5981 |
-
#: core/lib/wpbc_all_translations1.php:143 inc/_bs/s-toolbar.php:200
|
5982 |
-
#, php-format
|
5983 |
-
msgid "Type your %sreason for payment%s request"
|
5984 |
-
msgstr ""
|
5985 |
-
|
5986 |
-
#: core/lib/wpbc_all_translations1.php:144 inc/_bs/s-toolbar.php:208
|
5987 |
-
msgid "Send Request"
|
5988 |
-
msgstr ""
|
5989 |
-
|
5990 |
-
#: core/lib/wpbc_all_translations1.php:145 inc/_bs/s-toolbar.php:230
|
5991 |
-
msgid "Auto-fill form"
|
5992 |
-
msgstr ""
|
5993 |
-
|
5994 |
-
#: core/lib/wpbc_all_translations1.php:146 inc/_mu/admin/activation-u.php:84
|
5995 |
-
msgid "Suite"
|
5996 |
-
msgstr ""
|
5997 |
-
|
5998 |
-
#: core/lib/wpbc_all_translations1.php:147 inc/_mu/admin/api-settings-u.php:91
|
5999 |
-
#: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
|
6000 |
-
msgid "User"
|
6001 |
-
msgstr ""
|
6002 |
-
|
6003 |
-
#: core/lib/wpbc_all_translations1.php:148 inc/_mu/admin/api-settings-u.php:437
|
6004 |
-
#: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
|
6005 |
-
#: inc/_mu/admin/page-users.php:599
|
6006 |
-
msgid "Super Admin"
|
6007 |
-
msgstr ""
|
6008 |
-
|
6009 |
-
#: core/lib/wpbc_all_translations1.php:149 inc/_mu/admin/api-settings-u.php:441
|
6010 |
-
#: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
|
6011 |
-
#: inc/_mu/admin/page-users.php:607
|
6012 |
-
msgid "Regular User"
|
6013 |
-
msgstr ""
|
6014 |
-
|
6015 |
-
#: core/lib/wpbc_all_translations1.php:150 inc/_mu/admin/api-settings-u.php:446
|
6016 |
-
msgid "Inactive User"
|
6017 |
-
msgstr ""
|
6018 |
-
|
6019 |
-
#: core/lib/wpbc_all_translations1.php:151 inc/_mu/admin/page-users.php:43
|
6020 |
-
#: inc/_mu/admin/page-users.php:433
|
6021 |
-
msgid "Users"
|
6022 |
-
msgstr ""
|
6023 |
-
|
6024 |
-
#: core/lib/wpbc_all_translations1.php:152 inc/_mu/admin/page-users.php:44
|
6025 |
-
msgid "Manage Users"
|
6026 |
-
msgstr ""
|
6027 |
-
|
6028 |
-
#: core/lib/wpbc_all_translations1.php:153 inc/_mu/admin/page-users.php:45
|
6029 |
-
msgid "Users Settings"
|
6030 |
-
msgstr ""
|
6031 |
-
|
6032 |
-
#: core/lib/wpbc_all_translations1.php:154 inc/_mu/admin/page-users.php:209
|
6033 |
-
#: inc/_mu/multiuser.php:649
|
6034 |
-
msgid "User is Activated"
|
6035 |
-
msgstr ""
|
6036 |
-
|
6037 |
-
#: core/lib/wpbc_all_translations1.php:155 inc/_mu/admin/page-users.php:237
|
6038 |
-
#: inc/_mu/multiuser.php:699
|
6039 |
-
msgid "User is Deactivated"
|
6040 |
-
msgstr ""
|
6041 |
-
|
6042 |
-
#: core/lib/wpbc_all_translations1.php:156 inc/_mu/admin/page-users.php:441
|
6043 |
-
msgid "User Role"
|
6044 |
-
msgstr ""
|
6045 |
-
|
6046 |
-
#: core/lib/wpbc_all_translations1.php:157 inc/_mu/admin/page-users.php:452
|
6047 |
-
#: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
|
6048 |
-
msgid "Set user as"
|
6049 |
-
msgstr ""
|
6050 |
-
|
6051 |
-
#: core/lib/wpbc_all_translations1.php:158 inc/_mu/admin/page-users.php:548
|
6052 |
-
msgid "Unlimited"
|
6053 |
-
msgstr ""
|
6054 |
-
|
6055 |
-
#: core/lib/wpbc_all_translations1.php:159 inc/_mu/admin/page-users.php:560
|
6056 |
-
#: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
|
6057 |
-
#: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
|
6058 |
-
#: inc/_mu/admin/page-users.php:602
|
6059 |
-
msgid "Do you really want"
|
6060 |
-
msgstr ""
|
6061 |
-
|
6062 |
-
#: core/lib/wpbc_all_translations1.php:160 inc/_mu/admin/page-users.php:561
|
6063 |
-
msgid "make user active"
|
6064 |
-
msgstr ""
|
6065 |
-
|
6066 |
-
#: core/lib/wpbc_all_translations1.php:161 inc/_mu/admin/page-users.php:565
|
6067 |
-
msgid "Activate"
|
6068 |
-
msgstr ""
|
6069 |
-
|
6070 |
-
#: core/lib/wpbc_all_translations1.php:162 inc/_mu/admin/page-users.php:569
|
6071 |
-
msgid "make user inactive"
|
6072 |
-
msgstr ""
|
6073 |
-
|
6074 |
-
#: core/lib/wpbc_all_translations1.php:163 inc/_mu/admin/page-users.php:572
|
6075 |
-
msgid "Deactivate"
|
6076 |
-
msgstr ""
|
6077 |
-
|
6078 |
-
#: core/lib/wpbc_all_translations1.php:164 inc/_mu/admin/page-users.php:575
|
6079 |
-
msgid "delete configuration"
|
6080 |
-
msgstr ""
|
6081 |
-
|
6082 |
-
#: core/lib/wpbc_all_translations1.php:165 inc/_mu/admin/page-users.php:579
|
6083 |
-
msgid "Delete settings"
|
6084 |
-
msgstr ""
|
6085 |
-
|
6086 |
-
#: core/lib/wpbc_all_translations1.php:166 inc/_mu/admin/page-users.php:582
|
6087 |
-
msgid "delete all booking data"
|
6088 |
-
msgstr ""
|
6089 |
-
|
6090 |
-
#: core/lib/wpbc_all_translations1.php:167 inc/_mu/admin/page-users.php:586
|
6091 |
-
msgid "Delete data"
|
6092 |
-
msgstr ""
|
6093 |
-
|
6094 |
-
#: core/lib/wpbc_all_translations1.php:168 inc/_mu/multiuser.php:635
|
6095 |
-
msgid "Work days"
|
6096 |
-
msgstr ""
|
6097 |
-
|
6098 |
-
#: core/lib/wpbc_all_translations1.php:169 inc/_mu/multiuser.php:768
|
6099 |
-
#, php-format
|
6100 |
-
msgid ""
|
6101 |
-
"%sYou do not have permissions for this page.%s Your account is not active, please contact "
|
6102 |
-
"administrator.%s"
|
6103 |
-
msgstr ""
|
6104 |
-
|
6105 |
-
#: core/lib/wpbc_all_translations1.php:170 inc/_mu/multiuser.php:807
|
6106 |
-
#, php-format
|
6107 |
-
msgid "%sYou do not have permissions for this booking resources.%s"
|
6108 |
-
msgstr ""
|
6109 |
-
|
6110 |
-
#: core/lib/wpbc_all_translations1.php:171 inc/_mu/multiuser.php:813
|
6111 |
-
#, php-format
|
6112 |
-
msgid "%sNo this booking resources.%s"
|
6113 |
-
msgstr ""
|
6114 |
-
|
6115 |
-
#: core/lib/wpbc_all_translations1.php:172 inc/_ps/admin/activation-p.php:52
|
6116 |
-
msgid "Please, reserve an apartment with fresh flowers."
|
6117 |
-
msgstr ""
|
6118 |
-
|
6119 |
-
#: core/lib/wpbc_all_translations1.php:173 inc/_ps/admin/api-settings-p.php:56
|
6120 |
-
msgid "Default booking resource"
|
6121 |
-
msgstr ""
|
6122 |
-
|
6123 |
-
#: core/lib/wpbc_all_translations1.php:174 inc/_ps/admin/api-settings-p.php:57
|
6124 |
-
msgid "Select your default booking resource."
|
6125 |
-
msgstr ""
|
6126 |
-
|
6127 |
-
#: core/lib/wpbc_all_translations1.php:175 inc/_ps/admin/api-settings-p.php:70
|
6128 |
-
msgid "Resources number per page"
|
6129 |
-
msgstr ""
|
6130 |
-
|
6131 |
-
#: core/lib/wpbc_all_translations1.php:176 inc/_ps/admin/api-settings-p.php:71
|
6132 |
-
msgid "Select number of booking resources (single or parent) per page at Resource menu page"
|
6133 |
-
msgstr ""
|
6134 |
-
|
6135 |
-
#: core/lib/wpbc_all_translations1.php:177 inc/_ps/admin/api-settings-p.php:183
|
6136 |
-
#: inc/_ps/admin/api-settings-p.php:197
|
6137 |
-
msgid "Booking title"
|
6138 |
-
msgstr ""
|
6139 |
-
|
6140 |
-
#: core/lib/wpbc_all_translations1.php:178 inc/_ps/admin/api-settings-p.php:183
|
6141 |
-
msgid "admin panel"
|
6142 |
-
msgstr ""
|
6143 |
-
|
6144 |
-
#: core/lib/wpbc_all_translations1.php:179 inc/_ps/admin/api-settings-p.php:184
|
6145 |
-
#, php-format
|
6146 |
-
msgid ""
|
6147 |
-
"Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
|
6148 |
-
"the shortcodes from the bottom form of Settings Fields page)."
|
6149 |
-
msgstr ""
|
6150 |
-
|
6151 |
-
#: core/lib/wpbc_all_translations1.php:180
|
6152 |
-
msgid "front panel"
|
6153 |
-
msgstr ""
|
6154 |
-
|
6155 |
-
#: core/lib/wpbc_all_translations1.php:181 inc/_ps/admin/api-settings-p.php:198
|
6156 |
-
#, php-format
|
6157 |
-
msgid ""
|
6158 |
-
"Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
|
6159 |
-
"from the bottom form of Settings Fields page."
|
6160 |
-
msgstr ""
|
6161 |
-
|
6162 |
-
#: core/lib/wpbc_all_translations1.php:182 inc/_ps/admin/api-settings-p.php:206
|
6163 |
-
msgid "Booking details in popover"
|
6164 |
-
msgstr ""
|
6165 |
-
|
6166 |
-
#: core/lib/wpbc_all_translations1.php:183 inc/_ps/admin/api-settings-p.php:207
|
6167 |
-
#, php-format
|
6168 |
-
msgid ""
|
6169 |
-
"Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
|
6170 |
-
"side."
|
6171 |
-
msgstr ""
|
6172 |
-
|
6173 |
-
#: core/lib/wpbc_all_translations1.php:184 inc/_ps/admin/api-settings-p.php:228
|
6174 |
-
msgid "semicolon"
|
6175 |
-
msgstr ""
|
6176 |
-
|
6177 |
-
#: core/lib/wpbc_all_translations1.php:185 inc/_ps/admin/api-settings-p.php:229
|
6178 |
-
msgid "comma"
|
6179 |
-
msgstr ""
|
6180 |
-
|
6181 |
-
#: core/lib/wpbc_all_translations1.php:186 inc/_ps/admin/api-settings-p.php:234
|
6182 |
-
msgid "CSV data separator"
|
6183 |
-
msgstr ""
|
6184 |
-
|
6185 |
-
#: core/lib/wpbc_all_translations1.php:187 inc/_ps/admin/api-settings-p.php:235
|
6186 |
-
msgid "Select separator of data for export bookings to CSV."
|
6187 |
-
msgstr ""
|
6188 |
-
|
6189 |
-
#: core/lib/wpbc_all_translations1.php:188 inc/_ps/admin/api-settings-p.php:327
|
6190 |
-
#: js/wpbc-gutenberg.js:1170
|
6191 |
-
msgid "URL to edit bookings"
|
6192 |
-
msgstr ""
|
6193 |
-
|
6194 |
-
#: core/lib/wpbc_all_translations1.php:189 inc/_ps/admin/api-settings-p.php:328
|
6195 |
-
#, php-format
|
6196 |
-
msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
|
6197 |
-
msgstr ""
|
6198 |
-
|
6199 |
-
#: core/lib/wpbc_all_translations1.php:190 inc/_ps/admin/api-settings-p.php:352
|
6200 |
-
msgid "Change hash after the booking is approved"
|
6201 |
-
msgstr ""
|
6202 |
-
|
6203 |
-
#: core/lib/wpbc_all_translations1.php:191 inc/_ps/admin/api-settings-p.php:353
|
6204 |
-
msgid ""
|
6205 |
-
"Check this box if you want to change the booking hash after approval. When checked, visitor will "
|
6206 |
-
"not be able to edit or cancel the booking."
|
6207 |
-
msgstr ""
|
6208 |
-
|
6209 |
-
#: core/lib/wpbc_all_translations1.php:192 inc/_ps/admin/page-email-edit.php:556
|
6210 |
-
msgid "Modified"
|
6211 |
-
msgstr ""
|
6212 |
-
|
6213 |
-
#: core/lib/wpbc_all_translations1.php:193
|
6214 |
-
msgid "Customization of email template, which is sending after modification of booking"
|
6215 |
-
msgstr ""
|
6216 |
-
|
6217 |
-
#: core/lib/wpbc_all_translations1.php:194
|
6218 |
-
msgid "Email is sending to Visitor after Editing of booking."
|
6219 |
-
msgstr ""
|
6220 |
-
|
6221 |
-
#: core/lib/wpbc_all_translations1.php:195 inc/_ps/admin/page-resources.php:39
|
6222 |
-
msgid "Customizaton of booking resources"
|
6223 |
-
msgstr ""
|
6224 |
-
|
6225 |
-
#: core/lib/wpbc_all_translations1.php:196 inc/_ps/admin/page-settings-form.php:137
|
6226 |
-
#: inc/_ps/admin/page-settings-form.php:157
|
6227 |
-
msgid "Form fields"
|
6228 |
-
msgstr ""
|
6229 |
-
|
6230 |
-
#: core/lib/wpbc_all_translations1.php:197 inc/_ps/admin/page-settings-form.php:138
|
6231 |
-
msgid "Content of Booking Fields"
|
6232 |
-
msgstr ""
|
6233 |
-
|
6234 |
-
#: core/lib/wpbc_all_translations1.php:198 inc/_ps/admin/page-settings-form.php:164
|
6235 |
-
msgid "Generate tag"
|
6236 |
-
msgstr ""
|
6237 |
-
|
6238 |
-
#: core/lib/wpbc_all_translations1.php:199 inc/_ps/admin/page-settings-form.php:173
|
6239 |
-
#, php-format
|
6240 |
-
msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
|
6241 |
-
msgstr ""
|
6242 |
-
|
6243 |
-
#: core/lib/wpbc_all_translations1.php:200 inc/_ps/admin/page-settings-form.php:313
|
6244 |
-
msgid "Form Template"
|
6245 |
-
msgstr ""
|
6246 |
-
|
6247 |
-
#: core/lib/wpbc_all_translations1.php:201 inc/_ps/admin/page-settings-form.php:326
|
6248 |
-
msgid "Standard Templates"
|
6249 |
-
msgstr ""
|
6250 |
-
|
6251 |
-
#: core/lib/wpbc_all_translations1.php:202 inc/_ps/form/class-wpbc-field-help-textarea.php:111
|
6252 |
-
msgid "Columns"
|
6253 |
-
msgstr ""
|
6254 |
-
|
6255 |
-
#: core/lib/wpbc_all_translations1.php:203 inc/_ps/admin/page-settings-form.php:446
|
6256 |
-
msgid "Advanced Templates"
|
6257 |
-
msgstr ""
|
6258 |
-
|
6259 |
-
#: core/lib/wpbc_all_translations1.php:204 inc/_ps/admin/page-settings-form.php:449
|
6260 |
-
msgid "Wizard (several steps)"
|
6261 |
-
msgstr ""
|
6262 |
-
|
6263 |
-
#: core/lib/wpbc_all_translations1.php:205 inc/_ps/admin/page-settings-form.php:462
|
6264 |
-
msgid "Time slots for different weekdays"
|
6265 |
-
msgstr ""
|
6266 |
-
|
6267 |
-
#: core/lib/wpbc_all_translations1.php:206 inc/_ps/admin/page-settings-form.php:472
|
6268 |
-
#: inc/_ps/admin/page-settings-form.php:483
|
6269 |
-
msgid "Hints"
|
6270 |
-
msgstr ""
|
6271 |
-
|
6272 |
-
#: core/lib/wpbc_all_translations1.php:207 inc/_ps/admin/page-settings-form.php:505
|
6273 |
-
msgid "Reset Form"
|
6274 |
-
msgstr ""
|
6275 |
-
|
6276 |
-
#: core/lib/wpbc_all_translations1.php:208 inc/_ps/admin/page-settings-form.php:558
|
6277 |
-
msgid "Both"
|
6278 |
-
msgstr ""
|
6279 |
-
|
6280 |
-
#: core/lib/wpbc_all_translations1.php:209 inc/_ps/admin/page-settings-form.php:559
|
6281 |
-
msgid "Reset Booking Form and Content of Booking Fields Form"
|
6282 |
-
msgstr ""
|
6283 |
-
|
6284 |
-
#: core/lib/wpbc_all_translations1.php:210 inc/_ps/admin/page-settings-form.php:710
|
6285 |
-
#: inc/gateways/page-gateways.php:1088
|
6286 |
-
#, php-format
|
6287 |
-
msgid "%s - inserting data from fields of booking form"
|
6288 |
-
msgstr ""
|
6289 |
-
|
6290 |
-
#: core/lib/wpbc_all_translations1.php:211 inc/_ps/admin/page-settings-form.php:711
|
6291 |
-
#, php-format
|
6292 |
-
msgid "%s - inserting new line"
|
6293 |
-
msgstr ""
|
6294 |
-
|
6295 |
-
#: core/lib/wpbc_all_translations1.php:212 inc/_ps/admin/page-settings-form.php:715
|
6296 |
-
#: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:1143
|
6297 |
-
#, php-format
|
6298 |
-
msgid ""
|
6299 |
-
"You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
|
6300 |
-
"that all \"open\" tags (like %s) are closed (like this %s)."
|
6301 |
-
msgstr ""
|
6302 |
-
|
6303 |
-
#: core/lib/wpbc_all_translations1.php:213 inc/_ps/admin/page-settings-up.php:39
|
6304 |
-
msgid "Upgrade to higher version"
|
6305 |
-
msgstr ""
|
6306 |
-
|
6307 |
-
#: core/lib/wpbc_all_translations1.php:214 inc/_ps/class/wpbc-settings-table.php:260
|
6308 |
-
msgid "No results found."
|
6309 |
-
msgstr ""
|
6310 |
-
|
6311 |
-
#: core/lib/wpbc_all_translations1.php:215 inc/_ps/form/class-wpbc-field-help-checkbox.php:90
|
6312 |
-
#, php-format
|
6313 |
-
msgid "Wrap each item with %s tag"
|
6314 |
-
msgstr ""
|
6315 |
-
|
6316 |
-
#: core/lib/wpbc_all_translations1.php:216 inc/_ps/form/class-wpbc-field-help-checkbox.php:104
|
6317 |
-
msgid "Put a label before field"
|
6318 |
-
msgstr ""
|
6319 |
-
|
6320 |
-
#: core/lib/wpbc_all_translations1.php:217 inc/_ps/form/class-wpbc-field-help-checkbox.php:118
|
6321 |
-
#, php-format
|
6322 |
-
msgid "Make it %sexclusive%s"
|
6323 |
-
msgstr ""
|
6324 |
-
|
6325 |
-
#: core/lib/wpbc_all_translations1.php:218 inc/_ps/form/class-wpbc-field-help-checkbox.php:128
|
6326 |
-
#: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
|
6327 |
-
#: inc/_ps/form/class-wpbc-field-help-text.php:194
|
6328 |
-
msgid "Default value"
|
6329 |
-
msgstr ""
|
6330 |
-
|
6331 |
-
#: core/lib/wpbc_all_translations1.php:219 inc/_ps/form/class-wpbc-field-help-checkbox.php:136
|
6332 |
-
#, php-format
|
6333 |
-
msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
|
6334 |
-
msgstr ""
|
6335 |
-
|
6336 |
-
#: core/lib/wpbc_all_translations1.php:220 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
|
6337 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:111
|
6338 |
-
#: inc/_ps/form/class-wpbc-field-help-text.php:177
|
6339 |
-
msgid "required"
|
6340 |
-
msgstr ""
|
6341 |
-
|
6342 |
-
#: core/lib/wpbc_all_translations1.php:221 inc/_ps/form/class-wpbc-field-help-checkbox.php:164
|
6343 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:129
|
6344 |
-
msgid "Titles of options"
|
6345 |
-
msgstr ""
|
6346 |
-
|
6347 |
-
#: core/lib/wpbc_all_translations1.php:222 inc/_ps/form/class-wpbc-field-help-radio.php:93
|
6348 |
-
#: inc/_ps/form/class-wpbc-field-help-select.php:86
|
6349 |
-
#, php-format
|
6350 |
-
msgid "One Value from %sOptions%s list"
|
6351 |
-
msgstr ""
|
6352 |
-
|
6353 |
-
#: core/lib/wpbc_all_translations1.php:223 inc/_ps/form/class-wpbc-field-help-select.php:101
|
6354 |
-
#, php-format
|
6355 |
-
msgid "Allow %smultiple%s selections"
|
6356 |
-
msgstr ""
|
6357 |
-
|
6358 |
-
#: core/lib/wpbc_all_translations1.php:224 inc/_ps/form/class-wpbc-field-help-text.php:167
|
6359 |
-
#, php-format
|
6360 |
-
msgid "Set as %srequired%s"
|
6361 |
-
msgstr ""
|
6362 |
-
|
6363 |
-
#: core/lib/wpbc_all_translations1.php:225 inc/_ps/form/class-wpbc-field-help-text.php:228
|
6364 |
-
msgid "Placeholder"
|
6365 |
-
msgstr ""
|
6366 |
-
|
6367 |
-
#: core/lib/wpbc_all_translations1.php:226 inc/_ps/form/class-wpbc-field-help-text.php:247
|
6368 |
-
msgid "Class"
|
6369 |
-
msgstr ""
|
6370 |
-
|
6371 |
-
#: core/lib/wpbc_all_translations1.php:227 inc/_ps/form/class-wpbc-field-help-text.php:264
|
6372 |
-
msgid "Size"
|
6373 |
-
msgstr ""
|
6374 |
-
|
6375 |
-
#: core/lib/wpbc_all_translations1.php:228 inc/_ps/form/class-wpbc-field-help-text.php:281
|
6376 |
-
msgid "Maxlength"
|
6377 |
-
msgstr ""
|
6378 |
-
|
6379 |
-
#: core/lib/wpbc_all_translations1.php:229 inc/_ps/form/class-wpbc-field-help-text.php:298
|
6380 |
-
msgid "Copy and paste this shortcode into the form at left side"
|
6381 |
-
msgstr ""
|
6382 |
-
|
6383 |
-
#: core/lib/wpbc_all_translations1.php:230 inc/_ps/form/class-wpbc-field-help-text.php:313
|
6384 |
-
#, php-format
|
6385 |
-
msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
|
6386 |
-
msgstr ""
|
6387 |
-
|
6388 |
-
#: core/lib/wpbc_all_translations1.php:231 inc/_ps/form/class-wpbc-field-help-textarea.php:94
|
6389 |
-
msgid "Rows"
|
6390 |
-
msgstr ""
|
6391 |
-
|
6392 |
-
#: core/lib/wpbc_all_translations1.php:232 inc/_ps/form/class-wpbc-form-help.php:86
|
6393 |
-
msgid "General Information"
|
6394 |
-
msgstr ""
|
6395 |
-
|
6396 |
-
#: core/lib/wpbc_all_translations1.php:233 inc/_ps/form/class-wpbc-form-help.php:109
|
6397 |
-
msgid "Required Fields in Booking Form"
|
6398 |
-
msgstr ""
|
6399 |
-
|
6400 |
-
#: core/lib/wpbc_all_translations1.php:234 inc/_ps/form/class-wpbc-form-help.php:117
|
6401 |
-
#, php-format
|
6402 |
-
msgid "You must to have this shortcode:%s in the form."
|
6403 |
-
msgstr ""
|
6404 |
-
|
6405 |
-
#: core/lib/wpbc_all_translations1.php:235 inc/_ps/form/class-wpbc-form-help.php:119
|
6406 |
-
msgid ""
|
6407 |
-
"You can insert several calendars of different resources into the form allowing you to book "
|
6408 |
-
"several resources during one booking process."
|
6409 |
-
msgstr ""
|
6410 |
-
|
6411 |
-
#: core/lib/wpbc_all_translations1.php:236 inc/_ps/form/class-wpbc-form-help.php:120
|
6412 |
-
#, php-format
|
6413 |
-
msgid "Example: %s."
|
6414 |
-
msgstr ""
|
6415 |
-
|
6416 |
-
#: core/lib/wpbc_all_translations1.php:237 inc/_ps/form/class-wpbc-form-help.php:121
|
6417 |
-
#, php-format
|
6418 |
-
msgid ""
|
6419 |
-
"where %s – default calendar %s (you can select desired resource of calendar by inserting "
|
6420 |
-
"shortcode into page)%s"
|
6421 |
-
msgstr ""
|
6422 |
-
|
6423 |
-
#: core/lib/wpbc_all_translations1.php:238 inc/_ps/form/class-wpbc-form-help.php:122
|
6424 |
-
#: inc/_ps/form/class-wpbc-form-help.php:123
|
6425 |
-
#, php-format
|
6426 |
-
msgid "%s – calendar of booking resource with %s"
|
6427 |
-
msgstr ""
|
6428 |
-
|
6429 |
-
#: core/lib/wpbc_all_translations1.php:239 inc/_ps/form/class-wpbc-form-help.php:124
|
6430 |
-
#, php-format
|
6431 |
-
msgid "Please check more about this feature %shere%s."
|
6432 |
-
msgstr ""
|
6433 |
-
|
6434 |
-
#: core/lib/wpbc_all_translations1.php:240 inc/_ps/form/class-wpbc-form-help.php:126
|
6435 |
-
#: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
|
6436 |
-
#: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
|
6437 |
-
#: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
|
6438 |
-
#: inc/_ps/form/class-wpbc-form-help.php:382 inc/_ps/form/class-wpbc-form-help.php:515
|
6439 |
-
#: inc/_ps/form/class-wpbc-form-help.php:645 inc/_ps/form/class-wpbc-form-help.php:659
|
6440 |
-
#, php-format
|
6441 |
-
msgid "You can %suse this shortcode only once%s in the form."
|
6442 |
-
msgstr ""
|
6443 |
-
|
6444 |
-
#: core/lib/wpbc_all_translations1.php:241 inc/_ps/form/class-wpbc-form-help.php:135
|
6445 |
-
msgid "Email Field"
|
6446 |
-
msgstr ""
|
6447 |
-
|
6448 |
-
#: core/lib/wpbc_all_translations1.php:242 inc/_ps/form/class-wpbc-form-help.php:136
|
6449 |
-
#, php-format
|
6450 |
-
msgid "You must have this shortcode:%s in the booking form."
|
6451 |
-
msgstr ""
|
6452 |
-
|
6453 |
-
#: core/lib/wpbc_all_translations1.php:243 inc/_ps/form/class-wpbc-form-help.php:136
|
6454 |
-
msgid "This is the primary email field, which is used for sending emails to visitors."
|
6455 |
-
msgstr ""
|
6456 |
-
|
6457 |
-
#: core/lib/wpbc_all_translations1.php:244 inc/_ps/form/class-wpbc-form-help.php:163
|
6458 |
-
msgid "Drop Down"
|
6459 |
-
msgstr ""
|
6460 |
-
|
6461 |
-
#: core/lib/wpbc_all_translations1.php:245 inc/_ps/form/class-wpbc-form-help.php:175
|
6462 |
-
msgid "Checkbox(es)"
|
6463 |
-
msgstr ""
|
6464 |
-
|
6465 |
-
#: core/lib/wpbc_all_translations1.php:246 inc/_ps/form/class-wpbc-form-help.php:182
|
6466 |
-
msgid "Radio Button(s)"
|
6467 |
-
msgstr ""
|
6468 |
-
|
6469 |
-
#: core/lib/wpbc_all_translations1.php:247 inc/_ps/form/class-wpbc-form-help.php:196
|
6470 |
-
#, php-format
|
6471 |
-
msgid "Insert %s shortcode to prevent SPAM bookings."
|
6472 |
-
msgstr ""
|
6473 |
-
|
6474 |
-
#: core/lib/wpbc_all_translations1.php:248 inc/_ps/form/class-wpbc-form-help.php:206
|
6475 |
-
msgid "Submit Button"
|
6476 |
-
msgstr ""
|
6477 |
-
|
6478 |
-
#: core/lib/wpbc_all_translations1.php:249 inc/_ps/form/class-wpbc-form-help.php:214
|
6479 |
-
msgid "Times Fields"
|
6480 |
-
msgstr ""
|
6481 |
-
|
6482 |
-
#: core/lib/wpbc_all_translations1.php:250 inc/_ps/form/class-wpbc-form-help.php:220
|
6483 |
-
msgid "Time Slot List"
|
6484 |
-
msgstr ""
|
6485 |
-
|
6486 |
-
#: core/lib/wpbc_all_translations1.php:251 inc/_ps/form/class-wpbc-form-help.php:222
|
6487 |
-
#: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
|
6488 |
-
#: inc/_ps/form/class-wpbc-form-help.php:379
|
6489 |
-
#, php-format
|
6490 |
-
msgid "Select the %s using the predefined %sTime List%s."
|
6491 |
-
msgstr ""
|
6492 |
-
|
6493 |
-
#: core/lib/wpbc_all_translations1.php:252 inc/_ps/form/class-wpbc-form-help.php:222
|
6494 |
-
msgid "Time Slot"
|
6495 |
-
msgstr ""
|
6496 |
-
|
6497 |
-
#: core/lib/wpbc_all_translations1.php:253 inc/_ps/form/class-wpbc-form-help.php:223
|
6498 |
-
#, php-format
|
6499 |
-
msgid ""
|
6500 |
-
"Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
|
6501 |
-
"slots, this time field will %sdisable booked times slots%s (set them as grayed)."
|
6502 |
-
msgstr ""
|
6503 |
-
|
6504 |
-
#: core/lib/wpbc_all_translations1.php:254 inc/_ps/form/class-wpbc-form-help.php:224
|
6505 |
-
#, php-format
|
6506 |
-
msgid "It works only in %ssingle day selection%s mode."
|
6507 |
-
msgstr ""
|
6508 |
-
|
6509 |
-
#: core/lib/wpbc_all_translations1.php:255 inc/_ps/form/class-wpbc-form-help.php:225
|
6510 |
-
msgid ""
|
6511 |
-
"Also some early versions of the IE do not support disabling of the options in the selectboxes."
|
6512 |
-
msgstr ""
|
6513 |
-
|
6514 |
-
#: core/lib/wpbc_all_translations1.php:256 inc/_ps/form/class-wpbc-form-help.php:226
|
6515 |
-
msgid ""
|
6516 |
-
"Even if visitor selects the booked timeslot, system will not allow them to make the booking."
|
6517 |
-
msgstr ""
|
6518 |
-
|
6519 |
-
#: core/lib/wpbc_all_translations1.php:257 inc/_ps/form/class-wpbc-form-help.php:229
|
6520 |
-
#: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
|
6521 |
-
#, php-format
|
6522 |
-
msgid ""
|
6523 |
-
"Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
|
6524 |
-
"Time)%s only."
|
6525 |
-
msgstr ""
|
6526 |
-
|
6527 |
-
#: core/lib/wpbc_all_translations1.php:258 inc/_ps/form/class-wpbc-form-help.php:231
|
6528 |
-
#, php-format
|
6529 |
-
msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
|
6530 |
-
msgstr ""
|
6531 |
-
|
6532 |
-
#: core/lib/wpbc_all_translations1.php:259 inc/_ps/form/class-wpbc-form-help.php:273
|
6533 |
-
msgid "Start Time - Text field"
|
6534 |
-
msgstr ""
|
6535 |
-
|
6536 |
-
#: core/lib/wpbc_all_translations1.php:260 inc/_ps/form/class-wpbc-form-help.php:275
|
6537 |
-
#: inc/_ps/form/class-wpbc-form-help.php:288
|
6538 |
-
#, php-format
|
6539 |
-
msgid "Enter %s in text field."
|
6540 |
-
msgstr ""
|
6541 |
-
|
6542 |
-
#: core/lib/wpbc_all_translations1.php:261 inc/_ps/admin/api-settings-p.php:109
|
6543 |
-
#: inc/_ps/admin/api-settings-p.php:115 inc/_ps/form/class-wpbc-form-help.php:275
|
6544 |
-
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
|
6545 |
-
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6546 |
-
msgid "Start Time"
|
6547 |
-
msgstr ""
|
6548 |
-
|
6549 |
-
#: core/lib/wpbc_all_translations1.php:262 inc/_ps/form/class-wpbc-form-help.php:277
|
6550 |
-
#: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
|
6551 |
-
#, php-format
|
6552 |
-
msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
|
6553 |
-
msgstr ""
|
6554 |
-
|
6555 |
-
#: core/lib/wpbc_all_translations1.php:263 inc/_ps/form/class-wpbc-form-help.php:279
|
6556 |
-
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6557 |
-
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
|
6558 |
-
#, php-format
|
6559 |
-
msgid "You can also use the %s in the form."
|
6560 |
-
msgstr ""
|
6561 |
-
|
6562 |
-
#: core/lib/wpbc_all_translations1.php:264 inc/_ps/admin/api-settings-p.php:128
|
6563 |
-
#: inc/_ps/admin/api-settings-p.php:134 inc/_ps/form/class-wpbc-form-help.php:279
|
6564 |
-
#: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
|
6565 |
-
#: inc/_ps/form/class-wpbc-form-help.php:340
|
6566 |
-
msgid "End Time"
|
6567 |
-
msgstr ""
|
6568 |
-
|
6569 |
-
#: core/lib/wpbc_all_translations1.php:265 inc/_ps/form/class-wpbc-form-help.php:279
|
6570 |
-
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6571 |
-
#: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
|
6572 |
-
msgid "Duration Time"
|
6573 |
-
msgstr ""
|
6574 |
-
|
6575 |
-
#: core/lib/wpbc_all_translations1.php:266 inc/_ps/form/class-wpbc-form-help.php:279
|
6576 |
-
#: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
|
6577 |
-
#: inc/_ps/form/class-wpbc-form-help.php:344
|
6578 |
-
msgid "fields"
|
6579 |
-
msgstr ""
|
6580 |
-
|
6581 |
-
#: core/lib/wpbc_all_translations1.php:267 inc/_ps/form/class-wpbc-form-help.php:286
|
6582 |
-
msgid "End Time - Text field"
|
6583 |
-
msgstr ""
|
6584 |
-
|
6585 |
-
#: core/lib/wpbc_all_translations1.php:268 inc/_ps/form/class-wpbc-form-help.php:300
|
6586 |
-
msgid "Start Time - Drop Down list"
|
6587 |
-
msgstr ""
|
6588 |
-
|
6589 |
-
#: core/lib/wpbc_all_translations1.php:269 inc/_ps/form/class-wpbc-form-help.php:304
|
6590 |
-
#, php-format
|
6591 |
-
msgid ""
|
6592 |
-
"Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
|
6593 |
-
"Time)%s only."
|
6594 |
-
msgstr ""
|
6595 |
-
|
6596 |
-
#: core/lib/wpbc_all_translations1.php:270 inc/_ps/form/class-wpbc-form-help.php:338
|
6597 |
-
msgid "End Time - Drop Down list"
|
6598 |
-
msgstr ""
|
6599 |
-
|
6600 |
-
#: core/lib/wpbc_all_translations1.php:271 inc/_ps/form/class-wpbc-form-help.php:377
|
6601 |
-
msgid "Duration Time - Drop Down list"
|
6602 |
-
msgstr ""
|
6603 |
-
|
6604 |
-
#: core/lib/wpbc_all_translations1.php:272 inc/_ps/form/class-wpbc-form-help.php:383
|
6605 |
-
msgid "field"
|
6606 |
-
msgstr ""
|
6607 |
-
|
6608 |
-
#: core/lib/wpbc_all_translations1.php:273 inc/_ps/form/class-wpbc-form-help.php:416
|
6609 |
-
msgid "Different time slots, for the different week days"
|
6610 |
-
msgstr ""
|
6611 |
-
|
6612 |
-
#: core/lib/wpbc_all_translations1.php:274 inc/_ps/form/class-wpbc-form-help.php:419
|
6613 |
-
msgid ""
|
6614 |
-
"This feature provides the possibility to use the different time slot selections in the booking "
|
6615 |
-
"form for the different week days or different days - which are assigned to the specific season "
|
6616 |
-
"filters. So each week day (day of specific season filter) can have a different time slots list."
|
6617 |
-
msgstr ""
|
6618 |
-
|
6619 |
-
#: core/lib/wpbc_all_translations1.php:275 inc/_ps/form/class-wpbc-form-help.php:421
|
6620 |
-
#: inc/_ps/form/class-wpbc-form-help.php:568
|
6621 |
-
msgid "Configuration"
|
6622 |
-
msgstr ""
|
6623 |
-
|
6624 |
-
#: core/lib/wpbc_all_translations1.php:276 inc/_ps/form/class-wpbc-form-help.php:422
|
6625 |
-
#: inc/_ps/form/class-wpbc-form-help.php:569
|
6626 |
-
#, php-format
|
6627 |
-
msgid "The general structure of the configuration %scondition rule%s is as follows"
|
6628 |
-
msgstr ""
|
6629 |
-
|
6630 |
-
#: core/lib/wpbc_all_translations1.php:277 inc/_ps/form/class-wpbc-form-help.php:428
|
6631 |
-
#: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
|
6632 |
-
#: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
|
6633 |
-
#: inc/_ps/form/class-wpbc-form-help.php:619
|
6634 |
-
msgid "Parameters"
|
6635 |
-
msgstr ""
|
6636 |
-
|
6637 |
-
#: core/lib/wpbc_all_translations1.php:278 inc/_ps/form/class-wpbc-form-help.php:429
|
6638 |
-
#: inc/_ps/form/class-wpbc-form-help.php:576
|
6639 |
-
#, php-format
|
6640 |
-
msgid ""
|
6641 |
-
"%sname%s – the unique name of the condition group, containing several conditions with different "
|
6642 |
-
"values. For example, if you want to have specific HTML content for the different week days, you "
|
6643 |
-
"can have several conditions, with the same name but with different value parameters in "
|
6644 |
-
"conditions. Please check more about it, in the examples."
|
6645 |
-
msgstr ""
|
6646 |
-
|
6647 |
-
#: core/lib/wpbc_all_translations1.php:279 inc/_ps/form/class-wpbc-form-help.php:430
|
6648 |
-
#: inc/_ps/form/class-wpbc-form-help.php:577
|
6649 |
-
#, php-format
|
6650 |
-
msgid ""
|
6651 |
-
"%stype%s – type of the condition. There are 2 types of condition: \"weekday\" and \"season\". "
|
6652 |
-
"\"weekday\" – is the condition rule based on the selected day of week value, like Monday, "
|
6653 |
-
"Tuesday, etc… . \"season\" – is the condition rule based on the \"season filter\" name of "
|
6654 |
-
"selected date. In other words the condition is TRUE if the selected day belongs to a season "
|
6655 |
-
"filter in the Season Filters page."
|
6656 |
-
msgstr ""
|
6657 |
-
|
6658 |
-
#: core/lib/wpbc_all_translations1.php:280 inc/_ps/form/class-wpbc-form-help.php:431
|
6659 |
-
#, php-format
|
6660 |
-
msgid ""
|
6661 |
-
"%svalue%s – value of the specific conditions. If the value is true, the content of the "
|
6662 |
-
"conditions will show in the booking form. You can have the default value (empty – \"\", or like "
|
6663 |
-
"this – \"*\") for showing the content of this condition, if all other conditions are FALSE, or "
|
6664 |
-
"at initial stage, when the date in calendar is not yet selected."
|
6665 |
-
msgstr ""
|
6666 |
-
|
6667 |
-
#: core/lib/wpbc_all_translations1.php:281 inc/_ps/form/class-wpbc-form-help.php:433
|
6668 |
-
#: inc/_ps/form/class-wpbc-form-help.php:580
|
6669 |
-
msgid "Examples"
|
6670 |
-
msgstr ""
|
6671 |
-
|
6672 |
-
#: core/lib/wpbc_all_translations1.php:282 inc/_ps/form/class-wpbc-form-help.php:434
|
6673 |
-
#: inc/_ps/form/class-wpbc-form-help.php:581
|
6674 |
-
msgid "Week days conditions."
|
6675 |
-
msgstr ""
|
6676 |
-
|
6677 |
-
#: core/lib/wpbc_all_translations1.php:283 inc/_ps/form/class-wpbc-form-help.php:450
|
6678 |
-
#: inc/_ps/form/class-wpbc-form-help.php:597
|
6679 |
-
msgid "default value, if no dates are selected, or none exist conditions are true."
|
6680 |
-
msgstr ""
|
6681 |
-
|
6682 |
-
#: core/lib/wpbc_all_translations1.php:284 inc/_ps/form/class-wpbc-form-help.php:458
|
6683 |
-
#: inc/_ps/form/class-wpbc-form-help.php:475
|
6684 |
-
msgid "You can use the several values, separated by comma."
|
6685 |
-
msgstr ""
|
6686 |
-
|
6687 |
-
#: core/lib/wpbc_all_translations1.php:285 inc/_ps/form/class-wpbc-form-help.php:460
|
6688 |
-
#: inc/_ps/form/class-wpbc-form-help.php:607
|
6689 |
-
msgid "Season filters conditions."
|
6690 |
-
msgstr ""
|
6691 |
-
|
6692 |
-
#: core/lib/wpbc_all_translations1.php:286 inc/_ps/form/class-wpbc-form-help.php:473
|
6693 |
-
#: inc/_ps/form/class-wpbc-form-help.php:620
|
6694 |
-
msgid "Season filter on the Season Filters page,"
|
6695 |
-
msgstr ""
|
6696 |
-
|
6697 |
-
#: core/lib/wpbc_all_translations1.php:287 inc/_ps/form/class-wpbc-form-help.php:474
|
6698 |
-
#: inc/_ps/form/class-wpbc-form-help.php:621
|
6699 |
-
msgid "Season filter on the Season Filters page"
|
6700 |
-
msgstr ""
|
6701 |
-
|
6702 |
-
#: core/lib/wpbc_all_translations1.php:288 inc/_ps/form/class-wpbc-form-help.php:477
|
6703 |
-
#: inc/_ps/form/class-wpbc-form-help.php:624
|
6704 |
-
msgid "Additional info"
|
6705 |
-
msgstr ""
|
6706 |
-
|
6707 |
-
#: core/lib/wpbc_all_translations1.php:289 inc/_ps/form/class-wpbc-form-help.php:478
|
6708 |
-
#: inc/_ps/form/class-wpbc-form-help.php:625
|
6709 |
-
#, php-format
|
6710 |
-
msgid ""
|
6711 |
-
"Please use %sSingle day%s selection mode in the General Booking Settings page at calendar "
|
6712 |
-
"section."
|
6713 |
-
msgstr ""
|
6714 |
-
|
6715 |
-
#: core/lib/wpbc_all_translations1.php:290 inc/_ps/form/class-wpbc-form-help.php:479
|
6716 |
-
#: inc/_ps/form/class-wpbc-form-help.php:626
|
6717 |
-
#, php-format
|
6718 |
-
msgid "Please check more about this feature at %sthis page%s"
|
6719 |
-
msgstr ""
|
6720 |
-
|
6721 |
-
#: core/lib/wpbc_all_translations1.php:291 inc/_ps/form/class-wpbc-form-help.php:493
|
6722 |
-
msgid "Time Field"
|
6723 |
-
msgstr ""
|
6724 |
-
|
6725 |
-
#: core/lib/wpbc_all_translations1.php:292 inc/_ps/form/class-wpbc-form-help.php:495
|
6726 |
-
#, php-format
|
6727 |
-
msgid "Enter the %sTime%s using the text field."
|
6728 |
-
msgstr ""
|
6729 |
-
|
6730 |
-
#: core/lib/wpbc_all_translations1.php:293 inc/_ps/form/class-wpbc-form-help.php:498
|
6731 |
-
msgid "This field does not impact to availability (booking for the specific time) ."
|
6732 |
-
msgstr ""
|
6733 |
-
|
6734 |
-
#: core/lib/wpbc_all_translations1.php:294 inc/_ps/form/class-wpbc-form-help.php:499
|
6735 |
-
msgid "The value of this field is just saved into DB."
|
6736 |
-
msgstr ""
|
6737 |
-
|
6738 |
-
#: core/lib/wpbc_all_translations1.php:295 inc/_ps/form/class-wpbc-form-help.php:509
|
6739 |
-
msgid "Country List"
|
6740 |
-
msgstr ""
|
6741 |
-
|
6742 |
-
#: core/lib/wpbc_all_translations1.php:296 inc/_ps/form/class-wpbc-form-help.php:511
|
6743 |
-
msgid "Select the country from the predefined country list."
|
6744 |
-
msgstr ""
|
6745 |
-
|
6746 |
-
#: core/lib/wpbc_all_translations1.php:297 inc/_ps/form/class-wpbc-form-help.php:512
|
6747 |
-
#, php-format
|
6748 |
-
msgid "You can customize the country list at this file: %s"
|
6749 |
-
msgstr ""
|
6750 |
-
|
6751 |
-
#: core/lib/wpbc_all_translations1.php:298 inc/_ps/form/class-wpbc-form-help.php:513
|
6752 |
-
msgid "You can insert this field with default selected value."
|
6753 |
-
msgstr ""
|
6754 |
-
|
6755 |
-
#: core/lib/wpbc_all_translations1.php:299 inc/_ps/form/class-wpbc-form-help.php:514
|
6756 |
-
#, php-format
|
6757 |
-
msgid "Example: %s - %s\"United States\"%s is selected by default."
|
6758 |
-
msgstr ""
|
6759 |
-
|
6760 |
-
#: core/lib/wpbc_all_translations1.php:300 inc/_ps/form/class-wpbc-form-help.php:523
|
6761 |
-
msgid "Language Sections"
|
6762 |
-
msgstr ""
|
6763 |
-
|
6764 |
-
#: core/lib/wpbc_all_translations1.php:301 inc/_ps/form/class-wpbc-form-help.php:525
|
6765 |
-
msgid "Plugin support configurations of the booking form are available in different languages."
|
6766 |
-
msgstr ""
|
6767 |
-
|
6768 |
-
#: core/lib/wpbc_all_translations1.php:302 inc/_ps/form/class-wpbc-form-help.php:526
|
6769 |
-
msgid "The active language of the booking form depends on the active locale of the site."
|
6770 |
-
msgstr ""
|
6771 |
-
|
6772 |
-
#: core/lib/wpbc_all_translations1.php:303 inc/_ps/form/class-wpbc-form-help.php:527
|
6773 |
-
msgid ""
|
6774 |
-
"Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
|
6775 |
-
msgstr ""
|
6776 |
-
|
6777 |
-
#: core/lib/wpbc_all_translations1.php:304 inc/_ps/form/class-wpbc-form-help.php:529
|
6778 |
-
msgid "Usage"
|
6779 |
-
msgstr ""
|
6780 |
-
|
6781 |
-
#: core/lib/wpbc_all_translations1.php:305 inc/_ps/form/class-wpbc-form-help.php:530
|
6782 |
-
#, php-format
|
6783 |
-
msgid "start new translation section in specific language, where %s - locale of the translation."
|
6784 |
-
msgstr ""
|
6785 |
-
|
6786 |
-
#: core/lib/wpbc_all_translations1.php:306 inc/_ps/form/class-wpbc-form-help.php:533
|
6787 |
-
msgid "English and French translation"
|
6788 |
-
msgstr ""
|
6789 |
-
|
6790 |
-
#: core/lib/wpbc_all_translations1.php:307 inc/_ps/form/class-wpbc-form-help.php:536
|
6791 |
-
msgid "of configuration booking form in English and French languages"
|
6792 |
-
msgstr ""
|
6793 |
-
|
6794 |
-
#: core/lib/wpbc_all_translations1.php:308 inc/_ps/form/class-wpbc-form-help.php:555
|
6795 |
-
msgid ""
|
6796 |
-
"Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
|
6797 |
-
"translation\" page. Required WPML 3.2 with String Translation plugin."
|
6798 |
-
msgstr ""
|
6799 |
-
|
6800 |
-
#: core/lib/wpbc_all_translations1.php:309 inc/_ps/form/class-wpbc-form-help.php:563
|
6801 |
-
msgid "Different form fields, for the different week days"
|
6802 |
-
msgstr ""
|
6803 |
-
|
6804 |
-
#: core/lib/wpbc_all_translations1.php:310 inc/_ps/form/class-wpbc-form-help.php:566
|
6805 |
-
msgid ""
|
6806 |
-
"This feature provides the possibility to show the different form fields or any other HTML "
|
6807 |
-
"content in the booking form, depending on the selection of specific week day in calendar or "
|
6808 |
-
"different days, which are assigned to the specific season filters"
|
6809 |
-
msgstr ""
|
6810 |
-
|
6811 |
-
#: core/lib/wpbc_all_translations1.php:311 inc/_ps/form/class-wpbc-form-help.php:578
|
6812 |
-
#, php-format
|
6813 |
-
msgid ""
|
6814 |
-
"%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
|
6815 |
-
"conditions will show in the booking form. You can have the default value (empty – \"\", or like "
|
6816 |
-
"this – \"*\") for showing the content of this condition, if all other conditions are FALSE, or "
|
6817 |
-
"at initial stage, when the date in calendar is not yet selected."
|
6818 |
-
msgstr ""
|
6819 |
-
|
6820 |
-
#: core/lib/wpbc_all_translations1.php:312 inc/_ps/form/class-wpbc-form-help.php:605
|
6821 |
-
msgid "You can use several values, separated by comma."
|
6822 |
-
msgstr ""
|
6823 |
-
|
6824 |
-
#: core/lib/wpbc_all_translations1.php:313 inc/_ps/form/class-wpbc-form-help.php:622
|
6825 |
-
msgid "You can use several values, separated by a comma."
|
6826 |
-
msgstr ""
|
6827 |
-
|
6828 |
-
#: core/lib/wpbc_all_translations1.php:314 inc/_ps/form/class-wpbc-form-help.php:635
|
6829 |
-
msgid "Cost Fields"
|
6830 |
-
msgstr ""
|
6831 |
-
|
6832 |
-
#: core/lib/wpbc_all_translations1.php:315 inc/_ps/form/class-wpbc-form-help.php:641
|
6833 |
-
msgid "Cost Correction Field"
|
6834 |
-
msgstr ""
|
6835 |
-
|
6836 |
-
#: core/lib/wpbc_all_translations1.php:316 inc/_ps/form/class-wpbc-form-help.php:643
|
6837 |
-
#, php-format
|
6838 |
-
msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
|
6839 |
-
msgstr ""
|
6840 |
-
|
6841 |
-
#: core/lib/wpbc_all_translations1.php:317 inc/_ps/form/class-wpbc-form-help.php:644
|
6842 |
-
#, php-format
|
6843 |
-
msgid "Use this field for %scorrecting the cost%s during adding new booking."
|
6844 |
-
msgstr ""
|
6845 |
-
|
6846 |
-
#: core/lib/wpbc_all_translations1.php:318 inc/_ps/form/class-wpbc-form-help.php:655
|
6847 |
-
msgid "Discount Coupon field"
|
6848 |
-
msgstr ""
|
6849 |
-
|
6850 |
-
#: core/lib/wpbc_all_translations1.php:319 inc/_ps/form/class-wpbc-form-help.php:657
|
6851 |
-
msgid "Please use this field for possibility to use coupon discounts by your visitors."
|
6852 |
-
msgstr ""
|
6853 |
-
|
6854 |
-
#: core/lib/wpbc_all_translations1.php:320 inc/_ps/form/class-wpbc-form-help.php:658
|
6855 |
-
#, php-format
|
6856 |
-
msgid "You can configure the discount coupon codes at this %spage%s."
|
6857 |
-
msgstr ""
|
6858 |
-
|
6859 |
-
#: core/lib/wpbc_all_translations1.php:321 inc/_ps/form/class-wpbc-form-help.php:667
|
6860 |
-
msgid "Hints for your form"
|
6861 |
-
msgstr ""
|
6862 |
-
|
6863 |
-
#: core/lib/wpbc_all_translations1.php:322 inc/_ps/form/class-wpbc-form-help.php:673
|
6864 |
-
msgid "Cost Hints"
|
6865 |
-
msgstr ""
|
6866 |
-
|
6867 |
-
#: core/lib/wpbc_all_translations1.php:323 inc/_ps/form/class-wpbc-form-help.php:675
|
6868 |
-
#: inc/_ps/form/class-wpbc-form-help.php:697
|
6869 |
-
#, php-format
|
6870 |
-
msgid ""
|
6871 |
-
"Insert these shortcodes into form to %sshow info in real time %s(after selection of the dates in "
|
6872 |
-
"calendar or options in checkboxes or selectboxes)%s."
|
6873 |
-
msgstr ""
|
6874 |
-
|
6875 |
-
#: core/lib/wpbc_all_translations1.php:324 inc/_ps/form/class-wpbc-form-help.php:695
|
6876 |
-
msgid "Dates and Times Hints"
|
6877 |
-
msgstr ""
|
6878 |
-
|
6879 |
-
#: core/lib/wpbc_all_translations1.php:325 inc/_ps/form/class-wpbc-form-help.php:699
|
6880 |
-
#: inc/gateways/page-gateways.php:1113
|
6881 |
-
msgid "Selected Check In date."
|
6882 |
-
msgstr ""
|
6883 |
-
|
6884 |
-
#: core/lib/wpbc_all_translations1.php:326 inc/_bm/admin/page-cost-advanced.php:695
|
6885 |
-
#: inc/_bm/admin/page-cost-advanced.php:698 inc/_ps/form/class-wpbc-form-help.php:700
|
6886 |
-
#: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
|
6887 |
-
#: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
|
6888 |
-
#: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
|
6889 |
-
#: inc/_ps/form/class-wpbc-form-help.php:721 inc/_ps/form/class-wpbc-form-help.php:724
|
6890 |
-
#: inc/_ps/form/class-wpbc-form-help.php:727 inc/_ps/form/class-wpbc-form-help.php:730
|
6891 |
-
#: inc/gateways/page-gateways.php:1114 inc/gateways/page-gateways.php:1117
|
6892 |
-
#: inc/gateways/page-gateways.php:1120 inc/gateways/page-gateways.php:1123
|
6893 |
-
#: inc/gateways/page-gateways.php:1126 inc/gateways/page-gateways.php:1129
|
6894 |
-
#: inc/gateways/page-gateways.php:1132 inc/gateways/page-gateways.php:1135
|
6895 |
-
#: inc/gateways/page-gateways.php:1138 inc/gateways/page-gateways.php:1141
|
6896 |
-
msgid "Example:"
|
6897 |
-
msgstr ""
|
6898 |
-
|
6899 |
-
#: core/lib/wpbc_all_translations1.php:327 inc/_ps/form/class-wpbc-form-help.php:702
|
6900 |
-
#: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:1116
|
6901 |
-
msgid "Selected Check Out date."
|
6902 |
-
msgstr ""
|
6903 |
-
|
6904 |
-
#: core/lib/wpbc_all_translations1.php:328 inc/_ps/form/class-wpbc-form-help.php:708
|
6905 |
-
#: inc/gateways/page-gateways.php:1119
|
6906 |
-
msgid "Selected Start Time."
|
6907 |
-
msgstr ""
|
6908 |
-
|
6909 |
-
#: core/lib/wpbc_all_translations1.php:329 inc/_ps/form/class-wpbc-form-help.php:711
|
6910 |
-
#: inc/gateways/page-gateways.php:1122
|
6911 |
-
msgid "Selected End Time."
|
6912 |
-
msgstr ""
|
6913 |
-
|
6914 |
-
#: core/lib/wpbc_all_translations1.php:330 inc/_ps/form/class-wpbc-form-help.php:714
|
6915 |
-
#: inc/gateways/page-gateways.php:1125
|
6916 |
-
msgid "All selected dates."
|
6917 |
-
msgstr ""
|
6918 |
-
|
6919 |
-
#: core/lib/wpbc_all_translations1.php:331 inc/_ps/form/class-wpbc-form-help.php:717
|
6920 |
-
#: inc/gateways/page-gateways.php:1128
|
6921 |
-
msgid "All selected dates with times."
|
6922 |
-
msgstr ""
|
6923 |
-
|
6924 |
-
#: core/lib/wpbc_all_translations1.php:332 inc/_ps/form/class-wpbc-form-help.php:720
|
6925 |
-
#: inc/gateways/page-gateways.php:1131
|
6926 |
-
msgid "All selected dates in \"short\" format."
|
6927 |
-
msgstr ""
|
6928 |
-
|
6929 |
-
#: core/lib/wpbc_all_translations1.php:333 inc/_ps/form/class-wpbc-form-help.php:723
|
6930 |
-
#: inc/gateways/page-gateways.php:1134
|
6931 |
-
msgid "All selected dates with times in \"short\" format.."
|
6932 |
-
msgstr ""
|
6933 |
-
|
6934 |
-
#: core/lib/wpbc_all_translations1.php:334 inc/_bm/admin/page-cost-advanced.php:695
|
6935 |
-
#: inc/_ps/form/class-wpbc-form-help.php:726 inc/gateways/page-gateways.php:1137
|
6936 |
-
msgid "Number of selected days."
|
6937 |
-
msgstr ""
|
6938 |
-
|
6939 |
-
#: core/lib/wpbc_all_translations1.php:335 inc/_bm/admin/page-cost-advanced.php:698
|
6940 |
-
#: inc/_ps/form/class-wpbc-form-help.php:729 inc/gateways/page-gateways.php:1140
|
6941 |
-
msgid "Number of selected nights."
|
6942 |
-
msgstr ""
|
6943 |
-
|
6944 |
-
#: core/lib/wpbc_all_translations1.php:336 inc/_ps/form/class-wpbc-form-help.php:739
|
6945 |
-
msgid "Other Hints"
|
6946 |
-
msgstr ""
|
6947 |
-
|
6948 |
-
#: core/lib/wpbc_all_translations1.php:337 inc/_ps/form/class-wpbc-form-help.php:741
|
6949 |
-
#: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:1091
|
6950 |
-
msgid "title of booking resource"
|
6951 |
-
msgstr ""
|
6952 |
-
|
6953 |
-
#: core/lib/wpbc_all_translations1.php:338 inc/_ps/form/class-wpbc-form-help.php:742
|
6954 |
-
msgid "ID of booking resource."
|
6955 |
-
msgstr ""
|
6956 |
-
|
6957 |
-
#: core/lib/wpbc_all_translations1.php:339 inc/_ps/form/class-wpbc-form-help.php:744
|
6958 |
-
msgid "cost of booking resource."
|
6959 |
-
msgstr ""
|
6960 |
-
|
6961 |
-
#: core/lib/wpbc_all_translations1.php:340 inc/_ps/form/class-wpbc-form-help.php:745
|
6962 |
-
msgid "capacity of booking resource."
|
6963 |
-
msgstr ""
|
6964 |
-
|
6965 |
-
#: core/lib/wpbc_all_translations1.php:341 inc/_ps/form/class-wpbc-form-help.php:746
|
6966 |
-
msgid "maximum number of visitors per booking resource."
|
6967 |
-
msgstr ""
|
6968 |
-
|
6969 |
-
#: core/lib/wpbc_all_translations1.php:342 inc/_ps/form/class-wpbc-form-help.php:760
|
6970 |
-
msgid "Tips and Tricks"
|
6971 |
-
msgstr ""
|
6972 |
-
|
6973 |
-
#: core/lib/wpbc_all_translations1.php:343 inc/_ps/form/class-wpbc-form-help.php:762
|
6974 |
-
#, php-format
|
6975 |
-
msgid "%sEmail verification field%s."
|
6976 |
-
msgstr ""
|
6977 |
-
|
6978 |
-
#: core/lib/wpbc_all_translations1.php:344 inc/_ps/form/class-wpbc-form-help.php:764
|
6979 |
-
#, php-format
|
6980 |
-
msgid "%sDescription of usage%s."
|
6981 |
-
msgstr ""
|
6982 |
-
|
6983 |
-
#: core/lib/wpbc_all_translations1.php:345 inc/_ps/form/class-wpbc-form-help.php:765
|
6984 |
-
#, php-format
|
6985 |
-
msgid ""
|
6986 |
-
"To create verification email, you need to use special CSS class in other email field. This CSS "
|
6987 |
-
"class must start with this reserved words: %s and then have to go the name of your primary email "
|
6988 |
-
"field: %s"
|
6989 |
-
msgstr ""
|
6990 |
-
|
6991 |
-
#: core/lib/wpbc_all_translations1.php:346 inc/_ps/form/class-wpbc-form-help.php:766
|
6992 |
-
#, php-format
|
6993 |
-
msgid "%sExample%s."
|
6994 |
-
msgstr ""
|
6995 |
-
|
6996 |
-
#: core/lib/wpbc_all_translations1.php:347 inc/_ps/form/class-wpbc-form-help.php:767
|
6997 |
-
msgid "confirmation email field of the primary email field"
|
6998 |
-
msgstr ""
|
6999 |
-
|
7000 |
-
#: core/lib/wpbc_all_translations1.php:348 inc/_ps/form/class-wpbc-form-help.php:791
|
7001 |
-
msgid "Generate Tag"
|
7002 |
-
msgstr ""
|
7003 |
-
|
7004 |
-
#: core/lib/wpbc_all_translations1.php:349 inc/_ps/form/class-wpbc-form-help.php:807
|
7005 |
-
msgid "Select option to configure or show help info about tags"
|
7006 |
-
msgstr ""
|
7007 |
-
|
7008 |
-
#: core/lib/wpbc_all_translations1.php:350 inc/_ps/p-toolbar.php:34
|
7009 |
-
msgid "Keyword"
|
7010 |
-
msgstr ""
|
7011 |
-
|
7012 |
-
#: core/lib/wpbc_all_translations1.php:351 inc/_ps/p-toolbar.php:42
|
7013 |
-
msgid "Enter Keyword here"
|
7014 |
-
msgstr ""
|
7015 |
-
|
7016 |
-
#: core/lib/wpbc_all_translations1.php:352 inc/_ps/p-toolbar.php:96
|
7017 |
-
msgid ""
|
7018 |
-
"Save filter settings as default template (Please, click Apply filter button, before saving!)"
|
7019 |
-
msgstr ""
|
7020 |
-
|
7021 |
-
#: core/lib/wpbc_all_translations1.php:353 inc/_ps/p-toolbar.php:100
|
7022 |
-
msgid "Save as Default"
|
7023 |
-
msgstr ""
|
7024 |
-
|
7025 |
-
#: core/lib/wpbc_all_translations1.php:354 inc/_ps/p-toolbar.php:106
|
7026 |
-
msgid "Delete your previously saved default filer template!"
|
7027 |
-
msgstr ""
|
7028 |
-
|
7029 |
-
#: core/lib/wpbc_all_translations1.php:355 inc/_ps/p-toolbar.php:110
|
7030 |
-
msgid "Delete template"
|
7031 |
-
msgstr ""
|
7032 |
-
|
7033 |
-
#: core/lib/wpbc_all_translations1.php:356 inc/_ps/p-toolbar.php:132
|
7034 |
-
msgid "Print bookings listing"
|
7035 |
-
msgstr ""
|
7036 |
-
|
7037 |
-
#: core/lib/wpbc_all_translations1.php:357 inc/_ps/p-toolbar.php:205
|
7038 |
-
msgid "Export only current page of bookings to CSV format"
|
7039 |
-
msgstr ""
|
7040 |
-
|
7041 |
-
#: core/lib/wpbc_all_translations1.php:358
|
7042 |
-
msgid "Export All"
|
7043 |
-
msgstr ""
|
7044 |
-
|
7045 |
-
#: core/lib/wpbc_all_translations1.php:359 inc/_ps/p-toolbar.php:220
|
7046 |
-
msgid "Export All bookings to CSV format"
|
7047 |
-
msgstr ""
|
7048 |
-
|
7049 |
-
#: core/lib/wpbc_all_translations1.php:360 inc/_ps/p-toolbar.php:288
|
7050 |
-
msgid "Edit Note"
|
7051 |
-
msgstr ""
|
7052 |
-
|
7053 |
-
#: core/lib/wpbc_all_translations1.php:361 inc/_ps/p-toolbar.php:311
|
7054 |
-
msgid "Change Language"
|
7055 |
-
msgstr ""
|
7056 |
-
|
7057 |
-
#: core/lib/wpbc_all_translations1.php:362 inc/_ps/p-toolbar.php:323
|
7058 |
-
msgid "Default Locale"
|
7059 |
-
msgstr ""
|
7060 |
-
|
7061 |
-
#: core/lib/wpbc_all_translations1.php:363 inc/_ps/p-toolbar.php:359
|
7062 |
-
msgid "Change Resource"
|
7063 |
-
msgstr ""
|
7064 |
-
|
7065 |
-
#: core/lib/wpbc_all_translations1.php:364 inc/_ps/p-toolbar.php:384 inc/_ps/p-toolbar.php:497
|
7066 |
-
#: inc/_ps/personal.php:2163
|
7067 |
-
msgid "Duplicate Booking"
|
7068 |
-
msgstr ""
|
7069 |
-
|
7070 |
-
#: core/lib/wpbc_all_translations1.php:365 inc/_ps/p-toolbar.php:415
|
7071 |
-
msgid "Save"
|
7072 |
-
msgstr ""
|
7073 |
-
|
7074 |
-
#: core/lib/wpbc_all_translations1.php:366 inc/_ps/p-toolbar.php:464
|
7075 |
-
msgid "Change"
|
7076 |
-
msgstr ""
|
7077 |
-
|
7078 |
-
#: core/lib/wpbc_all_translations1.php:367 inc/_ps/p-toolbar.php:534
|
7079 |
-
msgid "Print bookings"
|
7080 |
-
msgstr ""
|
7081 |
-
|
7082 |
-
#: core/lib/wpbc_all_translations1.php:368 inc/_ps/p-toolbar.php:573
|
7083 |
-
msgid "Export bookings"
|
7084 |
-
msgstr ""
|
7085 |
-
|
7086 |
-
#: core/lib/wpbc_all_translations1.php:369 inc/_ps/p-toolbar.php:576
|
7087 |
-
msgid "Download the CSV file of exported booking data"
|
7088 |
-
msgstr ""
|
7089 |
-
|
7090 |
-
#: core/lib/wpbc_all_translations1.php:370 inc/_ps/p-toolbar.php:584
|
7091 |
-
msgid "Download"
|
7092 |
-
msgstr ""
|
7093 |
-
|
7094 |
-
#: core/lib/wpbc_all_translations1.php:371 inc/_ps/p-toolbar.php:821
|
7095 |
-
msgid "Clear booking resources selection"
|
7096 |
-
msgstr ""
|
7097 |
-
|
7098 |
-
#: core/lib/wpbc_all_translations1.php:372 inc/_ps/p-toolbar.php:825
|
7099 |
-
msgid "Apply booking resources selection"
|
7100 |
-
msgstr ""
|
7101 |
-
|
7102 |
-
#: core/lib/wpbc_all_translations1.php:373 inc/_ps/p-toolbar.php:855
|
7103 |
-
msgid ""
|
7104 |
-
"Please note, its not possible to add new resources, if \"All resources\" option is selected. "
|
7105 |
-
"Please clear the selection, then add new resources."
|
7106 |
-
msgstr ""
|
7107 |
-
|
7108 |
-
#: core/lib/wpbc_all_translations1.php:374 inc/_ps/p-toolbar.php:1143 inc/_ps/p-toolbar.php:1191
|
7109 |
-
msgid "Add New Booking Resource(s)"
|
7110 |
-
msgstr ""
|
7111 |
-
|
7112 |
-
#: core/lib/wpbc_all_translations1.php:375 inc/_ps/p-toolbar.php:1183
|
7113 |
-
msgid "Enter name of booking resource"
|
7114 |
-
msgstr ""
|
7115 |
-
|
7116 |
-
#: core/lib/wpbc_all_translations1.php:376 inc/_ps/p-toolbar.php:1207
|
7117 |
-
msgid "Resources count"
|
7118 |
-
msgstr ""
|
7119 |
-
|
7120 |
-
#: core/lib/wpbc_all_translations1.php:377 inc/_ps/personal.php:259
|
7121 |
-
msgid "This booking resources does not exist"
|
7122 |
-
msgstr ""
|
7123 |
-
|
7124 |
-
#: core/lib/wpbc_all_translations1.php:378 inc/_ps/personal.php:304
|
7125 |
-
msgid "Generating columns"
|
7126 |
-
msgstr ""
|
7127 |
-
|
7128 |
-
#: core/lib/wpbc_all_translations1.php:379 inc/_ps/personal.php:345
|
7129 |
-
msgid "Exporting booking data"
|
7130 |
-
msgstr ""
|
7131 |
-
|
7132 |
-
#: core/lib/wpbc_all_translations1.php:380 inc/_ps/personal.php:390
|
7133 |
-
msgid "Generating content of file"
|
7134 |
-
msgstr ""
|
7135 |
-
|
7136 |
-
#: core/lib/wpbc_all_translations1.php:381 inc/_ps/personal.php:432
|
7137 |
-
msgid "Saving to file"
|
7138 |
-
msgstr ""
|
7139 |
-
|
7140 |
-
#: core/lib/wpbc_all_translations1.php:382 inc/_ps/personal.php:892
|
7141 |
-
msgid "The booking was canceled by the visitor."
|
7142 |
-
msgstr ""
|
7143 |
-
|
7144 |
-
#: core/lib/wpbc_all_translations1.php:383 inc/_ps/personal.php:953
|
7145 |
-
msgid "The booking has been canceled successfully"
|
7146 |
-
msgstr ""
|
7147 |
-
|
7148 |
-
#: core/lib/wpbc_all_translations1.php:384 inc/_ps/personal.php:974
|
7149 |
-
msgid "Incorrect date format"
|
7150 |
-
msgstr ""
|
7151 |
-
|
7152 |
-
#: core/lib/wpbc_all_translations1.php:385 inc/_ps/personal.php:2142
|
7153 |
-
msgid "Change your Booking"
|
7154 |
-
msgstr ""
|
7155 |
-
|
7156 |
-
#: core/lib/wpbc_all_translations1.php:386 inc/_ps/personal.php:2144
|
7157 |
-
msgid "Cancel Booking"
|
7158 |
-
msgstr ""
|
7159 |
-
|
7160 |
-
#: core/lib/wpbc_all_translations1.php:387 inc/_ps/personal.php:2422
|
7161 |
-
msgid "Warning! The resource was not changed. Current dates are already booked there."
|
7162 |
-
msgstr ""
|
7163 |
-
|
7164 |
-
#: core/lib/wpbc_all_translations1.php:388 inc/_ps/personal.php:2559
|
7165 |
-
msgid "The booking has been duplicated successfully"
|
7166 |
-
msgstr ""
|
7167 |
-
|
7168 |
-
#: core/lib/wpbc_all_translations1.php:389 inc/_ps/personal.php:2568
|
7169 |
-
msgid "Warning! Operation failed. Current dates are already booked there."
|
7170 |
-
msgstr ""
|
7171 |
-
|
7172 |
-
#: core/lib/wpbc_all_translations1.php:390 inc/_ps/personal.php:2655
|
7173 |
-
msgid "Sending request..."
|
7174 |
-
msgstr ""
|
7175 |
-
|
7176 |
-
#: core/lib/wpbc_all_translations1.php:391 inc/_ps/personal.php:2684
|
7177 |
-
msgid "Order number"
|
7178 |
-
msgstr ""
|
7179 |
-
|
7180 |
-
#: core/lib/wpbc_all_translations1.php:392 inc/_ps/personal.php:2686
|
7181 |
-
msgid "Register"
|
7182 |
-
msgstr ""
|
7183 |
-
|
7184 |
-
#: core/lib/wpbc_all_translations1.php:393 inc/_ps/personal.php:2688
|
7185 |
-
msgid ""
|
7186 |
-
"Please, enter order number of your purchased version, which you received to your billing email."
|
7187 |
-
msgstr ""
|
7188 |
-
|
7189 |
-
#: core/lib/wpbc_all_translations1.php:394 inc/_ps/personal.php:2690
|
7190 |
-
#, php-format
|
7191 |
-
msgid "If you will get any difficulties or have a questions, please contact by email %s"
|
7192 |
-
msgstr ""
|
7193 |
-
|
7194 |
-
#: core/lib/wpbc_all_translations1.php:395 inc/_ps/wpbc-booking-select-widget.php:226
|
7195 |
-
msgid "Default form"
|
7196 |
-
msgstr ""
|
7197 |
-
|
7198 |
-
#: core/lib/wpbc_all_translations1.php:396 inc/_ps/wpbc-check-updates.php:122
|
7199 |
-
#: inc/_ps/wpbc-check-updates.php:297
|
7200 |
-
#, php-format
|
7201 |
-
msgid ""
|
7202 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
|
7203 |
-
"version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
|
7204 |
-
msgstr ""
|
7205 |
-
|
7206 |
-
#: core/lib/wpbc_all_translations1.php:397 inc/_ps/wpbc-check-updates.php:115
|
7207 |
-
#: inc/_ps/wpbc-check-updates.php:128 inc/_ps/wpbc-check-updates.php:303
|
7208 |
-
#, php-format
|
7209 |
-
msgid "You can request the new update of plugin on %1$sthis page%2$s."
|
7210 |
-
msgstr ""
|
7211 |
-
|
7212 |
-
#: core/lib/wpbc_all_translations1.php:398 inc/_ps/wpbc-check-updates.php:310
|
7213 |
-
msgid "Upgrade Notice"
|
7214 |
-
msgstr ""
|
7215 |
-
|
7216 |
-
#: core/lib/wpbc_all_translations1.php:399 inc/_ps/wpbc-check-updates.php:350
|
7217 |
-
#, php-format
|
7218 |
-
msgid "Version %s By %s"
|
7219 |
-
msgstr ""
|
7220 |
-
|
7221 |
-
#: core/lib/wpbc_all_translations1.php:400 inc/_ps/wpbc-check-updates.php:354
|
7222 |
-
msgid "View details"
|
7223 |
-
msgstr ""
|
7224 |
-
|
7225 |
-
#: core/lib/wpbc_all_translations1.php:401 inc/_ps/wpbc-form-templates.php:34
|
7226 |
-
#: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
|
7227 |
-
#: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
|
7228 |
-
msgid "First Name (required)"
|
7229 |
-
msgstr ""
|
7230 |
-
|
7231 |
-
#: core/lib/wpbc_all_translations1.php:402 inc/_ps/wpbc-form-templates.php:35
|
7232 |
-
#: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
|
7233 |
-
#: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
|
7234 |
-
msgid "Last Name (required)"
|
7235 |
-
msgstr ""
|
7236 |
-
|
7237 |
-
#: core/lib/wpbc_all_translations1.php:403 inc/_ps/wpbc-form-templates.php:36
|
7238 |
-
#: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
|
7239 |
-
#: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
|
7240 |
-
msgid "Email (required)"
|
7241 |
-
msgstr ""
|
7242 |
-
|
7243 |
-
#: core/lib/wpbc_all_translations1.php:404 inc/_ps/wpbc-form-templates.php:37
|
7244 |
-
#: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
|
7245 |
-
#: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
|
7246 |
-
#: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
|
7247 |
-
#: inc/_ps/wpbc-form-templates.php:174 inc/_ps/wpbc-form-templates.php:189
|
7248 |
-
#: inc/gateways/page-gateways.php:367
|
7249 |
-
msgid "Phone"
|
7250 |
-
msgstr ""
|
7251 |
-
|
7252 |
-
#: core/lib/wpbc_all_translations1.php:405 inc/_ps/wpbc-form-templates.php:38
|
7253 |
-
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7254 |
-
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
|
7255 |
-
#: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
|
7256 |
-
msgid "Adults"
|
7257 |
-
msgstr ""
|
7258 |
-
|
7259 |
-
#: core/lib/wpbc_all_translations1.php:406 inc/_ps/wpbc-form-templates.php:38
|
7260 |
-
#: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
|
7261 |
-
#: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
|
7262 |
-
#: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
|
7263 |
-
msgid "Children"
|
7264 |
-
msgstr ""
|
7265 |
-
|
7266 |
-
#: core/lib/wpbc_all_translations1.php:407 inc/_ps/wpbc-form-templates.php:39
|
7267 |
-
#: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
|
7268 |
-
#: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
|
7269 |
-
#: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
|
7270 |
-
#: inc/_ps/wpbc-form-templates.php:181 inc/_ps/wpbc-form-templates.php:195
|
7271 |
-
msgid "Details"
|
7272 |
-
msgstr ""
|
7273 |
-
|
7274 |
-
#: core/lib/wpbc_all_translations1.php:408 inc/_ps/wpbc-form-templates.php:40
|
7275 |
-
#: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
|
7276 |
-
#: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
|
7277 |
-
msgid "I Accept term and conditions"
|
7278 |
-
msgstr ""
|
7279 |
-
|
7280 |
-
#: core/lib/wpbc_all_translations1.php:409 inc/_ps/wpbc-form-templates.php:48
|
7281 |
-
#: inc/_ps/wpbc-form-templates.php:68
|
7282 |
-
msgid "Select Times"
|
7283 |
-
msgstr ""
|
7284 |
-
|
7285 |
-
#: core/lib/wpbc_all_translations1.php:410 inc/_ps/wpbc-form-templates.php:53
|
7286 |
-
#: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
|
7287 |
-
#: inc/_ps/wpbc-form-templates.php:118
|
7288 |
-
msgid "Address (required)"
|
7289 |
-
msgstr ""
|
7290 |
-
|
7291 |
-
#: core/lib/wpbc_all_translations1.php:411 inc/_ps/wpbc-form-templates.php:54
|
7292 |
-
#: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
|
7293 |
-
#: inc/_ps/wpbc-form-templates.php:119
|
7294 |
-
msgid "City (required)"
|
7295 |
-
msgstr ""
|
7296 |
-
|
7297 |
-
#: core/lib/wpbc_all_translations1.php:412 inc/_ps/wpbc-form-templates.php:55
|
7298 |
-
#: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
|
7299 |
-
#: inc/_ps/wpbc-form-templates.php:120
|
7300 |
-
msgid "Post code (required)"
|
7301 |
-
msgstr ""
|
7302 |
-
|
7303 |
-
#: core/lib/wpbc_all_translations1.php:413 inc/_ps/wpbc-form-templates.php:56
|
7304 |
-
#: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
|
7305 |
-
#: inc/_ps/wpbc-form-templates.php:121
|
7306 |
-
msgid "Country (required)"
|
7307 |
-
msgstr ""
|
7308 |
-
|
7309 |
-
#: core/lib/wpbc_all_translations1.php:414 inc/_ps/wpbc-form-templates.php:89
|
7310 |
-
msgid "night(s)"
|
7311 |
-
msgstr ""
|
7312 |
-
|
7313 |
-
#: core/lib/wpbc_all_translations1.php:415 inc/_ps/wpbc-form-templates.php:90
|
7314 |
-
#: inc/_ps/wpbc-form-templates.php:112
|
7315 |
-
msgid "Full cost of the booking"
|
7316 |
-
msgstr ""
|
7317 |
-
|
7318 |
-
#: core/lib/wpbc_all_translations1.php:416 inc/_ps/wpbc-form-templates.php:122
|
7319 |
-
#: inc/_ps/wpbc-form-templates.php:194
|
7320 |
-
msgid "Visitors"
|
7321 |
-
msgstr ""
|
7322 |
-
|
7323 |
-
#: core/lib/wpbc_all_translations1.php:417 inc/_ps/wpbc-form-templates.php:145
|
7324 |
-
#: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
|
7325 |
-
#: inc/_ps/wpbc-form-templates.php:187
|
7326 |
-
msgid "Last Name"
|
7327 |
-
msgstr ""
|
7328 |
-
|
7329 |
-
#: core/lib/wpbc_all_translations1.php:418 inc/_ps/wpbc-form-templates.php:146
|
7330 |
-
#: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
|
7331 |
-
#: inc/_ps/wpbc-form-templates.php:188
|
7332 |
-
msgid "Email"
|
7333 |
-
msgstr ""
|
7334 |
-
|
7335 |
-
#: core/lib/wpbc_all_translations1.php:419 inc/_ps/wpbc-form-templates.php:160
|
7336 |
-
#: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
|
7337 |
-
msgid "Address"
|
7338 |
-
msgstr ""
|
7339 |
-
|
7340 |
-
#: core/lib/wpbc_all_translations1.php:420 inc/_ps/wpbc-form-templates.php:161
|
7341 |
-
#: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
|
7342 |
-
msgid "City"
|
7343 |
-
msgstr ""
|
7344 |
-
|
7345 |
-
#: core/lib/wpbc_all_translations1.php:421 inc/_ps/wpbc-form-templates.php:162
|
7346 |
-
#: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
|
7347 |
-
msgid "Post code"
|
7348 |
-
msgstr ""
|
7349 |
-
|
7350 |
-
#: core/lib/wpbc_all_translations1.php:422 inc/_ps/wpbc-form-templates.php:163
|
7351 |
-
#: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
|
7352 |
-
#: inc/gateways/page-gateways.php:391
|
7353 |
-
msgid "Country"
|
7354 |
-
msgstr ""
|
7355 |
-
|
7356 |
-
#: core/lib/wpbc_all_translations1.php:423 inc/_ps/wpbc-form-templates.php:222
|
7357 |
-
#: inc/_ps/wpbc-form-templates.php:242 inc/_ps/wpbc-form-templates.php:252
|
7358 |
-
#: inc/_ps/wpbc-form-templates.php:262 inc/_ps/wpbc-form-templates.php:272
|
7359 |
-
msgid "Check in"
|
7360 |
-
msgstr ""
|
7361 |
-
|
7362 |
-
#: core/lib/wpbc_all_translations1.php:424 inc/_ps/wpbc-form-templates.php:225
|
7363 |
-
#: inc/_ps/wpbc-form-templates.php:243 inc/_ps/wpbc-form-templates.php:253
|
7364 |
-
#: inc/_ps/wpbc-form-templates.php:263 inc/_ps/wpbc-form-templates.php:273
|
7365 |
-
msgid "Check out"
|
7366 |
-
msgstr ""
|
7367 |
-
|
7368 |
-
#: core/lib/wpbc_all_translations1.php:425 inc/_ps/wpbc-form-templates.php:228
|
7369 |
-
#: inc/_ps/wpbc-form-templates.php:244 inc/_ps/wpbc-form-templates.php:254
|
7370 |
-
#: inc/_ps/wpbc-form-templates.php:264 inc/_ps/wpbc-form-templates.php:274
|
7371 |
-
msgid "Guests"
|
7372 |
-
msgstr ""
|
7373 |
-
|
7374 |
-
#: core/lib/wpbc_all_translations1.php:426 inc/_ps/wpbc-form-templates.php:308
|
7375 |
-
#: inc/_ps/wpbc-form-templates.php:334 inc/_ps/wpbc-form-templates.php:351
|
7376 |
-
msgid "Max. persons"
|
7377 |
-
msgstr ""
|
7378 |
-
|
7379 |
-
#: core/lib/wpbc_all_translations1.php:427 inc/_ps/wpbc-print.php:84
|
7380 |
-
msgid "Data"
|
7381 |
-
msgstr ""
|
7382 |
-
|
7383 |
-
#: core/lib/wpbc_all_translations1.php:428 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:298
|
7384 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
|
7385 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:379 inc/gateways/ipay88/wpbc-gw-ipay88.php:318
|
7386 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:365
|
7387 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:385 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:518
|
7388 |
-
msgid "Enable this payment gateway"
|
7389 |
-
msgstr ""
|
7390 |
-
|
7391 |
-
#: core/lib/wpbc_all_translations1.php:429 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:308
|
7392 |
-
msgid "API Login ID"
|
7393 |
-
msgstr ""
|
7394 |
-
|
7395 |
-
#: core/lib/wpbc_all_translations1.php:430 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:310
|
7396 |
-
#, php-format
|
7397 |
-
msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
|
7398 |
-
msgstr ""
|
7399 |
-
|
7400 |
-
#: core/lib/wpbc_all_translations1.php:431
|
7401 |
-
msgid "Transaction Key"
|
7402 |
-
msgstr ""
|
7403 |
-
|
7404 |
-
#: core/lib/wpbc_all_translations1.php:432 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:546
|
7405 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:561
|
7406 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:578
|
7407 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:593
|
7408 |
-
#, php-format
|
7409 |
-
msgid "This parameter have to assigned to you by %s"
|
7410 |
-
msgstr ""
|
7411 |
-
|
7412 |
-
#: core/lib/wpbc_all_translations1.php:433 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:366
|
7413 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:420 inc/gateways/paypal/wpbc-gw-paypal.php:444
|
7414 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:424
|
7415 |
-
msgid "Chose payment mode"
|
7416 |
-
msgstr ""
|
7417 |
-
|
7418 |
-
#: core/lib/wpbc_all_translations1.php:434 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:367
|
7419 |
-
msgid ""
|
7420 |
-
"Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
|
7421 |
-
"for using Developer account."
|
7422 |
-
msgstr ""
|
7423 |
-
|
7424 |
-
#: core/lib/wpbc_all_translations1.php:435 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:370
|
7425 |
-
msgid ""
|
7426 |
-
"Transactions posted against live merchant accounts using either of the above testing methods are "
|
7427 |
-
"not submitted to financial institutions for authorization and are not stored in the Merchant "
|
7428 |
-
"Interface."
|
7429 |
-
msgstr ""
|
7430 |
-
|
7431 |
-
#: core/lib/wpbc_all_translations1.php:436 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:375
|
7432 |
-
msgid "Developer Test"
|
7433 |
-
msgstr ""
|
7434 |
-
|
7435 |
-
#: core/lib/wpbc_all_translations1.php:437 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:376
|
7436 |
-
msgid "Live Test"
|
7437 |
-
msgstr ""
|
7438 |
-
|
7439 |
-
#: core/lib/wpbc_all_translations1.php:438 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:377
|
7440 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:450
|
7441 |
-
msgid "Live"
|
7442 |
-
msgstr ""
|
7443 |
-
|
7444 |
-
#: core/lib/wpbc_all_translations1.php:439 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:385
|
7445 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:428 inc/gateways/sage/wpbc-gw-sage.php:438
|
7446 |
-
msgid "Transaction type"
|
7447 |
-
msgstr ""
|
7448 |
-
|
7449 |
-
#: core/lib/wpbc_all_translations1.php:440 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:386
|
7450 |
-
msgid "Select transaction type, which supported by the payment gateway."
|
7451 |
-
msgstr ""
|
7452 |
-
|
7453 |
-
#: core/lib/wpbc_all_translations1.php:441 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:389
|
7454 |
-
msgid "Authorization and Capture"
|
7455 |
-
msgstr ""
|
7456 |
-
|
7457 |
-
#: core/lib/wpbc_all_translations1.php:442 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:390
|
7458 |
-
msgid "Authorization Only"
|
7459 |
-
msgstr ""
|
7460 |
-
|
7461 |
-
#: core/lib/wpbc_all_translations1.php:443 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:396
|
7462 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:459 inc/gateways/sage/wpbc-gw-sage.php:453
|
7463 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:614
|
7464 |
-
msgid "U.S. Dollars"
|
7465 |
-
msgstr ""
|
7466 |
-
|
7467 |
-
#: core/lib/wpbc_all_translations1.php:444 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:397
|
7468 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:615
|
7469 |
-
msgid "Pounds Sterling"
|
7470 |
-
msgstr ""
|
7471 |
-
|
7472 |
-
#: core/lib/wpbc_all_translations1.php:445 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:398
|
7473 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:460 inc/gateways/sage/wpbc-gw-sage.php:452
|
7474 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:616
|
7475 |
-
msgid "Euros"
|
7476 |
-
msgstr ""
|
7477 |
-
|
7478 |
-
#: core/lib/wpbc_all_translations1.php:446 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:399
|
7479 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:464 inc/gateways/sage/wpbc-gw-sage.php:456
|
7480 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:617
|
7481 |
-
msgid "Canadian Dollars"
|
7482 |
-
msgstr ""
|
7483 |
-
|
7484 |
-
#: core/lib/wpbc_all_translations1.php:447 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:404
|
7485 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:369 inc/gateways/paypal/wpbc-gw-paypal.php:487
|
7486 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:758
|
7487 |
-
msgid "Accepted Currency"
|
7488 |
-
msgstr ""
|
7489 |
-
|
7490 |
-
#: core/lib/wpbc_all_translations1.php:448 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:405
|
7491 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:370 inc/gateways/paypal/wpbc-gw-paypal.php:488
|
7492 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:759
|
7493 |
-
msgid "The currency code that gateway will process the payment in."
|
7494 |
-
msgstr ""
|
7495 |
-
|
7496 |
-
#: core/lib/wpbc_all_translations1.php:449 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:408
|
7497 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:762
|
7498 |
-
msgid ""
|
7499 |
-
"Setting the currency that is not supported by the payment processor will result in an error."
|
7500 |
-
msgstr ""
|
7501 |
-
|
7502 |
-
#: core/lib/wpbc_all_translations1.php:450 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:418
|
7503 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:419
|
7504 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1052 inc/gateways/ideal/wpbc-gw-ideal.php:310
|
7505 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:458 inc/gateways/ideal/wpbc-gw-ideal.php:459
|
7506 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:1047 inc/gateways/ipay88/wpbc-gw-ipay88.php:379
|
7507 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:380 inc/gateways/ipay88/wpbc-gw-ipay88.php:986
|
7508 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:516 inc/gateways/paypal/wpbc-gw-paypal.php:517
|
7509 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:1366 inc/gateways/sage/wpbc-gw-sage.php:488
|
7510 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:489 inc/gateways/sage/wpbc-gw-sage.php:1042
|
7511 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:832
|
7512 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:833
|
7513 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1408
|
7514 |
-
msgid "Pay via"
|
7515 |
-
msgstr ""
|
7516 |
-
|
7517 |
-
#: core/lib/wpbc_all_translations1.php:451 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:420
|
7518 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:381
|
7519 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:518 inc/gateways/sage/wpbc-gw-sage.php:490
|
7520 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:834
|
7521 |
-
msgid "Payment button title"
|
7522 |
-
msgstr ""
|
7523 |
-
|
7524 |
-
#: core/lib/wpbc_all_translations1.php:452 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:421
|
7525 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:461 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
|
7526 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:519 inc/gateways/sage/wpbc-gw-sage.php:491
|
7527 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:835
|
7528 |
-
msgid "Enter the title of the payment button"
|
7529 |
-
msgstr ""
|
7530 |
-
|
7531 |
-
#: core/lib/wpbc_all_translations1.php:453 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:432
|
7532 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:433
|
7533 |
-
#: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1048 inc/gateways/ideal/wpbc-gw-ideal.php:472
|
7534 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ideal/wpbc-gw-ideal.php:1044
|
7535 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:393 inc/gateways/ipay88/wpbc-gw-ipay88.php:394
|
7536 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:983 inc/gateways/paypal/wpbc-gw-paypal.php:544
|
7537 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:545 inc/gateways/paypal/wpbc-gw-paypal.php:1368
|
7538 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:502 inc/gateways/sage/wpbc-gw-sage.php:503
|
7539 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:1038 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:846
|
7540 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:847
|
7541 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1409
|
7542 |
-
#, php-format
|
7543 |
-
msgid "Payment for booking %s on these day(s): %s"
|
7544 |
-
msgstr ""
|
7545 |
-
|
7546 |
-
#: core/lib/wpbc_all_translations1.php:454 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:434
|
7547 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:395
|
7548 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:546 inc/gateways/sage/wpbc-gw-sage.php:504
|
7549 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:848
|
7550 |
-
msgid "Payment description at gateway website"
|
7551 |
-
msgstr ""
|
7552 |
-
|
7553 |
-
#: core/lib/wpbc_all_translations1.php:455 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:435
|
7554 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:396
|
7555 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:547 inc/gateways/sage/wpbc-gw-sage.php:505
|
7556 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:849
|
7557 |
-
msgid "Enter the service name or the reason for the payment here."
|
7558 |
-
msgstr ""
|
7559 |
-
|
7560 |
-
#: core/lib/wpbc_all_translations1.php:456 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:436
|
7561 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:476 inc/gateways/ipay88/wpbc-gw-ipay88.php:397
|
7562 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:548 inc/gateways/sage/wpbc-gw-sage.php:506
|
7563 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:850
|
7564 |
-
msgid "You can use any shortcodes, which you have used in content of booking fields data form."
|
7565 |
-
msgstr ""
|
7566 |
-
|
7567 |
-
#: core/lib/wpbc_all_translations1.php:457 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:439
|
7568 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:479 inc/gateways/ipay88/wpbc-gw-ipay88.php:400
|
7569 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:551 inc/gateways/sage/wpbc-gw-sage.php:509
|
7570 |
-
#, php-format
|
7571 |
-
msgid "This field support only up to %s characters by payment system."
|
7572 |
-
msgstr ""
|
7573 |
-
|
7574 |
-
#: core/lib/wpbc_all_translations1.php:458 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:457
|
7575 |
-
msgid "Activate Relay Response"
|
7576 |
-
msgstr ""
|
7577 |
-
|
7578 |
-
#: core/lib/wpbc_all_translations1.php:459 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:458
|
7579 |
-
msgid ""
|
7580 |
-
"Indicate to the payment gateway that you would like to receive the transaction response to your "
|
7581 |
-
"site."
|
7582 |
-
msgstr ""
|
7583 |
-
|
7584 |
-
#: core/lib/wpbc_all_translations1.php:460 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:461
|
7585 |
-
msgid ""
|
7586 |
-
"You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
|
7587 |
-
"Interface, if a Relay Response is activated here."
|
7588 |
-
msgstr ""
|
7589 |
-
|
7590 |
-
#: core/lib/wpbc_all_translations1.php:461
|
7591 |
-
msgid "MD5 Hash value"
|
7592 |
-
msgstr ""
|
7593 |
-
|
7594 |
-
#: core/lib/wpbc_all_translations1.php:462
|
7595 |
-
msgid ""
|
7596 |
-
"Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
|
7597 |
-
msgstr ""
|
7598 |
-
|
7599 |
-
#: core/lib/wpbc_all_translations1.php:463
|
7600 |
-
msgid "To configure MD5 Hash value in Relay Response for your transactions"
|
7601 |
-
msgstr ""
|
7602 |
-
|
7603 |
-
#: core/lib/wpbc_all_translations1.php:464
|
7604 |
-
msgid "Log on to the Merchant Interface"
|
7605 |
-
msgstr ""
|
7606 |
-
|
7607 |
-
#: core/lib/wpbc_all_translations1.php:465
|
7608 |
-
msgid "Click Settings under Account in the main menu on the left"
|
7609 |
-
msgstr ""
|
7610 |
-
|
7611 |
-
#: core/lib/wpbc_all_translations1.php:466
|
7612 |
-
msgid "Click MD5-Hash in the Security Settings section"
|
7613 |
-
msgstr ""
|
7614 |
-
|
7615 |
-
#: core/lib/wpbc_all_translations1.php:467
|
7616 |
-
msgid "Enter this value"
|
7617 |
-
msgstr ""
|
7618 |
-
|
7619 |
-
#: core/lib/wpbc_all_translations1.php:468
|
7620 |
-
msgid "Click Submit"
|
7621 |
-
msgstr ""
|
7622 |
-
|
7623 |
-
#: core/lib/wpbc_all_translations1.php:469
|
7624 |
-
#, php-format
|
7625 |
-
msgid ""
|
7626 |
-
"For more information about configuring Relay Response in the Merchant Interface, please see the "
|
7627 |
-
"%sMerchant Integration Guide%s"
|
7628 |
-
msgstr ""
|
7629 |
-
|
7630 |
-
#: core/lib/wpbc_all_translations1.php:470 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:497
|
7631 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:507 inc/gateways/ipay88/wpbc-gw-ipay88.php:421
|
7632 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:874
|
7633 |
-
msgid "Return URL after Successful order"
|
7634 |
-
msgstr ""
|
7635 |
-
|
7636 |
-
#: core/lib/wpbc_all_translations1.php:471 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:515
|
7637 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:437
|
7638 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:612 inc/gateways/sage/wpbc-gw-sage.php:546
|
7639 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:892
|
7640 |
-
msgid "The URL where visitor will be redirected after completing payment."
|
7641 |
-
msgstr ""
|
7642 |
-
|
7643 |
-
#: core/lib/wpbc_all_translations1.php:472 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:516
|
7644 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:524 inc/gateways/ipay88/wpbc-gw-ipay88.php:438
|
7645 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:613 inc/gateways/sage/wpbc-gw-sage.php:547
|
7646 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:893
|
7647 |
-
#, php-format
|
7648 |
-
msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
|
7649 |
-
msgstr ""
|
7650 |
-
|
7651 |
-
#: core/lib/wpbc_all_translations1.php:473 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:531
|
7652 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:538 inc/gateways/ipay88/wpbc-gw-ipay88.php:452
|
7653 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:908
|
7654 |
-
msgid "Return URL after Failed order"
|
7655 |
-
msgstr ""
|
7656 |
-
|
7657 |
-
#: core/lib/wpbc_all_translations1.php:474 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:549
|
7658 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:468
|
7659 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:643 inc/gateways/sage/wpbc-gw-sage.php:577
|
7660 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:926
|
7661 |
-
msgid "The URL where the visitor will be redirected after completing payment."
|
7662 |
-
msgstr ""
|
7663 |
-
|
7664 |
-
#: core/lib/wpbc_all_translations1.php:475 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:550
|
7665 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:555 inc/gateways/ipay88/wpbc-gw-ipay88.php:469
|
7666 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:644 inc/gateways/sage/wpbc-gw-sage.php:578
|
7667 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:927
|
7668 |
-
#, php-format
|
7669 |
-
msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
|
7670 |
-
msgstr ""
|
7671 |
-
|
7672 |
-
#: core/lib/wpbc_all_translations1.php:476 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:561
|
7673 |
-
msgid "Automatically approve booking"
|
7674 |
-
msgstr ""
|
7675 |
-
|
7676 |
-
#: core/lib/wpbc_all_translations1.php:477 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:562
|
7677 |
-
msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
|
7678 |
-
msgstr ""
|
7679 |
-
|
7680 |
-
#: core/lib/wpbc_all_translations1.php:478 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:564
|
7681 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:482 inc/gateways/paypal/wpbc-gw-paypal.php:661
|
7682 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:941
|
7683 |
-
msgid "This will not work, if the visitor leaves the payment page."
|
7684 |
-
msgstr ""
|
7685 |
-
|
7686 |
-
#: core/lib/wpbc_all_translations1.php:479 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:784
|
7687 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7688 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7689 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
|
7690 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:802 inc/gateways/ideal/wpbc-gw-ideal.php:905
|
7691 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:729 inc/gateways/ipay88/wpbc-gw-ipay88.php:845
|
7692 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:388
|
7693 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:986 inc/gateways/paypal/wpbc-gw-paypal.php:1081
|
7694 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:783 inc/gateways/sage/wpbc-gw-sage.php:894
|
7695 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1049
|
7696 |
-
#, php-format
|
7697 |
-
msgid "%s Settings"
|
7698 |
-
msgstr ""
|
7699 |
-
|
7700 |
-
#: core/lib/wpbc_all_translations1.php:480 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:785
|
7701 |
-
msgid "Integration of authorizenet payment system"
|
7702 |
-
msgstr ""
|
7703 |
-
|
7704 |
-
#: core/lib/wpbc_all_translations1.php:481
|
7705 |
-
#, php-format
|
7706 |
-
msgid ""
|
7707 |
-
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
7708 |
-
"an API Login ID and Transaction Key. These keys will authenticate requests to the payment "
|
7709 |
-
"gateway."
|
7710 |
-
msgstr ""
|
7711 |
-
|
7712 |
-
#: core/lib/wpbc_all_translations1.php:482
|
7713 |
-
msgid ""
|
7714 |
-
"Please configure all fields inside the Billing form fields tab at this page, when using a "
|
7715 |
-
"European payment processor"
|
7716 |
-
msgstr ""
|
7717 |
-
|
7718 |
-
#: core/lib/wpbc_all_translations1.php:483 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:901
|
7719 |
-
msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
|
7720 |
-
msgstr ""
|
7721 |
-
|
7722 |
-
#: core/lib/wpbc_all_translations1.php:484 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:911
|
7723 |
-
#, php-format
|
7724 |
-
msgid "%s - Server Integration Method (SIM)"
|
7725 |
-
msgstr ""
|
7726 |
-
|
7727 |
-
#: core/lib/wpbc_all_translations1.php:485 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:231
|
7728 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
|
7729 |
-
msgid "Payment method description that the customer will see on your payment page."
|
7730 |
-
msgstr ""
|
7731 |
-
|
7732 |
-
#: core/lib/wpbc_all_translations1.php:486 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:264
|
7733 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
|
7734 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
|
7735 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
|
7736 |
-
msgid "Bank Transfer"
|
7737 |
-
msgstr ""
|
7738 |
-
|
7739 |
-
#: core/lib/wpbc_all_translations1.php:487 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:345
|
7740 |
-
msgid "Integration of Bank Transfer payment system"
|
7741 |
-
msgstr ""
|
7742 |
-
|
7743 |
-
#: core/lib/wpbc_all_translations1.php:488 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:426
|
7744 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
|
7745 |
-
msgid "Account details"
|
7746 |
-
msgstr ""
|
7747 |
-
|
7748 |
-
#: core/lib/wpbc_all_translations1.php:489 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:480
|
7749 |
-
#, php-format
|
7750 |
-
msgid "Allow payments by %sdirect bank / wire transfer%s"
|
7751 |
-
msgstr ""
|
7752 |
-
|
7753 |
-
#: core/lib/wpbc_all_translations1.php:490 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:482
|
7754 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
|
7755 |
-
msgid "Its only show fixed payment details."
|
7756 |
-
msgstr ""
|
7757 |
-
|
7758 |
-
#: core/lib/wpbc_all_translations1.php:491 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:717
|
7759 |
-
msgid "Sort Code"
|
7760 |
-
msgstr ""
|
7761 |
-
|
7762 |
-
#: core/lib/wpbc_all_translations1.php:492 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:725
|
7763 |
-
#, php-format
|
7764 |
-
msgid ""
|
7765 |
-
"Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
|
7766 |
-
"the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
|
7767 |
-
msgstr ""
|
7768 |
-
|
7769 |
-
#: core/lib/wpbc_all_translations1.php:493 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:731
|
7770 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
|
7771 |
-
msgid "Account Number"
|
7772 |
-
msgstr ""
|
7773 |
-
|
7774 |
-
#: core/lib/wpbc_all_translations1.php:494 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:733
|
7775 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
|
7776 |
-
msgid "IBAN"
|
7777 |
-
msgstr ""
|
7778 |
-
|
7779 |
-
#: core/lib/wpbc_all_translations1.php:495 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:734
|
7780 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
|
7781 |
-
msgid "BIC / Swift"
|
7782 |
-
msgstr ""
|
7783 |
-
|
7784 |
-
#: core/lib/wpbc_all_translations1.php:496 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:737
|
7785 |
-
msgid "Account Name"
|
7786 |
-
msgstr ""
|
7787 |
-
|
7788 |
-
#: core/lib/wpbc_all_translations1.php:497 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:739
|
7789 |
-
#: inc/gateways/ideal/wpbc-gw-ideal.php:325
|
7790 |
-
msgid "Bank Name"
|
7791 |
-
msgstr ""
|
7792 |
-
|
7793 |
-
#: core/lib/wpbc_all_translations1.php:498 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:787
|
7794 |
-
msgid "BSB"
|
7795 |
-
msgstr ""
|
7796 |
-
|
7797 |
-
#: core/lib/wpbc_all_translations1.php:499 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:788
|
7798 |
-
msgid "Bank Transit Number"
|
7799 |
-
msgstr ""
|
7800 |
-
|
7801 |
-
#: core/lib/wpbc_all_translations1.php:500 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:789
|
7802 |
-
msgid "IFSC"
|
7803 |
-
msgstr ""
|
7804 |
-
|
7805 |
-
#: core/lib/wpbc_all_translations1.php:501 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:790
|
7806 |
-
msgid "Branch Sort"
|
7807 |
-
msgstr ""
|
7808 |
-
|
7809 |
-
#: core/lib/wpbc_all_translations1.php:502 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:791
|
7810 |
-
#: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
|
7811 |
-
msgid "Bank Code"
|
7812 |
-
msgstr ""
|
7813 |
-
|
7814 |
-
#: core/lib/wpbc_all_translations1.php:503 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:793
|
7815 |
-
msgid "Routing Number"
|
7816 |
-
msgstr ""
|
7817 |
-
|
7818 |
-
#: core/lib/wpbc_all_translations1.php:504 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:794
|
7819 |
-
msgid "Branch Code"
|
7820 |
-
msgstr ""
|
7821 |
-
|
7822 |
-
#: core/lib/wpbc_all_translations1.php:505 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:804
|
7823 |
-
#, php-format
|
7824 |
-
msgid "%s - inserting all bank accounts details"
|
7825 |
-
msgstr ""
|
7826 |
-
|
7827 |
-
#: core/lib/wpbc_all_translations1.php:506 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:805
|
7828 |
-
#, php-format
|
7829 |
-
msgid "%s - inserting account name"
|
7830 |
-
msgstr ""
|
7831 |
-
|
7832 |
-
#: core/lib/wpbc_all_translations1.php:507 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:806
|
7833 |
-
#, php-format
|
7834 |
-
msgid "%s - inserting account number"
|
7835 |
-
msgstr ""
|
7836 |
-
|
7837 |
-
#: core/lib/wpbc_all_translations1.php:508 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:807
|
7838 |
-
#, php-format
|
7839 |
-
msgid "%s - inserting bank name "
|
7840 |
-
msgstr ""
|
7841 |
-
|
7842 |
-
#: core/lib/wpbc_all_translations1.php:509 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:808
|
7843 |
-
#, php-format
|
7844 |
-
msgid "%s - inserting sort code "
|
7845 |
-
msgstr ""
|
7846 |
-
|
7847 |
-
#: core/lib/wpbc_all_translations1.php:510 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:809
|
7848 |
-
#, php-format
|
7849 |
-
msgid "%s - inserting IBAN "
|
7850 |
-
msgstr ""
|
7851 |
-
|
7852 |
-
#: core/lib/wpbc_all_translations1.php:511 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:810
|
7853 |
-
#, php-format
|
7854 |
-
msgid "%s - inserting BIC "
|
7855 |
-
msgstr ""
|
7856 |
-
|
7857 |
-
#: core/lib/wpbc_all_translations1.php:512 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:815
|
7858 |
-
msgid ""
|
7859 |
-
"You can use any shortcodes, that you can use in payment description form at Settings Payment "
|
7860 |
-
"General page"
|
7861 |
-
msgstr ""
|
7862 |
-
|
7863 |
-
#: core/lib/wpbc_all_translations1.php:513 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
|
7864 |
-
msgid "+ Add Account"
|
7865 |
-
msgstr ""
|
7866 |
-
|
7867 |
-
#: core/lib/wpbc_all_translations1.php:514 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
|
7868 |
-
msgid "Remove selected account(s)"
|
7869 |
-
msgstr ""
|
7870 |
-
|
7871 |
-
#: core/lib/wpbc_all_translations1.php:515 inc/gateways/ipay88/ipay88-backend.php:92
|
7872 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:570
|
7873 |
-
msgid "Successful payment"
|
7874 |
-
msgstr ""
|
7875 |
-
|
7876 |
-
#: core/lib/wpbc_all_translations1.php:516 inc/gateways/ipay88/ipay88-backend.php:94
|
7877 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:573
|
7878 |
-
msgid " Parameters are incorrect,"
|
7879 |
-
msgstr ""
|
7880 |
-
|
7881 |
-
#: core/lib/wpbc_all_translations1.php:517 inc/gateways/ipay88/ipay88-backend.php:95
|
7882 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:575
|
7883 |
-
msgid "Cannot find the record"
|
7884 |
-
msgstr ""
|
7885 |
-
|
7886 |
-
#: core/lib/wpbc_all_translations1.php:518 inc/gateways/ipay88/ipay88-backend.php:96
|
7887 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:577
|
7888 |
-
msgid "Amount different"
|
7889 |
-
msgstr ""
|
7890 |
-
|
7891 |
-
#: core/lib/wpbc_all_translations1.php:519 inc/gateways/ipay88/ipay88-backend.php:97
|
7892 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:579
|
7893 |
-
msgid "Payment failed"
|
7894 |
-
msgstr ""
|
7895 |
-
|
7896 |
-
#: core/lib/wpbc_all_translations1.php:520 inc/gateways/ipay88/ipay88-backend.php:98
|
7897 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:581
|
7898 |
-
msgid "Payment status updated by Mobile88 Admin(Fail)"
|
7899 |
-
msgstr ""
|
7900 |
-
|
7901 |
-
#: core/lib/wpbc_all_translations1.php:521 inc/gateways/ipay88/ipay88-backend.php:99
|
7902 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:583
|
7903 |
-
msgid "Connection Error"
|
7904 |
-
msgstr ""
|
7905 |
-
|
7906 |
-
#: core/lib/wpbc_all_translations1.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:328
|
7907 |
-
msgid "Merchant Code"
|
7908 |
-
msgstr ""
|
7909 |
-
|
7910 |
-
#: core/lib/wpbc_all_translations1.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:330
|
7911 |
-
msgid "Enter your iPay88 Merchant Code."
|
7912 |
-
msgstr ""
|
7913 |
-
|
7914 |
-
#: core/lib/wpbc_all_translations1.php:524 inc/gateways/ideal/wpbc-gw-ideal.php:404
|
7915 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:343
|
7916 |
-
msgid "Merchant Key"
|
7917 |
-
msgstr ""
|
7918 |
-
|
7919 |
-
#: core/lib/wpbc_all_translations1.php:525 inc/gateways/ipay88/wpbc-gw-ipay88.php:345
|
7920 |
-
msgid "Enter your iPay88 Merchant Key."
|
7921 |
-
msgstr ""
|
7922 |
-
|
7923 |
-
#: core/lib/wpbc_all_translations1.php:526 inc/gateways/ipay88/wpbc-gw-ipay88.php:355
|
7924 |
-
msgid "Malaysian Ringgit"
|
7925 |
-
msgstr ""
|
7926 |
-
|
7927 |
-
#: core/lib/wpbc_all_translations1.php:527 inc/gateways/paypal/wpbc-gw-paypal.php:479
|
7928 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:471
|
7929 |
-
msgid "Philippine Pesos"
|
7930 |
-
msgstr ""
|
7931 |
-
|
7932 |
-
#: core/lib/wpbc_all_translations1.php:528 inc/gateways/ideal/wpbc-gw-ideal.php:565
|
7933 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:479 inc/gateways/paypal/wpbc-gw-paypal.php:658
|
7934 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:938
|
7935 |
-
msgid "Automatically approve/cancel booking"
|
7936 |
-
msgstr ""
|
7937 |
-
|
7938 |
-
#: core/lib/wpbc_all_translations1.php:529 inc/gateways/ideal/wpbc-gw-ideal.php:566
|
7939 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:480 inc/gateways/paypal/wpbc-gw-paypal.php:659
|
7940 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:939
|
7941 |
-
msgid ""
|
7942 |
-
"Check this box to automatically approve bookings, when visitor makes a successful payment, or "
|
7943 |
-
"automatically cancel the booking, when visitor makes a payment cancellation."
|
7944 |
-
msgstr ""
|
7945 |
-
|
7946 |
-
#: core/lib/wpbc_all_translations1.php:530 inc/gateways/ipay88/wpbc-gw-ipay88.php:730
|
7947 |
-
msgid "Integration of iPay88 payment system"
|
7948 |
-
msgstr ""
|
7949 |
-
|
7950 |
-
#: core/lib/wpbc_all_translations1.php:531 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:893
|
7951 |
-
#: inc/gateways/ipay88/wpbc-gw-ipay88.php:832 inc/gateways/sage/wpbc-gw-sage.php:883
|
7952 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1197
|
7953 |
-
#, php-format
|
7954 |
-
msgid ""
|
7955 |
-
"Please configure all fields inside the %sBilling form fields%s section at %sPayments General%s "
|
7956 |
-
"tab."
|
7957 |
-
msgstr ""
|
7958 |
-
|
7959 |
-
#: core/lib/wpbc_all_translations1.php:532 inc/gateways/page-gateways.php:65
|
7960 |
-
msgid "for 1 day"
|
7961 |
-
msgstr ""
|
7962 |
-
|
7963 |
-
#: core/lib/wpbc_all_translations1.php:533 inc/gateways/page-gateways.php:66
|
7964 |
-
msgid "for 1 night"
|
7965 |
-
msgstr ""
|
7966 |
-
|
7967 |
-
#: core/lib/wpbc_all_translations1.php:534 inc/gateways/page-gateways.php:67
|
7968 |
-
msgid "fixed sum"
|
7969 |
-
msgstr ""
|
7970 |
-
|
7971 |
-
#: core/lib/wpbc_all_translations1.php:535 inc/gateways/page-gateways.php:68
|
7972 |
-
msgid "for 1 hour"
|
7973 |
-
msgstr ""
|
7974 |
-
|
7975 |
-
#: core/lib/wpbc_all_translations1.php:536 inc/gateways/page-gateways.php:73
|
7976 |
-
msgid "Set the cost"
|
7977 |
-
msgstr ""
|
7978 |
-
|
7979 |
-
#: core/lib/wpbc_all_translations1.php:537 inc/gateways/page-gateways.php:74
|
7980 |
-
msgid " Select your cost configuration."
|
7981 |
-
msgstr ""
|
7982 |
-
|
7983 |
-
#: core/lib/wpbc_all_translations1.php:538 inc/gateways/page-gateways.php:82
|
7984 |
-
msgid "Time impact to cost"
|
7985 |
-
msgstr ""
|
7986 |
-
|
7987 |
-
#: core/lib/wpbc_all_translations1.php:539 inc/gateways/page-gateways.php:83
|
7988 |
-
#, php-format
|
7989 |
-
msgid ""
|
7990 |
-
"Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
|
7991 |
-
"calculation%s."
|
7992 |
-
msgstr ""
|
7993 |
-
|
7994 |
-
#: core/lib/wpbc_all_translations1.php:540 inc/gateways/page-gateways.php:93
|
7995 |
-
msgid ""
|
7996 |
-
"Check this box if you want that specific additional cost, which configured as percentage for "
|
7997 |
-
"some option, apply to other additional fixed costs and not only to original booking cost."
|
7998 |
-
msgstr ""
|
7999 |
-
|
8000 |
-
#: core/lib/wpbc_all_translations1.php:541 inc/gateways/page-gateways.php:222
|
8001 |
-
#: inc/gateways/page-gateways.php:888
|
8002 |
-
msgid "Currency"
|
8003 |
-
msgstr ""
|
8004 |
-
|
8005 |
-
#: core/lib/wpbc_all_translations1.php:542 inc/gateways/page-gateways.php:225
|
8006 |
-
msgid ""
|
8007 |
-
"This is default currency that showing at your website. Specific payment gateway(s) can support "
|
8008 |
-
"or does not suport it."
|
8009 |
-
msgstr ""
|
8010 |
-
|
8011 |
-
#: core/lib/wpbc_all_translations1.php:543 inc/gateways/page-gateways.php:152
|
8012 |
-
#: inc/gateways/page-gateways.php:228 inc/gateways/page-gateways.php:940
|
8013 |
-
msgid "Important"
|
8014 |
-
msgstr ""
|
8015 |
-
|
8016 |
-
#: core/lib/wpbc_all_translations1.php:544 inc/gateways/page-gateways.php:228
|
8017 |
-
msgid "Check and configure currency at each activated payment gateway."
|
8018 |
-
msgstr ""
|
8019 |
-
|
8020 |
-
#: core/lib/wpbc_all_translations1.php:545 inc/gateways/page-gateways.php:238
|
8021 |
-
msgid "Currency Position"
|
8022 |
-
msgstr ""
|
8023 |
-
|
8024 |
-
#: core/lib/wpbc_all_translations1.php:546 inc/gateways/page-gateways.php:239
|
8025 |
-
msgid "Set position of the currency symbol."
|
8026 |
-
msgstr ""
|
8027 |
-
|
8028 |
-
#: core/lib/wpbc_all_translations1.php:547 inc/gateways/page-gateways.php:242
|
8029 |
-
msgid "Left"
|
8030 |
-
msgstr ""
|
8031 |
-
|
8032 |
-
#: core/lib/wpbc_all_translations1.php:548 inc/gateways/page-gateways.php:246
|
8033 |
-
msgid "Right"
|
8034 |
-
msgstr ""
|
8035 |
-
|
8036 |
-
#: core/lib/wpbc_all_translations1.php:549 inc/gateways/page-gateways.php:250
|
8037 |
-
msgid "Left with space"
|
8038 |
-
msgstr ""
|
8039 |
-
|
8040 |
-
#: core/lib/wpbc_all_translations1.php:550 inc/gateways/page-gateways.php:254
|
8041 |
-
msgid "Right with space"
|
8042 |
-
msgstr ""
|
8043 |
-
|
8044 |
-
#: core/lib/wpbc_all_translations1.php:551 inc/gateways/page-gateways.php:273
|
8045 |
-
msgid "Currency format"
|
8046 |
-
msgstr ""
|
8047 |
-
|
8048 |
-
#: core/lib/wpbc_all_translations1.php:552 inc/gateways/page-gateways.php:274
|
8049 |
-
msgid "Number of decimal points"
|
8050 |
-
msgstr ""
|
8051 |
-
|
8052 |
-
#: core/lib/wpbc_all_translations1.php:553 inc/gateways/page-gateways.php:282
|
8053 |
-
#: inc/gateways/page-gateways.php:298
|
8054 |
-
msgid "No separator"
|
8055 |
-
msgstr ""
|
8056 |
-
|
8057 |
-
#: core/lib/wpbc_all_translations1.php:554 inc/gateways/page-gateways.php:283
|
8058 |
-
#: inc/gateways/page-gateways.php:299
|
8059 |
-
msgid "Space"
|
8060 |
-
msgstr ""
|
8061 |
-
|
8062 |
-
#: core/lib/wpbc_all_translations1.php:555 inc/gateways/page-gateways.php:284
|
8063 |
-
#: inc/gateways/page-gateways.php:300
|
8064 |
-
msgid "Dot"
|
8065 |
-
msgstr ""
|
8066 |
-
|
8067 |
-
#: core/lib/wpbc_all_translations1.php:556 inc/gateways/page-gateways.php:285
|
8068 |
-
#: inc/gateways/page-gateways.php:301
|
8069 |
-
msgid "Comma"
|
8070 |
-
msgstr ""
|
8071 |
-
|
8072 |
-
#: core/lib/wpbc_all_translations1.php:557 inc/gateways/page-gateways.php:290
|
8073 |
-
msgid "Separator for the decimal point"
|
8074 |
-
msgstr ""
|
8075 |
-
|
8076 |
-
#: core/lib/wpbc_all_translations1.php:558 inc/gateways/page-gateways.php:306
|
8077 |
-
msgid "Thousands separator"
|
8078 |
-
msgstr ""
|
8079 |
-
|
8080 |
-
#: core/lib/wpbc_all_translations1.php:559 inc/gateways/page-gateways.php:320
|
8081 |
-
msgid "Please select"
|
8082 |
-
msgstr ""
|
8083 |
-
|
8084 |
-
#: core/lib/wpbc_all_translations1.php:560 inc/gateways/page-gateways.php:331
|
8085 |
-
msgid ""
|
8086 |
-
"Please select a field from your booking form. This field will be automatically assigned to the "
|
8087 |
-
"current field in the billing form."
|
8088 |
-
msgstr ""
|
8089 |
-
|
8090 |
-
#: core/lib/wpbc_all_translations1.php:561 inc/gateways/page-gateways.php:343
|
8091 |
-
msgid "Customer Email"
|
8092 |
-
msgstr ""
|
8093 |
-
|
8094 |
-
#: core/lib/wpbc_all_translations1.php:562 inc/gateways/page-gateways.php:351
|
8095 |
-
msgid "First Name(s)"
|
8096 |
-
msgstr ""
|
8097 |
-
|
8098 |
-
#: core/lib/wpbc_all_translations1.php:563 inc/gateways/page-gateways.php:359
|
8099 |
-
msgid "Last name"
|
8100 |
-
msgstr ""
|
8101 |
-
|
8102 |
-
#: core/lib/wpbc_all_translations1.php:564 inc/gateways/page-gateways.php:375
|
8103 |
-
msgid "Billing Address"
|
8104 |
-
msgstr ""
|
8105 |
-
|
8106 |
-
#: core/lib/wpbc_all_translations1.php:565 inc/gateways/page-gateways.php:383
|
8107 |
-
msgid "Billing City"
|
8108 |
-
msgstr ""
|
8109 |
-
|
8110 |
-
#: core/lib/wpbc_all_translations1.php:566 inc/gateways/page-gateways.php:400
|
8111 |
-
msgid "Post Code"
|
8112 |
-
msgstr ""
|
8113 |
-
|
8114 |
-
#: core/lib/wpbc_all_translations1.php:567 inc/gateways/page-gateways.php:408
|
8115 |
-
msgid "State"
|
8116 |
-
msgstr ""
|
8117 |
-
|
8118 |
-
#: core/lib/wpbc_all_translations1.php:568 inc/gateways/page-gateways.php:420
|
8119 |
-
msgid "Show booking details in payment form"
|
8120 |
-
msgstr ""
|
8121 |
-
|
8122 |
-
#: core/lib/wpbc_all_translations1.php:569 inc/gateways/page-gateways.php:421
|
8123 |
-
#, php-format
|
8124 |
-
msgid ""
|
8125 |
-
" Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
|
8126 |
-
msgstr ""
|
8127 |
-
|
8128 |
-
#: core/lib/wpbc_all_translations1.php:570 inc/gateways/page-gateways.php:432
|
8129 |
-
msgid "Configure booking details summary above the payment form"
|
8130 |
-
msgstr ""
|
8131 |
-
|
8132 |
-
#: core/lib/wpbc_all_translations1.php:571 inc/gateways/page-gateways.php:551
|
8133 |
-
msgid "Payments"
|
8134 |
-
msgstr ""
|
8135 |
-
|
8136 |
-
#: core/lib/wpbc_all_translations1.php:572 inc/gateways/page-gateways.php:552
|
8137 |
-
msgid "Customizaton of Payment"
|
8138 |
-
msgstr ""
|
8139 |
-
|
8140 |
-
#: core/lib/wpbc_all_translations1.php:573 inc/gateways/page-gateways.php:553
|
8141 |
-
msgid "Payment Gateways"
|
8142 |
-
msgstr ""
|
8143 |
-
|
8144 |
-
#: core/lib/wpbc_all_translations1.php:574 inc/gateways/page-gateways.php:569
|
8145 |
-
msgid "Payment Settings"
|
8146 |
-
msgstr ""
|
8147 |
-
|
8148 |
-
#: core/lib/wpbc_all_translations1.php:575 inc/gateways/page-gateways.php:570
|
8149 |
-
msgid "Payment Gateways - General Settings"
|
8150 |
-
msgstr ""
|
8151 |
-
|
8152 |
-
#: core/lib/wpbc_all_translations1.php:576 inc/gateways/page-gateways.php:637
|
8153 |
-
#: inc/gateways/page-gateways.php:661
|
8154 |
-
msgid "Active Payment Gateways"
|
8155 |
-
msgstr ""
|
8156 |
-
|
8157 |
-
#: core/lib/wpbc_all_translations1.php:577 inc/gateways/page-gateways.php:641
|
8158 |
-
#: inc/gateways/page-gateways.php:679
|
8159 |
-
msgid "Billing form fields"
|
8160 |
-
msgstr ""
|
8161 |
-
|
8162 |
-
#: core/lib/wpbc_all_translations1.php:578 inc/gateways/page-gateways.php:640
|
8163 |
-
#: inc/gateways/page-gateways.php:689
|
8164 |
-
msgid "Payment Description"
|
8165 |
-
msgstr ""
|
8166 |
-
|
8167 |
-
#: core/lib/wpbc_all_translations1.php:579 inc/gateways/page-gateways.php:886
|
8168 |
-
msgid "Gateway"
|
8169 |
-
msgstr ""
|
8170 |
-
|
8171 |
-
#: core/lib/wpbc_all_translations1.php:580 inc/gateways/page-gateways.php:936
|
8172 |
-
#, php-format
|
8173 |
-
msgid "Some currencies at payment gateways are different from main currency %s"
|
8174 |
-
msgstr ""
|
8175 |
-
|
8176 |
-
#: core/lib/wpbc_all_translations1.php:581 inc/gateways/page-gateways.php:940
|
8177 |
-
#, php-format
|
8178 |
-
msgid ""
|
8179 |
-
"Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
|
8180 |
-
"payment form without currency exchange! Its can be reason of wrong cost."
|
8181 |
-
msgstr ""
|
8182 |
-
|
8183 |
-
#: core/lib/wpbc_all_translations1.php:582 inc/gateways/page-gateways.php:1089
|
8184 |
-
msgid "ID of booking"
|
8185 |
-
msgstr ""
|
8186 |
-
|
8187 |
-
#: core/lib/wpbc_all_translations1.php:583 inc/gateways/page-gateways.php:1090
|
8188 |
-
msgid "ID of booking resources"
|
8189 |
-
msgstr ""
|
8190 |
-
|
8191 |
-
#: core/lib/wpbc_all_translations1.php:584 inc/gateways/page-gateways.php:1096
|
8192 |
-
msgid "current date"
|
8193 |
-
msgstr ""
|
8194 |
-
|
8195 |
-
#: core/lib/wpbc_all_translations1.php:585 inc/gateways/page-gateways.php:1097
|
8196 |
-
msgid "current time"
|
8197 |
-
msgstr ""
|
8198 |
-
|
8199 |
-
#: core/lib/wpbc_all_translations1.php:586 inc/gateways/page-gateways.php:1103
|
8200 |
-
msgid "content data of this booking"
|
8201 |
-
msgstr ""
|
8202 |
-
|
8203 |
-
#: core/lib/wpbc_all_translations1.php:587 inc/gateways/page-gateways.php:1104
|
8204 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
|
8205 |
-
msgid "show amount to pay"
|
8206 |
-
msgstr ""
|
8207 |
-
|
8208 |
-
#: core/lib/wpbc_all_translations1.php:588 inc/gateways/page-gateways.php:1106
|
8209 |
-
msgid "total booking cost"
|
8210 |
-
msgstr ""
|
8211 |
-
|
8212 |
-
#: core/lib/wpbc_all_translations1.php:589 inc/gateways/page-gateways.php:1107
|
8213 |
-
msgid "deposit cost"
|
8214 |
-
msgstr ""
|
8215 |
-
|
8216 |
-
#: core/lib/wpbc_all_translations1.php:590 inc/gateways/page-gateways.php:1108
|
8217 |
-
msgid "balance cost"
|
8218 |
-
msgstr ""
|
8219 |
-
|
8220 |
-
#: core/lib/wpbc_all_translations1.php:591 inc/gateways/page-gateways.php:1109
|
8221 |
-
msgid "original booking cost"
|
8222 |
-
msgstr ""
|
8223 |
-
|
8224 |
-
#: core/lib/wpbc_all_translations1.php:592 inc/gateways/page-gateways.php:1110
|
8225 |
-
msgid "additional booking cost"
|
8226 |
-
msgstr ""
|
8227 |
-
|
8228 |
-
#: core/lib/wpbc_all_translations1.php:593 inc/gateways/page-gateways.php:1461
|
8229 |
-
msgid "Amount to pay"
|
8230 |
-
msgstr ""
|
8231 |
-
|
8232 |
-
#: core/lib/wpbc_all_translations1.php:594 inc/gateways/page-gateways.php:1555
|
8233 |
-
#, php-format
|
8234 |
-
msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
|
8235 |
-
msgstr ""
|
8236 |
-
|
8237 |
-
#: core/lib/wpbc_all_translations1.php:595 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:204
|
8238 |
-
#: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
|
8239 |
-
msgid "Pay in Cash"
|
8240 |
-
msgstr ""
|
8241 |
-
|
8242 |
-
#: core/lib/wpbc_all_translations1.php:596 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:284
|
8243 |
-
msgid "Integration of Pay in Cash payment system"
|
8244 |
-
msgstr ""
|
8245 |
-
|
8246 |
-
#: core/lib/wpbc_all_translations1.php:597 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:362
|
8247 |
-
#, php-format
|
8248 |
-
msgid "If you accept %scash payment%s, you can write details about it here"
|
8249 |
-
msgstr ""
|
8250 |
-
|
8251 |
-
#: core/lib/wpbc_all_translations1.php:598 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:523
|
8252 |
-
#, php-format
|
8253 |
-
msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
|
8254 |
-
msgstr ""
|
8255 |
-
|
8256 |
-
#: core/lib/wpbc_all_translations1.php:599 inc/gateways/paypal/ipn.php:120
|
8257 |
-
msgid "Error IPN"
|
8258 |
-
msgstr ""
|
8259 |
-
|
8260 |
-
#: core/lib/wpbc_all_translations1.php:600 inc/gateways/paypal/ipn.php:250
|
8261 |
-
msgid "Verified IPN"
|
8262 |
-
msgstr ""
|
8263 |
-
|
8264 |
-
#: core/lib/wpbc_all_translations1.php:601 inc/gateways/paypal/ipn.php:273
|
8265 |
-
msgid "Invalid IPN"
|
8266 |
-
msgstr ""
|
8267 |
-
|
8268 |
-
#: core/lib/wpbc_all_translations1.php:602 inc/gateways/paypal/wpbc-gw-paypal.php:334
|
8269 |
-
msgid "Make payments with payPal - its fast, free and secure!"
|
8270 |
-
msgstr ""
|
8271 |
-
|
8272 |
-
#: core/lib/wpbc_all_translations1.php:603 inc/gateways/paypal/wpbc-gw-paypal.php:373
|
8273 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:861
|
8274 |
-
msgid "Paypal Standard"
|
8275 |
-
msgstr ""
|
8276 |
-
|
8277 |
-
#: core/lib/wpbc_all_translations1.php:604 inc/gateways/paypal/wpbc-gw-paypal.php:377
|
8278 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:861
|
8279 |
-
msgid "Paypal Pro Hosted Solution"
|
8280 |
-
msgstr ""
|
8281 |
-
|
8282 |
-
#: core/lib/wpbc_all_translations1.php:605 inc/gateways/paypal/wpbc-gw-paypal.php:384
|
8283 |
-
msgid "Account Type"
|
8284 |
-
msgstr ""
|
8285 |
-
|
8286 |
-
#: core/lib/wpbc_all_translations1.php:606 inc/gateways/paypal/wpbc-gw-paypal.php:396
|
8287 |
-
msgid "Paypal Email address to receive payments"
|
8288 |
-
msgstr ""
|
8289 |
-
|
8290 |
-
#: core/lib/wpbc_all_translations1.php:607 inc/gateways/paypal/wpbc-gw-paypal.php:398
|
8291 |
-
msgid "This is the Paypal Email address where payments will be sent"
|
8292 |
-
msgstr ""
|
8293 |
-
|
8294 |
-
#: core/lib/wpbc_all_translations1.php:608 inc/gateways/paypal/wpbc-gw-paypal.php:412
|
8295 |
-
msgid "Secure Merchant ID"
|
8296 |
-
msgstr ""
|
8297 |
-
|
8298 |
-
#: core/lib/wpbc_all_translations1.php:609 inc/gateways/paypal/wpbc-gw-paypal.php:414
|
8299 |
-
msgid "This is the Secure Merchant ID, which can be found on the profile page"
|
8300 |
-
msgstr ""
|
8301 |
-
|
8302 |
-
#: core/lib/wpbc_all_translations1.php:610 inc/gateways/paypal/wpbc-gw-paypal.php:429
|
8303 |
-
msgid ""
|
8304 |
-
" Indicates whether the transaction is payment on a final sale or an authorization for a final "
|
8305 |
-
"sale, to be captured later. "
|
8306 |
-
msgstr ""
|
8307 |
-
|
8308 |
-
#: core/lib/wpbc_all_translations1.php:611 inc/gateways/paypal/wpbc-gw-paypal.php:433
|
8309 |
-
msgid "Sale"
|
8310 |
-
msgstr ""
|
8311 |
-
|
8312 |
-
#: core/lib/wpbc_all_translations1.php:612 inc/gateways/paypal/wpbc-gw-paypal.php:434
|
8313 |
-
msgid "Authorization"
|
8314 |
-
msgstr ""
|
8315 |
-
|
8316 |
-
#: core/lib/wpbc_all_translations1.php:613 inc/gateways/paypal/wpbc-gw-paypal.php:445
|
8317 |
-
msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
|
8318 |
-
msgstr ""
|
8319 |
-
|
8320 |
-
#: core/lib/wpbc_all_translations1.php:614 inc/gateways/paypal/wpbc-gw-paypal.php:451
|
8321 |
-
msgid "Sandbox"
|
8322 |
-
msgstr ""
|
8323 |
-
|
8324 |
-
#: core/lib/wpbc_all_translations1.php:615 inc/gateways/paypal/wpbc-gw-paypal.php:461
|
8325 |
-
msgid "British Pound"
|
8326 |
-
msgstr ""
|
8327 |
-
|
8328 |
-
#: core/lib/wpbc_all_translations1.php:616 inc/gateways/paypal/wpbc-gw-paypal.php:462
|
8329 |
-
msgid "Japanese Yen"
|
8330 |
-
msgstr ""
|
8331 |
-
|
8332 |
-
#: core/lib/wpbc_all_translations1.php:617 inc/gateways/paypal/wpbc-gw-paypal.php:463
|
8333 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:455
|
8334 |
-
msgid "Australian Dollars"
|
8335 |
-
msgstr ""
|
8336 |
-
|
8337 |
-
#: core/lib/wpbc_all_translations1.php:618 inc/gateways/paypal/wpbc-gw-paypal.php:465
|
8338 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:457
|
8339 |
-
msgid "New Zealand Dollar"
|
8340 |
-
msgstr ""
|
8341 |
-
|
8342 |
-
#: core/lib/wpbc_all_translations1.php:619 inc/gateways/paypal/wpbc-gw-paypal.php:466
|
8343 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:458
|
8344 |
-
msgid "Swiss Franc"
|
8345 |
-
msgstr ""
|
8346 |
-
|
8347 |
-
#: core/lib/wpbc_all_translations1.php:620 inc/gateways/paypal/wpbc-gw-paypal.php:467
|
8348 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:459
|
8349 |
-
msgid "Hong Kong Dollar"
|
8350 |
-
msgstr ""
|
8351 |
-
|
8352 |
-
#: core/lib/wpbc_all_translations1.php:621 inc/gateways/paypal/wpbc-gw-paypal.php:468
|
8353 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:460
|
8354 |
-
msgid "Singapore Dollar"
|
8355 |
-
msgstr ""
|
8356 |
-
|
8357 |
-
#: core/lib/wpbc_all_translations1.php:622 inc/gateways/paypal/wpbc-gw-paypal.php:469
|
8358 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:461
|
8359 |
-
msgid "Swedish Krona"
|
8360 |
-
msgstr ""
|
8361 |
-
|
8362 |
-
#: core/lib/wpbc_all_translations1.php:623 inc/gateways/paypal/wpbc-gw-paypal.php:470
|
8363 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:462
|
8364 |
-
msgid "Danish Krone"
|
8365 |
-
msgstr ""
|
8366 |
-
|
8367 |
-
#: core/lib/wpbc_all_translations1.php:624 inc/gateways/paypal/wpbc-gw-paypal.php:471
|
8368 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:463
|
8369 |
-
msgid "Polish Zloty"
|
8370 |
-
msgstr ""
|
8371 |
-
|
8372 |
-
#: core/lib/wpbc_all_translations1.php:625 inc/gateways/paypal/wpbc-gw-paypal.php:472
|
8373 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:464
|
8374 |
-
msgid "Norwegian Krone"
|
8375 |
-
msgstr ""
|
8376 |
-
|
8377 |
-
#: core/lib/wpbc_all_translations1.php:626 inc/gateways/paypal/wpbc-gw-paypal.php:473
|
8378 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:465
|
8379 |
-
msgid "Hungarian Forint"
|
8380 |
-
msgstr ""
|
8381 |
-
|
8382 |
-
#: core/lib/wpbc_all_translations1.php:627 inc/gateways/paypal/wpbc-gw-paypal.php:474
|
8383 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:466
|
8384 |
-
msgid "Czech Koruna"
|
8385 |
-
msgstr ""
|
8386 |
-
|
8387 |
-
#: core/lib/wpbc_all_translations1.php:628 inc/gateways/paypal/wpbc-gw-paypal.php:475
|
8388 |
-
msgid "Israeli New Shekel"
|
8389 |
-
msgstr ""
|
8390 |
-
|
8391 |
-
#: core/lib/wpbc_all_translations1.php:629 inc/gateways/paypal/wpbc-gw-paypal.php:476
|
8392 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:468
|
8393 |
-
msgid "Mexican Peso"
|
8394 |
-
msgstr ""
|
8395 |
-
|
8396 |
-
#: core/lib/wpbc_all_translations1.php:630 inc/gateways/paypal/wpbc-gw-paypal.php:477
|
8397 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:469
|
8398 |
-
msgid "Brazilian Real (only for Brazilian users)"
|
8399 |
-
msgstr ""
|
8400 |
-
|
8401 |
-
#: core/lib/wpbc_all_translations1.php:631 inc/gateways/paypal/wpbc-gw-paypal.php:478
|
8402 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:470
|
8403 |
-
msgid "Malaysian Ringgits (only for Malaysian users)"
|
8404 |
-
msgstr ""
|
8405 |
-
|
8406 |
-
#: core/lib/wpbc_all_translations1.php:632 inc/gateways/paypal/wpbc-gw-paypal.php:480
|
8407 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:472
|
8408 |
-
msgid "Taiwan New Dollars"
|
8409 |
-
msgstr ""
|
8410 |
-
|
8411 |
-
#: core/lib/wpbc_all_translations1.php:633 inc/gateways/paypal/wpbc-gw-paypal.php:481
|
8412 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:473
|
8413 |
-
msgid "Thai Baht"
|
8414 |
-
msgstr ""
|
8415 |
-
|
8416 |
-
#: core/lib/wpbc_all_translations1.php:634 inc/gateways/paypal/wpbc-gw-paypal.php:482
|
8417 |
-
msgid "Turkish Lira (only for Turkish members)"
|
8418 |
-
msgstr ""
|
8419 |
-
|
8420 |
-
#: core/lib/wpbc_all_translations1.php:635 inc/gateways/paypal/wpbc-gw-paypal.php:501
|
8421 |
-
msgid "Custom button title"
|
8422 |
-
msgstr ""
|
8423 |
-
|
8424 |
-
#: core/lib/wpbc_all_translations1.php:636 inc/gateways/paypal/wpbc-gw-paypal.php:508
|
8425 |
-
msgid "Payment Button type"
|
8426 |
-
msgstr ""
|
8427 |
-
|
8428 |
-
#: core/lib/wpbc_all_translations1.php:637 inc/gateways/paypal/wpbc-gw-paypal.php:563
|
8429 |
-
msgid "Show Reference Text Box"
|
8430 |
-
msgstr ""
|
8431 |
-
|
8432 |
-
#: core/lib/wpbc_all_translations1.php:638 inc/gateways/paypal/wpbc-gw-paypal.php:564
|
8433 |
-
msgid "Check this box to show Reference Text Box"
|
8434 |
-
msgstr ""
|
8435 |
-
|
8436 |
-
#: core/lib/wpbc_all_translations1.php:639 inc/gateways/paypal/wpbc-gw-paypal.php:572
|
8437 |
-
#: inc/gateways/paypal/wpbc-gw-paypal.php:573 inc/gateways/paypal/wpbc-gw-paypal.php:1370
|
8438 |
-
msgid "Enter your phone number"
|
8439 |
-
msgstr ""
|
8440 |
-
|
8441 |
-
#: core/lib/wpbc_all_translations1.php:640 inc/gateways/paypal/wpbc-gw-paypal.php:574
|
8442 |
-
msgid "Reference Text Box Title"
|
8443 |
-
msgstr ""
|
8444 |
-
|
8445 |
-
#: core/lib/wpbc_all_translations1.php:641 inc/gateways/paypal/wpbc-gw-paypal.php:575
|
8446 |
-
msgid ""
|
8447 |
-
"Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
|
8448 |
-
msgstr ""
|
8449 |
-
|
8450 |
-
#: core/lib/wpbc_all_translations1.php:642 inc/gateways/paypal/wpbc-gw-paypal.php:596
|
8451 |
-
msgid "Return URL from PayPal"
|
8452 |
-
msgstr ""
|
8453 |
-
|
8454 |
-
#: core/lib/wpbc_all_translations1.php:643 inc/gateways/paypal/wpbc-gw-paypal.php:627
|
8455 |
-
msgid "Cancel Return URL from PayPal"
|
8456 |
-
msgstr ""
|
8457 |
-
|
8458 |
-
#: core/lib/wpbc_all_translations1.php:644 inc/gateways/paypal/wpbc-gw-paypal.php:696
|
8459 |
-
#, php-format
|
8460 |
-
msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
|
8461 |
-
msgstr ""
|
8462 |
-
|
8463 |
-
#: core/lib/wpbc_all_translations1.php:645 inc/gateways/paypal/wpbc-gw-paypal.php:697
|
8464 |
-
msgid "Follow these steps to configure it:"
|
8465 |
-
msgstr ""
|
8466 |
-
|
8467 |
-
#: core/lib/wpbc_all_translations1.php:646 inc/gateways/paypal/wpbc-gw-paypal.php:699
|
8468 |
-
msgid "Log in to your PayPal account."
|
8469 |
-
msgstr ""
|
8470 |
-
|
8471 |
-
#: core/lib/wpbc_all_translations1.php:647 inc/gateways/paypal/wpbc-gw-paypal.php:700
|
8472 |
-
msgid "Click the Profile subtab."
|
8473 |
-
msgstr ""
|
8474 |
-
|
8475 |
-
#: core/lib/wpbc_all_translations1.php:648 inc/gateways/paypal/wpbc-gw-paypal.php:701
|
8476 |
-
msgid "Click Website Payment Preferences in the Seller Preferences column."
|
8477 |
-
msgstr ""
|
8478 |
-
|
8479 |
-
#: core/lib/wpbc_all_translations1.php:649 inc/gateways/paypal/wpbc-gw-paypal.php:702
|
8480 |
-
msgid "Under Auto Return for Website Payments, click the On radio button."
|
8481 |
-
msgstr ""
|
8482 |
-
|
8483 |
-
#: core/lib/wpbc_all_translations1.php:650 inc/gateways/paypal/wpbc-gw-paypal.php:703
|
8484 |
-
msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
|
8485 |
-
msgstr ""
|
8486 |
-
|
8487 |
-
#: core/lib/wpbc_all_translations1.php:651 inc/gateways/paypal/wpbc-gw-paypal.php:712
|
8488 |
-
msgid ""
|
8489 |
-
"Instant Payment Notification (IPN) is a message service that notifies you of events related to "
|
8490 |
-
"PayPal transactions"
|
8491 |
-
msgstr ""
|
8492 |
-
|
8493 |
-
#: core/lib/wpbc_all_translations1.php:652 inc/gateways/paypal/wpbc-gw-paypal.php:721
|
8494 |
-
msgid "Sending email for verified transaction"
|
8495 |
-
msgstr ""
|
8496 |
-
|
8497 |
-
#: core/lib/wpbc_all_translations1.php:653 inc/gateways/paypal/wpbc-gw-paypal.php:731
|
8498 |
-
#, php-format
|
8499 |
-
msgid "Email for getting report for %sverified%s transactions."
|
8500 |
-
msgstr ""
|
8501 |
-
|
8502 |
-
#: core/lib/wpbc_all_translations1.php:654 inc/gateways/paypal/wpbc-gw-paypal.php:744
|
8503 |
-
msgid "Sending email for invalid transaction"
|
8504 |
-
msgstr ""
|
8505 |
-
|
8506 |
-
#: core/lib/wpbc_all_translations1.php:655 inc/gateways/paypal/wpbc-gw-paypal.php:754
|
8507 |
-
#, php-format
|
8508 |
-
msgid "Email for getting report for %sinvalid%s transactions."
|
8509 |
-
msgstr ""
|
8510 |
-
|
8511 |
-
#: core/lib/wpbc_all_translations1.php:656 inc/gateways/paypal/wpbc-gw-paypal.php:767
|
8512 |
-
msgid "Sending email if error occur during verification"
|
8513 |
-
msgstr ""
|
8514 |
-
|
8515 |
-
#: core/lib/wpbc_all_translations1.php:657 inc/gateways/paypal/wpbc-gw-paypal.php:777
|
8516 |
-
#, php-format
|
8517 |
-
msgid "Email for getting report for %ssome errors in verification process%s."
|
8518 |
-
msgstr ""
|
8519 |
-
|
8520 |
-
#: core/lib/wpbc_all_translations1.php:658 inc/gateways/paypal/wpbc-gw-paypal.php:789
|
8521 |
-
msgid "Use SSL connection"
|
8522 |
-
msgstr ""
|
8523 |
-
|
8524 |
-
#: core/lib/wpbc_all_translations1.php:659 inc/gateways/paypal/wpbc-gw-paypal.php:790
|
8525 |
-
msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
|
8526 |
-
msgstr ""
|
8527 |
-
|
8528 |
-
#: core/lib/wpbc_all_translations1.php:660 inc/gateways/paypal/wpbc-gw-paypal.php:797
|
8529 |
-
msgid "Use cURL posting"
|
8530 |
-
msgstr ""
|
8531 |
-
|
8532 |
-
#: core/lib/wpbc_all_translations1.php:661 inc/gateways/paypal/wpbc-gw-paypal.php:798
|
8533 |
-
msgid "Use the cURL for posting data, instead of fsockopen() function"
|
8534 |
-
msgstr ""
|
8535 |
-
|
8536 |
-
#: core/lib/wpbc_all_translations1.php:662 inc/gateways/paypal/wpbc-gw-paypal.php:814
|
8537 |
-
msgid " Follow these instructions to set up your listener at your PayPal account:"
|
8538 |
-
msgstr ""
|
8539 |
-
|
8540 |
-
#: core/lib/wpbc_all_translations1.php:663 inc/gateways/paypal/wpbc-gw-paypal.php:816
|
8541 |
-
msgid "Click Profile on the My Account tab."
|
8542 |
-
msgstr ""
|
8543 |
-
|
8544 |
-
#: core/lib/wpbc_all_translations1.php:664 inc/gateways/paypal/wpbc-gw-paypal.php:817
|
8545 |
-
msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
|
8546 |
-
msgstr ""
|
8547 |
-
|
8548 |
-
#: core/lib/wpbc_all_translations1.php:665 inc/gateways/paypal/wpbc-gw-paypal.php:818
|
8549 |
-
msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
|
8550 |
-
msgstr ""
|
8551 |
-
|
8552 |
-
#: core/lib/wpbc_all_translations1.php:666 inc/gateways/paypal/wpbc-gw-paypal.php:819
|
8553 |
-
msgid "Specify the URL for your listener in the Notification URL field as:"
|
8554 |
-
msgstr ""
|
8555 |
-
|
8556 |
-
#: core/lib/wpbc_all_translations1.php:667 inc/gateways/paypal/wpbc-gw-paypal.php:821
|
8557 |
-
msgid "Click Receive IPN messages (Enabled) to enable your listener."
|
8558 |
-
msgstr ""
|
8559 |
-
|
8560 |
-
#: core/lib/wpbc_all_translations1.php:668 inc/gateways/paypal/wpbc-gw-paypal.php:822
|
8561 |
-
msgid "Click Save."
|
8562 |
-
msgstr ""
|
8563 |
-
|
8564 |
-
#: core/lib/wpbc_all_translations1.php:669 inc/gateways/paypal/wpbc-gw-paypal.php:823
|
8565 |
-
msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
|
8566 |
-
msgstr ""
|
8567 |
-
|
8568 |
-
#: core/lib/wpbc_all_translations1.php:670 inc/gateways/paypal/wpbc-gw-paypal.php:985
|
8569 |
-
msgid "PayPal"
|
8570 |
-
msgstr ""
|
8571 |
-
|
8572 |
-
#: core/lib/wpbc_all_translations1.php:671 inc/gateways/paypal/wpbc-gw-paypal.php:987
|
8573 |
-
msgid "Integration of Paypal payment system"
|
8574 |
-
msgstr ""
|
8575 |
-
|
8576 |
-
#: core/lib/wpbc_all_translations1.php:672 inc/gateways/paypal/wpbc-gw-paypal.php:1108
|
8577 |
-
msgid "PayPal IPN"
|
8578 |
-
msgstr ""
|
8579 |
-
|
8580 |
-
#: core/lib/wpbc_all_translations1.php:673 inc/gateways/sage/wpbc-gw-sage.php:355
|
8581 |
-
#, php-format
|
8582 |
-
msgid "Pay using %s payment service"
|
8583 |
-
msgstr ""
|
8584 |
-
|
8585 |
-
#: core/lib/wpbc_all_translations1.php:674 inc/gateways/sage/wpbc-gw-sage.php:395
|
8586 |
-
msgid "Vendor Name"
|
8587 |
-
msgstr ""
|
8588 |
-
|
8589 |
-
#: core/lib/wpbc_all_translations1.php:675 inc/gateways/sage/wpbc-gw-sage.php:397
|
8590 |
-
msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
|
8591 |
-
msgstr ""
|
8592 |
-
|
8593 |
-
#: core/lib/wpbc_all_translations1.php:676 inc/gateways/sage/wpbc-gw-sage.php:410
|
8594 |
-
msgid "XOR Encryption password"
|
8595 |
-
msgstr ""
|
8596 |
-
|
8597 |
-
#: core/lib/wpbc_all_translations1.php:677 inc/gateways/sage/wpbc-gw-sage.php:412
|
8598 |
-
msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
|
8599 |
-
msgstr ""
|
8600 |
-
|
8601 |
-
#: core/lib/wpbc_all_translations1.php:678 inc/gateways/ideal/wpbc-gw-ideal.php:421
|
8602 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:425
|
8603 |
-
msgid "Select TEST for the Test Server and LIVE in the live environment"
|
8604 |
-
msgstr ""
|
8605 |
-
|
8606 |
-
#: core/lib/wpbc_all_translations1.php:679 inc/gateways/ideal/wpbc-gw-ideal.php:433
|
8607 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:533
|
8608 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:576
|
8609 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:591
|
8610 |
-
msgid "TEST"
|
8611 |
-
msgstr ""
|
8612 |
-
|
8613 |
-
#: core/lib/wpbc_all_translations1.php:680 inc/gateways/ideal/wpbc-gw-ideal.php:434
|
8614 |
-
#: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:534
|
8615 |
-
msgid "LIVE"
|
8616 |
-
msgstr ""
|
8617 |
-
|
8618 |
-
#: core/lib/wpbc_all_translations1.php:681 inc/gateways/sage/wpbc-gw-sage.php:439
|
8619 |
-
msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
|
8620 |
-
msgstr ""
|
8621 |
-
|
8622 |
-
#: core/lib/wpbc_all_translations1.php:682 inc/gateways/sage/wpbc-gw-sage.php:443
|
8623 |
-
msgid "PAYMENT"
|
8624 |
-
msgstr ""
|
8625 |
-
|
8626 |
-
#: core/lib/wpbc_all_translations1.php:683 inc/gateways/sage/wpbc-gw-sage.php:444
|
8627 |
-
msgid "DEFERRED"
|
8628 |
-
msgstr ""
|
8629 |
-
|
8630 |
-
#: core/lib/wpbc_all_translations1.php:684 inc/gateways/sage/wpbc-gw-sage.php:445
|
8631 |
-
msgid "AUTHENTICATE"
|
8632 |
-
msgstr ""
|
8633 |
-
|
8634 |
-
#: core/lib/wpbc_all_translations1.php:685 inc/gateways/sage/wpbc-gw-sage.php:454
|
8635 |
-
msgid "Yen"
|
8636 |
-
msgstr ""
|
8637 |
-
|
8638 |
-
#: core/lib/wpbc_all_translations1.php:686 inc/gateways/sage/wpbc-gw-sage.php:467
|
8639 |
-
msgid "Israeli Shekel"
|
8640 |
-
msgstr ""
|
8641 |
-
|
8642 |
-
#: core/lib/wpbc_all_translations1.php:687 inc/gateways/sage/wpbc-gw-sage.php:782
|
8643 |
-
msgid "Sage"
|
8644 |
-
msgstr ""
|
8645 |
-
|
8646 |
-
#: core/lib/wpbc_all_translations1.php:688 inc/gateways/sage/wpbc-gw-sage.php:784
|
8647 |
-
msgid "Integration of Sage payment system"
|
8648 |
-
msgstr ""
|
8649 |
-
|
8650 |
-
#: core/lib/wpbc_all_translations1.php:689 inc/gateways/sage/wpbc-gw-sage.php:876
|
8651 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1143
|
8652 |
-
#, php-format
|
8653 |
-
msgid "If you have no account on this system, please visit %s to create one."
|
8654 |
-
msgstr ""
|
8655 |
-
|
8656 |
-
#: core/lib/wpbc_all_translations1.php:690 core/wpbc-functions.php:3515
|
8657 |
-
msgid "Payment rejected"
|
8658 |
-
msgstr ""
|
8659 |
-
|
8660 |
-
#: core/lib/wpbc_all_translations1.php:691 inc/gateways/ideal/wpbc-gw-ideal.php:389
|
8661 |
-
msgid "Merchant ID"
|
8662 |
-
msgstr ""
|
8663 |
-
|
8664 |
-
#: core/lib/wpbc_all_translations1.php:692 inc/gateways/ideal/wpbc-gw-ideal.php:391
|
8665 |
-
msgid "Enter your iDEAL Merchant ID"
|
8666 |
-
msgstr ""
|
8667 |
-
|
8668 |
-
#: core/lib/wpbc_all_translations1.php:693 inc/gateways/ideal/wpbc-gw-ideal.php:406
|
8669 |
-
msgid "Enter your iDEAL Merchant Key."
|
8670 |
-
msgstr ""
|
8671 |
-
|
8672 |
-
#: core/lib/wpbc_all_translations1.php:694 inc/gateways/ideal/wpbc-gw-ideal.php:424
|
8673 |
-
#, php-format
|
8674 |
-
msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
|
8675 |
-
msgstr ""
|
8676 |
-
|
8677 |
-
#: core/lib/wpbc_all_translations1.php:695 inc/gateways/ideal/wpbc-gw-ideal.php:425
|
8678 |
-
msgid "Test with Simulator"
|
8679 |
-
msgstr ""
|
8680 |
-
|
8681 |
-
#: core/lib/wpbc_all_translations1.php:696 inc/gateways/ideal/wpbc-gw-ideal.php:427
|
8682 |
-
msgid "My Profile – Connection"
|
8683 |
-
msgstr ""
|
8684 |
-
|
8685 |
-
#: core/lib/wpbc_all_translations1.php:697 inc/gateways/ideal/wpbc-gw-ideal.php:483
|
8686 |
-
#, php-format
|
8687 |
-
msgid ""
|
8688 |
-
"If not supplied then the description as configured in the administration/management portal "
|
8689 |
-
"section will be used. If the option %s is selected then the configured description will always "
|
8690 |
-
"be applied."
|
8691 |
-
msgstr ""
|
8692 |
-
|
8693 |
-
#: core/lib/wpbc_all_translations1.php:698 inc/gateways/ideal/wpbc-gw-ideal.php:484
|
8694 |
-
msgid "Always use Description"
|
8695 |
-
msgstr ""
|
8696 |
-
|
8697 |
-
#: core/lib/wpbc_all_translations1.php:699 inc/gateways/ideal/wpbc-gw-ideal.php:803
|
8698 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1050
|
8699 |
-
#, php-format
|
8700 |
-
msgid "Integration of %s payment system"
|
8701 |
-
msgstr ""
|
8702 |
-
|
8703 |
-
#: core/lib/wpbc_all_translations1.php:700 inc/gateways/ideal/wpbc-gw-ideal.php:894
|
8704 |
-
#, php-format
|
8705 |
-
msgid "Processing your %s payments through %s"
|
8706 |
-
msgstr ""
|
8707 |
-
|
8708 |
-
#: core/lib/wpbc_all_translations1.php:701 core/wpbc-emails.php:266
|
8709 |
-
#, php-format
|
8710 |
-
msgid "%s - inserting link for export booking to"
|
8711 |
-
msgstr ""
|
8712 |
-
|
8713 |
-
#: core/lib/wpbc_all_translations1.php:702 inc/_ps/admin/br-table-export-feeds.php:176
|
8714 |
-
msgid ".ics Feed URL"
|
8715 |
-
msgstr ""
|
8716 |
-
|
8717 |
-
#: core/lib/wpbc_all_translations1.php:703 core/wpbc-emails.php:247 core/wpbc-emails.php:248
|
8718 |
-
#: core/wpbc-emails.php:249 core/wpbc-emails.php:250 core/wpbc-emails.php:251
|
8719 |
-
#: core/wpbc-emails.php:252 core/wpbc-emails.php:253
|
8720 |
-
#, php-format
|
8721 |
-
msgid "%s - inserting modification date of booking "
|
8722 |
-
msgstr ""
|
8723 |
-
|
8724 |
-
#: core/lib/wpbc_all_translations1.php:704 inc/_ps/form/class-wpbc-form-help.php:687
|
8725 |
-
msgid "Coupon discount value of the booking."
|
8726 |
-
msgstr ""
|
8727 |
-
|
8728 |
-
#: core/lib/wpbc_all_translations1.php:705
|
8729 |
-
msgid "Stripe. Ouch, something went wrong!"
|
8730 |
-
msgstr ""
|
8731 |
-
|
8732 |
-
#: core/lib/wpbc_all_translations1.php:706
|
8733 |
-
#, php-format
|
8734 |
-
msgid "Please pay %s"
|
8735 |
-
msgstr ""
|
8736 |
-
|
8737 |
-
#: core/lib/wpbc_all_translations1.php:707 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:528
|
8738 |
-
msgid "Chose payment account"
|
8739 |
-
msgstr ""
|
8740 |
-
|
8741 |
-
#: core/lib/wpbc_all_translations1.php:708 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:544
|
8742 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:576
|
8743 |
-
msgid "Publishable key"
|
8744 |
-
msgstr ""
|
8745 |
-
|
8746 |
-
#: core/lib/wpbc_all_translations1.php:709 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:559
|
8747 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:591
|
8748 |
-
msgid "Secret key"
|
8749 |
-
msgstr ""
|
8750 |
-
|
8751 |
-
#: core/lib/wpbc_all_translations1.php:710 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:763
|
8752 |
-
#: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:812
|
8753 |
-
msgid "For more information:"
|
8754 |
-
msgstr ""
|
8755 |
-
|
8756 |
-
#: core/lib/wpbc_all_translations1.php:711 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1176
|
8757 |
-
#, php-format
|
8758 |
-
msgid "require PHP version %s or newer!"
|
8759 |
-
msgstr ""
|
8760 |
-
|
8761 |
-
#: core/lib/wpbc_all_translations1.php:712 inc/_bl/admin/page-search.php:145
|
8762 |
-
#, php-format
|
8763 |
-
msgid "%s - ID of booking resource, "
|
8764 |
-
msgstr ""
|
8765 |
-
|
8766 |
-
#: core/lib/wpbc_all_translations1.php:713 inc/_bl/admin/page-search.php:146
|
8767 |
-
#, php-format
|
8768 |
-
msgid "%s - ID of page with booking form, "
|
8769 |
-
msgstr ""
|
8770 |
-
|
8771 |
-
#: core/lib/wpbc_all_translations1.php:714 inc/_bs/admin/page-email-payment.php:698
|
8772 |
-
msgid "Email with Payment Request which is sent to Visitor."
|
8773 |
-
msgstr ""
|
8774 |
-
|
8775 |
-
#: core/lib/wpbc_all_translations1.php:715 inc/_ps/admin/page-email-edit.php:558
|
8776 |
-
msgid "Customization of email template, which is sent after modification of booking"
|
8777 |
-
msgstr ""
|
8778 |
-
|
8779 |
-
#: core/lib/wpbc_all_translations1.php:716 inc/_ps/admin/page-email-edit.php:694
|
8780 |
-
msgid "Email is sent to Visitor after Editing of booking."
|
8781 |
-
msgstr ""
|
8782 |
-
|
8783 |
-
#: core/lib/wpbc_all_translations1.php:717 core/lib/wpdev-booking-class.php:720
|
8784 |
-
msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
|
8785 |
-
msgstr ""
|
8786 |
-
|
8787 |
-
#: core/lib/wpbc_all_translations1.php:718 core/lib/wpdev-booking-class.php:1080
|
8788 |
-
msgid "My bookings"
|
8789 |
-
msgstr ""
|
8790 |
-
|
8791 |
-
#: core/lib/wpbc_all_translations1.php:719 core/wpbc-emails.php:273
|
8792 |
-
#, php-format
|
8793 |
-
msgid ""
|
8794 |
-
"%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
|
8795 |
-
"the %s parameter for setting different %s of this page. Example: %s )"
|
8796 |
-
msgstr ""
|
8797 |
-
|
8798 |
-
#: core/lib/wpbc_all_translations1.php:720 inc/_bl/admin/page-search.php:718
|
8799 |
-
msgid "Inline Search Form Template"
|
8800 |
-
msgstr ""
|
8801 |
-
|
8802 |
-
#: core/lib/wpbc_all_translations1.php:721 inc/_bm/admin/api-settings-m.php:275
|
8803 |
-
msgid "Show booking details in tooltip"
|
8804 |
-
msgstr ""
|
8805 |
-
|
8806 |
-
#: core/lib/wpbc_all_translations1.php:722 inc/_bm/admin/api-settings-m.php:276
|
8807 |
-
#, php-format
|
8808 |
-
msgid ""
|
8809 |
-
"Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
|
8810 |
-
"calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
|
8811 |
-
msgstr ""
|
8812 |
-
|
8813 |
-
#: core/lib/wpbc_all_translations1.php:723 inc/_bm/admin/api-settings-m.php:284
|
8814 |
-
msgid "Booking details"
|
8815 |
-
msgstr ""
|
8816 |
-
|
8817 |
-
#: core/lib/wpbc_all_translations1.php:724 inc/_bm/admin/api-settings-m.php:285
|
8818 |
-
msgid "You can use the shortcodes from the bottom form of Settings Fields page."
|
8819 |
-
msgstr ""
|
8820 |
-
|
8821 |
-
#: core/lib/wpbc_all_translations1.php:725 inc/_bm/admin/api-settings-m.php:299
|
8822 |
-
msgid "This option can impact to speed of page loading."
|
8823 |
-
msgstr ""
|
8824 |
-
|
8825 |
-
#: core/lib/wpbc_all_translations1.php:726 inc/_bm/admin/page-cost-advanced.php:680
|
8826 |
-
msgid ""
|
8827 |
-
"Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
|
8828 |
-
"mathematics operations"
|
8829 |
-
msgstr ""
|
8830 |
-
|
8831 |
-
#: core/lib/wpbc_all_translations1.php:727 inc/_bm/admin/page-cost-advanced.php:682
|
8832 |
-
#, php-format
|
8833 |
-
msgid "if selected %s"
|
8834 |
-
msgstr ""
|
8835 |
-
|
8836 |
-
#: core/lib/wpbc_all_translations1.php:728 inc/_bs/admin/api-settings-s.php:304
|
8837 |
-
msgid "Set check out date as available"
|
8838 |
-
msgstr ""
|
8839 |
-
|
8840 |
-
#: core/lib/wpbc_all_translations1.php:729 inc/_bs/admin/api-settings-s.php:305
|
8841 |
-
msgid "Check this option, to remove last selected day of saving to booking."
|
8842 |
-
msgstr ""
|
8843 |
-
|
8844 |
-
#: core/lib/wpbc_all_translations1.php:730 inc/_bs/admin/api-settings-s.php:489
|
8845 |
-
msgid "Auto approve bookings during import"
|
8846 |
-
msgstr ""
|
8847 |
-
|
8848 |
-
#: core/lib/wpbc_all_translations1.php:731 inc/_bs/admin/api-settings-s.php:490
|
8849 |
-
#, php-format
|
8850 |
-
msgid ""
|
8851 |
-
"Check this checkbox to activate auto approve of all bookings %sduring import from external "
|
8852 |
-
"source(s)%s."
|
8853 |
-
msgstr ""
|
8854 |
-
|
8855 |
-
#: core/lib/wpbc_all_translations1.php:732 inc/_bs/admin/api-settings-s.php:497
|
8856 |
-
msgid "Auto approve booking, if booking cost is zero"
|
8857 |
-
msgstr ""
|
8858 |
-
|
8859 |
-
#: core/lib/wpbc_all_translations1.php:733 inc/_bs/admin/api-settings-s.php:498
|
8860 |
-
#, php-format
|
8861 |
-
msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
|
8862 |
-
msgstr ""
|
8863 |
-
|
8864 |
-
#: core/lib/wpbc_all_translations1.php:734 inc/_bs/admin/api-settings-s.php:505
|
8865 |
-
msgid "Auto approve bookings after creation booking in admin panel"
|
8866 |
-
msgstr ""
|
8867 |
-
|
8868 |
-
#: core/lib/wpbc_all_translations1.php:735 inc/_bs/admin/api-settings-s.php:506
|
8869 |
-
#, php-format
|
8870 |
-
msgid ""
|
8871 |
-
"Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
|
8872 |
-
msgstr ""
|
8873 |
-
|
8874 |
-
#: core/lib/wpbc_all_translations1.php:736 inc/_mu/admin/api-settings-u.php:62
|
8875 |
-
msgid "Activate custom booking forms for regular users"
|
8876 |
-
msgstr ""
|
8877 |
-
|
8878 |
-
#: core/lib/wpbc_all_translations1.php:737 inc/_mu/admin/api-settings-u.php:63
|
8879 |
-
msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
|
8880 |
-
msgstr ""
|
8881 |
-
|
8882 |
-
#: core/lib/wpbc_all_translations1.php:738 inc/_ps/admin/api-settings-p.php:98
|
8883 |
-
msgid "Start / End time for Calendar Overview"
|
8884 |
-
msgstr ""
|
8885 |
-
|
8886 |
-
#: core/lib/wpbc_all_translations1.php:739 inc/_ps/admin/api-settings-p.php:146
|
8887 |
-
#, php-format
|
8888 |
-
msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
|
8889 |
-
msgstr ""
|
8890 |
-
|
8891 |
-
#: core/lib/wpbc_all_translations1.php:740 inc/_ps/admin/api-settings-p.php:279
|
8892 |
-
msgid "Show / hide notes"
|
8893 |
-
msgstr ""
|
8894 |
-
|
8895 |
-
#: core/lib/wpbc_all_translations1.php:741 inc/_ps/admin/api-settings-p.php:280
|
8896 |
-
msgid "Check this box if you want to open notes section by default in Booking Listing page."
|
8897 |
-
msgstr ""
|
8898 |
-
|
8899 |
-
#: core/lib/wpbc_all_translations1.php:742 inc/_ps/admin/api-settings-p.php:340
|
8900 |
-
#: js/wpbc-gutenberg.js:1256
|
8901 |
-
msgid "URL of page for customer bookings listing"
|
8902 |
-
msgstr ""
|
8903 |
-
|
8904 |
-
#: core/lib/wpbc_all_translations1.php:743 inc/_ps/admin/api-settings-p.php:341
|
8905 |
-
#, php-format
|
8906 |
-
msgid ""
|
8907 |
-
"Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
|
8908 |
-
msgstr ""
|
8909 |
-
|
8910 |
-
#: core/lib/wpbc_all_translations1.php:744 inc/gateways/page-gateways.php:105
|
8911 |
-
msgid "Do not show payment form, after submit booking form"
|
8912 |
-
msgstr ""
|
8913 |
-
|
8914 |
-
#: core/lib/wpbc_all_translations1.php:745 inc/gateways/page-gateways.php:106
|
8915 |
-
msgid "Check this box if you want to show payment form only after sending payment request by email"
|
8916 |
-
msgstr ""
|
8917 |
-
|
8918 |
-
#: core/lib/wpbc_all_translations1.php:746 inc/gateways/page-gateways.php:115
|
8919 |
-
msgid "Auto send payment request after creation booking in admin panel"
|
8920 |
-
msgstr ""
|
8921 |
-
|
8922 |
-
#: core/lib/wpbc_all_translations1.php:747 inc/gateways/page-gateways.php:116
|
8923 |
-
msgid ""
|
8924 |
-
"Check this box if you want automatically send payment request to visitor, if booking was made in "
|
8925 |
-
"admin panel"
|
8926 |
-
msgstr ""
|
8927 |
-
|
8928 |
-
#: core/lib/wpbc_all_translations1.php:748 inc/gateways/page-gateways.php:139
|
8929 |
-
msgid "Show deposit and total booking cost together"
|
8930 |
-
msgstr ""
|
8931 |
-
|
8932 |
-
#: core/lib/wpbc_all_translations1.php:749 inc/gateways/page-gateways.php:140
|
8933 |
-
msgid ""
|
8934 |
-
"Check this box if you want to show deposit amount and total booking cost, after submit of "
|
8935 |
-
"booking."
|
8936 |
-
msgstr ""
|
8937 |
-
|
8938 |
-
#: core/lib/wpbc_all_translations1.php:750 inc/gateways/page-gateways.php:152
|
8939 |
-
msgid ""
|
8940 |
-
"Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
|
8941 |
-
"not depend from the visitor choice of this payment. You need to check each such payment manually!"
|
8942 |
-
msgstr ""
|
8943 |
-
|
8944 |
-
#: core/lib/wpbc_all_translations1.php:751 inc/gateways/page-gateways.php:187
|
8945 |
-
msgid "Send email on cost changes"
|
8946 |
-
msgstr ""
|
8947 |
-
|
8948 |
-
#: core/lib/wpbc_all_translations1.php:752 inc/gateways/page-gateways.php:188
|
8949 |
-
msgid ""
|
8950 |
-
"Check this box if you want to send booking modification email, if cost of booking was edited in "
|
8951 |
-
"booking listing page."
|
8952 |
-
msgstr ""
|
8953 |
-
|
8954 |
-
#: core/lib/wpbc_all_translations1.php:753 inc/gateways/page-gateways.php:638
|
8955 |
-
#: inc/gateways/page-gateways.php:665
|
8956 |
-
msgid "Payment Options"
|
8957 |
-
msgstr ""
|
8958 |
-
|
8959 |
-
#: core/lib/wpbc_all_translations1.php:754 core/wpbc-js.php:141
|
8960 |
-
msgid "Times:"
|
8961 |
-
msgstr ""
|
8962 |
-
|
8963 |
-
#: core/lib/wpbc_all_translations1.php:755 inc/_bm/admin/page-cost-early-late-booking.php:74
|
8964 |
-
msgid "Set Early / Late Booking"
|
8965 |
-
msgstr ""
|
8966 |
-
|
8967 |
-
#: core/lib/wpbc_all_translations1.php:756 inc/_bm/admin/page-cost-early-late-booking.php:139
|
8968 |
-
#, php-format
|
8969 |
-
msgid "%sEarly booking discount%s for booking resource"
|
8970 |
-
msgstr ""
|
8971 |
-
|
8972 |
-
#: core/lib/wpbc_all_translations1.php:757 inc/_bm/admin/page-cost-early-late-booking.php:157
|
8973 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:166
|
8974 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:185
|
8975 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:358
|
8976 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:367
|
8977 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:386
|
8978 |
-
msgid "Discount"
|
8979 |
-
msgstr ""
|
8980 |
-
|
8981 |
-
#: core/lib/wpbc_all_translations1.php:758 inc/_bm/admin/page-cost-early-late-booking.php:223
|
8982 |
-
#, php-format
|
8983 |
-
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
|
8984 |
-
msgstr ""
|
8985 |
-
|
8986 |
-
#: core/lib/wpbc_all_translations1.php:759 inc/_bm/admin/page-cost-early-late-booking.php:276
|
8987 |
-
#: inc/_bm/admin/page-cost-early-late-booking.php:476
|
8988 |
-
#, php-format
|
8989 |
-
msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
|
8990 |
-
msgstr ""
|
8991 |
-
|
8992 |
-
#: core/lib/wpbc_all_translations1.php:760 inc/_bm/admin/page-cost-early-late-booking.php:340
|
8993 |
-
#, php-format
|
8994 |
-
msgid "%sLast minute booking discount%s for booking resource"
|
8995 |
-
msgstr ""
|
8996 |
-
|
8997 |
-
#: core/lib/wpbc_all_translations1.php:761 inc/_bm/admin/page-cost-early-late-booking.php:424
|
8998 |
-
#, php-format
|
8999 |
-
msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
|
9000 |
-
msgstr ""
|
9001 |
-
|
9002 |
-
#: core/lib/wpbc_all_translations1.php:762 inc/_bm/admin/page-cost.php:222
|
9003 |
-
msgid "Early / Late Booking"
|
9004 |
-
msgstr ""
|
9005 |
-
|
9006 |
-
#: core/lib/wpbc_all_translations1.php:763 inc/_bm/admin/page-cost.php:231
|
9007 |
-
msgid "Set Early / Late Booking Amount"
|
9008 |
-
msgstr ""
|
9009 |
-
|
9010 |
-
#: core/lib/wpbc_all_translations1.php:764 inc/_bm/admin/page-cost.php:697
|
9011 |
-
msgid "Set Early / Late booking discount"
|
9012 |
-
msgstr ""
|
9013 |
-
|
9014 |
-
#: core/lib/wpbc_all_translations1.php:765 inc/_bm/admin/page-cost.php:698
|
9015 |
-
msgid "Early / Late"
|
9016 |
-
msgstr ""
|
9017 |
-
|
9018 |
-
#: core/lib/wpbc_all_translations1.php:766 js/wpbc-gutenberg.js:55
|
9019 |
-
msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
|
9020 |
-
msgstr ""
|
9021 |
-
|
9022 |
-
#: core/lib/wpbc_all_translations1.php:767 js/wpbc-gutenberg.js:142
|
9023 |
-
msgid "Configure Booking Calendar Block"
|
9024 |
-
msgstr ""
|
9025 |
-
|
9026 |
-
#: core/lib/wpbc_all_translations1.php:768
|
9027 |
-
msgid "Click to Preview Block"
|
9028 |
-
msgstr ""
|
9029 |
-
|
9030 |
-
#: core/lib/wpbc_all_translations1.php:769 js/wpbc-gutenberg.js:615 js/wpbc-gutenberg.js:705
|
9031 |
-
#: js/wpbc-gutenberg.js:898
|
9032 |
-
msgid "Visible months number"
|
9033 |
-
msgstr ""
|
9034 |
-
|
9035 |
-
#: core/lib/wpbc_all_translations1.php:770 js/wpbc-gutenberg.js:618 js/wpbc-gutenberg.js:708
|
9036 |
-
#: js/wpbc-gutenberg.js:901
|
9037 |
-
msgid "Start month"
|
9038 |
-
msgstr ""
|
9039 |
-
|
9040 |
-
#: core/lib/wpbc_all_translations1.php:771 js/wpbc-gutenberg.js:621 js/wpbc-gutenberg.js:975
|
9041 |
-
msgid "Custom booking form"
|
9042 |
-
msgstr ""
|
9043 |
-
|
9044 |
-
#: core/lib/wpbc_all_translations1.php:772 js/wpbc-gutenberg.js:624 js/wpbc-gutenberg.js:711
|
9045 |
-
#: js/wpbc-gutenberg.js:907
|
9046 |
-
msgid "Unavailable dates from other booking resources"
|
9047 |
-
msgstr ""
|
9048 |
-
|
9049 |
-
#: core/lib/wpbc_all_translations1.php:773 js/wpbc-gutenberg.js:660
|
9050 |
-
msgid "Availability Calendar"
|
9051 |
-
msgstr ""
|
9052 |
-
|
9053 |
-
#: core/lib/wpbc_all_translations1.php:774 js/wpbc-gutenberg.js:784 js/wpbc-gutenberg.js:886
|
9054 |
-
msgid "Booking resource(s)"
|
9055 |
-
msgstr ""
|
9056 |
-
|
9057 |
-
#: core/lib/wpbc_all_translations1.php:775 js/wpbc-gutenberg.js:821
|
9058 |
-
msgid "Show from/to"
|
9059 |
-
msgstr ""
|
9060 |
-
|
9061 |
-
#: core/lib/wpbc_all_translations1.php:776 js/wpbc-gutenberg.js:838
|
9062 |
-
msgid "All booking resources"
|
9063 |
-
msgstr ""
|
9064 |
-
|
9065 |
-
#: core/lib/wpbc_all_translations1.php:777 js/wpbc-gutenberg.js:855
|
9066 |
-
msgid "Selection of Resources"
|
9067 |
-
msgstr ""
|
9068 |
-
|
9069 |
-
#: core/lib/wpbc_all_translations1.php:778 js/wpbc-gutenberg.js:892
|
9070 |
-
msgid "Selected booking resource (by default)"
|
9071 |
-
msgstr ""
|
9072 |
-
|
9073 |
-
#: core/lib/wpbc_all_translations1.php:779 js/wpbc-gutenberg.js:895
|
9074 |
-
msgid "Title of first option in list"
|
9075 |
-
msgstr ""
|
9076 |
-
|
9077 |
-
#: core/lib/wpbc_all_translations1.php:780 js/wpbc-gutenberg.js:904
|
9078 |
-
msgid "Custom booking form for all booking resources"
|
9079 |
-
msgstr ""
|
9080 |
-
|
9081 |
-
#: core/lib/wpbc_all_translations1.php:781 js/wpbc-gutenberg.js:939
|
9082 |
-
msgid "Booking Form (without calendar)"
|
9083 |
-
msgstr ""
|
9084 |
-
|
9085 |
-
#: core/lib/wpbc_all_translations1.php:782 js/wpbc-gutenberg.js:972
|
9086 |
-
msgid "Date for submit booking"
|
9087 |
-
msgstr ""
|
9088 |
-
|
9089 |
-
#: core/lib/wpbc_all_translations1.php:783 js/wpbc-gutenberg.js:1004
|
9090 |
-
msgid "Search Availability form"
|
9091 |
-
msgstr ""
|
9092 |
-
|
9093 |
-
#: core/lib/wpbc_all_translations1.php:784 js/wpbc-gutenberg.js:1035
|
9094 |
-
msgid "Show search results on other page"
|
9095 |
-
msgstr ""
|
9096 |
-
|
9097 |
-
#: core/lib/wpbc_all_translations1.php:785 js/wpbc-gutenberg.js:1038
|
9098 |
-
msgid "Search results page must have this shortcode"
|
9099 |
-
msgstr ""
|
9100 |
-
|
9101 |
-
#: core/lib/wpbc_all_translations1.php:786 js/wpbc-gutenberg.js:1041
|
9102 |
-
msgid "Show search results in the same page"
|
9103 |
-
msgstr ""
|
9104 |
-
|
9105 |
-
#: core/lib/wpbc_all_translations1.php:787 js/wpbc-gutenberg.js:1044
|
9106 |
-
msgid "Search Results Title"
|
9107 |
-
msgstr ""
|
9108 |
-
|
9109 |
-
#: core/lib/wpbc_all_translations1.php:788 js/wpbc-gutenberg.js:1047
|
9110 |
-
msgid "Title, if no search results"
|
9111 |
-
msgstr ""
|
9112 |
-
|
9113 |
-
#: core/lib/wpbc_all_translations1.php:789 js/wpbc-gutenberg.js:1050
|
9114 |
-
msgid "Search in booking resources of WP users"
|
9115 |
-
msgstr ""
|
9116 |
-
|
9117 |
-
#: core/lib/wpbc_all_translations1.php:790 js/wpbc-gutenberg.js:1104
|
9118 |
-
msgid "Show search results on this page, after redirection from search form at other page."
|
9119 |
-
msgstr ""
|
9120 |
-
|
9121 |
-
#: core/lib/wpbc_all_translations1.php:791 js/wpbc-gutenberg.js:1128
|
9122 |
-
msgid "System Block"
|
9123 |
-
msgstr ""
|
9124 |
-
|
9125 |
-
#: core/lib/wpbc_all_translations1.php:792 js/wpbc-gutenberg.js:1128
|
9126 |
-
msgid "Booking Calendar Editing"
|
9127 |
-
msgstr ""
|
9128 |
-
|
9129 |
-
#: core/lib/wpbc_all_translations1.php:793 js/wpbc-gutenberg.js:1159
|
9130 |
-
msgid ""
|
9131 |
-
"This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
|
9132 |
-
"for ability to show payment form, after sending payment request."
|
9133 |
-
msgstr ""
|
9134 |
-
|
9135 |
-
#: core/lib/wpbc_all_translations1.php:794 js/wpbc-gutenberg.js:1164 js/wpbc-gutenberg.js:1250
|
9136 |
-
msgid "Link to this page must be defined"
|
9137 |
-
msgstr ""
|
9138 |
-
|
9139 |
-
#: core/lib/wpbc_all_translations1.php:795 js/wpbc-gutenberg.js:1168 js/wpbc-gutenberg.js:1254
|
9140 |
-
msgid "at this option"
|
9141 |
-
msgstr ""
|
9142 |
-
|
9143 |
-
#: core/lib/wpbc_all_translations1.php:796 js/wpbc-gutenberg.js:1178 js/wpbc-gutenberg.js:1264
|
9144 |
-
msgid "You can not open this page directly. Please, use links in "
|
9145 |
-
msgstr ""
|
9146 |
-
|
9147 |
-
#: core/lib/wpbc_all_translations1.php:797 js/wpbc-gutenberg.js:1186 js/wpbc-gutenberg.js:1272
|
9148 |
-
msgid "If you open this page directly, then you will see this error"
|
9149 |
-
msgstr ""
|
9150 |
-
|
9151 |
-
#: core/lib/wpbc_all_translations1.php:798 js/wpbc-gutenberg.js:1214
|
9152 |
-
msgid "Customer Bookings Listing"
|
9153 |
-
msgstr ""
|
9154 |
-
|
9155 |
-
#: core/lib/wpbc_all_translations1.php:799 js/wpbc-gutenberg.js:1245
|
9156 |
-
msgid ""
|
9157 |
-
"Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
|
9158 |
-
"which is sending after booking created."
|
9159 |
-
msgstr ""
|
9160 |
-
|
9161 |
-
#: core/lib/wpbc_all_translations1.php:800 js/wpbc-gutenberg.js:1305
|
9162 |
-
msgid "Show Info of Booking Resource"
|
9163 |
-
msgstr ""
|
9164 |
-
|
9165 |
-
#: core/lib/wpbc_all_translations1.php:801 js/wpbc-gutenberg.js:1371
|
9166 |
-
msgid "Click to edit"
|
9167 |
-
msgstr ""
|
9168 |
-
|
9169 |
-
#: core/lib/wpbc_all_translations1.php:802 js/wpbc-gutenberg.js:1373
|
9170 |
-
msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
|
9171 |
-
msgstr ""
|
9172 |
-
|
9173 |
-
#: core/lib/wpbc_all_translations1.php:803 inc/_bl/admin/page-search.php:175
|
9174 |
-
msgid "Sort search results by"
|
9175 |
-
msgstr ""
|
9176 |
-
|
9177 |
-
#: core/lib/wpbc_all_translations1.php:804 inc/_bl/admin/page-search.php:176
|
9178 |
-
msgid "Select type of sorting search results"
|
9179 |
-
msgstr ""
|
9180 |
-
|
9181 |
-
#: core/lib/wpbc_all_translations1.php:805 inc/_bl/admin/page-search.php:180
|
9182 |
-
#: inc/_bl/admin/page-search.php:181
|
9183 |
-
msgid "ID of booking resource"
|
9184 |
-
msgstr ""
|
9185 |
-
|
9186 |
-
#: core/lib/wpbc_all_translations1.php:806 inc/_bl/admin/page-search.php:182
|
9187 |
-
#: inc/_bl/admin/page-search.php:183
|
9188 |
-
msgid "Title of booking resource"
|
9189 |
-
msgstr ""
|
9190 |
-
|
9191 |
-
#: core/lib/wpbc_all_translations1.php:807 inc/_bl/admin/page-search.php:184
|
9192 |
-
#: inc/_bl/admin/page-search.php:185
|
9193 |
-
msgid "Priority field of booking resource"
|
9194 |
-
msgstr ""
|
9195 |
-
|
9196 |
-
#: core/lib/wpbc_all_translations1.php:808 inc/_bl/admin/page-search.php:186
|
9197 |
-
#: inc/_bl/admin/page-search.php:187
|
9198 |
-
msgid "Cost of booking resource"
|
9199 |
-
msgstr ""
|
9200 |
-
|
9201 |
-
#: core/lib/wpbc_all_translations1.php:809 inc/_bl/admin/page-search.php:188
|
9202 |
-
#: inc/_bl/admin/page-search.php:189
|
9203 |
-
msgid "Cost of booking"
|
9204 |
-
msgstr ""
|
9205 |
-
|
9206 |
-
#: core/lib/wpbc_all_translations1.php:810 inc/_ps/admin/api-settings-p.php:260
|
9207 |
-
msgid "Deactivate send email option at Add Booking page"
|
9208 |
-
msgstr ""
|
9209 |
-
|
9210 |
-
#: core/lib/wpbc_all_translations1.php:811 inc/_ps/admin/api-settings-p.php:261
|
9211 |
-
msgid ""
|
9212 |
-
"Check this box if you want to deactivate by default option \"Send email\" at Add Booking page."
|
9213 |
-
msgstr ""
|
9214 |
-
|
9215 |
-
#: core/lib/wpbc_all_translations1.php:812 inc/_ps/admin/api-settings-p.php:269
|
9216 |
-
msgid "Deactivate send email option at Booking Listing page"
|
9217 |
-
msgstr ""
|
9218 |
-
|
9219 |
-
#: core/lib/wpbc_all_translations1.php:813 inc/_ps/admin/api-settings-p.php:270
|
9220 |
-
msgid ""
|
9221 |
-
"Check this box if you want to deactivate by default option \"Send email\" at Booking Listing "
|
9222 |
-
"page."
|
9223 |
-
msgstr ""
|
9224 |
-
|
9225 |
-
#: core/lib/wpbc_all_translations1.php:814 inc/_ps/admin/api-settings-p.php:291
|
9226 |
-
msgid "Force change booking resource for exist booking"
|
9227 |
-
msgstr ""
|
9228 |
-
|
9229 |
-
#: core/lib/wpbc_all_translations1.php:815 inc/_ps/admin/api-settings-p.php:292
|
9230 |
-
msgid ""
|
9231 |
-
"Check this box if you want to skip checking availability of new booking resource during changing "
|
9232 |
-
"booking resource of exist booking at Booking Listing page."
|
9233 |
-
msgstr ""
|
9234 |
-
|
9235 |
-
#: core/lib/wpbc_all_translations1.php:816 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:342
|
9236 |
-
msgid "Signature Key"
|
9237 |
-
msgstr ""
|
9238 |
-
|
9239 |
-
#: core/lib/wpbc_all_translations1.php:817 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:344
|
9240 |
-
msgid "Please enter the Signature Key, which you generated in the settings of Merchant Interface."
|
9241 |
-
msgstr ""
|
9242 |
-
|
9243 |
-
#: core/lib/wpbc_all_translations1.php:818 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:346
|
9244 |
-
msgid "To generate new Signature Key"
|
9245 |
-
msgstr ""
|
9246 |
-
|
9247 |
-
#: core/lib/wpbc_all_translations1.php:819 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:347
|
9248 |
-
#, php-format
|
9249 |
-
msgid "Log on to the %sMerchant Interface%s"
|
9250 |
-
msgstr ""
|
9251 |
-
|
9252 |
-
#: core/lib/wpbc_all_translations1.php:820 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:348
|
9253 |
-
msgid ""
|
9254 |
-
"In the merchant interface, go to Account > Settings > Security Settings > General Security "
|
9255 |
-
"Settings > API Credential & Keys"
|
9256 |
-
msgstr ""
|
9257 |
-
|
9258 |
-
#: core/lib/wpbc_all_translations1.php:821 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:349
|
9259 |
-
msgid "Answer the secret question."
|
9260 |
-
msgstr ""
|
9261 |
-
|
9262 |
-
#: core/lib/wpbc_all_translations1.php:822 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:350
|
9263 |
-
msgid "Select New Signature Key. Your signature key is displayed as a string."
|
9264 |
-
msgstr ""
|
9265 |
-
|
9266 |
-
#: core/lib/wpbc_all_translations1.php:823 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:351
|
9267 |
-
msgid "Click Copy to Clipboard."
|
9268 |
-
msgstr ""
|
9269 |
-
|
9270 |
-
#: core/lib/wpbc_all_translations1.php:824 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:352
|
9271 |
-
#, php-format
|
9272 |
-
msgid "For more information, please check %shere%s"
|
9273 |
-
msgstr ""
|
9274 |
-
|
9275 |
-
#: core/lib/wpbc_all_translations1.php:825 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:886
|
9276 |
-
#, php-format
|
9277 |
-
msgid ""
|
9278 |
-
"If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
|
9279 |
-
"an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway."
|
9280 |
-
msgstr ""
|
9281 |
-
|
9282 |
-
#: core/lib/wpbc_all_translations1.php:826 core/timeline/v2/wpbc-class-timeline_v2.php:2570
|
9283 |
-
msgid "Loading"
|
9284 |
-
msgstr ""
|
9285 |
-
|
9286 |
-
#: core/lib/wpbc_all_translations1.php:827 core/wpbc-emails.php:262
|
9287 |
-
#, php-format
|
9288 |
-
msgid "%s - inserting link to approve booking in 1 mouse click "
|
9289 |
-
msgstr ""
|
9290 |
-
|
9291 |
-
#: core/lib/wpbc_all_translations1.php:828 core/wpbc-emails.php:263
|
9292 |
-
#, php-format
|
9293 |
-
msgid "%s - inserting link to set booking as pending in 1 mouse click "
|
9294 |
-
msgstr ""
|
9295 |
-
|
9296 |
-
#: core/lib/wpbc_all_translations1.php:829 core/wpbc-emails.php:264
|
9297 |
-
#, php-format
|
9298 |
-
msgid "%s - inserting link for move booking to trash in 1 mouse click "
|
9299 |
-
msgstr ""
|
9300 |
-
|
9301 |
-
#: core/lib/wpbc_all_translations1.php:830 inc/_bl/admin/page-search.php:708
|
9302 |
-
msgid "Flex Search Form Template"
|
9303 |
-
msgstr ""
|
9304 |
-
|
9305 |
-
#: core/lib/wpbc_all_translations1.php:831 inc/_bl/admin/page-search.php:772
|
9306 |
-
msgid "Flex"
|
9307 |
-
msgstr ""
|
9308 |
-
|
9309 |
-
#: core/lib/wpbc_all_translations1.php:832 inc/_ps/hash/wpbc-hash-functions.php:101
|
9310 |
-
#, php-format
|
9311 |
-
msgid "Booking %s have been approved."
|
9312 |
-
msgstr ""
|
9313 |
-
|
9314 |
-
#: core/lib/wpbc_all_translations1.php:833 inc/_ps/hash/wpbc-hash-functions.php:129
|
9315 |
-
#, php-format
|
9316 |
-
msgid "Booking %s have been set as pending."
|
9317 |
-
msgstr ""
|
9318 |
-
|
9319 |
-
#: core/lib/wpbc_all_translations1.php:834 inc/_ps/hash/wpbc-hash-functions.php:157
|
9320 |
-
#, php-format
|
9321 |
-
msgid "Booking %s have been moved to trash."
|
9322 |
-
msgstr ""
|
9323 |
-
|
9324 |
-
#: core/lib/wpbc_all_translations1.php:835 inc/_ps/p-toolbar.php:70 inc/_ps/p-toolbar.php:71
|
9325 |
-
msgid "Find lost bookings"
|
9326 |
-
msgstr ""
|
9327 |
-
|
9328 |
-
#: core/lib/wpbc_all_translations1.php:836 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1162
|
9329 |
-
#, php-format
|
9330 |
-
msgid "require correct configuration of this option: %sURL to edit bookings%s"
|
9331 |
-
msgstr ""
|
9332 |
-
|
9333 |
-
#: core/lib/wpbc_all_translations1.php:837 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1204
|
9334 |
-
msgid "You may test your integration over HTTP. However, live integrations must use HTTPS."
|
9335 |
-
msgstr ""
|
9336 |
-
|
9337 |
-
#: core/lib/wpbc_all_translations1.php:838 inc/_bl/admin/page-search.php:224
|
9338 |
-
msgid "Select date format for search form"
|
9339 |
-
msgstr ""
|
9340 |
-
|
9341 |
-
#: core/lib/wpbc_all_translations1.php:839 inc/_ps/admin/api-settings-p.php:301
|
9342 |
-
msgid "Logging of booking approving or rejection"
|
9343 |
-
msgstr ""
|
9344 |
-
|
9345 |
-
#: core/lib/wpbc_all_translations1.php:840 inc/_ps/admin/api-settings-p.php:302
|
9346 |
-
msgid ""
|
9347 |
-
"Check this box if you want to log approving or rejection of bookings and add it to your booking "
|
9348 |
-
"notes."
|
9349 |
-
msgstr ""
|
9350 |
-
|
9351 |
-
#: core/lib/wpbc_all_translations1.php:841 inc/gateways/ipay88/wpbc-gw-ipay88.php:821
|
9352 |
-
#, php-format
|
9353 |
-
msgid "%sFor Malaysia Only%s. iPay88 - Payment Switching Gateway integration %s"
|
9354 |
-
msgstr ""
|
9355 |
-
|
9356 |
-
#: core/lib/wpbc_all_translations1.php:842 inc/gateways/page-gateways.php:125
|
9357 |
-
msgid "Update cost, after booking editing in admin panel"
|
9358 |
-
msgstr ""
|
9359 |
-
|
9360 |
-
#: core/lib/wpbc_all_translations1.php:843 inc/gateways/page-gateways.php:126
|
9361 |
-
msgid ""
|
9362 |
-
"Check this box if you want to update cost after editing booking in admin panel, based on new "
|
9363 |
-
"booking data"
|
9364 |
-
msgstr ""
|
9365 |
-
|
9366 |
-
#: core/lib/wpbc_all_translations1.php:844 core/wpbc-emails.php:202
|
9367 |
-
#, php-format
|
9368 |
-
msgid "%s - inserting check-in date (only date without time) (first day of reservation),"
|
9369 |
-
msgstr ""
|
9370 |
-
|
9371 |
-
#: core/lib/wpbc_all_translations1.php:845 core/wpbc-emails.php:207
|
9372 |
-
#, php-format
|
9373 |
-
msgid "%s - inserting check-out date (only date without time) (last day of reservation),"
|
9374 |
-
msgstr ""
|
9375 |
-
|
9376 |
-
#: core/lib/wpbc_all_translations1.php:846 inc/_bl/admin/page-search.php:190
|
9377 |
-
msgid "Shuffle"
|
9378 |
-
msgstr ""
|
9379 |
-
|
9380 |
-
#: core/lib/wpbc_all_translations1.php:847 inc/gateways/page-gateways.php:175
|
9381 |
-
msgid "Apply discount coupon code directly to days cost"
|
9382 |
-
msgstr ""
|
9383 |
-
|
9384 |
-
#: core/lib/wpbc_all_translations1.php:848 inc/gateways/page-gateways.php:176
|
9385 |
-
msgid ""
|
9386 |
-
"Check this box if you want apply discount coupon codes directly to days cost, without additional "
|
9387 |
-
"costs."
|
9388 |
-
msgstr ""
|
9389 |
-
|
9390 |
-
#: core/lib/wpbc_all_translations1.php:849 inc/_ps/admin/page-settings-form.php:339
|
9391 |
-
msgid "Calendar next to form"
|
9392 |
-
msgstr ""
|
9393 |
-
|
9394 |
-
#: core/lib/wpbc_all_translations1.php:850 inc/gateways/paypal/wpbc-gw-paypal.php:227
|
9395 |
-
msgid "PayPal fee"
|
9396 |
-
msgstr ""
|
9397 |
-
|
9398 |
-
#: core/lib/wpbc_all_translations1.php:851 inc/gateways/paypal/wpbc-gw-paypal.php:671
|
9399 |
-
msgid "PayPal Fee"
|
9400 |
-
msgstr ""
|
9401 |
-
|
9402 |
-
#: core/lib/wpbc_all_translations1.php:852 inc/gateways/paypal/wpbc-gw-paypal.php:674
|
9403 |
-
#, php-format
|
9404 |
-
msgid ""
|
9405 |
-
"If you need to add %sPayPal tax fee%s payment (only for PayPal payment system), then enter "
|
9406 |
-
"amount of tax fee in percents"
|
9407 |
-
msgstr ""
|
9408 |
-
|
9409 |
-
#: core/lib/wpbc_all_translations1.php:853 inc/_ps/wpbc-check-updates.php:114
|
9410 |
-
msgid "Auto-updates are not available for this plugin."
|
9411 |
-
msgstr ""
|
9412 |
-
|
9413 |
-
#: core/lib/wpbc_all_translations1.php:854 inc/_ps/admin/page-settings-form.php:350
|
9414 |
-
#: inc/_ps/admin/page-settings-form.php:362
|
9415 |
-
msgid "columns"
|
9416 |
-
msgstr ""
|
9417 |
-
|
9418 |
-
#: core/lib/wpbc_all_translations1.php:855 inc/_ps/admin/page-settings-form.php:374
|
9419 |
-
msgid "2 columns with times"
|
9420 |
-
msgstr ""
|
9421 |
-
|
9422 |
-
#: core/lib/wpbc_all_translations1.php:856 inc/_ps/admin/page-settings-form.php:409
|
9423 |
-
#: inc/_ps/admin/page-settings-form.php:419 inc/_ps/admin/page-settings-form.php:429
|
9424 |
-
msgid "Time slots"
|
9425 |
-
msgstr ""
|
9426 |
-
|
9427 |
-
#: core/lib/wpbc_all_translations1.php:857 inc/_ps/personal.php:1375
|
9428 |
-
msgid "The booked dates already in the past"
|
9429 |
-
msgstr ""
|
9430 |
-
|
9431 |
-
#: core/lib/wpbc_all_translations1.php:858 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:780
|
9432 |
-
msgid "Card"
|
9433 |
-
msgstr ""
|
9434 |
-
|
9435 |
-
#: core/lib/wpbc_all_translations1.php:859 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:807
|
9436 |
-
msgid "Payment Methods"
|
9437 |
-
msgstr ""
|
9438 |
-
|
9439 |
-
#: core/lib/wpbc_all_translations1.php:860 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:808
|
9440 |
-
msgid "Select one or several payment methods."
|
9441 |
-
msgstr ""
|
9442 |
-
|
9443 |
-
#: core/lib/wpbc_all_translations1.php:861 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:808
|
9444 |
-
msgid "Use Ctrl button to select multiple options."
|
9445 |
-
msgstr ""
|
9446 |
-
|
9447 |
-
#: core/lib/wpbc_all_translations1.php:862 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:811
|
9448 |
-
msgid ""
|
9449 |
-
"Different payment methods require different conditions. Some payment methods require selection "
|
9450 |
-
"of EUR currency, other available only in specific countries."
|
9451 |
-
msgstr ""
|
9452 |
-
|
9453 |
-
#: core/lib/wpbc_all_translations1.php:863 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:815
|
9454 |
-
msgid "can only be charged in"
|
9455 |
-
msgstr ""
|
9456 |
-
|
9457 |
-
#: core/lib/wpbc_all_translations1.php:864 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:816
|
9458 |
-
msgid "available only for countries"
|
9459 |
-
msgstr ""
|
9460 |
-
|
9461 |
-
#: core/lib/wpbc_all_translations1.php:865 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:817
|
9462 |
-
msgid "require activation in your Stripe dashboard"
|
9463 |
-
msgstr ""
|
9464 |
-
|
9465 |
-
#: core/lib/wpbc_all_translations1.php:866 inc/_bl/admin/page-search.php:235
|
9466 |
-
msgid "Disable days selection"
|
9467 |
-
msgstr ""
|
9468 |
-
|
9469 |
-
#: core/lib/wpbc_all_translations1.php:867 inc/_bl/admin/page-search.php:236
|
9470 |
-
#, php-format
|
9471 |
-
msgid ""
|
9472 |
-
"Check this box to %sdisable days selection in calendar%s after redirection from search results"
|
9473 |
-
msgstr ""
|
9474 |
-
|
9475 |
-
#: core/lib/wpbc_all_translations1.php:868 inc/_bl/admin/page-search.php:237
|
9476 |
-
msgid ""
|
9477 |
-
"Use it to prevent bookings that are not allowed with such days selection in different booking "
|
9478 |
-
"resources."
|
9479 |
-
msgstr ""
|
9480 |
-
|
9481 |
-
#: core/lib/wpbc_all_translations1.php:869 inc/gateways/page-gateways.php:154
|
9482 |
-
msgid "This option does not work with Stripe payment system."
|
9483 |
-
msgstr ""
|
9484 |
-
|
9485 |
-
#: core/lib/wpbc_all_translations1.php:870 inc/gateways/page-gateways.php:163
|
9486 |
-
msgid "Calculate the deposit only based on daily costs "
|
9487 |
-
msgstr ""
|
9488 |
-
|
9489 |
-
#: core/lib/wpbc_all_translations1.php:871 inc/gateways/page-gateways.php:164
|
9490 |
-
msgid ""
|
9491 |
-
"Check this box if you want to calculate the deposit amount based on daily costs only, without "
|
9492 |
-
"additional costs."
|
9493 |
-
msgstr ""
|
9494 |
-
|
9495 |
-
#: core/lib/wpbc_all_translations1.php:872 inc/gateways/page-gateways.php:203
|
9496 |
-
msgid "Show debug cost info"
|
9497 |
-
msgstr ""
|
9498 |
-
|
9499 |
-
#: core/lib/wpbc_all_translations1.php:873 inc/gateways/page-gateways.php:204
|
9500 |
-
#, php-format
|
9501 |
-
msgid ""
|
9502 |
-
"Display %sDaily costs%s and %sAdditional costs%s for checking costs configuration. Check this "
|
9503 |
-
"box only during testing."
|
9504 |
-
msgstr ""
|
9505 |
-
|
9506 |
-
#: core/lib/wpbc_all_translations1.php:874 inc/gateways/page-gateways.php:639
|
9507 |
-
#: inc/gateways/page-gateways.php:669
|
9508 |
-
msgid "Currency Settings"
|
9509 |
-
msgstr ""
|
9510 |
-
|
9511 |
-
#: inc/_ps/p-toolbar.php:204
|
9512 |
-
msgid "Export page to CSV"
|
9513 |
-
msgstr ""
|
9514 |
-
|
9515 |
-
#: inc/_ps/p-toolbar.php:219
|
9516 |
-
msgid "Export all pages to CSV"
|
9517 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/index.php
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
<?php
|
2 |
-
// Silence is golden.
|
3 |
-
?>
|
1 |
<?php
|
2 |
+
// Silence is golden.
|
|
languages/po_translations.txt
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
|
2 |
-
You can download the original PO translations files from here: http://wpbookingcalendar.com/download/languages/languages.zip
|
3 |
-
|
4 |
-
You can check instruction how to make or update translations files at this page: http://wpbookingcalendar.com/faq/make-translation-of-wp-plugin/
|
|
|
|
|
|
|
|
languages/readme.txt
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
There are 2 types of Booking Calendar translations.
|
2 |
+
|
3 |
+
1) One list of translations located at WordPress repository: https://translate.wordpress.org/projects/wp-plugins/booking/
|
4 |
+
Please note, these translations at your website should be located at: "../wp-content/languages/plugins/" folder.
|
5 |
+
|
6 |
+
|
7 |
+
2) Another list of translations located at the Booking Calendar website.
|
8 |
+
You can download the original PO translations files at Booking Calendar website from here: http://wpbookingcalendar.com/download/languages/languages.zip
|
9 |
+
Please note, these translations at your website should be located at: "../wp-content/plugins/{Booking Calendar Folder}/languages/" folder.
|
10 |
+
|
11 |
+
|
12 |
+
By default Booking Calendar plugin try to use translations from "../wp-content/languages/plugins/",
|
13 |
+
if failed (not exist), then try to use translations from "../wp-content/plugins/{Booking Calendar Folder}/languages/" folder.
|
14 |
+
This behavior is possible to change at the Booking > Settings General page in the Translation section.
|
15 |
+
|
16 |
+
|
17 |
+
---------------------------------------------------------------------------------------------------------------------------------
|
18 |
+
|
19 |
+
You can check instruction how to make or update translations files at this page:
|
20 |
+
http://wpbookingcalendar.com/faq/make-translation-of-wp-plugin/
|
21 |
+
|
22 |
+
|
23 |
+
More info about translations or using several languages in plugin, please check at FAQ here https://wpbookingcalendar.com/faq/#translation
|
languages/wpdev-country-list-de_DE.php
DELETED
@@ -1,433 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// Here you can translate countries into your languages, which is non English
|
3 |
-
|
4 |
-
// ISO 3166-1 country names and codes from http://opencountrycodes.appspot.com/javascript
|
5 |
-
global $wpdev_booking_country_list;
|
6 |
-
$wpdev_booking_country_list = array(
|
7 |
-
"CH" => "Schweiz",
|
8 |
-
"AF" => "Afghanistan"
|
9 |
-
);
|
10 |
-
|
11 |
-
global $wpbc_booking_region_cities_list;
|
12 |
-
$wpbc_booking_region_cities_list = array(
|
13 |
-
'Africa' => array()
|
14 |
-
, 'America' => array()
|
15 |
-
, 'Antarctica' => array()
|
16 |
-
, 'Arctic' => array()
|
17 |
-
, 'Asia' => array()
|
18 |
-
, 'Atlantic' => array()
|
19 |
-
, 'Australia' => array()
|
20 |
-
, 'Europe' => array()
|
21 |
-
, 'Indian' => array()
|
22 |
-
, 'Pacific' => array()
|
23 |
-
);
|
24 |
-
$wpbc_booking_region_cities_list["Africa"]["Abidjan"] = "Abidjan";
|
25 |
-
$wpbc_booking_region_cities_list["Africa"]["Accra"] = "Accra";
|
26 |
-
$wpbc_booking_region_cities_list["Africa"]["Addis_Ababa"] = "Addis Ababa";
|
27 |
-
$wpbc_booking_region_cities_list["Africa"]["Algiers"] = "Algiers";
|
28 |
-
$wpbc_booking_region_cities_list["Africa"]["Asmara"] = "Asmara";
|
29 |
-
$wpbc_booking_region_cities_list["Africa"]["Bamako"] = "Bamako";
|
30 |
-
$wpbc_booking_region_cities_list["Africa"]["Bangui"] = "Bangui";
|
31 |
-
$wpbc_booking_region_cities_list["Africa"]["Banjul"] = "Banjul";
|
32 |
-
$wpbc_booking_region_cities_list["Africa"]["Bissau"] = "Bissau";
|
33 |
-
$wpbc_booking_region_cities_list["Africa"]["Blantyre"] = "Blantyre";
|
34 |
-
$wpbc_booking_region_cities_list["Africa"]["Brazzaville"] = "Brazzaville";
|
35 |
-
$wpbc_booking_region_cities_list["Africa"]["Bujumbura"] = "Bujumbura";
|
36 |
-
$wpbc_booking_region_cities_list["Africa"]["Cairo"] = "Cairo";
|
37 |
-
$wpbc_booking_region_cities_list["Africa"]["Casablanca"] = "Casablanca";
|
38 |
-
$wpbc_booking_region_cities_list["Africa"]["Ceuta"] = "Ceuta";
|
39 |
-
$wpbc_booking_region_cities_list["Africa"]["Conakry"] = "Conakry";
|
40 |
-
$wpbc_booking_region_cities_list["Africa"]["Dakar"] = "Dakar";
|
41 |
-
$wpbc_booking_region_cities_list["Africa"]["Dar_es_Salaam"] = "Dar es Salaam";
|
42 |
-
$wpbc_booking_region_cities_list["Africa"]["Djibouti"] = "Djibouti";
|
43 |
-
$wpbc_booking_region_cities_list["Africa"]["Douala"] = "Douala";
|
44 |
-
$wpbc_booking_region_cities_list["Africa"]["El_Aaiun"] = "El Aaiun";
|
45 |
-
$wpbc_booking_region_cities_list["Africa"]["Freetown"] = "Freetown";
|
46 |
-
$wpbc_booking_region_cities_list["Africa"]["Gaborone"] = "Gaborone";
|
47 |
-
$wpbc_booking_region_cities_list["Africa"]["Harare"] = "Harare";
|
48 |
-
$wpbc_booking_region_cities_list["Africa"]["Johannesburg"] = "Johannesburg";
|
49 |
-
$wpbc_booking_region_cities_list["Africa"]["Kampala"] = "Kampala";
|
50 |
-
$wpbc_booking_region_cities_list["Africa"]["Khartoum"] = "Khartoum";
|
51 |
-
$wpbc_booking_region_cities_list["Africa"]["Kigali"] = "Kigali";
|
52 |
-
$wpbc_booking_region_cities_list["Africa"]["Kinshasa"] = "Kinshasa";
|
53 |
-
$wpbc_booking_region_cities_list["Africa"]["Lagos"] = "Lagos";
|
54 |
-
$wpbc_booking_region_cities_list["Africa"]["Libreville"] = "Libreville";
|
55 |
-
$wpbc_booking_region_cities_list["Africa"]["Lome"] = "Lome";
|
56 |
-
$wpbc_booking_region_cities_list["Africa"]["Luanda"] = "Luanda";
|
57 |
-
$wpbc_booking_region_cities_list["Africa"]["Lubumbashi"] = "Lubumbashi";
|
58 |
-
$wpbc_booking_region_cities_list["Africa"]["Lusaka"] = "Lusaka";
|
59 |
-
$wpbc_booking_region_cities_list["Africa"]["Malabo"] = "Malabo";
|
60 |
-
$wpbc_booking_region_cities_list["Africa"]["Maputo"] = "Maputo";
|
61 |
-
$wpbc_booking_region_cities_list["Africa"]["Maseru"] = "Maseru";
|
62 |
-
$wpbc_booking_region_cities_list["Africa"]["Mbabane"] = "Mbabane";
|
63 |
-
$wpbc_booking_region_cities_list["Africa"]["Mogadishu"] = "Mogadishu";
|
64 |
-
$wpbc_booking_region_cities_list["Africa"]["Monrovia"] = "Monrovia";
|
65 |
-
$wpbc_booking_region_cities_list["Africa"]["Nairobi"] = "Nairobi";
|
66 |
-
$wpbc_booking_region_cities_list["Africa"]["Ndjamena"] = "Ndjamena";
|
67 |
-
$wpbc_booking_region_cities_list["Africa"]["Niamey"] = "Niamey";
|
68 |
-
$wpbc_booking_region_cities_list["Africa"]["Nouakchott"] = "Nouakchott";
|
69 |
-
$wpbc_booking_region_cities_list["Africa"]["Ouagadougou"] = "Ouagadougou";
|
70 |
-
$wpbc_booking_region_cities_list["Africa"]["Porto-Novo"] = "Porto-Novo";
|
71 |
-
$wpbc_booking_region_cities_list["Africa"]["Sao_Tome"] = "Sao Tome";
|
72 |
-
$wpbc_booking_region_cities_list["Africa"]["Tripoli"] = "Tripoli";
|
73 |
-
$wpbc_booking_region_cities_list["Africa"]["Tunis"] = "Tunis";
|
74 |
-
$wpbc_booking_region_cities_list["Africa"]["Windhoek"] = "Windhoek";
|
75 |
-
|
76 |
-
$wpbc_booking_region_cities_list["America"]["Adak"] = "Adak";
|
77 |
-
$wpbc_booking_region_cities_list["America"]["Anchorage"] = "Anchorage";
|
78 |
-
$wpbc_booking_region_cities_list["America"]["Anguilla"] = "Anguilla";
|
79 |
-
$wpbc_booking_region_cities_list["America"]["Antigua"] = "Antigua";
|
80 |
-
$wpbc_booking_region_cities_list["America"]["Araguaina"] = "Araguaina";
|
81 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Buenos_Aires"] = "Argentina - Buenos Aires";
|
82 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Catamarca"] = "Argentina - Catamarca";
|
83 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Cordoba"] = "Argentina - Cordoba";
|
84 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Jujuy"] = "Argentina - Jujuy";
|
85 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/La_Rioja"] = "Argentina - La Rioja";
|
86 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Mendoza"] = "Argentina - Mendoza";
|
87 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Rio_Gallegos"] = "Argentina - Rio Gallegos";
|
88 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Salta"] = "Argentina - Salta";
|
89 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/San_Juan"] = "Argentina - San Juan";
|
90 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/San_Luis"] = "Argentina - San Luis";
|
91 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Tucuman"] = "Argentina - Tucuman";
|
92 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Ushuaia"] = "Argentina - Ushuaia";
|
93 |
-
$wpbc_booking_region_cities_list["America"]["Aruba"] = "Aruba";
|
94 |
-
$wpbc_booking_region_cities_list["America"]["Asuncion"] = "Asuncion";
|
95 |
-
$wpbc_booking_region_cities_list["America"]["Atikokan"] = "Atikokan";
|
96 |
-
$wpbc_booking_region_cities_list["America"]["Bahia"] = "Bahia";
|
97 |
-
$wpbc_booking_region_cities_list["America"]["Barbados"] = "Barbados";
|
98 |
-
$wpbc_booking_region_cities_list["America"]["Belem"] = "Belem";
|
99 |
-
$wpbc_booking_region_cities_list["America"]["Belize"] = "Belize";
|
100 |
-
$wpbc_booking_region_cities_list["America"]["Blanc-Sablon"] = "Blanc-Sablon";
|
101 |
-
$wpbc_booking_region_cities_list["America"]["Boa_Vista"] = "Boa Vista";
|
102 |
-
$wpbc_booking_region_cities_list["America"]["Bogota"] = "Bogota";
|
103 |
-
$wpbc_booking_region_cities_list["America"]["Boise"] = "Boise";
|
104 |
-
$wpbc_booking_region_cities_list["America"]["Cambridge_Bay"] = "Cambridge Bay";
|
105 |
-
$wpbc_booking_region_cities_list["America"]["Campo_Grande"] = "Campo Grande";
|
106 |
-
$wpbc_booking_region_cities_list["America"]["Cancun"] = "Cancun";
|
107 |
-
$wpbc_booking_region_cities_list["America"]["Caracas"] = "Caracas";
|
108 |
-
$wpbc_booking_region_cities_list["America"]["Cayenne"] = "Cayenne";
|
109 |
-
$wpbc_booking_region_cities_list["America"]["Cayman"] = "Cayman";
|
110 |
-
$wpbc_booking_region_cities_list["America"]["Chicago"] = "Chicago";
|
111 |
-
$wpbc_booking_region_cities_list["America"]["Chihuahua"] = "Chihuahua";
|
112 |
-
$wpbc_booking_region_cities_list["America"]["Costa_Rica"] = "Costa Rica";
|
113 |
-
$wpbc_booking_region_cities_list["America"]["Cuiaba"] = "Cuiaba";
|
114 |
-
$wpbc_booking_region_cities_list["America"]["Curacao"] = "Curacao";
|
115 |
-
$wpbc_booking_region_cities_list["America"]["Danmarkshavn"] = "Danmarkshavn";
|
116 |
-
$wpbc_booking_region_cities_list["America"]["Dawson"] = "Dawson";
|
117 |
-
$wpbc_booking_region_cities_list["America"]["Dawson_Creek"] = "Dawson Creek";
|
118 |
-
$wpbc_booking_region_cities_list["America"]["Denver"] = "Denver";
|
119 |
-
$wpbc_booking_region_cities_list["America"]["Detroit"] = "Detroit";
|
120 |
-
$wpbc_booking_region_cities_list["America"]["Dominica"] = "Dominica";
|
121 |
-
$wpbc_booking_region_cities_list["America"]["Edmonton"] = "Edmonton";
|
122 |
-
$wpbc_booking_region_cities_list["America"]["Eirunepe"] = "Eirunepe";
|
123 |
-
$wpbc_booking_region_cities_list["America"]["El_Salvador"] = "El Salvador";
|
124 |
-
$wpbc_booking_region_cities_list["America"]["Fortaleza"] = "Fortaleza";
|
125 |
-
$wpbc_booking_region_cities_list["America"]["Glace_Bay"] = "Glace Bay";
|
126 |
-
$wpbc_booking_region_cities_list["America"]["Godthab"] = "Godthab";
|
127 |
-
$wpbc_booking_region_cities_list["America"]["Goose_Bay"] = "Goose Bay";
|
128 |
-
$wpbc_booking_region_cities_list["America"]["Grand_Turk"] = "Grand Turk";
|
129 |
-
$wpbc_booking_region_cities_list["America"]["Grenada"] = "Grenada";
|
130 |
-
$wpbc_booking_region_cities_list["America"]["Guadeloupe"] = "Guadeloupe";
|
131 |
-
$wpbc_booking_region_cities_list["America"]["Guatemala"] = "Guatemala";
|
132 |
-
$wpbc_booking_region_cities_list["America"]["Guayaquil"] = "Guayaquil";
|
133 |
-
$wpbc_booking_region_cities_list["America"]["Guyana"] = "Guyana";
|
134 |
-
$wpbc_booking_region_cities_list["America"]["Halifax"] = "Halifax";
|
135 |
-
$wpbc_booking_region_cities_list["America"]["Havana"] = "Havana";
|
136 |
-
$wpbc_booking_region_cities_list["America"]["Hermosillo"] = "Hermosillo";
|
137 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Indianapolis"] = "Indiana - Indianapolis";
|
138 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Knox"] = "Indiana - Knox";
|
139 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Marengo"] = "Indiana - Marengo";
|
140 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Petersburg"] = "Indiana - Petersburg";
|
141 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Tell_City"] = "Indiana - Tell City";
|
142 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Vevay"] = "Indiana - Vevay";
|
143 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Vincennes"] = "Indiana - Vincennes";
|
144 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Winamac"] = "Indiana - Winamac";
|
145 |
-
$wpbc_booking_region_cities_list["America"]["Inuvik"] = "Inuvik";
|
146 |
-
$wpbc_booking_region_cities_list["America"]["Iqaluit"] = "Iqaluit";
|
147 |
-
$wpbc_booking_region_cities_list["America"]["Jamaica"] = "Jamaica";
|
148 |
-
$wpbc_booking_region_cities_list["America"]["Juneau"] = "Juneau";
|
149 |
-
$wpbc_booking_region_cities_list["America"]["Kentucky/Louisville"] = "Kentucky - Louisville";
|
150 |
-
$wpbc_booking_region_cities_list["America"]["Kentucky/Monticello"] = "Kentucky - Monticello";
|
151 |
-
$wpbc_booking_region_cities_list["America"]["La_Paz"] = "La Paz";
|
152 |
-
$wpbc_booking_region_cities_list["America"]["Lima"] = "Lima";
|
153 |
-
$wpbc_booking_region_cities_list["America"]["Los_Angeles"] = "Los Angeles";
|
154 |
-
$wpbc_booking_region_cities_list["America"]["Maceio"] = "Maceio";
|
155 |
-
$wpbc_booking_region_cities_list["America"]["Managua"] = "Managua";
|
156 |
-
$wpbc_booking_region_cities_list["America"]["Manaus"] = "Manaus";
|
157 |
-
$wpbc_booking_region_cities_list["America"]["Marigot"] = "Marigot";
|
158 |
-
$wpbc_booking_region_cities_list["America"]["Martinique"] = "Martinique";
|
159 |
-
$wpbc_booking_region_cities_list["America"]["Mazatlan"] = "Mazatlan";
|
160 |
-
$wpbc_booking_region_cities_list["America"]["Menominee"] = "Menominee";
|
161 |
-
$wpbc_booking_region_cities_list["America"]["Merida"] = "Merida";
|
162 |
-
$wpbc_booking_region_cities_list["America"]["Mexico_City"] = "Mexico City";
|
163 |
-
$wpbc_booking_region_cities_list["America"]["Miquelon"] = "Miquelon";
|
164 |
-
$wpbc_booking_region_cities_list["America"]["Moncton"] = "Moncton";
|
165 |
-
$wpbc_booking_region_cities_list["America"]["Monterrey"] = "Monterrey";
|
166 |
-
$wpbc_booking_region_cities_list["America"]["Montevideo"] = "Montevideo";
|
167 |
-
$wpbc_booking_region_cities_list["America"]["Montreal"] = "Montreal";
|
168 |
-
$wpbc_booking_region_cities_list["America"]["Montserrat"] = "Montserrat";
|
169 |
-
$wpbc_booking_region_cities_list["America"]["Nassau"] = "Nassau";
|
170 |
-
$wpbc_booking_region_cities_list["America"]["New_York"] = "New York";
|
171 |
-
$wpbc_booking_region_cities_list["America"]["Nipigon"] = "Nipigon";
|
172 |
-
$wpbc_booking_region_cities_list["America"]["Nome"] = "Nome";
|
173 |
-
$wpbc_booking_region_cities_list["America"]["Noronha"] = "Noronha";
|
174 |
-
$wpbc_booking_region_cities_list["America"]["North_Dakota/Center"] = "North Dakota - Center";
|
175 |
-
$wpbc_booking_region_cities_list["America"]["North_Dakota/New_Salem"] = "North Dakota - New Salem";
|
176 |
-
$wpbc_booking_region_cities_list["America"]["Panama"] = "Panama";
|
177 |
-
$wpbc_booking_region_cities_list["America"]["Pangnirtung"] = "Pangnirtung";
|
178 |
-
$wpbc_booking_region_cities_list["America"]["Paramaribo"] = "Paramaribo";
|
179 |
-
$wpbc_booking_region_cities_list["America"]["Phoenix"] = "Phoenix";
|
180 |
-
$wpbc_booking_region_cities_list["America"]["Port-au-Prince"] = "Port-au-Prince";
|
181 |
-
$wpbc_booking_region_cities_list["America"]["Port_of_Spain"] = "Port of Spain";
|
182 |
-
$wpbc_booking_region_cities_list["America"]["Porto_Velho"] = "Porto Velho";
|
183 |
-
$wpbc_booking_region_cities_list["America"]["Puerto_Rico"] = "Puerto Rico";
|
184 |
-
$wpbc_booking_region_cities_list["America"]["Rainy_River"] = "Rainy River";
|
185 |
-
$wpbc_booking_region_cities_list["America"]["Rankin_Inlet"] = "Rankin Inlet";
|
186 |
-
$wpbc_booking_region_cities_list["America"]["Recife"] = "Recife";
|
187 |
-
$wpbc_booking_region_cities_list["America"]["Regina"] = "Regina";
|
188 |
-
$wpbc_booking_region_cities_list["America"]["Resolute"] = "Resolute";
|
189 |
-
$wpbc_booking_region_cities_list["America"]["Rio_Branco"] = "Rio Branco";
|
190 |
-
$wpbc_booking_region_cities_list["America"]["Santarem"] = "Santarem";
|
191 |
-
$wpbc_booking_region_cities_list["America"]["Santiago"] = "Santiago";
|
192 |
-
$wpbc_booking_region_cities_list["America"]["Santo_Domingo"] = "Santo Domingo";
|
193 |
-
$wpbc_booking_region_cities_list["America"]["Sao_Paulo"] = "Sao Paulo";
|
194 |
-
$wpbc_booking_region_cities_list["America"]["Scoresbysund"] = "Scoresbysund";
|
195 |
-
$wpbc_booking_region_cities_list["America"]["Shiprock"] = "Shiprock";
|
196 |
-
$wpbc_booking_region_cities_list["America"]["St_Barthelemy"] = "St Barthelemy";
|
197 |
-
$wpbc_booking_region_cities_list["America"]["St_Johns"] = "St Johns";
|
198 |
-
$wpbc_booking_region_cities_list["America"]["St_Kitts"] = "St Kitts";
|
199 |
-
$wpbc_booking_region_cities_list["America"]["St_Lucia"] = "St Lucia";
|
200 |
-
$wpbc_booking_region_cities_list["America"]["St_Thomas"] = "St Thomas";
|
201 |
-
$wpbc_booking_region_cities_list["America"]["St_Vincent"] = "St Vincent";
|
202 |
-
$wpbc_booking_region_cities_list["America"]["Swift_Current"] = "Swift Current";
|
203 |
-
$wpbc_booking_region_cities_list["America"]["Tegucigalpa"] = "Tegucigalpa";
|
204 |
-
$wpbc_booking_region_cities_list["America"]["Thule"] = "Thule";
|
205 |
-
$wpbc_booking_region_cities_list["America"]["Thunder_Bay"] = "Thunder Bay";
|
206 |
-
$wpbc_booking_region_cities_list["America"]["Tijuana"] = "Tijuana";
|
207 |
-
$wpbc_booking_region_cities_list["America"]["Toronto"] = "Toronto";
|
208 |
-
$wpbc_booking_region_cities_list["America"]["Tortola"] = "Tortola";
|
209 |
-
$wpbc_booking_region_cities_list["America"]["Vancouver"] = "Vancouver";
|
210 |
-
$wpbc_booking_region_cities_list["America"]["Whitehorse"] = "Whitehorse";
|
211 |
-
$wpbc_booking_region_cities_list["America"]["Winnipeg"] = "Winnipeg";
|
212 |
-
$wpbc_booking_region_cities_list["America"]["Yakutat"] = "Yakutat";
|
213 |
-
$wpbc_booking_region_cities_list["America"]["Yellowknife"] = "Yellowknife";
|
214 |
-
|
215 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Casey"] = "Casey";
|
216 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Davis"] = "Davis";
|
217 |
-
$wpbc_booking_region_cities_list["Antarctica"]["DumontDUrville"] = "DumontDUrville";
|
218 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Mawson"] = "Mawson";
|
219 |
-
$wpbc_booking_region_cities_list["Antarctica"]["McMurdo"] = "McMurdo";
|
220 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Palmer"] = "Palmer";
|
221 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Rothera"] = "Rothera";
|
222 |
-
$wpbc_booking_region_cities_list["Antarctica"]["South_Pole"] = "South Pole";
|
223 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Syowa"] = "Syowa";
|
224 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Vostok"] = "Vostok";
|
225 |
-
|
226 |
-
$wpbc_booking_region_cities_list["Arctic"]["Longyearbyen"] = "Longyearbyen";
|
227 |
-
|
228 |
-
$wpbc_booking_region_cities_list["Asia"]["Aden"] = "Aden";
|
229 |
-
$wpbc_booking_region_cities_list["Asia"]["Almaty"] = "Almaty";
|
230 |
-
$wpbc_booking_region_cities_list["Asia"]["Amman"] = "Amman";
|
231 |
-
$wpbc_booking_region_cities_list["Asia"]["Anadyr"] = "Anadyr";
|
232 |
-
$wpbc_booking_region_cities_list["Asia"]["Aqtau"] = "Aqtau";
|
233 |
-
$wpbc_booking_region_cities_list["Asia"]["Aqtobe"] = "Aqtobe";
|
234 |
-
$wpbc_booking_region_cities_list["Asia"]["Ashgabat"] = "Ashgabat";
|
235 |
-
$wpbc_booking_region_cities_list["Asia"]["Baghdad"] = "Baghdad";
|
236 |
-
$wpbc_booking_region_cities_list["Asia"]["Bahrain"] = "Bahrain";
|
237 |
-
$wpbc_booking_region_cities_list["Asia"]["Baku"] = "Baku";
|
238 |
-
$wpbc_booking_region_cities_list["Asia"]["Bangkok"] = "Bangkok";
|
239 |
-
$wpbc_booking_region_cities_list["Asia"]["Beirut"] = "Beirut";
|
240 |
-
$wpbc_booking_region_cities_list["Asia"]["Bishkek"] = "Bishkek";
|
241 |
-
$wpbc_booking_region_cities_list["Asia"]["Brunei"] = "Brunei";
|
242 |
-
$wpbc_booking_region_cities_list["Asia"]["Choibalsan"] = "Choibalsan";
|
243 |
-
$wpbc_booking_region_cities_list["Asia"]["Chongqing"] = "Chongqing";
|
244 |
-
$wpbc_booking_region_cities_list["Asia"]["Colombo"] = "Colombo";
|
245 |
-
$wpbc_booking_region_cities_list["Asia"]["Damascus"] = "Damascus";
|
246 |
-
$wpbc_booking_region_cities_list["Asia"]["Dhaka"] = "Dhaka";
|
247 |
-
$wpbc_booking_region_cities_list["Asia"]["Dili"] = "Dili";
|
248 |
-
$wpbc_booking_region_cities_list["Asia"]["Dubai"] = "Dubai";
|
249 |
-
$wpbc_booking_region_cities_list["Asia"]["Dushanbe"] = "Dushanbe";
|
250 |
-
$wpbc_booking_region_cities_list["Asia"]["Gaza"] = "Gaza";
|
251 |
-
$wpbc_booking_region_cities_list["Asia"]["Harbin"] = "Harbin";
|
252 |
-
$wpbc_booking_region_cities_list["Asia"]["Ho_Chi_Minh"] = "Ho Chi Minh";
|
253 |
-
$wpbc_booking_region_cities_list["Asia"]["Hong_Kong"] = "Hong Kong";
|
254 |
-
$wpbc_booking_region_cities_list["Asia"]["Hovd"] = "Hovd";
|
255 |
-
$wpbc_booking_region_cities_list["Asia"]["Irkutsk"] = "Irkutsk";
|
256 |
-
$wpbc_booking_region_cities_list["Asia"]["Jakarta"] = "Jakarta";
|
257 |
-
$wpbc_booking_region_cities_list["Asia"]["Jayapura"] = "Jayapura";
|
258 |
-
$wpbc_booking_region_cities_list["Asia"]["Jerusalem"] = "Jerusalem";
|
259 |
-
$wpbc_booking_region_cities_list["Asia"]["Kabul"] = "Kabul";
|
260 |
-
$wpbc_booking_region_cities_list["Asia"]["Kamchatka"] = "Kamchatka";
|
261 |
-
$wpbc_booking_region_cities_list["Asia"]["Karachi"] = "Karachi";
|
262 |
-
$wpbc_booking_region_cities_list["Asia"]["Kashgar"] = "Kashgar";
|
263 |
-
$wpbc_booking_region_cities_list["Asia"]["Kathmandu"] = "Kathmandu";
|
264 |
-
$wpbc_booking_region_cities_list["Asia"]["Kolkata"] = "Kolkata";
|
265 |
-
$wpbc_booking_region_cities_list["Asia"]["Krasnoyarsk"] = "Krasnoyarsk";
|
266 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuala_Lumpur"] = "Kuala Lumpur";
|
267 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuching"] = "Kuching";
|
268 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuwait"] = "Kuwait";
|
269 |
-
$wpbc_booking_region_cities_list["Asia"]["Macau"] = "Macau";
|
270 |
-
$wpbc_booking_region_cities_list["Asia"]["Magadan"] = "Magadan";
|
271 |
-
$wpbc_booking_region_cities_list["Asia"]["Makassar"] = "Makassar";
|
272 |
-
$wpbc_booking_region_cities_list["Asia"]["Manila"] = "Manila";
|
273 |
-
$wpbc_booking_region_cities_list["Asia"]["Muscat"] = "Muscat";
|
274 |
-
$wpbc_booking_region_cities_list["Asia"]["Nicosia"] = "Nicosia";
|
275 |
-
$wpbc_booking_region_cities_list["Asia"]["Novosibirsk"] = "Novosibirsk";
|
276 |
-
$wpbc_booking_region_cities_list["Asia"]["Omsk"] = "Omsk";
|
277 |
-
$wpbc_booking_region_cities_list["Asia"]["Oral"] = "Oral";
|
278 |
-
$wpbc_booking_region_cities_list["Asia"]["Phnom_Penh"] = "Phnom Penh";
|
279 |
-
$wpbc_booking_region_cities_list["Asia"]["Pontianak"] = "Pontianak";
|
280 |
-
$wpbc_booking_region_cities_list["Asia"]["Pyongyang"] = "Pyongyang";
|
281 |
-
$wpbc_booking_region_cities_list["Asia"]["Qatar"] = "Qatar";
|
282 |
-
$wpbc_booking_region_cities_list["Asia"]["Qyzylorda"] = "Qyzylorda";
|
283 |
-
$wpbc_booking_region_cities_list["Asia"]["Rangoon"] = "Rangoon";
|
284 |
-
$wpbc_booking_region_cities_list["Asia"]["Riyadh"] = "Riyadh";
|
285 |
-
$wpbc_booking_region_cities_list["Asia"]["Sakhalin"] = "Sakhalin";
|
286 |
-
$wpbc_booking_region_cities_list["Asia"]["Samarkand"] = "Samarkand";
|
287 |
-
$wpbc_booking_region_cities_list["Asia"]["Seoul"] = "Seoul";
|
288 |
-
$wpbc_booking_region_cities_list["Asia"]["Shanghai"] = "Shanghai";
|
289 |
-
$wpbc_booking_region_cities_list["Asia"]["Singapore"] = "Singapore";
|
290 |
-
$wpbc_booking_region_cities_list["Asia"]["Taipei"] = "Taipei";
|
291 |
-
$wpbc_booking_region_cities_list["Asia"]["Tashkent"] = "Tashkent";
|
292 |
-
$wpbc_booking_region_cities_list["Asia"]["Tbilisi"] = "Tbilisi";
|
293 |
-
$wpbc_booking_region_cities_list["Asia"]["Tehran"] = "Tehran";
|
294 |
-
$wpbc_booking_region_cities_list["Asia"]["Thimphu"] = "Thimphu";
|
295 |
-
$wpbc_booking_region_cities_list["Asia"]["Tokyo"] = "Tokyo";
|
296 |
-
$wpbc_booking_region_cities_list["Asia"]["Ulaanbaatar"] = "Ulaanbaatar";
|
297 |
-
$wpbc_booking_region_cities_list["Asia"]["Urumqi"] = "Urumqi";
|
298 |
-
$wpbc_booking_region_cities_list["Asia"]["Vientiane"] = "Vientiane";
|
299 |
-
$wpbc_booking_region_cities_list["Asia"]["Vladivostok"] = "Vladivostok";
|
300 |
-
$wpbc_booking_region_cities_list["Asia"]["Yakutsk"] = "Yakutsk";
|
301 |
-
$wpbc_booking_region_cities_list["Asia"]["Yekaterinburg"] = "Yekaterinburg";
|
302 |
-
$wpbc_booking_region_cities_list["Asia"]["Yerevan"] = "Yerevan";
|
303 |
-
|
304 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Azores"] = "Azores";
|
305 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Bermuda"] = "Bermuda";
|
306 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Canary"] = "Canary";
|
307 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Cape_Verde"] = "Cape Verde";
|
308 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Faroe"] = "Faroe";
|
309 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Madeira"] = "Madeira";
|
310 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Reykjavik"] = "Reykjavik";
|
311 |
-
$wpbc_booking_region_cities_list["Atlantic"]["South_Georgia"] = "South Georgia";
|
312 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Stanley"] = "Stanley";
|
313 |
-
$wpbc_booking_region_cities_list["Atlantic"]["St_Helena"] = "St Helena";
|
314 |
-
|
315 |
-
$wpbc_booking_region_cities_list["Australia"]["Adelaide"] = "Adelaide";
|
316 |
-
$wpbc_booking_region_cities_list["Australia"]["Brisbane"] = "Brisbane";
|
317 |
-
$wpbc_booking_region_cities_list["Australia"]["Broken_Hill"] = "Broken Hill";
|
318 |
-
$wpbc_booking_region_cities_list["Australia"]["Currie"] = "Currie";
|
319 |
-
$wpbc_booking_region_cities_list["Australia"]["Darwin"] = "Darwin";
|
320 |
-
$wpbc_booking_region_cities_list["Australia"]["Eucla"] = "Eucla";
|
321 |
-
$wpbc_booking_region_cities_list["Australia"]["Hobart"] = "Hobart";
|
322 |
-
$wpbc_booking_region_cities_list["Australia"]["Lindeman"] = "Lindeman";
|
323 |
-
$wpbc_booking_region_cities_list["Australia"]["Lord_Howe"] = "Lord Howe";
|
324 |
-
$wpbc_booking_region_cities_list["Australia"]["Melbourne"] = "Melbourne";
|
325 |
-
$wpbc_booking_region_cities_list["Australia"]["Perth"] = "Perth";
|
326 |
-
$wpbc_booking_region_cities_list["Australia"]["Sydney"] = "Sydney";
|
327 |
-
|
328 |
-
$wpbc_booking_region_cities_list["Europe"]["Amsterdam"] = "Amsterdam";
|
329 |
-
$wpbc_booking_region_cities_list["Europe"]["Andorra"] = "Andorra";
|
330 |
-
$wpbc_booking_region_cities_list["Europe"]["Athens"] = "Athens";
|
331 |
-
$wpbc_booking_region_cities_list["Europe"]["Belgrade"] = "Belgrade";
|
332 |
-
$wpbc_booking_region_cities_list["Europe"]["Berlin"] = "Berlin";
|
333 |
-
$wpbc_booking_region_cities_list["Europe"]["Bratislava"] = "Bratislava";
|
334 |
-
$wpbc_booking_region_cities_list["Europe"]["Brussels"] = "Brussels";
|
335 |
-
$wpbc_booking_region_cities_list["Europe"]["Bucharest"] = "Bucharest";
|
336 |
-
$wpbc_booking_region_cities_list["Europe"]["Budapest"] = "Budapest";
|
337 |
-
$wpbc_booking_region_cities_list["Europe"]["Chisinau"] = "Chisinau";
|
338 |
-
$wpbc_booking_region_cities_list["Europe"]["Copenhagen"] = "Copenhagen";
|
339 |
-
$wpbc_booking_region_cities_list["Europe"]["Dublin"] = "Dublin";
|
340 |
-
$wpbc_booking_region_cities_list["Europe"]["Gibraltar"] = "Gibraltar";
|
341 |
-
$wpbc_booking_region_cities_list["Europe"]["Guernsey"] = "Guernsey";
|
342 |
-
$wpbc_booking_region_cities_list["Europe"]["Helsinki"] = "Helsinki";
|
343 |
-
$wpbc_booking_region_cities_list["Europe"]["Isle_of_Man"] = "Isle of Man";
|
344 |
-
$wpbc_booking_region_cities_list["Europe"]["Istanbul"] = "Istanbul";
|
345 |
-
$wpbc_booking_region_cities_list["Europe"]["Jersey"] = "Jersey";
|
346 |
-
$wpbc_booking_region_cities_list["Europe"]["Kaliningrad"] = "Kaliningrad";
|
347 |
-
$wpbc_booking_region_cities_list["Europe"]["Kiev"] = "Kiev";
|
348 |
-
$wpbc_booking_region_cities_list["Europe"]["Lisbon"] = "Lisbon";
|
349 |
-
$wpbc_booking_region_cities_list["Europe"]["Ljubljana"] = "Ljubljana";
|
350 |
-
$wpbc_booking_region_cities_list["Europe"]["London"] = "London";
|
351 |
-
$wpbc_booking_region_cities_list["Europe"]["Luxembourg"] = "Luxembourg";
|
352 |
-
$wpbc_booking_region_cities_list["Europe"]["Madrid"] = "Madrid";
|
353 |
-
$wpbc_booking_region_cities_list["Europe"]["Malta"] = "Malta";
|
354 |
-
$wpbc_booking_region_cities_list["Europe"]["Mariehamn"] = "Mariehamn";
|
355 |
-
$wpbc_booking_region_cities_list["Europe"]["Minsk"] = "Minsk";
|
356 |
-
$wpbc_booking_region_cities_list["Europe"]["Monaco"] = "Monaco";
|
357 |
-
$wpbc_booking_region_cities_list["Europe"]["Moscow"] = "Moscow";
|
358 |
-
$wpbc_booking_region_cities_list["Europe"]["Oslo"] = "Oslo";
|
359 |
-
$wpbc_booking_region_cities_list["Europe"]["Paris"] = "Paris";
|
360 |
-
$wpbc_booking_region_cities_list["Europe"]["Podgorica"] = "Podgorica";
|
361 |
-
$wpbc_booking_region_cities_list["Europe"]["Prague"] = "Prague";
|
362 |
-
$wpbc_booking_region_cities_list["Europe"]["Riga"] = "Riga";
|
363 |
-
$wpbc_booking_region_cities_list["Europe"]["Rome"] = "Rome";
|
364 |
-
$wpbc_booking_region_cities_list["Europe"]["Samara"] = "Samara";
|
365 |
-
$wpbc_booking_region_cities_list["Europe"]["San_Marino"] = "San Marino";
|
366 |
-
$wpbc_booking_region_cities_list["Europe"]["Sarajevo"] = "Sarajevo";
|
367 |
-
$wpbc_booking_region_cities_list["Europe"]["Simferopol"] = "Simferopol";
|
368 |
-
$wpbc_booking_region_cities_list["Europe"]["Skopje"] = "Skopje";
|
369 |
-
$wpbc_booking_region_cities_list["Europe"]["Sofia"] = "Sofia";
|
370 |
-
$wpbc_booking_region_cities_list["Europe"]["Stockholm"] = "Stockholm";
|
371 |
-
$wpbc_booking_region_cities_list["Europe"]["Tallinn"] = "Tallinn";
|
372 |
-
$wpbc_booking_region_cities_list["Europe"]["Tirane"] = "Tirane";
|
373 |
-
$wpbc_booking_region_cities_list["Europe"]["Uzhgorod"] = "Uzhgorod";
|
374 |
-
$wpbc_booking_region_cities_list["Europe"]["Vaduz"] = "Vaduz";
|
375 |
-
$wpbc_booking_region_cities_list["Europe"]["Vatican"] = "Vatican";
|
376 |
-
$wpbc_booking_region_cities_list["Europe"]["Vienna"] = "Vienna";
|
377 |
-
$wpbc_booking_region_cities_list["Europe"]["Vilnius"] = "Vilnius";
|
378 |
-
$wpbc_booking_region_cities_list["Europe"]["Volgograd"] = "Volgograd";
|
379 |
-
$wpbc_booking_region_cities_list["Europe"]["Warsaw"] = "Warsaw";
|
380 |
-
$wpbc_booking_region_cities_list["Europe"]["Zagreb"] = "Zagreb";
|
381 |
-
$wpbc_booking_region_cities_list["Europe"]["Zaporozhye"] = "Zaporozhye";
|
382 |
-
$wpbc_booking_region_cities_list["Europe"]["Zurich"] = "Zurich";
|
383 |
-
|
384 |
-
$wpbc_booking_region_cities_list["Indian"]["Antananarivo"] = "Antananarivo";
|
385 |
-
$wpbc_booking_region_cities_list["Indian"]["Chagos"] = "Chagos";
|
386 |
-
$wpbc_booking_region_cities_list["Indian"]["Christmas"] = "Christmas";
|
387 |
-
$wpbc_booking_region_cities_list["Indian"]["Cocos"] = "Cocos";
|
388 |
-
$wpbc_booking_region_cities_list["Indian"]["Comoro"] = "Comoro";
|
389 |
-
$wpbc_booking_region_cities_list["Indian"]["Kerguelen"] = "Kerguelen";
|
390 |
-
$wpbc_booking_region_cities_list["Indian"]["Mahe"] = "Mahe";
|
391 |
-
$wpbc_booking_region_cities_list["Indian"]["Maldives"] = "Maldives";
|
392 |
-
$wpbc_booking_region_cities_list["Indian"]["Mauritius"] = "Mauritius";
|
393 |
-
$wpbc_booking_region_cities_list["Indian"]["Mayotte"] = "Mayotte";
|
394 |
-
$wpbc_booking_region_cities_list["Indian"]["Reunion"] = "Reunion";
|
395 |
-
|
396 |
-
$wpbc_booking_region_cities_list["Pacific"]["Apia"] = "Apia";
|
397 |
-
$wpbc_booking_region_cities_list["Pacific"]["Auckland"] = "Auckland";
|
398 |
-
$wpbc_booking_region_cities_list["Pacific"]["Chatham"] = "Chatham";
|
399 |
-
$wpbc_booking_region_cities_list["Pacific"]["Easter"] = "Easter";
|
400 |
-
$wpbc_booking_region_cities_list["Pacific"]["Efate"] = "Efate";
|
401 |
-
$wpbc_booking_region_cities_list["Pacific"]["Enderbury"] = "Enderbury";
|
402 |
-
$wpbc_booking_region_cities_list["Pacific"]["Fakaofo"] = "Fakaofo";
|
403 |
-
$wpbc_booking_region_cities_list["Pacific"]["Fiji"] = "Fiji";
|
404 |
-
$wpbc_booking_region_cities_list["Pacific"]["Funafuti"] = "Funafuti";
|
405 |
-
$wpbc_booking_region_cities_list["Pacific"]["Galapagos"] = "Galapagos";
|
406 |
-
$wpbc_booking_region_cities_list["Pacific"]["Gambier"] = "Gambier";
|
407 |
-
$wpbc_booking_region_cities_list["Pacific"]["Guadalcanal"] = "Guadalcanal";
|
408 |
-
$wpbc_booking_region_cities_list["Pacific"]["Guam"] = "Guam";
|
409 |
-
$wpbc_booking_region_cities_list["Pacific"]["Honolulu"] = "Honolulu";
|
410 |
-
$wpbc_booking_region_cities_list["Pacific"]["Johnston"] = "Johnston";
|
411 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kiritimati"] = "Kiritimati";
|
412 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kosrae"] = "Kosrae";
|
413 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kwajalein"] = "Kwajalein";
|
414 |
-
$wpbc_booking_region_cities_list["Pacific"]["Majuro"] = "Majuro";
|
415 |
-
$wpbc_booking_region_cities_list["Pacific"]["Marquesas"] = "Marquesas";
|
416 |
-
$wpbc_booking_region_cities_list["Pacific"]["Midway"] = "Midway";
|
417 |
-
$wpbc_booking_region_cities_list["Pacific"]["Nauru"] = "Nauru";
|
418 |
-
$wpbc_booking_region_cities_list["Pacific"]["Niue"] = "Niue";
|
419 |
-
$wpbc_booking_region_cities_list["Pacific"]["Norfolk"] = "Norfolk";
|
420 |
-
$wpbc_booking_region_cities_list["Pacific"]["Noumea"] = "Noumea";
|
421 |
-
$wpbc_booking_region_cities_list["Pacific"]["Pago_Pago"] = "Pago Pago";
|
422 |
-
$wpbc_booking_region_cities_list["Pacific"]["Palau"] = "Palau";
|
423 |
-
$wpbc_booking_region_cities_list["Pacific"]["Pitcairn"] = "Pitcairn";
|
424 |
-
$wpbc_booking_region_cities_list["Pacific"]["Ponape"] = "Ponape";
|
425 |
-
$wpbc_booking_region_cities_list["Pacific"]["Port_Moresby"] = "Port Moresby";
|
426 |
-
$wpbc_booking_region_cities_list["Pacific"]["Rarotonga"] = "Rarotonga";
|
427 |
-
$wpbc_booking_region_cities_list["Pacific"]["Saipan"] = "Saipan";
|
428 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tahiti"] = "Tahiti";
|
429 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tarawa"] = "Tarawa";
|
430 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tongatapu"] = "Tongatapu";
|
431 |
-
$wpbc_booking_region_cities_list["Pacific"]["Truk"] = "Truk";
|
432 |
-
$wpbc_booking_region_cities_list["Pacific"]["Wake"] = "Wake";
|
433 |
-
$wpbc_booking_region_cities_list["Pacific"]["Wallis"] = "Wallis";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpdev-country-list-it_IT.php
DELETED
@@ -1,679 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// Here you can translate countries into your languages, which is non English
|
3 |
-
|
4 |
-
// ISO 3166-1 country names and codes from http://opencountrycodes.appspot.com/javascript
|
5 |
-
global $wpdev_booking_country_list;
|
6 |
-
$wpdev_booking_country_list = array(
|
7 |
-
"IT" => "Italia",
|
8 |
-
"AF" => "Afghanistan",
|
9 |
-
"AX" => "Aland Islands",
|
10 |
-
"AL" => "Albania",
|
11 |
-
"DZ" => "Algeria",
|
12 |
-
"AS" => "American Samoa",
|
13 |
-
"AD" => "Andorra",
|
14 |
-
"AO" => "Angola",
|
15 |
-
"AI" => "Anguilla",
|
16 |
-
"AQ" => "Antarctica",
|
17 |
-
"AG" => "Antigua and Barbuda",
|
18 |
-
"AN" => "Antille olandesi",
|
19 |
-
"AR" => "Argentina",
|
20 |
-
"AM" => "Armenia",
|
21 |
-
"AW" => "Aruba",
|
22 |
-
"AU" => "Australia",
|
23 |
-
"AT" => "Austria",
|
24 |
-
"AZ" => "Azerbaijan",
|
25 |
-
"BS" => "Bahamas",
|
26 |
-
"BH" => "Bahrain",
|
27 |
-
"BD" => "Bangladesh",
|
28 |
-
"BB" => "Barbados",
|
29 |
-
"BY" => "Belarus",
|
30 |
-
"BE" => "Belgio",
|
31 |
-
"BZ" => "Belize",
|
32 |
-
"BJ" => "Benin",
|
33 |
-
"BM" => "Bermuda",
|
34 |
-
"BT" => "Bhutan",
|
35 |
-
"BO" => "Bolivia",
|
36 |
-
"BA" => "Bosnia Herzegovina",
|
37 |
-
"BW" => "Botswana",
|
38 |
-
"BV" => "Bouvet Island",
|
39 |
-
"BR" => "Brasile",
|
40 |
-
"IO" => "British Indian Ocean Territory",
|
41 |
-
"BN" => "Brunei Darussalam",
|
42 |
-
"BG" => "Bulgaria",
|
43 |
-
"BF" => "Burkina Faso",
|
44 |
-
"BI" => "Burundi",
|
45 |
-
"KH" => "Cambogia",
|
46 |
-
"CM" => "Cameroon",
|
47 |
-
"CA" => "Canada",
|
48 |
-
"CV" => "Capo Verde",
|
49 |
-
"KY" => "Cayman Islands",
|
50 |
-
"CF" => "Central African Republic",
|
51 |
-
"TD" => "Chad",
|
52 |
-
"CL" => "Cile",
|
53 |
-
"CN" => "Cina",
|
54 |
-
"CX" => "Christmas Island",
|
55 |
-
"CC" => "Cocos (Keeling) Islands",
|
56 |
-
"CO" => "Colombia",
|
57 |
-
"KM" => "Comoros",
|
58 |
-
"CG" => "Congo",
|
59 |
-
"CD" => "Congo, La Republica Democratica del",
|
60 |
-
"CK" => "Cook Islands",
|
61 |
-
"KP" => "Corea, Democratic People's Republic of",
|
62 |
-
"KR" => "Corea, Republica di",
|
63 |
-
"CR" => "Costa Rica",
|
64 |
-
"CI" => "Costa d'Avorio",
|
65 |
-
"HR" => "Croazia",
|
66 |
-
"CU" => "Cuba",
|
67 |
-
"CY" => "Cipro",
|
68 |
-
"DK" => "Danimarca",
|
69 |
-
"DJ" => "Djibouti",
|
70 |
-
"DM" => "Dominica",
|
71 |
-
"DO" => "Dominican Republic",
|
72 |
-
"EC" => "Ecuador",
|
73 |
-
"EG" => "Egitto",
|
74 |
-
"SV" => "El Salvador",
|
75 |
-
"AE" => "Emirati Arabi Uniti",
|
76 |
-
"GQ" => "Equatorial Guinea",
|
77 |
-
"ER" => "Eritrea",
|
78 |
-
"EE" => "Estonia",
|
79 |
-
"ET" => "Etiopia",
|
80 |
-
"FK" => "Falkland Islands (Malvinas)",
|
81 |
-
"FO" => "Faroe Islands",
|
82 |
-
"FJ" => "Fiji",
|
83 |
-
"PH" => "Filippine",
|
84 |
-
"FI" => "Finlandia",
|
85 |
-
"FR" => "Francia",
|
86 |
-
"GF" => "French Guiana",
|
87 |
-
"PF" => "French Polynesia",
|
88 |
-
"TF" => "French Southern Territories",
|
89 |
-
"GA" => "Gabon",
|
90 |
-
"GM" => "Gambia",
|
91 |
-
"GE" => "Georgia",
|
92 |
-
"DE" => "Germania",
|
93 |
-
"GH" => "Ghana",
|
94 |
-
"GI" => "Gibilterra",
|
95 |
-
"GR" => "Grecia",
|
96 |
-
"GL" => "Groenlandia",
|
97 |
-
"GD" => "Granada",
|
98 |
-
"GP" => "Guadalupe",
|
99 |
-
"GU" => "Guam",
|
100 |
-
"GT" => "Guatemala",
|
101 |
-
"GG" => "Guernsey",
|
102 |
-
"GN" => "Guinea",
|
103 |
-
"GW" => "Guinea-Bissau",
|
104 |
-
"GY" => "Guyana",
|
105 |
-
"HT" => "Haiti",
|
106 |
-
"HM" => "Heard Island and McDonald Islands",
|
107 |
-
"VA" => "Holy See (Vatican City State)",
|
108 |
-
"HN" => "Honduras",
|
109 |
-
"HK" => "Hong Kong",
|
110 |
-
"IS" => "Islanda",
|
111 |
-
"IN" => "India",
|
112 |
-
"ID" => "Indonesia",
|
113 |
-
"IR" => "Iran, Islamic Republic of",
|
114 |
-
"IQ" => "Iraq",
|
115 |
-
"IE" => "Irlanda",
|
116 |
-
"IM" => "Isle of Man",
|
117 |
-
"IL" => "Israele",
|
118 |
-
"IT" => "Italia",
|
119 |
-
"JM" => "Jamaica",
|
120 |
-
"JP" => "Japan",
|
121 |
-
"JE" => "Jersey",
|
122 |
-
"JO" => "Jordan",
|
123 |
-
"KZ" => "Kazakistan",
|
124 |
-
"KE" => "Kenya",
|
125 |
-
"KI" => "Kiribati",
|
126 |
-
"KW" => "Kuwait",
|
127 |
-
"KG" => "Kyrgyzstan",
|
128 |
-
"LA" => "Lao People's Democratic Republic",
|
129 |
-
"LV" => "Latvia",
|
130 |
-
"LB" => "Lebanon",
|
131 |
-
"LS" => "Lesotho",
|
132 |
-
"LR" => "Liberia",
|
133 |
-
"LY" => "Libyan Arab Jamahiriya",
|
134 |
-
"LI" => "Liechtenstein",
|
135 |
-
"LT" => "Lituania",
|
136 |
-
"LU" => "Lussemburgo",
|
137 |
-
"MO" => "Macao",
|
138 |
-
"MK" => "Macedonia, The Former Yugoslav Republic of",
|
139 |
-
"MG" => "Madagascar",
|
140 |
-
"MW" => "Malawi",
|
141 |
-
"MY" => "Malaysia",
|
142 |
-
"MV" => "Maldive",
|
143 |
-
"ML" => "Mali",
|
144 |
-
"MT" => "Malta",
|
145 |
-
"MH" => "Marshall Islands",
|
146 |
-
"MQ" => "Martinique",
|
147 |
-
"MR" => "Mauritania",
|
148 |
-
"MU" => "Mauritius",
|
149 |
-
"YT" => "Mayotte",
|
150 |
-
"MX" => "Messico",
|
151 |
-
"FM" => "Micronesia, Federated States of",
|
152 |
-
"MD" => "Moldova",
|
153 |
-
"MC" => "Monaco",
|
154 |
-
"MN" => "Mongolia",
|
155 |
-
"ME" => "Montenegro",
|
156 |
-
"MS" => "Montserrat",
|
157 |
-
"MA" => "Morocco",
|
158 |
-
"MZ" => "Mozambico",
|
159 |
-
"MM" => "Myanmar",
|
160 |
-
"NA" => "Namibia",
|
161 |
-
"NR" => "Nauru",
|
162 |
-
"NP" => "Nepal",
|
163 |
-
"NC" => "Nuova Caledonia",
|
164 |
-
"NZ" => "Nuova Zelanda",
|
165 |
-
"NI" => "Nicaragua",
|
166 |
-
"NE" => "Niger",
|
167 |
-
"NG" => "Nigeria",
|
168 |
-
"NU" => "Niue",
|
169 |
-
"NF" => "Norfolk Isole",
|
170 |
-
"MP" => "Northern Mariana Isole",
|
171 |
-
"NO" => "Norvegia",
|
172 |
-
"NL" => "Olanda",
|
173 |
-
"OM" => "Oman",
|
174 |
-
"PK" => "Pakistan",
|
175 |
-
"PW" => "Palau",
|
176 |
-
"PS" => "Palestinian Territory, Occupied",
|
177 |
-
"PA" => "Panama",
|
178 |
-
"PG" => "Papua Nuova Guinea",
|
179 |
-
"PY" => "Paraguay",
|
180 |
-
"PE" => "Peru",
|
181 |
-
"PN" => "Pitcairn",
|
182 |
-
"PL" => "Polonia",
|
183 |
-
"PT" => "Portogallo",
|
184 |
-
"PR" => "Porto Rico",
|
185 |
-
"QA" => "Qatar",
|
186 |
-
"GB" => "Regno Unito",
|
187 |
-
"CZ" => "Repubblica Ceca",
|
188 |
-
"RE" => "Réunion",
|
189 |
-
"RO" => "Romania",
|
190 |
-
"RU" => "Russia Federazione",
|
191 |
-
"RW" => "Rwanda",
|
192 |
-
"BL" => "Sant Barthélemy",
|
193 |
-
"SH" => "Sant Helena",
|
194 |
-
"KN" => "Sant Kitts and Nevis",
|
195 |
-
"LC" => "Santa Lucia",
|
196 |
-
"MF" => "San Martino",
|
197 |
-
"PM" => "San Pierre and Miquelon",
|
198 |
-
"VC" => "Saint Vincent and the Grenadines",
|
199 |
-
"WS" => "Samoa",
|
200 |
-
"SM" => "San Marino",
|
201 |
-
"ST" => "Sao Tome and Principe",
|
202 |
-
"SA" => "Saudita Arabia",
|
203 |
-
"SN" => "Senegal",
|
204 |
-
"RS" => "Serbia",
|
205 |
-
"SC" => "Seychelles",
|
206 |
-
"SL" => "Sierra Leone",
|
207 |
-
"SG" => "Singapore",
|
208 |
-
"SK" => "Slovacchia",
|
209 |
-
"SI" => "Slovenia",
|
210 |
-
"SB" => "Solomone Isole",
|
211 |
-
"SO" => "Somalia",
|
212 |
-
"ZA" => "Sud Africa",
|
213 |
-
"GS" => "Sud Georgia ed il Sud Sandwich Isole",
|
214 |
-
"ES" => "Spagna",
|
215 |
-
"LK" => "Sri Lanka",
|
216 |
-
"US" => "States Uniti",
|
217 |
-
"UM" => "Stati Uniti Minor Outlying Islands",
|
218 |
-
"SD" => "Sudan",
|
219 |
-
"SR" => "Suriname",
|
220 |
-
"SJ" => "Svalbard e Jan Mayen",
|
221 |
-
"SZ" => "Swaziland",
|
222 |
-
"SE" => "Svezia",
|
223 |
-
"CH" => "Svizzera",
|
224 |
-
"SY" => "Siria Republica Araba",
|
225 |
-
"TW" => "Taiwan, Provincia di Cina",
|
226 |
-
"TJ" => "Tajikistan",
|
227 |
-
"TZ" => "Tanzania, Repubblica Unita di",
|
228 |
-
"TH" => "Tailandia",
|
229 |
-
"TL" => "Timor-Leste",
|
230 |
-
"TG" => "Togo",
|
231 |
-
"TK" => "Tokelau",
|
232 |
-
"TO" => "Tonga",
|
233 |
-
"TT" => "Trinidad e Tobago",
|
234 |
-
"TN" => "Tunisia",
|
235 |
-
"TR" => "Turchia",
|
236 |
-
"TM" => "Turkmenistan",
|
237 |
-
"TC" => "Turks e Caicos Isole",
|
238 |
-
"TV" => "Tuvalu",
|
239 |
-
"UG" => "Uganda",
|
240 |
-
"UA" => "Ucraina",
|
241 |
-
"HU" => "Ungheria",
|
242 |
-
"UY" => "Uruguay",
|
243 |
-
"UZ" => "Uzbekistan",
|
244 |
-
"VU" => "Vanuatu",
|
245 |
-
"VE" => "Venezuela",
|
246 |
-
"VN" => "Viet Nam",
|
247 |
-
"VG" => "Virgin Islands, British",
|
248 |
-
"VI" => "Virgin Islands, U.S.",
|
249 |
-
"WF" => "Wallis and Futuna",
|
250 |
-
"EH" => "Western Sahara",
|
251 |
-
"YE" => "Yemen",
|
252 |
-
"ZM" => "Zambia",
|
253 |
-
"ZW" => "Zimbabwe"
|
254 |
-
);
|
255 |
-
|
256 |
-
global $wpbc_booking_region_cities_list;
|
257 |
-
$wpbc_booking_region_cities_list = array(
|
258 |
-
'Africa' => array()
|
259 |
-
, 'America' => array()
|
260 |
-
, 'Antarctica' => array()
|
261 |
-
, 'Arctic' => array()
|
262 |
-
, 'Asia' => array()
|
263 |
-
, 'Atlantic' => array()
|
264 |
-
, 'Australia' => array()
|
265 |
-
, 'Europe' => array()
|
266 |
-
, 'Indian' => array()
|
267 |
-
, 'Pacific' => array()
|
268 |
-
);
|
269 |
-
$wpbc_booking_region_cities_list["Africa"]["Abidjan"] = "Abidjan";
|
270 |
-
$wpbc_booking_region_cities_list["Africa"]["Accra"] = "Accra";
|
271 |
-
$wpbc_booking_region_cities_list["Africa"]["Addis_Ababa"] = "Addis Ababa";
|
272 |
-
$wpbc_booking_region_cities_list["Africa"]["Algiers"] = "Algiers";
|
273 |
-
$wpbc_booking_region_cities_list["Africa"]["Asmara"] = "Asmara";
|
274 |
-
$wpbc_booking_region_cities_list["Africa"]["Bamako"] = "Bamako";
|
275 |
-
$wpbc_booking_region_cities_list["Africa"]["Bangui"] = "Bangui";
|
276 |
-
$wpbc_booking_region_cities_list["Africa"]["Banjul"] = "Banjul";
|
277 |
-
$wpbc_booking_region_cities_list["Africa"]["Bissau"] = "Bissau";
|
278 |
-
$wpbc_booking_region_cities_list["Africa"]["Blantyre"] = "Blantyre";
|
279 |
-
$wpbc_booking_region_cities_list["Africa"]["Brazzaville"] = "Brazzaville";
|
280 |
-
$wpbc_booking_region_cities_list["Africa"]["Bujumbura"] = "Bujumbura";
|
281 |
-
$wpbc_booking_region_cities_list["Africa"]["Cairo"] = "Cairo";
|
282 |
-
$wpbc_booking_region_cities_list["Africa"]["Casablanca"] = "Casablanca";
|
283 |
-
$wpbc_booking_region_cities_list["Africa"]["Ceuta"] = "Ceuta";
|
284 |
-
$wpbc_booking_region_cities_list["Africa"]["Conakry"] = "Conakry";
|
285 |
-
$wpbc_booking_region_cities_list["Africa"]["Dakar"] = "Dakar";
|
286 |
-
$wpbc_booking_region_cities_list["Africa"]["Dar_es_Salaam"] = "Dar es Salaam";
|
287 |
-
$wpbc_booking_region_cities_list["Africa"]["Djibouti"] = "Djibouti";
|
288 |
-
$wpbc_booking_region_cities_list["Africa"]["Douala"] = "Douala";
|
289 |
-
$wpbc_booking_region_cities_list["Africa"]["El_Aaiun"] = "El Aaiun";
|
290 |
-
$wpbc_booking_region_cities_list["Africa"]["Freetown"] = "Freetown";
|
291 |
-
$wpbc_booking_region_cities_list["Africa"]["Gaborone"] = "Gaborone";
|
292 |
-
$wpbc_booking_region_cities_list["Africa"]["Harare"] = "Harare";
|
293 |
-
$wpbc_booking_region_cities_list["Africa"]["Johannesburg"] = "Johannesburg";
|
294 |
-
$wpbc_booking_region_cities_list["Africa"]["Kampala"] = "Kampala";
|
295 |
-
$wpbc_booking_region_cities_list["Africa"]["Khartoum"] = "Khartoum";
|
296 |
-
$wpbc_booking_region_cities_list["Africa"]["Kigali"] = "Kigali";
|
297 |
-
$wpbc_booking_region_cities_list["Africa"]["Kinshasa"] = "Kinshasa";
|
298 |
-
$wpbc_booking_region_cities_list["Africa"]["Lagos"] = "Lagos";
|
299 |
-
$wpbc_booking_region_cities_list["Africa"]["Libreville"] = "Libreville";
|
300 |
-
$wpbc_booking_region_cities_list["Africa"]["Lome"] = "Lome";
|
301 |
-
$wpbc_booking_region_cities_list["Africa"]["Luanda"] = "Luanda";
|
302 |
-
$wpbc_booking_region_cities_list["Africa"]["Lubumbashi"] = "Lubumbashi";
|
303 |
-
$wpbc_booking_region_cities_list["Africa"]["Lusaka"] = "Lusaka";
|
304 |
-
$wpbc_booking_region_cities_list["Africa"]["Malabo"] = "Malabo";
|
305 |
-
$wpbc_booking_region_cities_list["Africa"]["Maputo"] = "Maputo";
|
306 |
-
$wpbc_booking_region_cities_list["Africa"]["Maseru"] = "Maseru";
|
307 |
-
$wpbc_booking_region_cities_list["Africa"]["Mbabane"] = "Mbabane";
|
308 |
-
$wpbc_booking_region_cities_list["Africa"]["Mogadishu"] = "Mogadishu";
|
309 |
-
$wpbc_booking_region_cities_list["Africa"]["Monrovia"] = "Monrovia";
|
310 |
-
$wpbc_booking_region_cities_list["Africa"]["Nairobi"] = "Nairobi";
|
311 |
-
$wpbc_booking_region_cities_list["Africa"]["Ndjamena"] = "Ndjamena";
|
312 |
-
$wpbc_booking_region_cities_list["Africa"]["Niamey"] = "Niamey";
|
313 |
-
$wpbc_booking_region_cities_list["Africa"]["Nouakchott"] = "Nouakchott";
|
314 |
-
$wpbc_booking_region_cities_list["Africa"]["Ouagadougou"] = "Ouagadougou";
|
315 |
-
$wpbc_booking_region_cities_list["Africa"]["Porto-Novo"] = "Porto-Novo";
|
316 |
-
$wpbc_booking_region_cities_list["Africa"]["Sao_Tome"] = "Sao Tome";
|
317 |
-
$wpbc_booking_region_cities_list["Africa"]["Tripoli"] = "Tripoli";
|
318 |
-
$wpbc_booking_region_cities_list["Africa"]["Tunis"] = "Tunis";
|
319 |
-
$wpbc_booking_region_cities_list["Africa"]["Windhoek"] = "Windhoek";
|
320 |
-
|
321 |
-
$wpbc_booking_region_cities_list["America"]["Adak"] = "Adak";
|
322 |
-
$wpbc_booking_region_cities_list["America"]["Anchorage"] = "Anchorage";
|
323 |
-
$wpbc_booking_region_cities_list["America"]["Anguilla"] = "Anguilla";
|
324 |
-
$wpbc_booking_region_cities_list["America"]["Antigua"] = "Antigua";
|
325 |
-
$wpbc_booking_region_cities_list["America"]["Araguaina"] = "Araguaina";
|
326 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Buenos_Aires"] = "Argentina - Buenos Aires";
|
327 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Catamarca"] = "Argentina - Catamarca";
|
328 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Cordoba"] = "Argentina - Cordoba";
|
329 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Jujuy"] = "Argentina - Jujuy";
|
330 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/La_Rioja"] = "Argentina - La Rioja";
|
331 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Mendoza"] = "Argentina - Mendoza";
|
332 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Rio_Gallegos"] = "Argentina - Rio Gallegos";
|
333 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Salta"] = "Argentina - Salta";
|
334 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/San_Juan"] = "Argentina - San Juan";
|
335 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/San_Luis"] = "Argentina - San Luis";
|
336 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Tucuman"] = "Argentina - Tucuman";
|
337 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Ushuaia"] = "Argentina - Ushuaia";
|
338 |
-
$wpbc_booking_region_cities_list["America"]["Aruba"] = "Aruba";
|
339 |
-
$wpbc_booking_region_cities_list["America"]["Asuncion"] = "Asuncion";
|
340 |
-
$wpbc_booking_region_cities_list["America"]["Atikokan"] = "Atikokan";
|
341 |
-
$wpbc_booking_region_cities_list["America"]["Bahia"] = "Bahia";
|
342 |
-
$wpbc_booking_region_cities_list["America"]["Barbados"] = "Barbados";
|
343 |
-
$wpbc_booking_region_cities_list["America"]["Belem"] = "Belem";
|
344 |
-
$wpbc_booking_region_cities_list["America"]["Belize"] = "Belize";
|
345 |
-
$wpbc_booking_region_cities_list["America"]["Blanc-Sablon"] = "Blanc-Sablon";
|
346 |
-
$wpbc_booking_region_cities_list["America"]["Boa_Vista"] = "Boa Vista";
|
347 |
-
$wpbc_booking_region_cities_list["America"]["Bogota"] = "Bogota";
|
348 |
-
$wpbc_booking_region_cities_list["America"]["Boise"] = "Boise";
|
349 |
-
$wpbc_booking_region_cities_list["America"]["Cambridge_Bay"] = "Cambridge Bay";
|
350 |
-
$wpbc_booking_region_cities_list["America"]["Campo_Grande"] = "Campo Grande";
|
351 |
-
$wpbc_booking_region_cities_list["America"]["Cancun"] = "Cancun";
|
352 |
-
$wpbc_booking_region_cities_list["America"]["Caracas"] = "Caracas";
|
353 |
-
$wpbc_booking_region_cities_list["America"]["Cayenne"] = "Cayenne";
|
354 |
-
$wpbc_booking_region_cities_list["America"]["Cayman"] = "Cayman";
|
355 |
-
$wpbc_booking_region_cities_list["America"]["Chicago"] = "Chicago";
|
356 |
-
$wpbc_booking_region_cities_list["America"]["Chihuahua"] = "Chihuahua";
|
357 |
-
$wpbc_booking_region_cities_list["America"]["Costa_Rica"] = "Costa Rica";
|
358 |
-
$wpbc_booking_region_cities_list["America"]["Cuiaba"] = "Cuiaba";
|
359 |
-
$wpbc_booking_region_cities_list["America"]["Curacao"] = "Curacao";
|
360 |
-
$wpbc_booking_region_cities_list["America"]["Danmarkshavn"] = "Danmarkshavn";
|
361 |
-
$wpbc_booking_region_cities_list["America"]["Dawson"] = "Dawson";
|
362 |
-
$wpbc_booking_region_cities_list["America"]["Dawson_Creek"] = "Dawson Creek";
|
363 |
-
$wpbc_booking_region_cities_list["America"]["Denver"] = "Denver";
|
364 |
-
$wpbc_booking_region_cities_list["America"]["Detroit"] = "Detroit";
|
365 |
-
$wpbc_booking_region_cities_list["America"]["Dominica"] = "Dominica";
|
366 |
-
$wpbc_booking_region_cities_list["America"]["Edmonton"] = "Edmonton";
|
367 |
-
$wpbc_booking_region_cities_list["America"]["Eirunepe"] = "Eirunepe";
|
368 |
-
$wpbc_booking_region_cities_list["America"]["El_Salvador"] = "El Salvador";
|
369 |
-
$wpbc_booking_region_cities_list["America"]["Fortaleza"] = "Fortaleza";
|
370 |
-
$wpbc_booking_region_cities_list["America"]["Glace_Bay"] = "Glace Bay";
|
371 |
-
$wpbc_booking_region_cities_list["America"]["Godthab"] = "Godthab";
|
372 |
-
$wpbc_booking_region_cities_list["America"]["Goose_Bay"] = "Goose Bay";
|
373 |
-
$wpbc_booking_region_cities_list["America"]["Grand_Turk"] = "Grand Turk";
|
374 |
-
$wpbc_booking_region_cities_list["America"]["Grenada"] = "Grenada";
|
375 |
-
$wpbc_booking_region_cities_list["America"]["Guadeloupe"] = "Guadeloupe";
|
376 |
-
$wpbc_booking_region_cities_list["America"]["Guatemala"] = "Guatemala";
|
377 |
-
$wpbc_booking_region_cities_list["America"]["Guayaquil"] = "Guayaquil";
|
378 |
-
$wpbc_booking_region_cities_list["America"]["Guyana"] = "Guyana";
|
379 |
-
$wpbc_booking_region_cities_list["America"]["Halifax"] = "Halifax";
|
380 |
-
$wpbc_booking_region_cities_list["America"]["Havana"] = "Havana";
|
381 |
-
$wpbc_booking_region_cities_list["America"]["Hermosillo"] = "Hermosillo";
|
382 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Indianapolis"] = "Indiana - Indianapolis";
|
383 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Knox"] = "Indiana - Knox";
|
384 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Marengo"] = "Indiana - Marengo";
|
385 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Petersburg"] = "Indiana - Petersburg";
|
386 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Tell_City"] = "Indiana - Tell City";
|
387 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Vevay"] = "Indiana - Vevay";
|
388 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Vincennes"] = "Indiana - Vincennes";
|
389 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Winamac"] = "Indiana - Winamac";
|
390 |
-
$wpbc_booking_region_cities_list["America"]["Inuvik"] = "Inuvik";
|
391 |
-
$wpbc_booking_region_cities_list["America"]["Iqaluit"] = "Iqaluit";
|
392 |
-
$wpbc_booking_region_cities_list["America"]["Jamaica"] = "Jamaica";
|
393 |
-
$wpbc_booking_region_cities_list["America"]["Juneau"] = "Juneau";
|
394 |
-
$wpbc_booking_region_cities_list["America"]["Kentucky/Louisville"] = "Kentucky - Louisville";
|
395 |
-
$wpbc_booking_region_cities_list["America"]["Kentucky/Monticello"] = "Kentucky - Monticello";
|
396 |
-
$wpbc_booking_region_cities_list["America"]["La_Paz"] = "La Paz";
|
397 |
-
$wpbc_booking_region_cities_list["America"]["Lima"] = "Lima";
|
398 |
-
$wpbc_booking_region_cities_list["America"]["Los_Angeles"] = "Los Angeles";
|
399 |
-
$wpbc_booking_region_cities_list["America"]["Maceio"] = "Maceio";
|
400 |
-
$wpbc_booking_region_cities_list["America"]["Managua"] = "Managua";
|
401 |
-
$wpbc_booking_region_cities_list["America"]["Manaus"] = "Manaus";
|
402 |
-
$wpbc_booking_region_cities_list["America"]["Marigot"] = "Marigot";
|
403 |
-
$wpbc_booking_region_cities_list["America"]["Martinique"] = "Martinique";
|
404 |
-
$wpbc_booking_region_cities_list["America"]["Mazatlan"] = "Mazatlan";
|
405 |
-
$wpbc_booking_region_cities_list["America"]["Menominee"] = "Menominee";
|
406 |
-
$wpbc_booking_region_cities_list["America"]["Merida"] = "Merida";
|
407 |
-
$wpbc_booking_region_cities_list["America"]["Mexico_City"] = "Mexico City";
|
408 |
-
$wpbc_booking_region_cities_list["America"]["Miquelon"] = "Miquelon";
|
409 |
-
$wpbc_booking_region_cities_list["America"]["Moncton"] = "Moncton";
|
410 |
-
$wpbc_booking_region_cities_list["America"]["Monterrey"] = "Monterrey";
|
411 |
-
$wpbc_booking_region_cities_list["America"]["Montevideo"] = "Montevideo";
|
412 |
-
$wpbc_booking_region_cities_list["America"]["Montreal"] = "Montreal";
|
413 |
-
$wpbc_booking_region_cities_list["America"]["Montserrat"] = "Montserrat";
|
414 |
-
$wpbc_booking_region_cities_list["America"]["Nassau"] = "Nassau";
|
415 |
-
$wpbc_booking_region_cities_list["America"]["New_York"] = "New York";
|
416 |
-
$wpbc_booking_region_cities_list["America"]["Nipigon"] = "Nipigon";
|
417 |
-
$wpbc_booking_region_cities_list["America"]["Nome"] = "Nome";
|
418 |
-
$wpbc_booking_region_cities_list["America"]["Noronha"] = "Noronha";
|
419 |
-
$wpbc_booking_region_cities_list["America"]["North_Dakota/Center"] = "North Dakota - Center";
|
420 |
-
$wpbc_booking_region_cities_list["America"]["North_Dakota/New_Salem"] = "North Dakota - New Salem";
|
421 |
-
$wpbc_booking_region_cities_list["America"]["Panama"] = "Panama";
|
422 |
-
$wpbc_booking_region_cities_list["America"]["Pangnirtung"] = "Pangnirtung";
|
423 |
-
$wpbc_booking_region_cities_list["America"]["Paramaribo"] = "Paramaribo";
|
424 |
-
$wpbc_booking_region_cities_list["America"]["Phoenix"] = "Phoenix";
|
425 |
-
$wpbc_booking_region_cities_list["America"]["Port-au-Prince"] = "Port-au-Prince";
|
426 |
-
$wpbc_booking_region_cities_list["America"]["Port_of_Spain"] = "Port of Spain";
|
427 |
-
$wpbc_booking_region_cities_list["America"]["Porto_Velho"] = "Porto Velho";
|
428 |
-
$wpbc_booking_region_cities_list["America"]["Puerto_Rico"] = "Puerto Rico";
|
429 |
-
$wpbc_booking_region_cities_list["America"]["Rainy_River"] = "Rainy River";
|
430 |
-
$wpbc_booking_region_cities_list["America"]["Rankin_Inlet"] = "Rankin Inlet";
|
431 |
-
$wpbc_booking_region_cities_list["America"]["Recife"] = "Recife";
|
432 |
-
$wpbc_booking_region_cities_list["America"]["Regina"] = "Regina";
|
433 |
-
$wpbc_booking_region_cities_list["America"]["Resolute"] = "Resolute";
|
434 |
-
$wpbc_booking_region_cities_list["America"]["Rio_Branco"] = "Rio Branco";
|
435 |
-
$wpbc_booking_region_cities_list["America"]["Santarem"] = "Santarem";
|
436 |
-
$wpbc_booking_region_cities_list["America"]["Santiago"] = "Santiago";
|
437 |
-
$wpbc_booking_region_cities_list["America"]["Santo_Domingo"] = "Santo Domingo";
|
438 |
-
$wpbc_booking_region_cities_list["America"]["Sao_Paulo"] = "Sao Paulo";
|
439 |
-
$wpbc_booking_region_cities_list["America"]["Scoresbysund"] = "Scoresbysund";
|
440 |
-
$wpbc_booking_region_cities_list["America"]["Shiprock"] = "Shiprock";
|
441 |
-
$wpbc_booking_region_cities_list["America"]["St_Barthelemy"] = "St Barthelemy";
|
442 |
-
$wpbc_booking_region_cities_list["America"]["St_Johns"] = "St Johns";
|
443 |
-
$wpbc_booking_region_cities_list["America"]["St_Kitts"] = "St Kitts";
|
444 |
-
$wpbc_booking_region_cities_list["America"]["St_Lucia"] = "St Lucia";
|
445 |
-
$wpbc_booking_region_cities_list["America"]["St_Thomas"] = "St Thomas";
|
446 |
-
$wpbc_booking_region_cities_list["America"]["St_Vincent"] = "St Vincent";
|
447 |
-
$wpbc_booking_region_cities_list["America"]["Swift_Current"] = "Swift Current";
|
448 |
-
$wpbc_booking_region_cities_list["America"]["Tegucigalpa"] = "Tegucigalpa";
|
449 |
-
$wpbc_booking_region_cities_list["America"]["Thule"] = "Thule";
|
450 |
-
$wpbc_booking_region_cities_list["America"]["Thunder_Bay"] = "Thunder Bay";
|
451 |
-
$wpbc_booking_region_cities_list["America"]["Tijuana"] = "Tijuana";
|
452 |
-
$wpbc_booking_region_cities_list["America"]["Toronto"] = "Toronto";
|
453 |
-
$wpbc_booking_region_cities_list["America"]["Tortola"] = "Tortola";
|
454 |
-
$wpbc_booking_region_cities_list["America"]["Vancouver"] = "Vancouver";
|
455 |
-
$wpbc_booking_region_cities_list["America"]["Whitehorse"] = "Whitehorse";
|
456 |
-
$wpbc_booking_region_cities_list["America"]["Winnipeg"] = "Winnipeg";
|
457 |
-
$wpbc_booking_region_cities_list["America"]["Yakutat"] = "Yakutat";
|
458 |
-
$wpbc_booking_region_cities_list["America"]["Yellowknife"] = "Yellowknife";
|
459 |
-
|
460 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Casey"] = "Casey";
|
461 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Davis"] = "Davis";
|
462 |
-
$wpbc_booking_region_cities_list["Antarctica"]["DumontDUrville"] = "DumontDUrville";
|
463 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Mawson"] = "Mawson";
|
464 |
-
$wpbc_booking_region_cities_list["Antarctica"]["McMurdo"] = "McMurdo";
|
465 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Palmer"] = "Palmer";
|
466 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Rothera"] = "Rothera";
|
467 |
-
$wpbc_booking_region_cities_list["Antarctica"]["South_Pole"] = "South Pole";
|
468 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Syowa"] = "Syowa";
|
469 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Vostok"] = "Vostok";
|
470 |
-
|
471 |
-
$wpbc_booking_region_cities_list["Arctic"]["Longyearbyen"] = "Longyearbyen";
|
472 |
-
|
473 |
-
$wpbc_booking_region_cities_list["Asia"]["Aden"] = "Aden";
|
474 |
-
$wpbc_booking_region_cities_list["Asia"]["Almaty"] = "Almaty";
|
475 |
-
$wpbc_booking_region_cities_list["Asia"]["Amman"] = "Amman";
|
476 |
-
$wpbc_booking_region_cities_list["Asia"]["Anadyr"] = "Anadyr";
|
477 |
-
$wpbc_booking_region_cities_list["Asia"]["Aqtau"] = "Aqtau";
|
478 |
-
$wpbc_booking_region_cities_list["Asia"]["Aqtobe"] = "Aqtobe";
|
479 |
-
$wpbc_booking_region_cities_list["Asia"]["Ashgabat"] = "Ashgabat";
|
480 |
-
$wpbc_booking_region_cities_list["Asia"]["Baghdad"] = "Baghdad";
|
481 |
-
$wpbc_booking_region_cities_list["Asia"]["Bahrain"] = "Bahrain";
|
482 |
-
$wpbc_booking_region_cities_list["Asia"]["Baku"] = "Baku";
|
483 |
-
$wpbc_booking_region_cities_list["Asia"]["Bangkok"] = "Bangkok";
|
484 |
-
$wpbc_booking_region_cities_list["Asia"]["Beirut"] = "Beirut";
|
485 |
-
$wpbc_booking_region_cities_list["Asia"]["Bishkek"] = "Bishkek";
|
486 |
-
$wpbc_booking_region_cities_list["Asia"]["Brunei"] = "Brunei";
|
487 |
-
$wpbc_booking_region_cities_list["Asia"]["Choibalsan"] = "Choibalsan";
|
488 |
-
$wpbc_booking_region_cities_list["Asia"]["Chongqing"] = "Chongqing";
|
489 |
-
$wpbc_booking_region_cities_list["Asia"]["Colombo"] = "Colombo";
|
490 |
-
$wpbc_booking_region_cities_list["Asia"]["Damascus"] = "Damascus";
|
491 |
-
$wpbc_booking_region_cities_list["Asia"]["Dhaka"] = "Dhaka";
|
492 |
-
$wpbc_booking_region_cities_list["Asia"]["Dili"] = "Dili";
|
493 |
-
$wpbc_booking_region_cities_list["Asia"]["Dubai"] = "Dubai";
|
494 |
-
$wpbc_booking_region_cities_list["Asia"]["Dushanbe"] = "Dushanbe";
|
495 |
-
$wpbc_booking_region_cities_list["Asia"]["Gaza"] = "Gaza";
|
496 |
-
$wpbc_booking_region_cities_list["Asia"]["Harbin"] = "Harbin";
|
497 |
-
$wpbc_booking_region_cities_list["Asia"]["Ho_Chi_Minh"] = "Ho Chi Minh";
|
498 |
-
$wpbc_booking_region_cities_list["Asia"]["Hong_Kong"] = "Hong Kong";
|
499 |
-
$wpbc_booking_region_cities_list["Asia"]["Hovd"] = "Hovd";
|
500 |
-
$wpbc_booking_region_cities_list["Asia"]["Irkutsk"] = "Irkutsk";
|
501 |
-
$wpbc_booking_region_cities_list["Asia"]["Jakarta"] = "Jakarta";
|
502 |
-
$wpbc_booking_region_cities_list["Asia"]["Jayapura"] = "Jayapura";
|
503 |
-
$wpbc_booking_region_cities_list["Asia"]["Jerusalem"] = "Jerusalem";
|
504 |
-
$wpbc_booking_region_cities_list["Asia"]["Kabul"] = "Kabul";
|
505 |
-
$wpbc_booking_region_cities_list["Asia"]["Kamchatka"] = "Kamchatka";
|
506 |
-
$wpbc_booking_region_cities_list["Asia"]["Karachi"] = "Karachi";
|
507 |
-
$wpbc_booking_region_cities_list["Asia"]["Kashgar"] = "Kashgar";
|
508 |
-
$wpbc_booking_region_cities_list["Asia"]["Kathmandu"] = "Kathmandu";
|
509 |
-
$wpbc_booking_region_cities_list["Asia"]["Kolkata"] = "Kolkata";
|
510 |
-
$wpbc_booking_region_cities_list["Asia"]["Krasnoyarsk"] = "Krasnoyarsk";
|
511 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuala_Lumpur"] = "Kuala Lumpur";
|
512 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuching"] = "Kuching";
|
513 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuwait"] = "Kuwait";
|
514 |
-
$wpbc_booking_region_cities_list["Asia"]["Macau"] = "Macau";
|
515 |
-
$wpbc_booking_region_cities_list["Asia"]["Magadan"] = "Magadan";
|
516 |
-
$wpbc_booking_region_cities_list["Asia"]["Makassar"] = "Makassar";
|
517 |
-
$wpbc_booking_region_cities_list["Asia"]["Manila"] = "Manila";
|
518 |
-
$wpbc_booking_region_cities_list["Asia"]["Muscat"] = "Muscat";
|
519 |
-
$wpbc_booking_region_cities_list["Asia"]["Nicosia"] = "Nicosia";
|
520 |
-
$wpbc_booking_region_cities_list["Asia"]["Novosibirsk"] = "Novosibirsk";
|
521 |
-
$wpbc_booking_region_cities_list["Asia"]["Omsk"] = "Omsk";
|
522 |
-
$wpbc_booking_region_cities_list["Asia"]["Oral"] = "Oral";
|
523 |
-
$wpbc_booking_region_cities_list["Asia"]["Phnom_Penh"] = "Phnom Penh";
|
524 |
-
$wpbc_booking_region_cities_list["Asia"]["Pontianak"] = "Pontianak";
|
525 |
-
$wpbc_booking_region_cities_list["Asia"]["Pyongyang"] = "Pyongyang";
|
526 |
-
$wpbc_booking_region_cities_list["Asia"]["Qatar"] = "Qatar";
|
527 |
-
$wpbc_booking_region_cities_list["Asia"]["Qyzylorda"] = "Qyzylorda";
|
528 |
-
$wpbc_booking_region_cities_list["Asia"]["Rangoon"] = "Rangoon";
|
529 |
-
$wpbc_booking_region_cities_list["Asia"]["Riyadh"] = "Riyadh";
|
530 |
-
$wpbc_booking_region_cities_list["Asia"]["Sakhalin"] = "Sakhalin";
|
531 |
-
$wpbc_booking_region_cities_list["Asia"]["Samarkand"] = "Samarkand";
|
532 |
-
$wpbc_booking_region_cities_list["Asia"]["Seoul"] = "Seoul";
|
533 |
-
$wpbc_booking_region_cities_list["Asia"]["Shanghai"] = "Shanghai";
|
534 |
-
$wpbc_booking_region_cities_list["Asia"]["Singapore"] = "Singapore";
|
535 |
-
$wpbc_booking_region_cities_list["Asia"]["Taipei"] = "Taipei";
|
536 |
-
$wpbc_booking_region_cities_list["Asia"]["Tashkent"] = "Tashkent";
|
537 |
-
$wpbc_booking_region_cities_list["Asia"]["Tbilisi"] = "Tbilisi";
|
538 |
-
$wpbc_booking_region_cities_list["Asia"]["Tehran"] = "Tehran";
|
539 |
-
$wpbc_booking_region_cities_list["Asia"]["Thimphu"] = "Thimphu";
|
540 |
-
$wpbc_booking_region_cities_list["Asia"]["Tokyo"] = "Tokyo";
|
541 |
-
$wpbc_booking_region_cities_list["Asia"]["Ulaanbaatar"] = "Ulaanbaatar";
|
542 |
-
$wpbc_booking_region_cities_list["Asia"]["Urumqi"] = "Urumqi";
|
543 |
-
$wpbc_booking_region_cities_list["Asia"]["Vientiane"] = "Vientiane";
|
544 |
-
$wpbc_booking_region_cities_list["Asia"]["Vladivostok"] = "Vladivostok";
|
545 |
-
$wpbc_booking_region_cities_list["Asia"]["Yakutsk"] = "Yakutsk";
|
546 |
-
$wpbc_booking_region_cities_list["Asia"]["Yekaterinburg"] = "Yekaterinburg";
|
547 |
-
$wpbc_booking_region_cities_list["Asia"]["Yerevan"] = "Yerevan";
|
548 |
-
|
549 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Azores"] = "Azores";
|
550 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Bermuda"] = "Bermuda";
|
551 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Canary"] = "Canary";
|
552 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Cape_Verde"] = "Cape Verde";
|
553 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Faroe"] = "Faroe";
|
554 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Madeira"] = "Madeira";
|
555 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Reykjavik"] = "Reykjavik";
|
556 |
-
$wpbc_booking_region_cities_list["Atlantic"]["South_Georgia"] = "South Georgia";
|
557 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Stanley"] = "Stanley";
|
558 |
-
$wpbc_booking_region_cities_list["Atlantic"]["St_Helena"] = "St Helena";
|
559 |
-
|
560 |
-
$wpbc_booking_region_cities_list["Australia"]["Adelaide"] = "Adelaide";
|
561 |
-
$wpbc_booking_region_cities_list["Australia"]["Brisbane"] = "Brisbane";
|
562 |
-
$wpbc_booking_region_cities_list["Australia"]["Broken_Hill"] = "Broken Hill";
|
563 |
-
$wpbc_booking_region_cities_list["Australia"]["Currie"] = "Currie";
|
564 |
-
$wpbc_booking_region_cities_list["Australia"]["Darwin"] = "Darwin";
|
565 |
-
$wpbc_booking_region_cities_list["Australia"]["Eucla"] = "Eucla";
|
566 |
-
$wpbc_booking_region_cities_list["Australia"]["Hobart"] = "Hobart";
|
567 |
-
$wpbc_booking_region_cities_list["Australia"]["Lindeman"] = "Lindeman";
|
568 |
-
$wpbc_booking_region_cities_list["Australia"]["Lord_Howe"] = "Lord Howe";
|
569 |
-
$wpbc_booking_region_cities_list["Australia"]["Melbourne"] = "Melbourne";
|
570 |
-
$wpbc_booking_region_cities_list["Australia"]["Perth"] = "Perth";
|
571 |
-
$wpbc_booking_region_cities_list["Australia"]["Sydney"] = "Sydney";
|
572 |
-
|
573 |
-
$wpbc_booking_region_cities_list["Europe"]["Amsterdam"] = "Amsterdam";
|
574 |
-
$wpbc_booking_region_cities_list["Europe"]["Andorra"] = "Andorra";
|
575 |
-
$wpbc_booking_region_cities_list["Europe"]["Athens"] = "Athens";
|
576 |
-
$wpbc_booking_region_cities_list["Europe"]["Belgrade"] = "Belgrade";
|
577 |
-
$wpbc_booking_region_cities_list["Europe"]["Berlin"] = "Berlin";
|
578 |
-
$wpbc_booking_region_cities_list["Europe"]["Bratislava"] = "Bratislava";
|
579 |
-
$wpbc_booking_region_cities_list["Europe"]["Brussels"] = "Brussels";
|
580 |
-
$wpbc_booking_region_cities_list["Europe"]["Bucharest"] = "Bucharest";
|
581 |
-
$wpbc_booking_region_cities_list["Europe"]["Budapest"] = "Budapest";
|
582 |
-
$wpbc_booking_region_cities_list["Europe"]["Chisinau"] = "Chisinau";
|
583 |
-
$wpbc_booking_region_cities_list["Europe"]["Copenhagen"] = "Copenhagen";
|
584 |
-
$wpbc_booking_region_cities_list["Europe"]["Dublin"] = "Dublin";
|
585 |
-
$wpbc_booking_region_cities_list["Europe"]["Gibraltar"] = "Gibraltar";
|
586 |
-
$wpbc_booking_region_cities_list["Europe"]["Guernsey"] = "Guernsey";
|
587 |
-
$wpbc_booking_region_cities_list["Europe"]["Helsinki"] = "Helsinki";
|
588 |
-
$wpbc_booking_region_cities_list["Europe"]["Isle_of_Man"] = "Isle of Man";
|
589 |
-
$wpbc_booking_region_cities_list["Europe"]["Istanbul"] = "Istanbul";
|
590 |
-
$wpbc_booking_region_cities_list["Europe"]["Jersey"] = "Jersey";
|
591 |
-
$wpbc_booking_region_cities_list["Europe"]["Kaliningrad"] = "Kaliningrad";
|
592 |
-
$wpbc_booking_region_cities_list["Europe"]["Kiev"] = "Kiev";
|
593 |
-
$wpbc_booking_region_cities_list["Europe"]["Lisbon"] = "Lisbon";
|
594 |
-
$wpbc_booking_region_cities_list["Europe"]["Ljubljana"] = "Ljubljana";
|
595 |
-
$wpbc_booking_region_cities_list["Europe"]["London"] = "London";
|
596 |
-
$wpbc_booking_region_cities_list["Europe"]["Luxembourg"] = "Luxembourg";
|
597 |
-
$wpbc_booking_region_cities_list["Europe"]["Madrid"] = "Madrid";
|
598 |
-
$wpbc_booking_region_cities_list["Europe"]["Malta"] = "Malta";
|
599 |
-
$wpbc_booking_region_cities_list["Europe"]["Mariehamn"] = "Mariehamn";
|
600 |
-
$wpbc_booking_region_cities_list["Europe"]["Minsk"] = "Minsk";
|
601 |
-
$wpbc_booking_region_cities_list["Europe"]["Monaco"] = "Monaco";
|
602 |
-
$wpbc_booking_region_cities_list["Europe"]["Moscow"] = "Moscow";
|
603 |
-
$wpbc_booking_region_cities_list["Europe"]["Oslo"] = "Oslo";
|
604 |
-
$wpbc_booking_region_cities_list["Europe"]["Paris"] = "Paris";
|
605 |
-
$wpbc_booking_region_cities_list["Europe"]["Podgorica"] = "Podgorica";
|
606 |
-
$wpbc_booking_region_cities_list["Europe"]["Prague"] = "Prague";
|
607 |
-
$wpbc_booking_region_cities_list["Europe"]["Riga"] = "Riga";
|
608 |
-
$wpbc_booking_region_cities_list["Europe"]["Rome"] = "Rome";
|
609 |
-
$wpbc_booking_region_cities_list["Europe"]["Samara"] = "Samara";
|
610 |
-
$wpbc_booking_region_cities_list["Europe"]["San_Marino"] = "San Marino";
|
611 |
-
$wpbc_booking_region_cities_list["Europe"]["Sarajevo"] = "Sarajevo";
|
612 |
-
$wpbc_booking_region_cities_list["Europe"]["Simferopol"] = "Simferopol";
|
613 |
-
$wpbc_booking_region_cities_list["Europe"]["Skopje"] = "Skopje";
|
614 |
-
$wpbc_booking_region_cities_list["Europe"]["Sofia"] = "Sofia";
|
615 |
-
$wpbc_booking_region_cities_list["Europe"]["Stockholm"] = "Stockholm";
|
616 |
-
$wpbc_booking_region_cities_list["Europe"]["Tallinn"] = "Tallinn";
|
617 |
-
$wpbc_booking_region_cities_list["Europe"]["Tirane"] = "Tirane";
|
618 |
-
$wpbc_booking_region_cities_list["Europe"]["Uzhgorod"] = "Uzhgorod";
|
619 |
-
$wpbc_booking_region_cities_list["Europe"]["Vaduz"] = "Vaduz";
|
620 |
-
$wpbc_booking_region_cities_list["Europe"]["Vatican"] = "Vatican";
|
621 |
-
$wpbc_booking_region_cities_list["Europe"]["Vienna"] = "Vienna";
|
622 |
-
$wpbc_booking_region_cities_list["Europe"]["Vilnius"] = "Vilnius";
|
623 |
-
$wpbc_booking_region_cities_list["Europe"]["Volgograd"] = "Volgograd";
|
624 |
-
$wpbc_booking_region_cities_list["Europe"]["Warsaw"] = "Warsaw";
|
625 |
-
$wpbc_booking_region_cities_list["Europe"]["Zagreb"] = "Zagreb";
|
626 |
-
$wpbc_booking_region_cities_list["Europe"]["Zaporozhye"] = "Zaporozhye";
|
627 |
-
$wpbc_booking_region_cities_list["Europe"]["Zurich"] = "Zurich";
|
628 |
-
|
629 |
-
$wpbc_booking_region_cities_list["Indian"]["Antananarivo"] = "Antananarivo";
|
630 |
-
$wpbc_booking_region_cities_list["Indian"]["Chagos"] = "Chagos";
|
631 |
-
$wpbc_booking_region_cities_list["Indian"]["Christmas"] = "Christmas";
|
632 |
-
$wpbc_booking_region_cities_list["Indian"]["Cocos"] = "Cocos";
|
633 |
-
$wpbc_booking_region_cities_list["Indian"]["Comoro"] = "Comoro";
|
634 |
-
$wpbc_booking_region_cities_list["Indian"]["Kerguelen"] = "Kerguelen";
|
635 |
-
$wpbc_booking_region_cities_list["Indian"]["Mahe"] = "Mahe";
|
636 |
-
$wpbc_booking_region_cities_list["Indian"]["Maldives"] = "Maldives";
|
637 |
-
$wpbc_booking_region_cities_list["Indian"]["Mauritius"] = "Mauritius";
|
638 |
-
$wpbc_booking_region_cities_list["Indian"]["Mayotte"] = "Mayotte";
|
639 |
-
$wpbc_booking_region_cities_list["Indian"]["Reunion"] = "Reunion";
|
640 |
-
|
641 |
-
$wpbc_booking_region_cities_list["Pacific"]["Apia"] = "Apia";
|
642 |
-
$wpbc_booking_region_cities_list["Pacific"]["Auckland"] = "Auckland";
|
643 |
-
$wpbc_booking_region_cities_list["Pacific"]["Chatham"] = "Chatham";
|
644 |
-
$wpbc_booking_region_cities_list["Pacific"]["Easter"] = "Easter";
|
645 |
-
$wpbc_booking_region_cities_list["Pacific"]["Efate"] = "Efate";
|
646 |
-
$wpbc_booking_region_cities_list["Pacific"]["Enderbury"] = "Enderbury";
|
647 |
-
$wpbc_booking_region_cities_list["Pacific"]["Fakaofo"] = "Fakaofo";
|
648 |
-
$wpbc_booking_region_cities_list["Pacific"]["Fiji"] = "Fiji";
|
649 |
-
$wpbc_booking_region_cities_list["Pacific"]["Funafuti"] = "Funafuti";
|
650 |
-
$wpbc_booking_region_cities_list["Pacific"]["Galapagos"] = "Galapagos";
|
651 |
-
$wpbc_booking_region_cities_list["Pacific"]["Gambier"] = "Gambier";
|
652 |
-
$wpbc_booking_region_cities_list["Pacific"]["Guadalcanal"] = "Guadalcanal";
|
653 |
-
$wpbc_booking_region_cities_list["Pacific"]["Guam"] = "Guam";
|
654 |
-
$wpbc_booking_region_cities_list["Pacific"]["Honolulu"] = "Honolulu";
|
655 |
-
$wpbc_booking_region_cities_list["Pacific"]["Johnston"] = "Johnston";
|
656 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kiritimati"] = "Kiritimati";
|
657 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kosrae"] = "Kosrae";
|
658 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kwajalein"] = "Kwajalein";
|
659 |
-
$wpbc_booking_region_cities_list["Pacific"]["Majuro"] = "Majuro";
|
660 |
-
$wpbc_booking_region_cities_list["Pacific"]["Marquesas"] = "Marquesas";
|
661 |
-
$wpbc_booking_region_cities_list["Pacific"]["Midway"] = "Midway";
|
662 |
-
$wpbc_booking_region_cities_list["Pacific"]["Nauru"] = "Nauru";
|
663 |
-
$wpbc_booking_region_cities_list["Pacific"]["Niue"] = "Niue";
|
664 |
-
$wpbc_booking_region_cities_list["Pacific"]["Norfolk"] = "Norfolk";
|
665 |
-
$wpbc_booking_region_cities_list["Pacific"]["Noumea"] = "Noumea";
|
666 |
-
$wpbc_booking_region_cities_list["Pacific"]["Pago_Pago"] = "Pago Pago";
|
667 |
-
$wpbc_booking_region_cities_list["Pacific"]["Palau"] = "Palau";
|
668 |
-
$wpbc_booking_region_cities_list["Pacific"]["Pitcairn"] = "Pitcairn";
|
669 |
-
$wpbc_booking_region_cities_list["Pacific"]["Ponape"] = "Ponape";
|
670 |
-
$wpbc_booking_region_cities_list["Pacific"]["Port_Moresby"] = "Port Moresby";
|
671 |
-
$wpbc_booking_region_cities_list["Pacific"]["Rarotonga"] = "Rarotonga";
|
672 |
-
$wpbc_booking_region_cities_list["Pacific"]["Saipan"] = "Saipan";
|
673 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tahiti"] = "Tahiti";
|
674 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tarawa"] = "Tarawa";
|
675 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tongatapu"] = "Tongatapu";
|
676 |
-
$wpbc_booking_region_cities_list["Pacific"]["Truk"] = "Truk";
|
677 |
-
$wpbc_booking_region_cities_list["Pacific"]["Wake"] = "Wake";
|
678 |
-
$wpbc_booking_region_cities_list["Pacific"]["Wallis"] = "Wallis";
|
679 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpdev-country-list.php
DELETED
@@ -1,678 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// Here you can translate countries into your languages, which is non English
|
3 |
-
|
4 |
-
// ISO 3166-1 country names and codes from http://opencountrycodes.appspot.com/javascript
|
5 |
-
global $wpdev_booking_country_list;
|
6 |
-
$wpdev_booking_country_list = array(
|
7 |
-
"GB" => "United Kingdom",
|
8 |
-
"AF" => "Afghanistan",
|
9 |
-
"AX" => "Aland Islands",
|
10 |
-
"AL" => "Albania",
|
11 |
-
"DZ" => "Algeria",
|
12 |
-
"AS" => "American Samoa",
|
13 |
-
"AD" => "Andorra",
|
14 |
-
"AO" => "Angola",
|
15 |
-
"AI" => "Anguilla",
|
16 |
-
"AQ" => "Antarctica",
|
17 |
-
"AG" => "Antigua and Barbuda",
|
18 |
-
"AR" => "Argentina",
|
19 |
-
"AM" => "Armenia",
|
20 |
-
"AW" => "Aruba",
|
21 |
-
"AU" => "Australia",
|
22 |
-
"AT" => "Austria",
|
23 |
-
"AZ" => "Azerbaijan",
|
24 |
-
"BS" => "Bahamas",
|
25 |
-
"BH" => "Bahrain",
|
26 |
-
"BD" => "Bangladesh",
|
27 |
-
"BB" => "Barbados",
|
28 |
-
"BY" => "Belarus",
|
29 |
-
"BE" => "Belgium",
|
30 |
-
"BZ" => "Belize",
|
31 |
-
"BJ" => "Benin",
|
32 |
-
"BM" => "Bermuda",
|
33 |
-
"BT" => "Bhutan",
|
34 |
-
"BO" => "Bolivia",
|
35 |
-
"BA" => "Bosnia and Herzegovina",
|
36 |
-
"BW" => "Botswana",
|
37 |
-
"BV" => "Bouvet Island",
|
38 |
-
"BR" => "Brazil",
|
39 |
-
"IO" => "British Indian Ocean Territory",
|
40 |
-
"BN" => "Brunei Darussalam",
|
41 |
-
"BG" => "Bulgaria",
|
42 |
-
"BF" => "Burkina Faso",
|
43 |
-
"BI" => "Burundi",
|
44 |
-
"KH" => "Cambodia",
|
45 |
-
"CM" => "Cameroon",
|
46 |
-
"CA" => "Canada",
|
47 |
-
"CV" => "Cape Verde",
|
48 |
-
"KY" => "Cayman Islands",
|
49 |
-
"CF" => "Central African Republic",
|
50 |
-
"TD" => "Chad",
|
51 |
-
"CL" => "Chile",
|
52 |
-
"CN" => "China",
|
53 |
-
"CX" => "Christmas Island",
|
54 |
-
"CC" => "Cocos (Keeling) Islands",
|
55 |
-
"CO" => "Colombia",
|
56 |
-
"KM" => "Comoros",
|
57 |
-
"CG" => "Congo",
|
58 |
-
"CD" => "Congo, The Democratic Republic of the",
|
59 |
-
"CK" => "Cook Islands",
|
60 |
-
"CR" => "Costa Rica",
|
61 |
-
"CI" => "Côte d'Ivoire",
|
62 |
-
"HR" => "Croatia",
|
63 |
-
"CU" => "Cuba",
|
64 |
-
"CY" => "Cyprus",
|
65 |
-
"CZ" => "Czech Republic",
|
66 |
-
"DK" => "Denmark",
|
67 |
-
"DJ" => "Djibouti",
|
68 |
-
"DM" => "Dominica",
|
69 |
-
"DO" => "Dominican Republic",
|
70 |
-
"EC" => "Ecuador",
|
71 |
-
"EG" => "Egypt",
|
72 |
-
"SV" => "El Salvador",
|
73 |
-
"GQ" => "Equatorial Guinea",
|
74 |
-
"ER" => "Eritrea",
|
75 |
-
"EE" => "Estonia",
|
76 |
-
"ET" => "Ethiopia",
|
77 |
-
"FK" => "Falkland Islands (Malvinas)",
|
78 |
-
"FO" => "Faroe Islands",
|
79 |
-
"FJ" => "Fiji",
|
80 |
-
"FI" => "Finland",
|
81 |
-
"FR" => "France",
|
82 |
-
"GF" => "French Guiana",
|
83 |
-
"PF" => "French Polynesia",
|
84 |
-
"TF" => "French Southern Territories",
|
85 |
-
"GA" => "Gabon",
|
86 |
-
"GM" => "Gambia",
|
87 |
-
"GE" => "Georgia",
|
88 |
-
"DE" => "Germany",
|
89 |
-
"GH" => "Ghana",
|
90 |
-
"GI" => "Gibraltar",
|
91 |
-
"GR" => "Greece",
|
92 |
-
"GL" => "Greenland",
|
93 |
-
"GD" => "Grenada",
|
94 |
-
"GP" => "Guadeloupe",
|
95 |
-
"GU" => "Guam",
|
96 |
-
"GT" => "Guatemala",
|
97 |
-
"GG" => "Guernsey",
|
98 |
-
"GN" => "Guinea",
|
99 |
-
"GW" => "Guinea-Bissau",
|
100 |
-
"GY" => "Guyana",
|
101 |
-
"HT" => "Haiti",
|
102 |
-
"HM" => "Heard Island and McDonald Islands",
|
103 |
-
"VA" => "Holy See (Vatican City State)",
|
104 |
-
"HN" => "Honduras",
|
105 |
-
"HK" => "Hong Kong",
|
106 |
-
"HU" => "Hungary",
|
107 |
-
"IS" => "Iceland",
|
108 |
-
"IN" => "India",
|
109 |
-
"ID" => "Indonesia",
|
110 |
-
"IR" => "Iran, Islamic Republic of",
|
111 |
-
"IQ" => "Iraq",
|
112 |
-
"IE" => "Ireland",
|
113 |
-
"IM" => "Isle of Man",
|
114 |
-
"IL" => "Israel",
|
115 |
-
"IT" => "Italy",
|
116 |
-
"JM" => "Jamaica",
|
117 |
-
"JP" => "Japan",
|
118 |
-
"JE" => "Jersey",
|
119 |
-
"JO" => "Jordan",
|
120 |
-
"KZ" => "Kazakhstan",
|
121 |
-
"KE" => "Kenya",
|
122 |
-
"KI" => "Kiribati",
|
123 |
-
"KP" => "Korea, Democratic People's Republic of",
|
124 |
-
"KR" => "Korea, Republic of",
|
125 |
-
"KW" => "Kuwait",
|
126 |
-
"KG" => "Kyrgyzstan",
|
127 |
-
"LA" => "Lao People's Democratic Republic",
|
128 |
-
"LV" => "Latvia",
|
129 |
-
"LB" => "Lebanon",
|
130 |
-
"LS" => "Lesotho",
|
131 |
-
"LR" => "Liberia",
|
132 |
-
"LY" => "Libyan Arab Jamahiriya",
|
133 |
-
"LI" => "Liechtenstein",
|
134 |
-
"LT" => "Lithuania",
|
135 |
-
"LU" => "Luxembourg",
|
136 |
-
"MO" => "Macao",
|
137 |
-
"MK" => "Macedonia, The Former Yugoslav Republic of",
|
138 |
-
"MG" => "Madagascar",
|
139 |
-
"MW" => "Malawi",
|
140 |
-
"MY" => "Malaysia",
|
141 |
-
"MV" => "Maldives",
|
142 |
-
"ML" => "Mali",
|
143 |
-
"MT" => "Malta",
|
144 |
-
"MH" => "Marshall Islands",
|
145 |
-
"MQ" => "Martinique",
|
146 |
-
"MR" => "Mauritania",
|
147 |
-
"MU" => "Mauritius",
|
148 |
-
"YT" => "Mayotte",
|
149 |
-
"MX" => "Mexico",
|
150 |
-
"FM" => "Micronesia, Federated States of",
|
151 |
-
"MD" => "Moldova",
|
152 |
-
"MC" => "Monaco",
|
153 |
-
"MN" => "Mongolia",
|
154 |
-
"ME" => "Montenegro",
|
155 |
-
"MS" => "Montserrat",
|
156 |
-
"MA" => "Morocco",
|
157 |
-
"MZ" => "Mozambique",
|
158 |
-
"MM" => "Myanmar",
|
159 |
-
"NA" => "Namibia",
|
160 |
-
"NR" => "Nauru",
|
161 |
-
"NP" => "Nepal",
|
162 |
-
"NL" => "Netherlands",
|
163 |
-
"AN" => "Netherlands Antilles",
|
164 |
-
"NC" => "New Caledonia",
|
165 |
-
"NZ" => "New Zealand",
|
166 |
-
"NI" => "Nicaragua",
|
167 |
-
"NE" => "Niger",
|
168 |
-
"NG" => "Nigeria",
|
169 |
-
"NU" => "Niue",
|
170 |
-
"NF" => "Norfolk Island",
|
171 |
-
"MP" => "Northern Mariana Islands",
|
172 |
-
"NO" => "Norway",
|
173 |
-
"OM" => "Oman",
|
174 |
-
"PK" => "Pakistan",
|
175 |
-
"PW" => "Palau",
|
176 |
-
"PS" => "Palestinian Territory, Occupied",
|
177 |
-
"PA" => "Panama",
|
178 |
-
"PG" => "Papua New Guinea",
|
179 |
-
"PY" => "Paraguay",
|
180 |
-
"PE" => "Peru",
|
181 |
-
"PH" => "Philippines",
|
182 |
-
"PN" => "Pitcairn",
|
183 |
-
"PL" => "Poland",
|
184 |
-
"PT" => "Portugal",
|
185 |
-
"PR" => "Puerto Rico",
|
186 |
-
"QA" => "Qatar",
|
187 |
-
"RE" => "Réunion",
|
188 |
-
"RO" => "Romania",
|
189 |
-
"RU" => "Russian Federation",
|
190 |
-
"RW" => "Rwanda",
|
191 |
-
"BL" => "Saint Barthélemy",
|
192 |
-
"SH" => "Saint Helena",
|
193 |
-
"KN" => "Saint Kitts and Nevis",
|
194 |
-
"LC" => "Saint Lucia",
|
195 |
-
"MF" => "Saint Martin",
|
196 |
-
"PM" => "Saint Pierre and Miquelon",
|
197 |
-
"VC" => "Saint Vincent and the Grenadines",
|
198 |
-
"WS" => "Samoa",
|
199 |
-
"SM" => "San Marino",
|
200 |
-
"ST" => "Sao Tome and Principe",
|
201 |
-
"SA" => "Saudi Arabia",
|
202 |
-
"SN" => "Senegal",
|
203 |
-
"RS" => "Serbia",
|
204 |
-
"SC" => "Seychelles",
|
205 |
-
"SL" => "Sierra Leone",
|
206 |
-
"SG" => "Singapore",
|
207 |
-
"SK" => "Slovakia",
|
208 |
-
"SI" => "Slovenia",
|
209 |
-
"SB" => "Solomon Islands",
|
210 |
-
"SO" => "Somalia",
|
211 |
-
"ZA" => "South Africa",
|
212 |
-
"GS" => "South Georgia and the South Sandwich Islands",
|
213 |
-
"ES" => "Spain",
|
214 |
-
"LK" => "Sri Lanka",
|
215 |
-
"SD" => "Sudan",
|
216 |
-
"SR" => "Suriname",
|
217 |
-
"SJ" => "Svalbard and Jan Mayen",
|
218 |
-
"SZ" => "Swaziland",
|
219 |
-
"SE" => "Sweden",
|
220 |
-
"CH" => "Switzerland",
|
221 |
-
"SY" => "Syrian Arab Republic",
|
222 |
-
"TW" => "Taiwan, Province of China",
|
223 |
-
"TJ" => "Tajikistan",
|
224 |
-
"TZ" => "Tanzania, United Republic of",
|
225 |
-
"TH" => "Thailand",
|
226 |
-
"TL" => "Timor-Leste",
|
227 |
-
"TG" => "Togo",
|
228 |
-
"TK" => "Tokelau",
|
229 |
-
"TO" => "Tonga",
|
230 |
-
"TT" => "Trinidad and Tobago",
|
231 |
-
"TN" => "Tunisia",
|
232 |
-
"TR" => "Turkey",
|
233 |
-
"TM" => "Turkmenistan",
|
234 |
-
"TC" => "Turks and Caicos Islands",
|
235 |
-
"TV" => "Tuvalu",
|
236 |
-
"UG" => "Uganda",
|
237 |
-
"UA" => "Ukraine",
|
238 |
-
"AE" => "United Arab Emirates",
|
239 |
-
"GB" => "United Kingdom",
|
240 |
-
"US" => "United States",
|
241 |
-
"UM" => "United States Minor Outlying Islands",
|
242 |
-
"UY" => "Uruguay",
|
243 |
-
"UZ" => "Uzbekistan",
|
244 |
-
"VU" => "Vanuatu",
|
245 |
-
"VE" => "Venezuela",
|
246 |
-
"VN" => "Viet Nam",
|
247 |
-
"VG" => "Virgin Islands, British",
|
248 |
-
"VI" => "Virgin Islands, U.S.",
|
249 |
-
"WF" => "Wallis and Futuna",
|
250 |
-
"EH" => "Western Sahara",
|
251 |
-
"YE" => "Yemen",
|
252 |
-
"ZM" => "Zambia",
|
253 |
-
"ZW" => "Zimbabwe"
|
254 |
-
);
|
255 |
-
|
256 |
-
global $wpbc_booking_region_cities_list;
|
257 |
-
$wpbc_booking_region_cities_list = array(
|
258 |
-
'Africa' => array()
|
259 |
-
, 'America' => array()
|
260 |
-
, 'Antarctica' => array()
|
261 |
-
, 'Arctic' => array()
|
262 |
-
, 'Asia' => array()
|
263 |
-
, 'Atlantic' => array()
|
264 |
-
, 'Australia' => array()
|
265 |
-
, 'Europe' => array()
|
266 |
-
, 'Indian' => array()
|
267 |
-
, 'Pacific' => array()
|
268 |
-
);
|
269 |
-
$wpbc_booking_region_cities_list["Africa"]["Abidjan"] = "Abidjan";
|
270 |
-
$wpbc_booking_region_cities_list["Africa"]["Accra"] = "Accra";
|
271 |
-
$wpbc_booking_region_cities_list["Africa"]["Addis_Ababa"] = "Addis Ababa";
|
272 |
-
$wpbc_booking_region_cities_list["Africa"]["Algiers"] = "Algiers";
|
273 |
-
$wpbc_booking_region_cities_list["Africa"]["Asmara"] = "Asmara";
|
274 |
-
$wpbc_booking_region_cities_list["Africa"]["Bamako"] = "Bamako";
|
275 |
-
$wpbc_booking_region_cities_list["Africa"]["Bangui"] = "Bangui";
|
276 |
-
$wpbc_booking_region_cities_list["Africa"]["Banjul"] = "Banjul";
|
277 |
-
$wpbc_booking_region_cities_list["Africa"]["Bissau"] = "Bissau";
|
278 |
-
$wpbc_booking_region_cities_list["Africa"]["Blantyre"] = "Blantyre";
|
279 |
-
$wpbc_booking_region_cities_list["Africa"]["Brazzaville"] = "Brazzaville";
|
280 |
-
$wpbc_booking_region_cities_list["Africa"]["Bujumbura"] = "Bujumbura";
|
281 |
-
$wpbc_booking_region_cities_list["Africa"]["Cairo"] = "Cairo";
|
282 |
-
$wpbc_booking_region_cities_list["Africa"]["Casablanca"] = "Casablanca";
|
283 |
-
$wpbc_booking_region_cities_list["Africa"]["Ceuta"] = "Ceuta";
|
284 |
-
$wpbc_booking_region_cities_list["Africa"]["Conakry"] = "Conakry";
|
285 |
-
$wpbc_booking_region_cities_list["Africa"]["Dakar"] = "Dakar";
|
286 |
-
$wpbc_booking_region_cities_list["Africa"]["Dar_es_Salaam"] = "Dar es Salaam";
|
287 |
-
$wpbc_booking_region_cities_list["Africa"]["Djibouti"] = "Djibouti";
|
288 |
-
$wpbc_booking_region_cities_list["Africa"]["Douala"] = "Douala";
|
289 |
-
$wpbc_booking_region_cities_list["Africa"]["El_Aaiun"] = "El Aaiun";
|
290 |
-
$wpbc_booking_region_cities_list["Africa"]["Freetown"] = "Freetown";
|
291 |
-
$wpbc_booking_region_cities_list["Africa"]["Gaborone"] = "Gaborone";
|
292 |
-
$wpbc_booking_region_cities_list["Africa"]["Harare"] = "Harare";
|
293 |
-
$wpbc_booking_region_cities_list["Africa"]["Johannesburg"] = "Johannesburg";
|
294 |
-
$wpbc_booking_region_cities_list["Africa"]["Kampala"] = "Kampala";
|
295 |
-
$wpbc_booking_region_cities_list["Africa"]["Khartoum"] = "Khartoum";
|
296 |
-
$wpbc_booking_region_cities_list["Africa"]["Kigali"] = "Kigali";
|
297 |
-
$wpbc_booking_region_cities_list["Africa"]["Kinshasa"] = "Kinshasa";
|
298 |
-
$wpbc_booking_region_cities_list["Africa"]["Lagos"] = "Lagos";
|
299 |
-
$wpbc_booking_region_cities_list["Africa"]["Libreville"] = "Libreville";
|
300 |
-
$wpbc_booking_region_cities_list["Africa"]["Lome"] = "Lome";
|
301 |
-
$wpbc_booking_region_cities_list["Africa"]["Luanda"] = "Luanda";
|
302 |
-
$wpbc_booking_region_cities_list["Africa"]["Lubumbashi"] = "Lubumbashi";
|
303 |
-
$wpbc_booking_region_cities_list["Africa"]["Lusaka"] = "Lusaka";
|
304 |
-
$wpbc_booking_region_cities_list["Africa"]["Malabo"] = "Malabo";
|
305 |
-
$wpbc_booking_region_cities_list["Africa"]["Maputo"] = "Maputo";
|
306 |
-
$wpbc_booking_region_cities_list["Africa"]["Maseru"] = "Maseru";
|
307 |
-
$wpbc_booking_region_cities_list["Africa"]["Mbabane"] = "Mbabane";
|
308 |
-
$wpbc_booking_region_cities_list["Africa"]["Mogadishu"] = "Mogadishu";
|
309 |
-
$wpbc_booking_region_cities_list["Africa"]["Monrovia"] = "Monrovia";
|
310 |
-
$wpbc_booking_region_cities_list["Africa"]["Nairobi"] = "Nairobi";
|
311 |
-
$wpbc_booking_region_cities_list["Africa"]["Ndjamena"] = "Ndjamena";
|
312 |
-
$wpbc_booking_region_cities_list["Africa"]["Niamey"] = "Niamey";
|
313 |
-
$wpbc_booking_region_cities_list["Africa"]["Nouakchott"] = "Nouakchott";
|
314 |
-
$wpbc_booking_region_cities_list["Africa"]["Ouagadougou"] = "Ouagadougou";
|
315 |
-
$wpbc_booking_region_cities_list["Africa"]["Porto-Novo"] = "Porto-Novo";
|
316 |
-
$wpbc_booking_region_cities_list["Africa"]["Sao_Tome"] = "Sao Tome";
|
317 |
-
$wpbc_booking_region_cities_list["Africa"]["Tripoli"] = "Tripoli";
|
318 |
-
$wpbc_booking_region_cities_list["Africa"]["Tunis"] = "Tunis";
|
319 |
-
$wpbc_booking_region_cities_list["Africa"]["Windhoek"] = "Windhoek";
|
320 |
-
|
321 |
-
$wpbc_booking_region_cities_list["America"]["Adak"] = "Adak";
|
322 |
-
$wpbc_booking_region_cities_list["America"]["Anchorage"] = "Anchorage";
|
323 |
-
$wpbc_booking_region_cities_list["America"]["Anguilla"] = "Anguilla";
|
324 |
-
$wpbc_booking_region_cities_list["America"]["Antigua"] = "Antigua";
|
325 |
-
$wpbc_booking_region_cities_list["America"]["Araguaina"] = "Araguaina";
|
326 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Buenos_Aires"] = "Argentina - Buenos Aires";
|
327 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Catamarca"] = "Argentina - Catamarca";
|
328 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Cordoba"] = "Argentina - Cordoba";
|
329 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Jujuy"] = "Argentina - Jujuy";
|
330 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/La_Rioja"] = "Argentina - La Rioja";
|
331 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Mendoza"] = "Argentina - Mendoza";
|
332 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Rio_Gallegos"] = "Argentina - Rio Gallegos";
|
333 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Salta"] = "Argentina - Salta";
|
334 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/San_Juan"] = "Argentina - San Juan";
|
335 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/San_Luis"] = "Argentina - San Luis";
|
336 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Tucuman"] = "Argentina - Tucuman";
|
337 |
-
$wpbc_booking_region_cities_list["America"]["Argentina/Ushuaia"] = "Argentina - Ushuaia";
|
338 |
-
$wpbc_booking_region_cities_list["America"]["Aruba"] = "Aruba";
|
339 |
-
$wpbc_booking_region_cities_list["America"]["Asuncion"] = "Asuncion";
|
340 |
-
$wpbc_booking_region_cities_list["America"]["Atikokan"] = "Atikokan";
|
341 |
-
$wpbc_booking_region_cities_list["America"]["Bahia"] = "Bahia";
|
342 |
-
$wpbc_booking_region_cities_list["America"]["Barbados"] = "Barbados";
|
343 |
-
$wpbc_booking_region_cities_list["America"]["Belem"] = "Belem";
|
344 |
-
$wpbc_booking_region_cities_list["America"]["Belize"] = "Belize";
|
345 |
-
$wpbc_booking_region_cities_list["America"]["Blanc-Sablon"] = "Blanc-Sablon";
|
346 |
-
$wpbc_booking_region_cities_list["America"]["Boa_Vista"] = "Boa Vista";
|
347 |
-
$wpbc_booking_region_cities_list["America"]["Bogota"] = "Bogota";
|
348 |
-
$wpbc_booking_region_cities_list["America"]["Boise"] = "Boise";
|
349 |
-
$wpbc_booking_region_cities_list["America"]["Cambridge_Bay"] = "Cambridge Bay";
|
350 |
-
$wpbc_booking_region_cities_list["America"]["Campo_Grande"] = "Campo Grande";
|
351 |
-
$wpbc_booking_region_cities_list["America"]["Cancun"] = "Cancun";
|
352 |
-
$wpbc_booking_region_cities_list["America"]["Caracas"] = "Caracas";
|
353 |
-
$wpbc_booking_region_cities_list["America"]["Cayenne"] = "Cayenne";
|
354 |
-
$wpbc_booking_region_cities_list["America"]["Cayman"] = "Cayman";
|
355 |
-
$wpbc_booking_region_cities_list["America"]["Chicago"] = "Chicago";
|
356 |
-
$wpbc_booking_region_cities_list["America"]["Chihuahua"] = "Chihuahua";
|
357 |
-
$wpbc_booking_region_cities_list["America"]["Costa_Rica"] = "Costa Rica";
|
358 |
-
$wpbc_booking_region_cities_list["America"]["Cuiaba"] = "Cuiaba";
|
359 |
-
$wpbc_booking_region_cities_list["America"]["Curacao"] = "Curacao";
|
360 |
-
$wpbc_booking_region_cities_list["America"]["Danmarkshavn"] = "Danmarkshavn";
|
361 |
-
$wpbc_booking_region_cities_list["America"]["Dawson"] = "Dawson";
|
362 |
-
$wpbc_booking_region_cities_list["America"]["Dawson_Creek"] = "Dawson Creek";
|
363 |
-
$wpbc_booking_region_cities_list["America"]["Denver"] = "Denver";
|
364 |
-
$wpbc_booking_region_cities_list["America"]["Detroit"] = "Detroit";
|
365 |
-
$wpbc_booking_region_cities_list["America"]["Dominica"] = "Dominica";
|
366 |
-
$wpbc_booking_region_cities_list["America"]["Edmonton"] = "Edmonton";
|
367 |
-
$wpbc_booking_region_cities_list["America"]["Eirunepe"] = "Eirunepe";
|
368 |
-
$wpbc_booking_region_cities_list["America"]["El_Salvador"] = "El Salvador";
|
369 |
-
$wpbc_booking_region_cities_list["America"]["Fortaleza"] = "Fortaleza";
|
370 |
-
$wpbc_booking_region_cities_list["America"]["Glace_Bay"] = "Glace Bay";
|
371 |
-
$wpbc_booking_region_cities_list["America"]["Godthab"] = "Godthab";
|
372 |
-
$wpbc_booking_region_cities_list["America"]["Goose_Bay"] = "Goose Bay";
|
373 |
-
$wpbc_booking_region_cities_list["America"]["Grand_Turk"] = "Grand Turk";
|
374 |
-
$wpbc_booking_region_cities_list["America"]["Grenada"] = "Grenada";
|
375 |
-
$wpbc_booking_region_cities_list["America"]["Guadeloupe"] = "Guadeloupe";
|
376 |
-
$wpbc_booking_region_cities_list["America"]["Guatemala"] = "Guatemala";
|
377 |
-
$wpbc_booking_region_cities_list["America"]["Guayaquil"] = "Guayaquil";
|
378 |
-
$wpbc_booking_region_cities_list["America"]["Guyana"] = "Guyana";
|
379 |
-
$wpbc_booking_region_cities_list["America"]["Halifax"] = "Halifax";
|
380 |
-
$wpbc_booking_region_cities_list["America"]["Havana"] = "Havana";
|
381 |
-
$wpbc_booking_region_cities_list["America"]["Hermosillo"] = "Hermosillo";
|
382 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Indianapolis"] = "Indiana - Indianapolis";
|
383 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Knox"] = "Indiana - Knox";
|
384 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Marengo"] = "Indiana - Marengo";
|
385 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Petersburg"] = "Indiana - Petersburg";
|
386 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Tell_City"] = "Indiana - Tell City";
|
387 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Vevay"] = "Indiana - Vevay";
|
388 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Vincennes"] = "Indiana - Vincennes";
|
389 |
-
$wpbc_booking_region_cities_list["America"]["Indiana/Winamac"] = "Indiana - Winamac";
|
390 |
-
$wpbc_booking_region_cities_list["America"]["Inuvik"] = "Inuvik";
|
391 |
-
$wpbc_booking_region_cities_list["America"]["Iqaluit"] = "Iqaluit";
|
392 |
-
$wpbc_booking_region_cities_list["America"]["Jamaica"] = "Jamaica";
|
393 |
-
$wpbc_booking_region_cities_list["America"]["Juneau"] = "Juneau";
|
394 |
-
$wpbc_booking_region_cities_list["America"]["Kentucky/Louisville"] = "Kentucky - Louisville";
|
395 |
-
$wpbc_booking_region_cities_list["America"]["Kentucky/Monticello"] = "Kentucky - Monticello";
|
396 |
-
$wpbc_booking_region_cities_list["America"]["La_Paz"] = "La Paz";
|
397 |
-
$wpbc_booking_region_cities_list["America"]["Lima"] = "Lima";
|
398 |
-
$wpbc_booking_region_cities_list["America"]["Los_Angeles"] = "Los Angeles";
|
399 |
-
$wpbc_booking_region_cities_list["America"]["Maceio"] = "Maceio";
|
400 |
-
$wpbc_booking_region_cities_list["America"]["Managua"] = "Managua";
|
401 |
-
$wpbc_booking_region_cities_list["America"]["Manaus"] = "Manaus";
|
402 |
-
$wpbc_booking_region_cities_list["America"]["Marigot"] = "Marigot";
|
403 |
-
$wpbc_booking_region_cities_list["America"]["Martinique"] = "Martinique";
|
404 |
-
$wpbc_booking_region_cities_list["America"]["Mazatlan"] = "Mazatlan";
|
405 |
-
$wpbc_booking_region_cities_list["America"]["Menominee"] = "Menominee";
|
406 |
-
$wpbc_booking_region_cities_list["America"]["Merida"] = "Merida";
|
407 |
-
$wpbc_booking_region_cities_list["America"]["Mexico_City"] = "Mexico City";
|
408 |
-
$wpbc_booking_region_cities_list["America"]["Miquelon"] = "Miquelon";
|
409 |
-
$wpbc_booking_region_cities_list["America"]["Moncton"] = "Moncton";
|
410 |
-
$wpbc_booking_region_cities_list["America"]["Monterrey"] = "Monterrey";
|
411 |
-
$wpbc_booking_region_cities_list["America"]["Montevideo"] = "Montevideo";
|
412 |
-
$wpbc_booking_region_cities_list["America"]["Montreal"] = "Montreal";
|
413 |
-
$wpbc_booking_region_cities_list["America"]["Montserrat"] = "Montserrat";
|
414 |
-
$wpbc_booking_region_cities_list["America"]["Nassau"] = "Nassau";
|
415 |
-
$wpbc_booking_region_cities_list["America"]["New_York"] = "New York";
|
416 |
-
$wpbc_booking_region_cities_list["America"]["Nipigon"] = "Nipigon";
|
417 |
-
$wpbc_booking_region_cities_list["America"]["Nome"] = "Nome";
|
418 |
-
$wpbc_booking_region_cities_list["America"]["Noronha"] = "Noronha";
|
419 |
-
$wpbc_booking_region_cities_list["America"]["North_Dakota/Center"] = "North Dakota - Center";
|
420 |
-
$wpbc_booking_region_cities_list["America"]["North_Dakota/New_Salem"] = "North Dakota - New Salem";
|
421 |
-
$wpbc_booking_region_cities_list["America"]["Panama"] = "Panama";
|
422 |
-
$wpbc_booking_region_cities_list["America"]["Pangnirtung"] = "Pangnirtung";
|
423 |
-
$wpbc_booking_region_cities_list["America"]["Paramaribo"] = "Paramaribo";
|
424 |
-
$wpbc_booking_region_cities_list["America"]["Phoenix"] = "Phoenix";
|
425 |
-
$wpbc_booking_region_cities_list["America"]["Port-au-Prince"] = "Port-au-Prince";
|
426 |
-
$wpbc_booking_region_cities_list["America"]["Port_of_Spain"] = "Port of Spain";
|
427 |
-
$wpbc_booking_region_cities_list["America"]["Porto_Velho"] = "Porto Velho";
|
428 |
-
$wpbc_booking_region_cities_list["America"]["Puerto_Rico"] = "Puerto Rico";
|
429 |
-
$wpbc_booking_region_cities_list["America"]["Rainy_River"] = "Rainy River";
|
430 |
-
$wpbc_booking_region_cities_list["America"]["Rankin_Inlet"] = "Rankin Inlet";
|
431 |
-
$wpbc_booking_region_cities_list["America"]["Recife"] = "Recife";
|
432 |
-
$wpbc_booking_region_cities_list["America"]["Regina"] = "Regina";
|
433 |
-
$wpbc_booking_region_cities_list["America"]["Resolute"] = "Resolute";
|
434 |
-
$wpbc_booking_region_cities_list["America"]["Rio_Branco"] = "Rio Branco";
|
435 |
-
$wpbc_booking_region_cities_list["America"]["Santarem"] = "Santarem";
|
436 |
-
$wpbc_booking_region_cities_list["America"]["Santiago"] = "Santiago";
|
437 |
-
$wpbc_booking_region_cities_list["America"]["Santo_Domingo"] = "Santo Domingo";
|
438 |
-
$wpbc_booking_region_cities_list["America"]["Sao_Paulo"] = "Sao Paulo";
|
439 |
-
$wpbc_booking_region_cities_list["America"]["Scoresbysund"] = "Scoresbysund";
|
440 |
-
$wpbc_booking_region_cities_list["America"]["Shiprock"] = "Shiprock";
|
441 |
-
$wpbc_booking_region_cities_list["America"]["St_Barthelemy"] = "St Barthelemy";
|
442 |
-
$wpbc_booking_region_cities_list["America"]["St_Johns"] = "St Johns";
|
443 |
-
$wpbc_booking_region_cities_list["America"]["St_Kitts"] = "St Kitts";
|
444 |
-
$wpbc_booking_region_cities_list["America"]["St_Lucia"] = "St Lucia";
|
445 |
-
$wpbc_booking_region_cities_list["America"]["St_Thomas"] = "St Thomas";
|
446 |
-
$wpbc_booking_region_cities_list["America"]["St_Vincent"] = "St Vincent";
|
447 |
-
$wpbc_booking_region_cities_list["America"]["Swift_Current"] = "Swift Current";
|
448 |
-
$wpbc_booking_region_cities_list["America"]["Tegucigalpa"] = "Tegucigalpa";
|
449 |
-
$wpbc_booking_region_cities_list["America"]["Thule"] = "Thule";
|
450 |
-
$wpbc_booking_region_cities_list["America"]["Thunder_Bay"] = "Thunder Bay";
|
451 |
-
$wpbc_booking_region_cities_list["America"]["Tijuana"] = "Tijuana";
|
452 |
-
$wpbc_booking_region_cities_list["America"]["Toronto"] = "Toronto";
|
453 |
-
$wpbc_booking_region_cities_list["America"]["Tortola"] = "Tortola";
|
454 |
-
$wpbc_booking_region_cities_list["America"]["Vancouver"] = "Vancouver";
|
455 |
-
$wpbc_booking_region_cities_list["America"]["Whitehorse"] = "Whitehorse";
|
456 |
-
$wpbc_booking_region_cities_list["America"]["Winnipeg"] = "Winnipeg";
|
457 |
-
$wpbc_booking_region_cities_list["America"]["Yakutat"] = "Yakutat";
|
458 |
-
$wpbc_booking_region_cities_list["America"]["Yellowknife"] = "Yellowknife";
|
459 |
-
|
460 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Casey"] = "Casey";
|
461 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Davis"] = "Davis";
|
462 |
-
$wpbc_booking_region_cities_list["Antarctica"]["DumontDUrville"] = "DumontDUrville";
|
463 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Mawson"] = "Mawson";
|
464 |
-
$wpbc_booking_region_cities_list["Antarctica"]["McMurdo"] = "McMurdo";
|
465 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Palmer"] = "Palmer";
|
466 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Rothera"] = "Rothera";
|
467 |
-
$wpbc_booking_region_cities_list["Antarctica"]["South_Pole"] = "South Pole";
|
468 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Syowa"] = "Syowa";
|
469 |
-
$wpbc_booking_region_cities_list["Antarctica"]["Vostok"] = "Vostok";
|
470 |
-
|
471 |
-
$wpbc_booking_region_cities_list["Arctic"]["Longyearbyen"] = "Longyearbyen";
|
472 |
-
|
473 |
-
$wpbc_booking_region_cities_list["Asia"]["Aden"] = "Aden";
|
474 |
-
$wpbc_booking_region_cities_list["Asia"]["Almaty"] = "Almaty";
|
475 |
-
$wpbc_booking_region_cities_list["Asia"]["Amman"] = "Amman";
|
476 |
-
$wpbc_booking_region_cities_list["Asia"]["Anadyr"] = "Anadyr";
|
477 |
-
$wpbc_booking_region_cities_list["Asia"]["Aqtau"] = "Aqtau";
|
478 |
-
$wpbc_booking_region_cities_list["Asia"]["Aqtobe"] = "Aqtobe";
|
479 |
-
$wpbc_booking_region_cities_list["Asia"]["Ashgabat"] = "Ashgabat";
|
480 |
-
$wpbc_booking_region_cities_list["Asia"]["Baghdad"] = "Baghdad";
|
481 |
-
$wpbc_booking_region_cities_list["Asia"]["Bahrain"] = "Bahrain";
|
482 |
-
$wpbc_booking_region_cities_list["Asia"]["Baku"] = "Baku";
|
483 |
-
$wpbc_booking_region_cities_list["Asia"]["Bangkok"] = "Bangkok";
|
484 |
-
$wpbc_booking_region_cities_list["Asia"]["Beirut"] = "Beirut";
|
485 |
-
$wpbc_booking_region_cities_list["Asia"]["Bishkek"] = "Bishkek";
|
486 |
-
$wpbc_booking_region_cities_list["Asia"]["Brunei"] = "Brunei";
|
487 |
-
$wpbc_booking_region_cities_list["Asia"]["Choibalsan"] = "Choibalsan";
|
488 |
-
$wpbc_booking_region_cities_list["Asia"]["Chongqing"] = "Chongqing";
|
489 |
-
$wpbc_booking_region_cities_list["Asia"]["Colombo"] = "Colombo";
|
490 |
-
$wpbc_booking_region_cities_list["Asia"]["Damascus"] = "Damascus";
|
491 |
-
$wpbc_booking_region_cities_list["Asia"]["Dhaka"] = "Dhaka";
|
492 |
-
$wpbc_booking_region_cities_list["Asia"]["Dili"] = "Dili";
|
493 |
-
$wpbc_booking_region_cities_list["Asia"]["Dubai"] = "Dubai";
|
494 |
-
$wpbc_booking_region_cities_list["Asia"]["Dushanbe"] = "Dushanbe";
|
495 |
-
$wpbc_booking_region_cities_list["Asia"]["Gaza"] = "Gaza";
|
496 |
-
$wpbc_booking_region_cities_list["Asia"]["Harbin"] = "Harbin";
|
497 |
-
$wpbc_booking_region_cities_list["Asia"]["Ho_Chi_Minh"] = "Ho Chi Minh";
|
498 |
-
$wpbc_booking_region_cities_list["Asia"]["Hong_Kong"] = "Hong Kong";
|
499 |
-
$wpbc_booking_region_cities_list["Asia"]["Hovd"] = "Hovd";
|
500 |
-
$wpbc_booking_region_cities_list["Asia"]["Irkutsk"] = "Irkutsk";
|
501 |
-
$wpbc_booking_region_cities_list["Asia"]["Jakarta"] = "Jakarta";
|
502 |
-
$wpbc_booking_region_cities_list["Asia"]["Jayapura"] = "Jayapura";
|
503 |
-
$wpbc_booking_region_cities_list["Asia"]["Jerusalem"] = "Jerusalem";
|
504 |
-
$wpbc_booking_region_cities_list["Asia"]["Kabul"] = "Kabul";
|
505 |
-
$wpbc_booking_region_cities_list["Asia"]["Kamchatka"] = "Kamchatka";
|
506 |
-
$wpbc_booking_region_cities_list["Asia"]["Karachi"] = "Karachi";
|
507 |
-
$wpbc_booking_region_cities_list["Asia"]["Kashgar"] = "Kashgar";
|
508 |
-
$wpbc_booking_region_cities_list["Asia"]["Kathmandu"] = "Kathmandu";
|
509 |
-
$wpbc_booking_region_cities_list["Asia"]["Kolkata"] = "Kolkata";
|
510 |
-
$wpbc_booking_region_cities_list["Asia"]["Krasnoyarsk"] = "Krasnoyarsk";
|
511 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuala_Lumpur"] = "Kuala Lumpur";
|
512 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuching"] = "Kuching";
|
513 |
-
$wpbc_booking_region_cities_list["Asia"]["Kuwait"] = "Kuwait";
|
514 |
-
$wpbc_booking_region_cities_list["Asia"]["Macau"] = "Macau";
|
515 |
-
$wpbc_booking_region_cities_list["Asia"]["Magadan"] = "Magadan";
|
516 |
-
$wpbc_booking_region_cities_list["Asia"]["Makassar"] = "Makassar";
|
517 |
-
$wpbc_booking_region_cities_list["Asia"]["Manila"] = "Manila";
|
518 |
-
$wpbc_booking_region_cities_list["Asia"]["Muscat"] = "Muscat";
|
519 |
-
$wpbc_booking_region_cities_list["Asia"]["Nicosia"] = "Nicosia";
|
520 |
-
$wpbc_booking_region_cities_list["Asia"]["Novosibirsk"] = "Novosibirsk";
|
521 |
-
$wpbc_booking_region_cities_list["Asia"]["Omsk"] = "Omsk";
|
522 |
-
$wpbc_booking_region_cities_list["Asia"]["Oral"] = "Oral";
|
523 |
-
$wpbc_booking_region_cities_list["Asia"]["Phnom_Penh"] = "Phnom Penh";
|
524 |
-
$wpbc_booking_region_cities_list["Asia"]["Pontianak"] = "Pontianak";
|
525 |
-
$wpbc_booking_region_cities_list["Asia"]["Pyongyang"] = "Pyongyang";
|
526 |
-
$wpbc_booking_region_cities_list["Asia"]["Qatar"] = "Qatar";
|
527 |
-
$wpbc_booking_region_cities_list["Asia"]["Qyzylorda"] = "Qyzylorda";
|
528 |
-
$wpbc_booking_region_cities_list["Asia"]["Rangoon"] = "Rangoon";
|
529 |
-
$wpbc_booking_region_cities_list["Asia"]["Riyadh"] = "Riyadh";
|
530 |
-
$wpbc_booking_region_cities_list["Asia"]["Sakhalin"] = "Sakhalin";
|
531 |
-
$wpbc_booking_region_cities_list["Asia"]["Samarkand"] = "Samarkand";
|
532 |
-
$wpbc_booking_region_cities_list["Asia"]["Seoul"] = "Seoul";
|
533 |
-
$wpbc_booking_region_cities_list["Asia"]["Shanghai"] = "Shanghai";
|
534 |
-
$wpbc_booking_region_cities_list["Asia"]["Singapore"] = "Singapore";
|
535 |
-
$wpbc_booking_region_cities_list["Asia"]["Taipei"] = "Taipei";
|
536 |
-
$wpbc_booking_region_cities_list["Asia"]["Tashkent"] = "Tashkent";
|
537 |
-
$wpbc_booking_region_cities_list["Asia"]["Tbilisi"] = "Tbilisi";
|
538 |
-
$wpbc_booking_region_cities_list["Asia"]["Tehran"] = "Tehran";
|
539 |
-
$wpbc_booking_region_cities_list["Asia"]["Thimphu"] = "Thimphu";
|
540 |
-
$wpbc_booking_region_cities_list["Asia"]["Tokyo"] = "Tokyo";
|
541 |
-
$wpbc_booking_region_cities_list["Asia"]["Ulaanbaatar"] = "Ulaanbaatar";
|
542 |
-
$wpbc_booking_region_cities_list["Asia"]["Urumqi"] = "Urumqi";
|
543 |
-
$wpbc_booking_region_cities_list["Asia"]["Vientiane"] = "Vientiane";
|
544 |
-
$wpbc_booking_region_cities_list["Asia"]["Vladivostok"] = "Vladivostok";
|
545 |
-
$wpbc_booking_region_cities_list["Asia"]["Yakutsk"] = "Yakutsk";
|
546 |
-
$wpbc_booking_region_cities_list["Asia"]["Yekaterinburg"] = "Yekaterinburg";
|
547 |
-
$wpbc_booking_region_cities_list["Asia"]["Yerevan"] = "Yerevan";
|
548 |
-
|
549 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Azores"] = "Azores";
|
550 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Bermuda"] = "Bermuda";
|
551 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Canary"] = "Canary";
|
552 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Cape_Verde"] = "Cape Verde";
|
553 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Faroe"] = "Faroe";
|
554 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Madeira"] = "Madeira";
|
555 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Reykjavik"] = "Reykjavik";
|
556 |
-
$wpbc_booking_region_cities_list["Atlantic"]["South_Georgia"] = "South Georgia";
|
557 |
-
$wpbc_booking_region_cities_list["Atlantic"]["Stanley"] = "Stanley";
|
558 |
-
$wpbc_booking_region_cities_list["Atlantic"]["St_Helena"] = "St Helena";
|
559 |
-
|
560 |
-
$wpbc_booking_region_cities_list["Australia"]["Adelaide"] = "Adelaide";
|
561 |
-
$wpbc_booking_region_cities_list["Australia"]["Brisbane"] = "Brisbane";
|
562 |
-
$wpbc_booking_region_cities_list["Australia"]["Broken_Hill"] = "Broken Hill";
|
563 |
-
$wpbc_booking_region_cities_list["Australia"]["Currie"] = "Currie";
|
564 |
-
$wpbc_booking_region_cities_list["Australia"]["Darwin"] = "Darwin";
|
565 |
-
$wpbc_booking_region_cities_list["Australia"]["Eucla"] = "Eucla";
|
566 |
-
$wpbc_booking_region_cities_list["Australia"]["Hobart"] = "Hobart";
|
567 |
-
$wpbc_booking_region_cities_list["Australia"]["Lindeman"] = "Lindeman";
|
568 |
-
$wpbc_booking_region_cities_list["Australia"]["Lord_Howe"] = "Lord Howe";
|
569 |
-
$wpbc_booking_region_cities_list["Australia"]["Melbourne"] = "Melbourne";
|
570 |
-
$wpbc_booking_region_cities_list["Australia"]["Perth"] = "Perth";
|
571 |
-
$wpbc_booking_region_cities_list["Australia"]["Sydney"] = "Sydney";
|
572 |
-
|
573 |
-
$wpbc_booking_region_cities_list["Europe"]["Amsterdam"] = "Amsterdam";
|
574 |
-
$wpbc_booking_region_cities_list["Europe"]["Andorra"] = "Andorra";
|
575 |
-
$wpbc_booking_region_cities_list["Europe"]["Athens"] = "Athens";
|
576 |
-
$wpbc_booking_region_cities_list["Europe"]["Belgrade"] = "Belgrade";
|
577 |
-
$wpbc_booking_region_cities_list["Europe"]["Berlin"] = "Berlin";
|
578 |
-
$wpbc_booking_region_cities_list["Europe"]["Bratislava"] = "Bratislava";
|
579 |
-
$wpbc_booking_region_cities_list["Europe"]["Brussels"] = "Brussels";
|
580 |
-
$wpbc_booking_region_cities_list["Europe"]["Bucharest"] = "Bucharest";
|
581 |
-
$wpbc_booking_region_cities_list["Europe"]["Budapest"] = "Budapest";
|
582 |
-
$wpbc_booking_region_cities_list["Europe"]["Chisinau"] = "Chisinau";
|
583 |
-
$wpbc_booking_region_cities_list["Europe"]["Copenhagen"] = "Copenhagen";
|
584 |
-
$wpbc_booking_region_cities_list["Europe"]["Dublin"] = "Dublin";
|
585 |
-
$wpbc_booking_region_cities_list["Europe"]["Gibraltar"] = "Gibraltar";
|
586 |
-
$wpbc_booking_region_cities_list["Europe"]["Guernsey"] = "Guernsey";
|
587 |
-
$wpbc_booking_region_cities_list["Europe"]["Helsinki"] = "Helsinki";
|
588 |
-
$wpbc_booking_region_cities_list["Europe"]["Isle_of_Man"] = "Isle of Man";
|
589 |
-
$wpbc_booking_region_cities_list["Europe"]["Istanbul"] = "Istanbul";
|
590 |
-
$wpbc_booking_region_cities_list["Europe"]["Jersey"] = "Jersey";
|
591 |
-
$wpbc_booking_region_cities_list["Europe"]["Kaliningrad"] = "Kaliningrad";
|
592 |
-
$wpbc_booking_region_cities_list["Europe"]["Kiev"] = "Kiev";
|
593 |
-
$wpbc_booking_region_cities_list["Europe"]["Lisbon"] = "Lisbon";
|
594 |
-
$wpbc_booking_region_cities_list["Europe"]["Ljubljana"] = "Ljubljana";
|
595 |
-
$wpbc_booking_region_cities_list["Europe"]["London"] = "London";
|
596 |
-
$wpbc_booking_region_cities_list["Europe"]["Luxembourg"] = "Luxembourg";
|
597 |
-
$wpbc_booking_region_cities_list["Europe"]["Madrid"] = "Madrid";
|
598 |
-
$wpbc_booking_region_cities_list["Europe"]["Malta"] = "Malta";
|
599 |
-
$wpbc_booking_region_cities_list["Europe"]["Mariehamn"] = "Mariehamn";
|
600 |
-
$wpbc_booking_region_cities_list["Europe"]["Minsk"] = "Minsk";
|
601 |
-
$wpbc_booking_region_cities_list["Europe"]["Monaco"] = "Monaco";
|
602 |
-
$wpbc_booking_region_cities_list["Europe"]["Moscow"] = "Moscow";
|
603 |
-
$wpbc_booking_region_cities_list["Europe"]["Oslo"] = "Oslo";
|
604 |
-
$wpbc_booking_region_cities_list["Europe"]["Paris"] = "Paris";
|
605 |
-
$wpbc_booking_region_cities_list["Europe"]["Podgorica"] = "Podgorica";
|
606 |
-
$wpbc_booking_region_cities_list["Europe"]["Prague"] = "Prague";
|
607 |
-
$wpbc_booking_region_cities_list["Europe"]["Riga"] = "Riga";
|
608 |
-
$wpbc_booking_region_cities_list["Europe"]["Rome"] = "Rome";
|
609 |
-
$wpbc_booking_region_cities_list["Europe"]["Samara"] = "Samara";
|
610 |
-
$wpbc_booking_region_cities_list["Europe"]["San_Marino"] = "San Marino";
|
611 |
-
$wpbc_booking_region_cities_list["Europe"]["Sarajevo"] = "Sarajevo";
|
612 |
-
$wpbc_booking_region_cities_list["Europe"]["Simferopol"] = "Simferopol";
|
613 |
-
$wpbc_booking_region_cities_list["Europe"]["Skopje"] = "Skopje";
|
614 |
-
$wpbc_booking_region_cities_list["Europe"]["Sofia"] = "Sofia";
|
615 |
-
$wpbc_booking_region_cities_list["Europe"]["Stockholm"] = "Stockholm";
|
616 |
-
$wpbc_booking_region_cities_list["Europe"]["Tallinn"] = "Tallinn";
|
617 |
-
$wpbc_booking_region_cities_list["Europe"]["Tirane"] = "Tirane";
|
618 |
-
$wpbc_booking_region_cities_list["Europe"]["Uzhgorod"] = "Uzhgorod";
|
619 |
-
$wpbc_booking_region_cities_list["Europe"]["Vaduz"] = "Vaduz";
|
620 |
-
$wpbc_booking_region_cities_list["Europe"]["Vatican"] = "Vatican";
|
621 |
-
$wpbc_booking_region_cities_list["Europe"]["Vienna"] = "Vienna";
|
622 |
-
$wpbc_booking_region_cities_list["Europe"]["Vilnius"] = "Vilnius";
|
623 |
-
$wpbc_booking_region_cities_list["Europe"]["Volgograd"] = "Volgograd";
|
624 |
-
$wpbc_booking_region_cities_list["Europe"]["Warsaw"] = "Warsaw";
|
625 |
-
$wpbc_booking_region_cities_list["Europe"]["Zagreb"] = "Zagreb";
|
626 |
-
$wpbc_booking_region_cities_list["Europe"]["Zaporozhye"] = "Zaporozhye";
|
627 |
-
$wpbc_booking_region_cities_list["Europe"]["Zurich"] = "Zurich";
|
628 |
-
|
629 |
-
$wpbc_booking_region_cities_list["Indian"]["Antananarivo"] = "Antananarivo";
|
630 |
-
$wpbc_booking_region_cities_list["Indian"]["Chagos"] = "Chagos";
|
631 |
-
$wpbc_booking_region_cities_list["Indian"]["Christmas"] = "Christmas";
|
632 |
-
$wpbc_booking_region_cities_list["Indian"]["Cocos"] = "Cocos";
|
633 |
-
$wpbc_booking_region_cities_list["Indian"]["Comoro"] = "Comoro";
|
634 |
-
$wpbc_booking_region_cities_list["Indian"]["Kerguelen"] = "Kerguelen";
|
635 |
-
$wpbc_booking_region_cities_list["Indian"]["Mahe"] = "Mahe";
|
636 |
-
$wpbc_booking_region_cities_list["Indian"]["Maldives"] = "Maldives";
|
637 |
-
$wpbc_booking_region_cities_list["Indian"]["Mauritius"] = "Mauritius";
|
638 |
-
$wpbc_booking_region_cities_list["Indian"]["Mayotte"] = "Mayotte";
|
639 |
-
$wpbc_booking_region_cities_list["Indian"]["Reunion"] = "Reunion";
|
640 |
-
|
641 |
-
$wpbc_booking_region_cities_list["Pacific"]["Apia"] = "Apia";
|
642 |
-
$wpbc_booking_region_cities_list["Pacific"]["Auckland"] = "Auckland";
|
643 |
-
$wpbc_booking_region_cities_list["Pacific"]["Chatham"] = "Chatham";
|
644 |
-
$wpbc_booking_region_cities_list["Pacific"]["Easter"] = "Easter";
|
645 |
-
$wpbc_booking_region_cities_list["Pacific"]["Efate"] = "Efate";
|
646 |
-
$wpbc_booking_region_cities_list["Pacific"]["Enderbury"] = "Enderbury";
|
647 |
-
$wpbc_booking_region_cities_list["Pacific"]["Fakaofo"] = "Fakaofo";
|
648 |
-
$wpbc_booking_region_cities_list["Pacific"]["Fiji"] = "Fiji";
|
649 |
-
$wpbc_booking_region_cities_list["Pacific"]["Funafuti"] = "Funafuti";
|
650 |
-
$wpbc_booking_region_cities_list["Pacific"]["Galapagos"] = "Galapagos";
|
651 |
-
$wpbc_booking_region_cities_list["Pacific"]["Gambier"] = "Gambier";
|
652 |
-
$wpbc_booking_region_cities_list["Pacific"]["Guadalcanal"] = "Guadalcanal";
|
653 |
-
$wpbc_booking_region_cities_list["Pacific"]["Guam"] = "Guam";
|
654 |
-
$wpbc_booking_region_cities_list["Pacific"]["Honolulu"] = "Honolulu";
|
655 |
-
$wpbc_booking_region_cities_list["Pacific"]["Johnston"] = "Johnston";
|
656 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kiritimati"] = "Kiritimati";
|
657 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kosrae"] = "Kosrae";
|
658 |
-
$wpbc_booking_region_cities_list["Pacific"]["Kwajalein"] = "Kwajalein";
|
659 |
-
$wpbc_booking_region_cities_list["Pacific"]["Majuro"] = "Majuro";
|
660 |
-
$wpbc_booking_region_cities_list["Pacific"]["Marquesas"] = "Marquesas";
|
661 |
-
$wpbc_booking_region_cities_list["Pacific"]["Midway"] = "Midway";
|
662 |
-
$wpbc_booking_region_cities_list["Pacific"]["Nauru"] = "Nauru";
|
663 |
-
$wpbc_booking_region_cities_list["Pacific"]["Niue"] = "Niue";
|
664 |
-
$wpbc_booking_region_cities_list["Pacific"]["Norfolk"] = "Norfolk";
|
665 |
-
$wpbc_booking_region_cities_list["Pacific"]["Noumea"] = "Noumea";
|
666 |
-
$wpbc_booking_region_cities_list["Pacific"]["Pago_Pago"] = "Pago Pago";
|
667 |
-
$wpbc_booking_region_cities_list["Pacific"]["Palau"] = "Palau";
|
668 |
-
$wpbc_booking_region_cities_list["Pacific"]["Pitcairn"] = "Pitcairn";
|
669 |
-
$wpbc_booking_region_cities_list["Pacific"]["Ponape"] = "Ponape";
|
670 |
-
$wpbc_booking_region_cities_list["Pacific"]["Port_Moresby"] = "Port Moresby";
|
671 |
-
$wpbc_booking_region_cities_list["Pacific"]["Rarotonga"] = "Rarotonga";
|
672 |
-
$wpbc_booking_region_cities_list["Pacific"]["Saipan"] = "Saipan";
|
673 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tahiti"] = "Tahiti";
|
674 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tarawa"] = "Tarawa";
|
675 |
-
$wpbc_booking_region_cities_list["Pacific"]["Tongatapu"] = "Tongatapu";
|
676 |
-
$wpbc_booking_region_cities_list["Pacific"]["Truk"] = "Truk";
|
677 |
-
$wpbc_booking_region_cities_list["Pacific"]["Wake"] = "Wake";
|
678 |
-
$wpbc_booking_region_cities_list["Pacific"]["Wallis"] = "Wallis";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: wpdevelop, oplugins
|
|
3 |
Donate link: https://wpbookingcalendar.com/buy/
|
4 |
Tags: booking calendar, booking system, availability calendar, events calendar, appointments , booking form, reservation, availability, oplugins, calendar, Booking Calendar, ical
|
5 |
Requires at least: 4.0
|
6 |
-
Requires PHP: 5.
|
7 |
Tested up to: 5.9
|
8 |
-
Stable tag:
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -166,41 +166,41 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
|
|
166 |
* Please note, Booking Calendar plugin saving all booking details at your WordPress database at your server. Its does not transfer your booking details to our servers and does not store such info about booking details at our server(s). Please check more detail about this [here](https://wpbookingcalendar.com/faq/where-is-saving-booking-data-gdpr/)
|
167 |
* Additionally please note, you can add the "required checkbox" to your booking form at the Booking > Settings > Form page, to accept your terms and conditions.
|
168 |
|
169 |
-
= Support Languages =
|
170 |
|
171 |
- English
|
172 |
-
-
|
173 |
-
-
|
174 |
-
-
|
175 |
-
-
|
176 |
-
-
|
177 |
-
-
|
178 |
-
-
|
179 |
-
-
|
180 |
-
-
|
181 |
-
-
|
182 |
-
-
|
183 |
-
-
|
184 |
-
-
|
185 |
-
-
|
186 |
-
-
|
187 |
-
- Italian
|
188 |
-
-
|
189 |
-
-
|
190 |
-
- Turkish
|
191 |
-
- Chinese (Taiwan)
|
192 |
-
- Russian
|
193 |
-
- Portugal
|
194 |
-
- Galician
|
195 |
-
- Thai
|
196 |
-
- Hebrew
|
197 |
-
-
|
198 |
-
-
|
199 |
-
- Croatian
|
200 |
-
-
|
201 |
-
-
|
202 |
-
- Catalan
|
203 |
-
-
|
204 |
|
205 |
Please recheck the status of each translation, before using plugin.
|
206 |
We open for your help in new translations or correcting existing ones. You can translate to new language or update exist one, using this [tutorial of translation](https://wpbookingcalendar.com/faq/make-translation-of-wp-plugin/)
|
@@ -230,6 +230,39 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
|
|
230 |
13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
|
231 |
|
232 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
= 8.9.3 =
|
234 |
- Changes in **all** versions:
|
235 |
* **Support**. WordPress 5.9
|
@@ -922,5 +955,5 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
|
|
922 |
For more information, see the [full release notes](https://wpbookingcalendar.com/changelog/).
|
923 |
|
924 |
== Upgrade Notice ==
|
925 |
-
=
|
926 |
-
|
3 |
Donate link: https://wpbookingcalendar.com/buy/
|
4 |
Tags: booking calendar, booking system, availability calendar, events calendar, appointments , booking form, reservation, availability, oplugins, calendar, Booking Calendar, ical
|
5 |
Requires at least: 4.0
|
6 |
+
Requires PHP: 5.6
|
7 |
Tested up to: 5.9
|
8 |
+
Stable tag: 9.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
166 |
* Please note, Booking Calendar plugin saving all booking details at your WordPress database at your server. Its does not transfer your booking details to our servers and does not store such info about booking details at our server(s). Please check more detail about this [here](https://wpbookingcalendar.com/faq/where-is-saving-booking-data-gdpr/)
|
167 |
* Additionally please note, you can add the "required checkbox" to your booking form at the Booking > Settings > Form page, to accept your terms and conditions.
|
168 |
|
169 |
+
= Support Languages (local) =
|
170 |
|
171 |
- English
|
172 |
+
- German 99.79% [ 1906 / 1910 ], fuzzy 3, not translated 1
|
173 |
+
- Romanian 98.11% [ 1870 / 1906 ], fuzzy 20, not translated 16
|
174 |
+
- Arabic 97.74% [ 1863 / 1906 ], fuzzy 26, not translated 17
|
175 |
+
- French (France) 97.74% [ 1863 / 1906 ], fuzzy 27, not translated 16
|
176 |
+
- Greek 97.59% [ 1860 / 1906 ], fuzzy 29, not translated 17
|
177 |
+
- Finnish 97.53% [ 1859 / 1906 ], fuzzy 30, not translated 17
|
178 |
+
- Portuguese (Brazil) 97.48% [ 1858 / 1906 ], fuzzy 31, not translated 17
|
179 |
+
- Spanish (Mexico) 97.43% [ 1857 / 1906 ], fuzzy 32, not translated 17
|
180 |
+
- Dutch 97.38% [ 1856 / 1906 ], fuzzy 35, not translated 15
|
181 |
+
- Swedish 96.85% [ 1846 / 1906 ], fuzzy 35, not translated 25
|
182 |
+
- Spanish (Spain) 96.43% [ 1838 / 1906 ], fuzzy 41, not translated 27
|
183 |
+
- Norwegian (Bokmål) 96.38% [ 1837 / 1906 ], fuzzy 42, not translated 27
|
184 |
+
- Polish 96.12% [ 1832 / 1906 ], fuzzy 44, not translated 30
|
185 |
+
- Slovenian 95.07% [ 1812 / 1906 ], fuzzy 55, not translated 39
|
186 |
+
- Hungarian 95.02% [ 1811 / 1906 ], fuzzy 55, not translated 40
|
187 |
+
- Italian 92.34% [ 1760 / 1906 ], fuzzy 90, not translated 56
|
188 |
+
- Bulgarian 90.14% [ 1718 / 1906 ], fuzzy 116, not translated 72
|
189 |
+
- Danish 90.14% [ 1718 / 1906 ], fuzzy 118, not translated 70
|
190 |
+
- Turkish 90.14% [ 1718 / 1906 ], fuzzy 116, not translated 72
|
191 |
+
- Chinese (Taiwan) 88.14% [ 1680 / 1906 ], fuzzy 176, not translated 50
|
192 |
+
- Russian 86.41% [ 1647 / 1906 ], fuzzy 163, not translated 96
|
193 |
+
- Portuguese (Portugal) 85.62% [ 1632 / 1906 ], fuzzy 176, not translated 98
|
194 |
+
- Galician 85.52% [ 1630 / 1906 ], fuzzy 181, not translated 95
|
195 |
+
- Thai 85.47% [ 1629 / 1906 ], fuzzy 175, not translated 102
|
196 |
+
- Hebrew 82.79% [ 1578 / 1906 ], fuzzy 187, not translated 141
|
197 |
+
- Ukrainian 82.11% [ 1565 / 1906 ], fuzzy 195, not translated 146
|
198 |
+
- Chinese (China) 82.06% [ 1564 / 1906 ], fuzzy 192, not translated 150
|
199 |
+
- Croatian 70.3% [ 1340 / 1906 ], fuzzy 185, not translated 381
|
200 |
+
- Czech 70.2% [ 1338 / 1906 ], fuzzy 186, not translated 382
|
201 |
+
- Slovak 70.2% [ 1338 / 1906 ], fuzzy 188, not translated 380
|
202 |
+
- Catalan 69.83% [ 1331 / 1906 ], fuzzy 188, not translated 387
|
203 |
+
- Belarusian 8.92% [ 170 / 1906 ], fuzzy 805, not translated 931
|
204 |
|
205 |
Please recheck the status of each translation, before using plugin.
|
206 |
We open for your help in new translations or correcting existing ones. You can translate to new language or update exist one, using this [tutorial of translation](https://wpbookingcalendar.com/faq/make-translation-of-wp-plugin/)
|
230 |
13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
|
231 |
|
232 |
== Changelog ==
|
233 |
+
= 9.0 =
|
234 |
+
- Changes in **all** versions:
|
235 |
+
* **New**. Showing **time slots as dots** in calendar day cells. Modern and nice view of time slots inside of calendar days.
|
236 |
+
* **New**. Showing exact number of booked **time slots** in calendar day cells. System show as many dots (time slots) as many time slot was booked for specific day. Your customers can see occupancy by time interval from the beginning of the calendar view.
|
237 |
+
* **New**. Timeline. Ability to define how many days to show in Timeline at front-end side, while showing Timeline for one booking resource, and selected "Month view mode" in shortcode (parameter "view_days_num=30" or this parameter skipped). You can define it at the Booking > Settings General page in "Calendar Overview | Timeline" section. (8.9.4.3)
|
238 |
+
* **New**. Calendar Overview page. Ability to define how many days to show in Calendar Overview page in admin panel, while showing Calendar Overview page for one booking resource, and selected "Day" view mode. You can define it at the Booking > Settings General page in "Calendar Overview | Timeline" section. (8.9.4.3)
|
239 |
+
* **New**. Timeline. Scroll exactly number of days (for one booking resource, and selected "Month view mode" in shortcode), that was defined at option "Days number to show in Month mode in Timeline". (8.9.4.3)
|
240 |
+
* **New**. Calendar Overview page. Scroll exactly number of days (for one booking resource, and selected "Day" view mode), that was defined at option "Days number to show in Day view mode in Calendar Overview page". (8.9.4.3)
|
241 |
+
* **New**. Separate sections for "Calendar Overview" and "Timeline" options at the Booking > Settings General page. (8.9.4.4)
|
242 |
+
* **New**. Ability to define where firstly plugin tries to use translations from "../wp-content/languages/plugins/", or from "../wp-content/plugins/{Booking Calendar Folder}/languages/" folder. You can change this behavior at the Booking > Settings General page.
|
243 |
+
* **New**. Force plugin translation update. Download and update plugin translations from WordPress translation repository and from wpbookingcalendar.com You can make update at Booking > Settings General page in Translation section.
|
244 |
+
* **New**. Check translation status at WordPress translation repository and local translation from wpbookingcalendar.com to understand, what translation to load. You can check it at Booking > Settings General page in Translation section.
|
245 |
+
* **Improvement**. Booking Calendar by default does not contain MO and PO translation files. You can force to download them at Booking > Settings General page in Translation section.
|
246 |
+
* **Improvement**. Switching language/locale by using "Globe icon" in the Booking Listing page have higher priority than switching languages by translation plugins (8.9.4.7)
|
247 |
+
* **Improvement**. Optimization structure of country list file for future translations (8.9.4.9)
|
248 |
+
* **Improvement**. CSS styling in all calendar skins. If you previously was made calendar skin customization, please check changes in new calendar skins marked with this number: 8.9.4.13
|
249 |
+
* **Compatibility**. Support WPML 4.5.4
|
250 |
+
* **Compatibility**. Support Polylang 3.1.4
|
251 |
+
* **Compatibility**. Support qTranslate-X 3.4.6.8 (Currently closed "qTranslate-X", was tested with Booking Calendar in php 5.6)
|
252 |
+
* **Fix**. Translation issues. Tested in Polylang and qTranslate-X plugins(8.9.4.5)
|
253 |
+
* **Fix**. Fix translation folder '/languages/plugin/' to '/languages/plugins/ (8.9.4.6)
|
254 |
+
* **Fix**. Do not showing calendar because of JavaScript errors "Uncaught ReferenceError: jQuery is not defined" at some websites, that use some plugins or themes that add **async** and **defer** attribute to all JavaScript files. (8.9.4.1)
|
255 |
+
* **Fix**. issue of incorrectly import events that starting or ended with 00:00:00 time, during "Import Google Calendar Events". Previously if you import event from 2022-01-28 23:00 to 00:00 system was marked as unavailable 2022-01-28 23:00 to 2022-01-29 (all day). Currenlty system will import from 2022-01-28 23:00 to 2022-01-28 23:59 (8.9.4.2)
|
256 |
+
* **Fix**. Warning: is_dir(): open_basedir restriction in effect. File(/css/skins/) is not within the allowed path(s)... (8.9.4.8)
|
257 |
+
* **Under hood** Define wpbc_get_booking_locale() function as Deprecated, instead use: wpbc_get_maybe_reloaded_booking_locale().
|
258 |
+
* **Under hood** Relocate country list file from ../{Booking Calendar Folder}/languages/ to ../{Booking Calendar Folder}/core/lang/ folder (8.9.4.12)
|
259 |
+
- Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
|
260 |
+
* **New**. Ability to use change over days only at specific pages. Useful for situation when you need to make bookings with change over days at on specific page(s) ( check in/ou dates with diagonal lines ) and make bookings for specific time slots at other page(s) You can define list of pages where to use this feature at the Booking > Settings General page in "Calendar" section.(8.9.4.10) *(Business Small/Medium/Large, MultiUser)*
|
261 |
+
* **New**. Accurate clear display of the diagonal change over days line. Now it correctly shows the diagonal line for any shape of day cells (square or rectangle). This means that for any calendar size you will see the correct sharp diagonal line.
|
262 |
+
* **New**. Show diagonal line in dates, where we have check in/out bookings with the same status (pending or approved). Previously was showed just pending or approved full date without diagonal line. (8.9.4.13.1)
|
263 |
+
* **Fix**. Issue at some servers during response from PayPal and showing "Error code: 100000" (8.9.4.14)
|
264 |
+
* **Deprecated**. Elements ".check-in-div" and ".check-out-div" are deprecated. Currently it's commented and in future updates such elements will be removed from calendar JS file and from all skins.
|
265 |
+
|
266 |
= 8.9.3 =
|
267 |
- Changes in **all** versions:
|
268 |
* **Support**. WordPress 5.9
|
955 |
For more information, see the [full release notes](https://wpbookingcalendar.com/changelog/).
|
956 |
|
957 |
== Upgrade Notice ==
|
958 |
+
= 9.0 =
|
959 |
+
New time slots view, as a dots. Accurate clear display of the diagonal change over days line. Define how many days to show in Timeline for day view. New translation system. Many other improvements...
|
wpdev-booking.php
CHANGED
@@ -5,9 +5,9 @@ Plugin URI: https://wpbookingcalendar.com/demo/
|
|
5 |
Description: Online reservation and availability checking service for your site.
|
6 |
Author: wpdevelop, oplugins
|
7 |
Author URI: https://wpbookingcalendar.com/
|
8 |
-
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
-
Version:
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2022 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|
@@ -29,7 +29,7 @@ Version: 8.9.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', '
|
33 |
|
34 |
////////////////////////////////////////////////////////////////////////////////
|
35 |
// PRIMARY URL CONSTANTS
|
5 |
Description: Online reservation and availability checking service for your site.
|
6 |
Author: wpdevelop, oplugins
|
7 |
Author URI: https://wpbookingcalendar.com/
|
8 |
+
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 9.0
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2022 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', '9.0' ); }
|
33 |
|
34 |
////////////////////////////////////////////////////////////////////////////////
|
35 |
// PRIMARY URL CONSTANTS
|